]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/commitdiff
policycoreutils: Update to 2.1.11.
authorStefan Schantl <stefan.schantl@ipfire.org>
Sun, 6 May 2012 11:10:24 +0000 (13:10 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Sun, 6 May 2012 11:10:24 +0000 (13:10 +0200)
Update policycoreutils to latest stable version.
Update sepolgen to 1.1.6
Move all binaries to usr.

Fixes #10084.

policycoreutils/patches/policycoreutils-gui.patch [deleted file]
policycoreutils/patches/policycoreutils-rhat.patch [deleted file]
policycoreutils/patches/policycoreutils-rhat.patch2 [moved from policycoreutils/patches/policycoreutils-po.patch with 53% similarity]
policycoreutils/patches/policycoreutils-sepolgen.patch [deleted file]
policycoreutils/patches/policycoreutils-sepolgen.patch2 [new file with mode: 0644]
policycoreutils/policycoreutils.nm

diff --git a/policycoreutils/patches/policycoreutils-gui.patch b/policycoreutils/patches/policycoreutils-gui.patch
deleted file mode 100644 (file)
index f956a2b..0000000
+++ /dev/null
@@ -1,14286 +0,0 @@
-diff -up policycoreutils-2.1.8/gui/booleansPage.py.gui policycoreutils-2.1.8/gui/booleansPage.py
---- policycoreutils-2.1.8/gui/booleansPage.py.gui      2011-11-07 15:12:01.891834224 -0500
-+++ policycoreutils-2.1.8/gui/booleansPage.py  2011-11-07 15:12:01.892834224 -0500
-@@ -0,0 +1,247 @@
-+#
-+# booleansPage.py - GUI for Booleans page in system-config-securitylevel
-+#
-+# Dan Walsh <dwalsh@redhat.com>
-+#
-+# Copyright 2006, 2007 Red Hat, Inc.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import tempfile
-+import seobject
-+import semanagePage
-+
-+INSTALLPATH='/usr/share/system-config-selinux'
-+sys.path.append(INSTALLPATH)
-+
-+import commands
-+ENFORCING=0
-+PERMISSIVE=1
-+DISABLED=2
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+from glob import fnmatch
-+
-+class Modifier:
-+    def __init__(self,name, on, save):
-+        self.on=on
-+        self.name=name
-+        self.save=save
-+
-+    def set(self,value):
-+        self.on=value
-+        self.save=True
-+
-+    def isOn(self):
-+        return self.on
-+
-+class Boolean(Modifier):
-+    def __init__(self,name, val, save=False):
-+        Modifier.__init__(self,name, val, save)
-+
-+ACTIVE = 0
-+MODULE = 1
-+DESC = 2
-+BOOLEAN = 3
-+
-+class booleansPage:
-+    def __init__(self, xml, doDebug=None):
-+        self.xml = xml
-+        xml.signal_connect("on_lockdown_clicked", self.on_lockdown_clicked)
-+        self.window = self.xml.get_widget("mainWindow").get_root_window()
-+        self.local = False
-+        self.types=[]
-+        self.selinuxsupport = True
-+        self.typechanged = False
-+        self.doDebug = doDebug
-+        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
-+        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
-+
-+        # Bring in widgets from glade file.
-+        self.typeHBox = xml.get_widget("typeHBox")
-+        self.booleanSW = xml.get_widget("booleanSW")
-+        self.booleansFilter = xml.get_widget("booleansFilter")
-+        self.booleansFilter.connect("focus_out_event", self.filter_changed)
-+        self.booleansFilter.connect("activate", self.filter_changed)
-+        
-+        self.booleansView = xml.get_widget("booleansView")
-+        self.typeLabel = xml.get_widget("typeLabel")
-+        self.modifySeparator = xml.get_widget("modifySeparator")
-+
-+        self.revertButton = xml.get_widget("booleanRevertButton")
-+        self.revertButton.set_sensitive(self.local)
-+        self.revertButton.connect("clicked", self.on_revert_clicked)
-+        listStore = gtk.ListStore(gobject.TYPE_STRING)
-+        cell = gtk.CellRendererText()
-+
-+        self.store = gtk.ListStore(gobject.TYPE_BOOLEAN, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.store.set_sort_column_id(1, gtk.SORT_ASCENDING)        
-+        self.booleansView.set_model(self.store)
-+
-+        checkbox = gtk.CellRendererToggle()
-+        checkbox.connect("toggled", self.boolean_toggled)
-+        col = gtk.TreeViewColumn('Active', checkbox, active = ACTIVE)
-+        col.set_clickable(True)
-+        col.set_sort_column_id(ACTIVE)
-+        self.booleansView.append_column(col)
-+
-+        col = gtk.TreeViewColumn("Module", gtk.CellRendererText(), text=MODULE)
-+        col.set_sort_column_id(MODULE)
-+        col.set_resizable(True)
-+        self.booleansView.append_column(col)
-+
-+        col = gtk.TreeViewColumn("Description", gtk.CellRendererText(), text=DESC)
-+      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
-+        col.set_fixed_width(400)
-+        col.set_sort_column_id(DESC)
-+        col.set_resizable(True)
-+        self.booleansView.append_column(col)
-+
-+        col = gtk.TreeViewColumn("Name", gtk.CellRendererText(), text=BOOLEAN)
-+        col.set_sort_column_id(BOOLEAN)
-+        col.set_resizable(True)
-+        self.booleansView.set_search_equal_func(self.__search)
-+        self.booleansView.append_column(col)
-+        self.filter=""
-+        self.load(self.filter)
-+            
-+    def __search(self, model, col, key, i):
-+        sort_col = self.store.get_sort_column_id()[0]
-+        if sort_col > 0:
-+            val = model.get_value(i, sort_col)
-+            if val.lower().startswith(key.lower()):
-+                return False
-+        return True
-+
-+    def wait(self):
-+        self.window.set_cursor(self.busy_cursor)
-+        semanagePage.idle_func()
-+    
-+    def ready(self):
-+        self.window.set_cursor(self.ready_cursor)
-+        semanagePage.idle_func()
-+    
-+    def deleteDialog(self):
-+        store, iter = self.booleansView.get_selection().get_selected()
-+        if iter == None:
-+            return
-+        boolean = store.get_value(iter, BOOLEAN)
-+        # change cursor
-+        if boolean == None:
-+            return
-+        try:
-+            self.wait()
-+            (rc, out) = commands.getstatusoutput("semanage boolean -d %s" % boolean)
-+            
-+            self.ready()
-+            if rc != 0:
-+                return self.error(out)
-+            self.load(self.filter)
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def filter_changed(self, *arg):
-+        filter =  arg[0].get_text()
-+        if filter != self.filter:
-+            self.load(filter)
-+            self.filter=filter
-+        
-+    def use_menus(self):
-+        return False
-+    
-+    def get_description(self):
-+        return _("Boolean")
-+
-+    def match(self,key, filter=""):
-+        try:
-+            f=filter.lower()
-+            cat=self.booleans.get_category(key).lower()
-+            val=self.booleans.get_desc(key).lower()
-+            k=key.lower()
-+            return val.find(f) >= 0 or k.find(f) >= 0 or cat.find(f) >= 0
-+        except:
-+            return False
-+
-+
-+    def load(self, filter=None):
-+        self.store.clear()
-+        self.booleans = seobject.booleanRecords()
-+        booleansList = self.booleans.get_all(self.local)
-+        for name in booleansList:
-+            rec = booleansList[name]
-+            if self.match(name, filter):
-+                iter=self.store.append()
-+                self.store.set_value(iter, ACTIVE, rec[2] == 1)
-+                self.store.set_value(iter, MODULE, self.booleans.get_category(name))
-+                self.store.set_value(iter, DESC, self.booleans.get_desc(name))
-+                self.store.set_value(iter, BOOLEAN, name)
-+
-+    def boolean_toggled(self, widget, row):
-+        iter = self.store.get_iter(row)
-+        val = self.store.get_value(iter, ACTIVE)
-+        key = self.store.get_value(iter, BOOLEAN)
-+        self.store.set_value(iter, ACTIVE , not val)
-+        self.wait()
-+        setsebool="/usr/sbin/setsebool -P %s=%d" % (key, not val)
-+        commands.getstatusoutput(setsebool)
-+        self.load(self.filter)
-+        self.ready()
-+
-+    def on_revert_clicked(self, button):
-+        self.wait()
-+        setsebool="semanage boolean --deleteall"
-+        commands.getstatusoutput(setsebool)
-+        self.load(self.filter)
-+        self.ready()
-+
-+    def on_lockdown_clicked(self, button):
-+        try:
-+            os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/lockdown.py")
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def on_local_clicked(self, button):
-+        self.local = not self.local
-+        self.revertButton.set_sensitive(self.local)
-+
-+        if self.local:
-+            button.set_label(_("all"))
-+        else:
-+            button.set_label(_("Customized"))
-+
-+        self.load(self.filter)
-+        return True
-+        
-diff -up policycoreutils-2.1.8/gui/domainsPage.py.gui policycoreutils-2.1.8/gui/domainsPage.py
---- policycoreutils-2.1.8/gui/domainsPage.py.gui       2011-11-07 15:12:01.892834224 -0500
-+++ policycoreutils-2.1.8/gui/domainsPage.py   2011-11-07 15:12:01.892834224 -0500
-@@ -0,0 +1,154 @@
-+## domainsPage.py - show selinux domains
-+## Copyright (C) 2009 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import commands
-+import gobject
-+import sys
-+import seobject
-+import selinux
-+from semanagePage import *;
-+import polgen
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class domainsPage(semanagePage):
-+    def __init__(self, xml):
-+        semanagePage.__init__(self, xml, "domains", _("Process Domain"))
-+        self.domain_filter = xml.get_widget("domainsFilterEntry")
-+        self.domain_filter.connect("focus_out_event", self.filter_changed)
-+        self.domain_filter.connect("activate", self.filter_changed)
-+
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Domain Name"), gtk.CellRendererText(), text = 0)
-+        col.set_sort_column_id(0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
-+        col = gtk.TreeViewColumn(_("Mode"), gtk.CellRendererText(), text = 1)
-+        col.set_sort_column_id(1)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.view.get_selection().connect("changed", self.itemSelected)
-+
-+        self.permissive_button = xml.get_widget("permissiveButton")
-+        self.enforcing_button = xml.get_widget("enforcingButton")
-+
-+        self.domains=polgen.get_all_domains()
-+        self.load()
-+        
-+    def get_modules(self):
-+        modules=[]
-+        fd=os.popen("semodule -l")
-+        mods = fd.readlines()
-+        fd.close()
-+        for l in mods:
-+            modules.append(l.split()[0])
-+        return modules
-+
-+    def load(self, filter=""):
-+        self.filter=filter            
-+        self.store.clear()
-+        try:
-+            modules=self.get_modules()
-+            for domain in self.domains:
-+                if not self.match(domain, filter):
-+                    continue
-+                iter = self.store.append()
-+                self.store.set_value(iter, 0, domain)
-+                t = "permissive_%s_t" % domain 
-+                if t in modules:
-+                    self.store.set_value(iter, 1, _("Permissive"))
-+                else:
-+                    self.store.set_value(iter, 1, "")
-+        except:
-+            pass
-+        self.view.get_selection().select_path ((0,))
-+    
-+    def itemSelected(self, selection):
-+        store, iter = selection.get_selected()
-+        if iter == None:
-+            return
-+        p = store.get_value(iter, 1) == _("Permissive")
-+        self.permissive_button.set_sensitive(not p)
-+        self.enforcing_button.set_sensitive(p)
-+
-+    def deleteDialog(self):
-+        # Do nothing
-+        return self.delete()
-+    
-+    def delete(self):
-+        selection = self.view.get_selection()
-+        store, iter = selection.get_selected()
-+        domain = store.get_value(iter, 0)
-+        try:
-+            self.wait()
-+            status, output = commands.getstatusoutput("semanage permissive -d %s_t" % domain)
-+            self.ready()
-+            if status != 0:
-+                self.error(output)
-+            else:
-+                domain = store.set_value(iter, 1, "")
-+                self.itemSelected(selection)
-+                
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def propertiesDialog(self):
-+        # Do nothing
-+        return
-+    
-+    def addDialog(self):
-+        # Do nothing
-+        return self.add()
-+    
-+    def add(self):
-+        selection = self.view.get_selection()
-+        store, iter = selection.get_selected()
-+        domain = store.get_value(iter, 0)
-+        try:
-+            self.wait()
-+            status, output = commands.getstatusoutput("semanage permissive -a %s_t" % domain)
-+            self.ready()
-+            if status != 0:
-+                self.error(output)
-+            else:
-+                domain = store.set_value(iter, 1, _("Permissive"))
-+                self.itemSelected(selection)
-+                
-+        except ValueError, e:
-+            self.error(e.args[0])
-diff -up policycoreutils-2.1.8/gui/fcontextPage.py.gui policycoreutils-2.1.8/gui/fcontextPage.py
---- policycoreutils-2.1.8/gui/fcontextPage.py.gui      2011-11-07 15:12:01.893834225 -0500
-+++ policycoreutils-2.1.8/gui/fcontextPage.py  2011-11-07 15:12:01.893834225 -0500
-@@ -0,0 +1,223 @@
-+## fcontextPage.py - show selinux mappings
-+## Copyright (C) 2006 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import seobject
-+import commands
-+from semanagePage import *;
-+
-+SPEC_COL = 0
-+TYPE_COL = 1
-+FTYPE_COL = 2
-+
-+class context:
-+    def __init__(self, scontext):
-+        self.scontext = scontext
-+        con=scontext.split(":")
-+        self.type = con[0]
-+        if len(con) > 1:
-+            self.mls = con[1]
-+        else:
-+            self.mls = "s0"
-+        
-+    def __str__(self):
-+        return self.scontext
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+
-+class fcontextPage(semanagePage):
-+    def __init__(self, xml):
-+        semanagePage.__init__(self, xml, "fcontext", _("File Labeling"))
-+        self.fcontextFilter = xml.get_widget("fcontextFilterEntry")
-+        self.fcontextFilter.connect("focus_out_event", self.filter_changed)
-+        self.fcontextFilter.connect("activate", self.filter_changed)
-+
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.view = xml.get_widget("fcontextView")
-+        self.view.set_model(self.store)
-+        self.view.set_search_equal_func(self.search)
-+
-+        col = gtk.TreeViewColumn(_("File\nSpecification"), gtk.CellRendererText(), text=SPEC_COL)
-+      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
-+      col.set_fixed_width(250)
-+        
-+        col.set_sort_column_id(SPEC_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        col = gtk.TreeViewColumn(_("Selinux\nFile Type"), gtk.CellRendererText(), text=TYPE_COL)
-+
-+      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
-+      col.set_fixed_width(250)
-+        col.set_sort_column_id(TYPE_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        col = gtk.TreeViewColumn(_("File\nType"), gtk.CellRendererText(), text=2)
-+        col.set_sort_column_id(FTYPE_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        self.store.set_sort_column_id(SPEC_COL, gtk.SORT_ASCENDING)        
-+        self.load()
-+        self.fcontextEntry = xml.get_widget("fcontextEntry")
-+        self.fcontextFileTypeCombo = xml.get_widget("fcontextFileTypeCombo")
-+        liststore=self.fcontextFileTypeCombo.get_model()
-+        for k in seobject.file_types:
-+            if len(k) > 0 and  k[0] != '-':
-+                iter=liststore.append()
-+                liststore.set_value(iter, 0, k)
-+        iter = liststore.get_iter_first()
-+        self.fcontextFileTypeCombo.set_active_iter(iter)
-+        self.fcontextTypeEntry = xml.get_widget("fcontextTypeEntry")
-+        self.fcontextMLSEntry = xml.get_widget("fcontextMLSEntry")
-+
-+    def match(self, fcon_dict, k, filter):
-+        try:
-+            f=filter.lower()
-+            for con in k:
-+                k=con.lower()
-+                if k.find(f) >= 0:
-+                    return True
-+            for con in fcon_dict[k]:
-+                k=con.lower()
-+                if k.find(f) >= 0:
-+                    return True
-+        except:
-+            pass
-+        return False
-+
-+    def load(self, filter=""):
-+        self.filter=filter            
-+        self.fcontext=seobject.fcontextRecords()
-+        self.store.clear()
-+        fcon_dict=self.fcontext.get_all(self.local)
-+        keys = fcon_dict.keys()
-+        keys.sort()
-+        for k in keys:
-+            if not self.match(fcon_dict, k, filter):
-+                continue
-+            iter=self.store.append()
-+            self.store.set_value(iter, SPEC_COL, k[0])
-+            self.store.set_value(iter, FTYPE_COL, k[1])
-+            if fcon_dict[k]:
-+                rec="%s:%s" % (fcon_dict[k][2], seobject.translate(fcon_dict[k][3],False))
-+            else:
-+                rec="<<None>>"
-+            self.store.set_value(iter, TYPE_COL, rec)
-+        self.view.get_selection().select_path ((0,))
-+    
-+    def filter_changed(self, *arg):
-+        filter =  arg[0].get_text()
-+        if filter != self.filter:
-+            self.load(filter)
-+
-+    def dialogInit(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        self.fcontextEntry.set_text(store.get_value(iter, SPEC_COL))
-+        self.fcontextEntry.set_sensitive(False)
-+        scontext = store.get_value(iter, TYPE_COL)
-+        scon=context(scontext)
-+        self.fcontextTypeEntry.set_text(scon.type)
-+        self.fcontextMLSEntry.set_text(scon.mls)
-+        type=store.get_value(iter, FTYPE_COL)
-+        liststore=self.fcontextFileTypeCombo.get_model()
-+        iter = liststore.get_iter_first()
-+        while iter != None and liststore.get_value(iter,0) != type:
-+            iter = liststore.iter_next(iter)
-+        if iter != None:
-+            self.fcontextFileTypeCombo.set_active_iter(iter)
-+        self.fcontextFileTypeCombo.set_sensitive(False)
-+        
-+    def dialogClear(self):
-+        self.fcontextEntry.set_text("")
-+        self.fcontextEntry.set_sensitive(True)
-+        self.fcontextFileTypeCombo.set_sensitive(True)
-+        self.fcontextTypeEntry.set_text("")
-+        self.fcontextMLSEntry.set_text("s0")
-+        
-+    def delete(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        try:
-+            fspec=store.get_value(iter, SPEC_COL)
-+            ftype=store.get_value(iter, FTYPE_COL)
-+            self.wait()
-+            (rc, out) = commands.getstatusoutput("semanage fcontext -d -f '%s' '%s'" % (ftype, fspec))
-+            self.ready()
-+            
-+            if rc != 0:
-+                return self.error(out)
-+            store.remove(iter)
-+            self.view.get_selection().select_path ((0,))
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def add(self):
-+        ftype=["", "--", "-d", "-c", "-b", "-s", "-l", "-p" ]
-+        fspec=self.fcontextEntry.get_text().strip()
-+        type=self.fcontextTypeEntry.get_text().strip()
-+        mls=self.fcontextMLSEntry.get_text().strip()
-+        list_model=self.fcontextFileTypeCombo.get_model()
-+        active = self.fcontextFileTypeCombo.get_active()
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage fcontext -a -t %s -r %s -f '%s' '%s'" % (type, mls, ftype[active], fspec))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        
-+        iter=self.store.append()
-+        self.store.set_value(iter, SPEC_COL, fspec)
-+        self.store.set_value(iter, FTYPE_COL, ftype)
-+        self.store.set_value(iter, TYPE_COL, "%s:%s" % (type, mls))
-+        
-+    def modify(self):
-+        fspec=self.fcontextEntry.get_text().strip()
-+        type=self.fcontextTypeEntry.get_text().strip()
-+        mls=self.fcontextMLSEntry.get_text().strip()
-+        list_model=self.fcontextFileTypeCombo.get_model()
-+        iter = self.fcontextFileTypeCombo.get_active_iter()
-+        ftype=list_model.get_value(iter,0)
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage fcontext -m -t %s -r %s -f '%s' '%s'" % (type, mls, ftype, fspec))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+
-+        store, iter = self.view.get_selection().get_selected()
-+        self.store.set_value(iter, SPEC_COL, fspec)
-+        self.store.set_value(iter, FTYPE_COL, ftype)
-+        self.store.set_value(iter, TYPE_COL, "%s:%s" % (type, mls))
-diff -up policycoreutils-2.1.8/gui/html_util.py.gui policycoreutils-2.1.8/gui/html_util.py
---- policycoreutils-2.1.8/gui/html_util.py.gui 2011-11-07 15:12:01.894834226 -0500
-+++ policycoreutils-2.1.8/gui/html_util.py     2011-11-07 15:12:01.894834226 -0500
-@@ -0,0 +1,164 @@
-+# Authors: John Dennis <jdennis@redhat.com>
-+#
-+# Copyright (C) 2007 Red Hat, Inc.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+
-+
-+__all__ = [
-+    'escape_html',
-+    'unescape_html',
-+    'html_to_text',
-+
-+    'html_document',
-+]
-+
-+import htmllib
-+import formatter as Formatter
-+import string
-+from types import *
-+import StringIO
-+
-+#------------------------------------------------------------------------------
-+
-+class TextWriter(Formatter.DumbWriter):
-+    def __init__(self, file=None, maxcol=80, indent_width=4):
-+        Formatter.DumbWriter.__init__(self, file, maxcol)
-+        self.indent_level = 0
-+        self.indent_width = indent_width
-+        self._set_indent()
-+
-+    def _set_indent(self):
-+        self.indent_col = self.indent_level * self.indent_width
-+        self.indent = ' ' * self.indent_col
-+
-+    def new_margin(self, margin, level):
-+        self.indent_level = level
-+        self._set_indent()
-+
-+    def send_label_data(self, data):
-+        data = data + ' '
-+        if len(data) > self.indent_col:
-+            self.send_literal_data(data)
-+        else:
-+            offset = self.indent_col - len(data)
-+            self.send_literal_data(' ' * offset + data)
-+
-+    def send_flowing_data(self, data):
-+        if not data: return
-+        atbreak = self.atbreak or data[0] in string.whitespace
-+        col = self.col
-+        maxcol = self.maxcol
-+        write = self.file.write
-+        col = self.col
-+        if col == 0:
-+            write(self.indent)
-+            col = self.indent_col
-+        for word in data.split():
-+            if atbreak:
-+                if col + len(word) >= maxcol:
-+                    write('\n' + self.indent)
-+                    col = self.indent_col
-+                else:
-+                    write(' ')
-+                    col = col + 1
-+            write(word)
-+            col = col + len(word)
-+            atbreak = 1
-+        self.col = col
-+        self.atbreak = data[-1] in string.whitespace
-+            
-+class HTMLParserAnchor(htmllib.HTMLParser):
-+
-+    def __init__(self, formatter, verbose=0):
-+        htmllib.HTMLParser.__init__(self, formatter, verbose)
-+
-+    def anchor_bgn(self, href, name, type):
-+        self.anchor = href
-+
-+    def anchor_end(self):
-+        if self.anchor:
-+            self.handle_data(' (%s) ' % self.anchor)
-+            self.anchor = None
-+
-+#------------------------------------------------------------------------------
-+
-+def escape_html(s):
-+    if s is None: return None
-+    s = s.replace("&", "&amp;") # Must be done first!
-+    s = s.replace("<", "&lt;")
-+    s = s.replace(">", "&gt;")
-+    s = s.replace("'", "&apos;")
-+    s = s.replace('"', "&quot;")
-+    return s
-+
-+
-+def unescape_html(s):
-+    if s is None: return None
-+    if '&' not in s:
-+        return s
-+    s = s.replace("&lt;", "<")
-+    s = s.replace("&gt;", ">")
-+    s = s.replace("&apos;", "'")
-+    s = s.replace("&quot;", '"')
-+    s = s.replace("&amp;", "&") # Must be last
-+    return s
-+
-+def html_to_text(html, maxcol=80):
-+    try:
-+        buffer = StringIO.StringIO()
-+        formatter = Formatter.AbstractFormatter(TextWriter(buffer, maxcol))
-+        parser = HTMLParserAnchor(formatter)
-+        parser.feed(html)
-+        parser.close()
-+        text = buffer.getvalue()
-+        buffer.close()
-+        return text
-+    except Exception, e:
-+        log_program.error('cannot convert html to text: %s' % e)
-+        return None
-+
-+def html_document(*body_components):
-+    '''Wrap the body components in a HTML document structure with a valid header.
-+    Accepts a variable number of arguments of of which canb be:
-+    * string
-+    * a sequences of strings (tuple or list).
-+    * a callable object taking no parameters and returning a string or sequence of strings.
-+    '''
-+    head = '<html>\n  <head>\n    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>\n  </head>\n  <body>\n'
-+    tail = '\n  </body>\n</html>'
-+
-+    doc = head
-+
-+    for body_component in body_components:
-+        if type(body_component) is StringTypes:
-+            doc += body_component
-+        elif type(body_component) in [TupleType, ListType]:
-+            for item in body_component:
-+                doc += item
-+        elif callable(body_component):
-+            result = body_component()
-+            if type(result) in [TupleType, ListType]:
-+                for item in result:
-+                    doc += item
-+            else:
-+                doc += result
-+        else:
-+            doc += body_component
-+
-+    doc += tail
-+    return doc
-+
-diff -up policycoreutils-2.1.8/gui/lockdown.glade.gui policycoreutils-2.1.8/gui/lockdown.glade
---- policycoreutils-2.1.8/gui/lockdown.glade.gui       2011-11-07 15:12:01.895834226 -0500
-+++ policycoreutils-2.1.8/gui/lockdown.glade   2011-11-07 15:12:01.895834226 -0500
-@@ -0,0 +1,771 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
-+
-+<glade-interface>
-+<requires lib="gnome"/>
-+<requires lib="bonobo"/>
-+
-+<widget class="GtkAboutDialog" id="aboutWindow">
-+  <property name="border_width">5</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="name" translatable="yes">system-config-selinux</property>
-+  <property name="copyright" translatable="yes">Copyright (c)2006 Red Hat, Inc.
-+Copyright (c) 2006 Dan Walsh &lt;dwalsh@redhat.com&gt;</property>
-+  <property name="wrap_license">False</property>
-+  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;
-+</property>
-+  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
-+  <property name="logo">system-config-selinux.png</property>
-+</widget>
-+
-+<widget class="GnomeApp" id="mainWindow">
-+  <property name="width_request">800</property>
-+  <property name="height_request">400</property>
-+  <property name="title" translatable="yes">SELinux Boolean Lockdown</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="icon">system-config-selinux.png</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="enable_layout_config">True</property>
-+
-+  <child internal-child="dock">
-+    <widget class="BonoboDock" id="bonobodock2">
-+      <property name="visible">True</property>
-+      <property name="allow_floating">True</property>
-+
-+      <child>
-+      <widget class="BonoboDockItem" id="bonobodockitem3">
-+        <property name="visible">True</property>
-+        <property name="shadow_type">GTK_SHADOW_NONE</property>
-+
-+        <child>
-+          <widget class="GtkMenuBar" id="menubar1">
-+            <property name="visible">True</property>
-+            <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
-+            <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
-+
-+            <child>
-+              <widget class="GtkMenuItem" id="file1">
-+                <property name="visible">True</property>
-+                <property name="stock_item">GNOMEUIINFO_MENU_FILE_TREE</property>
-+
-+                <child>
-+                  <widget class="GtkMenu" id="file1_menu">
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="forward_menu_item">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">_Forward</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_forward_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
-+                        <accelerator key="f" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image46">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-media-next</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="previous_menu_item">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">_Previous</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_previous_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
-+                        <accelerator key="p" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image47">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-media-previous</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkSeparatorMenuItem" id="separator1">
-+                        <property name="visible">True</property>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="save_as2">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Save As</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_save_clicked" last_modification_time="Thu, 03 Jul 2008 13:30:05 GMT"/>
-+                        <accelerator key="s" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image48">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-save-as</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="apply1">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Apply</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_apply_clicked" last_modification_time="Thu, 03 Jul 2008 13:25:23 GMT"/>
-+                        <accelerator key="a" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image49">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-apply</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="cancel">
-+                        <property name="visible">True</property>
-+                        <property name="stock_item">GNOMEUIINFO_MENU_EXIT_ITEM</property>
-+                        <signal name="activate" handler="on_cancel_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkMenuItem" id="help1">
-+                <property name="visible">True</property>
-+                <property name="stock_item">GNOMEUIINFO_MENU_HELP_TREE</property>
-+
-+                <child>
-+                  <widget class="GtkMenu" id="help1_menu">
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="about">
-+                        <property name="visible">True</property>
-+                        <property name="stock_item">GNOMEUIINFO_MENU_ABOUT_ITEM</property>
-+                        <signal name="activate" handler="on_about_activate" last_modification_time="Fri, 06 Oct 2006 13:58:02 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="placement">BONOBO_DOCK_TOP</property>
-+        <property name="band">0</property>
-+        <property name="position">0</property>
-+        <property name="offset">0</property>
-+        <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_NEVER_VERTICAL|BONOBO_DOCK_ITEM_BEH_LOCKED</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkHPaned" id="hpaned1">
-+        <property name="visible">True</property>
-+        <property name="can_focus">True</property>
-+        <property name="position">0</property>
-+
-+        <child>
-+          <widget class="GtkFrame" id="frame1">
-+            <property name="border_width">5</property>
-+            <property name="visible">True</property>
-+            <property name="label_xalign">0</property>
-+            <property name="label_yalign">0.5</property>
-+            <property name="shadow_type">GTK_SHADOW_NONE</property>
-+
-+            <child>
-+              <widget class="GtkAlignment" id="alignment1">
-+                <property name="visible">True</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xscale">1</property>
-+                <property name="yscale">1</property>
-+                <property name="top_padding">0</property>
-+                <property name="bottom_padding">0</property>
-+                <property name="left_padding">12</property>
-+                <property name="right_padding">0</property>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow21">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="booleanView">
-+                        <property name="width_request">300</property>
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Select Management Object</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">False</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label45">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">label_item</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="shrink">False</property>
-+            <property name="resize">False</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox1">
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkVBox" id="radio_vbox">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="html_scrolledwindow">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <placeholder/>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHButtonBox" id="savebox">
-+                    <property name="visible">True</property>
-+                    <property name="layout_style">GTK_BUTTONBOX_END</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button4">
-+                        <property name="visible">True</property>
-+                        <property name="can_default">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-apply</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_apply_clicked" last_modification_time="Thu, 03 Jul 2008 12:39:08 GMT"/>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="savebutton">
-+                        <property name="visible">True</property>
-+                        <property name="can_default">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-save-as</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_save_clicked" last_modification_time="Thu, 03 Jul 2008 12:38:54 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                    <property name="pack_type">GTK_PACK_END</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="radiobox">
-+                    <property name="homogeneous">True</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkRadioButton" id="enable_radiobutton">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <property name="active">False</property>
-+                        <property name="inconsistent">False</property>
-+                        <property name="draw_indicator">True</property>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment2">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox15">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image20">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-yes</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="button1">
-+                                    <property name="label" translatable="yes">Enable</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkRadioButton" id="disable_radiobutton">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <property name="active">False</property>
-+                        <property name="inconsistent">False</property>
-+                        <property name="draw_indicator">True</property>
-+                        <property name="group">enable_radiobutton</property>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment3">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox16">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image21">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-no</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label60">
-+                                    <property name="visible">True</property>
-+                                    <property name="label" translatable="yes">Disable</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkRadioButton" id="default_radiobutton">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <property name="active">False</property>
-+                        <property name="inconsistent">False</property>
-+                        <property name="draw_indicator">True</property>
-+                        <property name="group">enable_radiobutton</property>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment4">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox17">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image22">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-undo</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label61">
-+                                    <property name="visible">True</property>
-+                                    <property name="label" translatable="yes">Default</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">11</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHButtonBox" id="hbuttonbox4">
-+                    <property name="visible">True</property>
-+                    <property name="layout_style">GTK_BUTTONBOX_END</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="cancelButton">
-+                        <property name="visible">True</property>
-+                        <property name="can_default">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-quit</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_cancel_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:10 GMT"/>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="previousButton">
-+                        <property name="visible">True</property>
-+                        <property name="can_default">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-media-previous</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_previous_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:23 GMT"/>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="forwardButton">
-+                        <property name="visible">True</property>
-+                        <property name="can_default">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-media-forward</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_forward_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:38 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="shrink">True</property>
-+            <property name="resize">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      </child>
-+    </widget>
-+    <packing>
-+      <property name="padding">0</property>
-+      <property name="expand">True</property>
-+      <property name="fill">True</property>
-+    </packing>
-+  </child>
-+
-+  <child internal-child="appbar">
-+    <widget class="GnomeAppBar" id="appbar2">
-+      <property name="visible">True</property>
-+      <property name="has_progress">True</property>
-+      <property name="has_status">True</property>
-+    </widget>
-+    <packing>
-+      <property name="padding">0</property>
-+      <property name="expand">True</property>
-+      <property name="fill">True</property>
-+    </packing>
-+  </child>
-+</widget>
-+
-+<widget class="GtkFileChooserDialog" id="filechooserdialog">
-+  <property name="border_width">5</property>
-+  <property name="tooltip" translatable="yes">Select file name to save  boolean settings.</property>
-+  <property name="action">GTK_FILE_CHOOSER_ACTION_SAVE</property>
-+  <property name="local_only">True</property>
-+  <property name="select_multiple">False</property>
-+  <property name="show_hidden">False</property>
-+  <property name="do_overwrite_confirmation">False</property>
-+  <property name="title" translatable="yes">Save Boolean Configuration File</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_MOUSE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="dialog-vbox1">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">2</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="dialog-action_area1">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="button7">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="button8">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="has_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-save</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+</glade-interface>
-diff -up policycoreutils-2.1.8/gui/lockdown.gladep.gui policycoreutils-2.1.8/gui/lockdown.gladep
---- policycoreutils-2.1.8/gui/lockdown.gladep.gui      2011-11-07 15:12:01.896834226 -0500
-+++ policycoreutils-2.1.8/gui/lockdown.gladep  2011-11-07 15:12:01.896834226 -0500
-@@ -0,0 +1,7 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd">
-+
-+<glade-project>
-+  <name></name>
-+  <program_name></program_name>
-+</glade-project>
-diff -up policycoreutils-2.1.8/gui/lockdown.py.gui policycoreutils-2.1.8/gui/lockdown.py
---- policycoreutils-2.1.8/gui/lockdown.py.gui  2011-11-07 15:12:01.897834227 -0500
-+++ policycoreutils-2.1.8/gui/lockdown.py      2011-11-07 15:12:01.897834227 -0500
-@@ -0,0 +1,375 @@
-+#!/usr/bin/python
-+#
-+# lockdown.py - GUI for Booleans page in system-config-securitylevel
-+#
-+# Dan Walsh <dwalsh@redhat.com>
-+#
-+# Copyright 2008 Red Hat, Inc.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+import signal
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import gnome
-+import sys
-+import selinux
-+import seobject
-+import webkit
-+import commands
-+import tempfile
-+
-+from html_util import *
-+
-+gnome.program_init("SELinux Boolean Lockdown Tool", "5")
-+
-+INSTALLPATH='/usr/share/system-config-selinux'
-+sys.path.append(INSTALLPATH)
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+from glob import fnmatch
-+
-+STATUS=(_("Disable"), _("Enable"), _("Default"))
-+DISABLE = 0
-+ENABLE = 1
-+DEFAULT = 2
-+
-+def idle_func():
-+    while gtk.events_pending():
-+        gtk.main_iteration()
-+        
-+def td_fmt(val):
-+    return '<td>%s</td>' % val
-+
-+tr_fmt = '<tr>%s</tr>\n'
-+
-+p_fmt = '<p>%s\n'
-+
-+##
-+## Pull in the Glade file
-+##
-+if os.access("system-config-selinux.glade", os.F_OK):
-+    xml = gtk.glade.XML ("lockdown.glade", domain=PROGNAME)
-+else:
-+    xml = gtk.glade.XML ("/usr/share/system-config-selinux/lockdown.glade", domain=PROGNAME)
-+BOOLEAN = 0
-+class booleanWindow:
-+    def __init__(self):
-+        self.tabs=[]
-+        self.xml = xml
-+        xml.signal_connect("on_cancel_clicked", self.cancel)
-+        xml.signal_connect("on_forward_clicked", self.forward)
-+        xml.signal_connect("on_previous_clicked", self.previous)
-+        xml.signal_connect("on_save_clicked", self.save)
-+        xml.signal_connect("on_apply_clicked", self.apply)
-+        self.xml = xml
-+        self.mainWindow = self.xml.get_widget("mainWindow")
-+        self.forwardbutton = self.xml.get_widget("forwardButton")
-+        self.window = self.xml.get_widget("mainWindow").get_root_window()
-+        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
-+        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
-+        self.radiobox = self.xml.get_widget("radiobox")
-+        self.savebox = self.xml.get_widget("savebox")
-+        self.file_dialog = self.xml.get_widget("filechooserdialog")
-+        self.vbox = self.xml.get_widget("vbox")
-+        self.enable_radiobutton = self.xml.get_widget("enable_radiobutton")
-+        self.enable_radiobutton.connect("toggled", self.toggled)
-+        self.disable_radiobutton = self.xml.get_widget("disable_radiobutton")
-+        self.disable_radiobutton.connect("toggled", self.toggled)
-+        self.default_radiobutton = self.xml.get_widget("default_radiobutton")
-+        self.default_radiobutton.connect("toggled", self.toggled)
-+        self.html_scrolledwindow = self.xml.get_widget("html_scrolledwindow")
-+        self.view = xml.get_widget("booleanView")
-+        self.view.get_selection().connect("changed", self.itemSelected)
-+
-+        self.store = gtk.TreeStore(gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+
-+        col = gtk.TreeViewColumn("Boolean", gtk.CellRendererText(), text=BOOLEAN)
-+        col.set_sort_column_id(BOOLEAN)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        self.html_view = self.create_htmlview(self.html_scrolledwindow)
-+        self.load()
-+        self.view.get_selection().select_path ((0,))
-+
-+    def create_htmlview(self, container):
-+        view = webkit.WebView()
-+        container.add(view)
-+        return (view)
-+
-+    def wait(self):
-+        self.window.set_cursor(self.busy_cursor)
-+        idle_func()
-+    
-+    def ready(self):
-+        self.window.set_cursor(self.ready_cursor)
-+        idle_func()
-+    
-+    def load(self):
-+        self.store.clear()
-+        self.booleans = seobject.booleanRecords()
-+        booleansList = self.booleans.get_all(0)
-+        self.booldict = {}
-+        for name in booleansList:
-+            cat = self.booleans.get_category(name)
-+            if cat not in self.booldict:
-+                self.booldict[cat] = {}
-+            
-+            rec = booleansList[name]
-+            self.booldict[cat][name]= [rec[2], self.booleans.get_desc(name)]
-+
-+        cats = self.booldict.keys()
-+        cats.sort()
-+
-+        citer = self.store.append(None)
-+        self.store.set_value(citer, BOOLEAN, "Begin")
-+        for cat in  cats:
-+            citer = self.store.append(None)
-+            self.store.set_value(citer, BOOLEAN, cat)
-+            bools = self.booldict[cat].keys()
-+            for bool in  bools:
-+                biter = self.store.append(citer)
-+                self.store.set_value(biter, BOOLEAN, bool)
-+            biter = self.store.append(citer)
-+            self.store.set_value(biter, BOOLEAN, "Finish")
-+        citer = self.store.append(None)
-+        self.store.set_value(citer, BOOLEAN, "Finish")
-+
-+    def on_about_activate(self, args):
-+        dlg = xml.get_widget ("aboutWindow")
-+        dlg.run ()
-+        dlg.hide ()
-+
-+    def cancel(self, args):
-+        gtk.main_quit()
-+
-+    def error(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
-+                                gtk.BUTTONS_CLOSE,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        dlg.run()
-+        dlg.destroy()
-+
-+    def __out(self):
-+        out = ''
-+        for c in self.booldict.keys():
-+            for b in self.booldict[c]:
-+                out += "%s=%s\n" % (b, self.booldict[c][b][0])
-+        return out
-+
-+    def save(self, args):
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SAVE)
-+        rc = self.file_dialog.run()
-+        self.file_dialog.hide()
-+        if rc == gtk.RESPONSE_OK:
-+            try:
-+                fd = open(self.file_dialog.get_filename(), "w")
-+                fd.write(self.__out())
-+                fd.close()
-+
-+            except IOError, e:
-+                self.error(e)
-+
-+    def apply(self, args):
-+        fd = tempfile.NamedTemporaryFile(dir = "/var/lib/selinux")
-+        fd.write(self.__out())
-+        fd.flush()
-+        self.wait()
-+        rc, err = commands.getstatusoutput("semanage boolean -m -F %s" % fd.name)
-+        self.ready()
-+        fd.close()
-+        if rc != 0:
-+            self.error(err)
-+
-+    def forward(self, args):
-+        selection = self.view.get_selection()
-+        store, iter = selection.get_selected()
-+        if self.store.iter_has_child(iter):
-+            store, rows = selection.get_selected_rows()
-+            self.view.expand_to_path(rows[0])
-+            niter = self.store.iter_nth_child(iter, 0)
-+        else:
-+            niter = store.iter_next(iter)
-+
-+        if niter == None:
-+            piter = self.store.iter_parent(iter)
-+            if piter == None:
-+                return
-+            niter = store.iter_next(piter)
-+
-+        if niter != None:
-+            selection.select_iter(niter)
-+            store, rows = selection.get_selected_rows()
-+            self.view.scroll_to_cell(rows[0])
-+        else:
-+            print "Finish"
-+
-+    def toggled(self, button):
-+        if button.get_active() == False:
-+            return
-+        if self.cat == None:
-+            return
-+        if self.disable_radiobutton == button:
-+            self.booldict[self.cat][self.name][0] = DISABLE
-+        if self.enable_radiobutton == button:
-+            self.booldict[self.cat][self.name][0] = ENABLE
-+        if self.default_radiobutton == button:
-+            self.booldict[self.cat][self.name][0] = DEFAULT
-+
-+    def previous(self, args):
-+        selection = self.view.get_selection()
-+        store, iter = selection.get_selected()
-+        store, rows = selection.get_selected_rows()
-+        row = rows[0]
-+        if len(row) == 1 or self.store.iter_has_child(iter):
-+            if row[0] == 0:
-+                return
-+            nrow = row[0] - 1
-+            iter = self.store.get_iter((nrow,))
-+            if self.store.iter_has_child(iter):
-+                self.view.expand_to_path((nrow,))
-+                n = store.iter_n_children(iter) -1
-+                piter = store.iter_nth_child(iter, n)
-+            else:
-+                piter = iter
-+        else:
-+            if row[1] == 0:
-+                piter = self.store.iter_parent(iter)
-+            else:
-+                r0 = row[0]
-+                r1 = row[1] - 1
-+                piter = self.store.get_iter((r0,r1))
-+        if piter != None:
-+            selection.select_iter(piter)
-+            store, rows = selection.get_selected_rows()
-+            self.view.scroll_to_cell(rows[0])
-+        else:
-+            print "Finish"
-+                
-+    def html_cat(self, cat):
-+        html = ""
-+        row = td_fmt(_("<b>Boolean</b>")) + td_fmt(_("<b>Description</b>")) + td_fmt(_("<b>Status</b>"))
-+        html += tr_fmt % row
-+        
-+        for b in self.booldict[cat]:
-+            row = td_fmt(b) + td_fmt(self.booleans.get_desc(b)) + td_fmt(STATUS[self.booldict[cat][b][0]])
-+            html += tr_fmt % row
-+        return html
-+
-+    def html_table(self, title, body):
-+        html = self.html_head(title)
-+        html += '<table width="100%" cellspacing="1" cellpadding="2">\n'
-+        html += body
-+        html += '</table>'
-+        return html
-+
-+    def html_head(self, val):
-+        # Wrap entire alert in one table
-+        # 1st table: primary Information
-+
-+        html = '<b>%s</b>\n\n\n' % val
-+        return html
-+ 
-+    def html_all(self):
-+        html = ""
-+        cats = self.booldict.keys()
-+        cats.sort()
-+        for cat in  cats:
-+            html += self.html_table((_("Category: %s <br>") % cat), self.html_cat(cat))
-+        return html
-+
-+    def itemSelected(self, selection):
-+        store, iter = selection.get_selected()
-+        if iter == None:
-+            return
-+
-+        piter = self.store.iter_parent(iter)
-+        if piter != None:
-+            self.cat =  store.get_value(piter, BOOLEAN)
-+        else:
-+            self.cat =  None
-+
-+        self.name =  store.get_value(iter, BOOLEAN)
-+
-+        html = ''
-+
-+        self.radiobox.hide()
-+        self.savebox.hide()
-+
-+        if self.name == _("Begin"):
-+            html += self.html_head(_("Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to lockdown SELinux booleans.The tool will generate a configuration file which can be used to lockdown this system or other SELinux systems.<br>"))
-+            html += self.html_all()
-+        else:
-+            if self.name == _("Finish"):
-+                if self.cat != None:
-+                    html += self.html_head(_("Category %s booleans completed <br><br>") % self.cat)
-+                    html += self.html_table(_("Current settings:<br><br>"), self.html_cat(self.cat))
-+                else:
-+                    html += self.html_head(_("Finish: <br><br>"))
-+                    html += self.html_all()
-+                    self.savebox.show()
-+            else:
-+                if self.store.iter_has_child(iter):
-+                    html += self.html_table(_("Category: %s<br><br>Current Settings<br><br>") % self.name, self.html_cat(self.name))
-+                else:
-+                    self.radiobox.show()
-+                    html += self.html_table(_("Boolean:   %s<br><br>") % self.name, tr_fmt % td_fmt(self.booleans.get_desc(self.name)))
-+                    if self.booldict[self.cat][self.name][0] == ENABLE:
-+                        self.enable_radiobutton.set_active(True)
-+                    if self.booldict[self.cat][self.name][0] == DISABLE:
-+                        self.disable_radiobutton.set_active(True)
-+                    if self.booldict[self.cat][self.name][0] == DEFAULT:
-+                        self.default_radiobutton.set_active(True)
-+        html_doc= html_document(html)
-+
-+        self.html_view.load_html_string(html, "")
-+
-+    def stand_alone(self):
-+        desktopName = _("Lockdown SELinux Booleans")
-+
-+        self.mainWindow.connect("destroy", self.cancel)
-+
-+        self.mainWindow.show_all()
-+        self.radiobox.hide()
-+        self.savebox.hide()
-+        gtk.main()
-+
-+if __name__ == "__main__":
-+    signal.signal (signal.SIGINT, signal.SIG_DFL)
-+
-+    app = booleanWindow()
-+    app.stand_alone()
-diff -up policycoreutils-2.1.8/gui/loginsPage.py.gui policycoreutils-2.1.8/gui/loginsPage.py
---- policycoreutils-2.1.8/gui/loginsPage.py.gui        2011-11-07 15:12:01.898834228 -0500
-+++ policycoreutils-2.1.8/gui/loginsPage.py    2011-11-07 15:12:01.898834228 -0500
-@@ -0,0 +1,185 @@
-+## loginsPage.py - show selinux mappings
-+## Copyright (C) 2006 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import commands
-+import seobject
-+from semanagePage import *;
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class loginsPage(semanagePage):
-+    def __init__(self, xml):
-+        self.firstTime = False
-+        semanagePage.__init__(self, xml, "logins", _("User Mapping"))
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Login\nName"), gtk.CellRendererText(), text = 0)
-+        col.set_sort_column_id(0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text = 1)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text = 2)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.load()
-+        self.loginsNameEntry = xml.get_widget("loginsNameEntry")
-+        self.loginsSelinuxUserCombo = xml.get_widget("loginsSelinuxUserCombo")
-+        self.loginsMLSEntry = xml.get_widget("loginsMLSEntry")
-+        
-+    def load(self, filter = ""):
-+        self.filter=filter            
-+        self.login = seobject.loginRecords()
-+        dict = self.login.get_all(0)
-+        keys = dict.keys()
-+        keys.sort()
-+        self.store.clear()
-+        for k in keys:
-+            range = seobject.translate(dict[k][1])
-+            if not (self.match(k, filter) or self.match(dict[k][0], filter) or self.match(range, filter)):
-+                continue
-+            iter = self.store.append()
-+            self.store.set_value(iter, 0, k)
-+            self.store.set_value(iter, 1, dict[k][0])
-+            self.store.set_value(iter, 2, range)
-+        self.view.get_selection().select_path ((0,))
-+
-+    def __dialogSetup(self):
-+        if self.firstTime == True:
-+            return
-+        self.firstTime = True
-+        liststore = gtk.ListStore(gobject.TYPE_STRING)
-+        self.loginsSelinuxUserCombo.set_model(liststore)
-+        cell = gtk.CellRendererText()
-+        self.loginsSelinuxUserCombo.pack_start(cell, True)
-+        self.loginsSelinuxUserCombo.add_attribute(cell, 'text', 0)
-+        
-+        selusers = seobject.seluserRecords().get_all(0)
-+        keys = selusers.keys()
-+        keys.sort()
-+        for k in keys:
-+            if k != "system_u":
-+                self.loginsSelinuxUserCombo.append_text(k)
-+
-+        iter = liststore.get_iter_first()
-+        while liststore.get_value(iter,0) != "user_u":
-+            iter = liststore.iter_next(iter)
-+        self.loginsSelinuxUserCombo.set_active_iter(iter)
-+        
-+    def dialogInit(self):
-+        self.__dialogSetup()
-+        store, iter = self.view.get_selection().get_selected()
-+        self.loginsNameEntry.set_text(store.get_value(iter, 0))
-+        self.loginsNameEntry.set_sensitive(False)
-+        
-+        self.loginsMLSEntry.set_text(store.get_value(iter, 2))
-+        seuser = store.get_value(iter, 1)
-+        liststore = self.loginsSelinuxUserCombo.get_model()
-+        iter = liststore.get_iter_first()
-+        while iter != None and liststore.get_value(iter,0) != seuser:
-+            iter = liststore.iter_next(iter)
-+        if iter != None:
-+            self.loginsSelinuxUserCombo.set_active_iter(iter)
-+        
-+        
-+    def dialogClear(self):
-+        self.__dialogSetup()
-+        self.loginsNameEntry.set_text("")
-+        self.loginsNameEntry.set_sensitive(True)
-+        self.loginsMLSEntry.set_text("s0")
-+        
-+    def delete(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        try:
-+            login=store.get_value(iter, 0)
-+            if login == "root" or login == "__default__":
-+                raise ValueError(_("Login '%s' is required") % login)
-+                
-+            self.wait()
-+            (rc, out) = commands.getstatusoutput("semanage login -d %s" % login)
-+            self.ready()
-+            if rc != 0:
-+                self.error(out)
-+                return False
-+            store.remove(iter)
-+            self.view.get_selection().select_path ((0,))
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def add(self):
-+        target=self.loginsNameEntry.get_text().strip()
-+        serange=self.loginsMLSEntry.get_text().strip()
-+        if serange == "":
-+            serange="s0"
-+        list_model=self.loginsSelinuxUserCombo.get_model()
-+        iter = self.loginsSelinuxUserCombo.get_active_iter()
-+        seuser = list_model.get_value(iter,0)
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage login -a -s %s -r %s %s" % (seuser, serange, target))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        
-+        iter = self.store.append()
-+        self.store.set_value(iter, 0, target)
-+        self.store.set_value(iter, 1, seuser)
-+        self.store.set_value(iter, 2, seobject.translate(serange))
-+        
-+    def modify(self):
-+        target=self.loginsNameEntry.get_text().strip()
-+        serange=self.loginsMLSEntry.get_text().strip()
-+        if serange == "":
-+            serange = "s0"
-+        list_model = self.loginsSelinuxUserCombo.get_model()
-+        iter = self.loginsSelinuxUserCombo.get_active_iter()
-+        seuser=list_model.get_value(iter,0)
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage login -m -s %s -r %s %s" % (seuser, serange, target))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        
-+        store, iter = self.view.get_selection().get_selected()
-+        self.store.set_value(iter, 0, target)
-+        self.store.set_value(iter, 1, seuser)
-+        self.store.set_value(iter, 2, seobject.translate(serange))
-+
-diff -up policycoreutils-2.1.8/gui/Makefile.gui policycoreutils-2.1.8/gui/Makefile
---- policycoreutils-2.1.8/gui/Makefile.gui     2011-11-07 15:12:01.898834228 -0500
-+++ policycoreutils-2.1.8/gui/Makefile 2011-11-07 15:12:01.898834228 -0500
-@@ -0,0 +1,40 @@
-+# Installation directories.
-+PREFIX ?= ${DESTDIR}/usr
-+BINDIR ?= $(PREFIX)/bin
-+SHAREDIR ?= $(PREFIX)/share/system-config-selinux
-+
-+TARGETS= \
-+booleansPage.py \
-+domainsPage.py \
-+fcontextPage.py \
-+html_util.py \
-+loginsPage.py \
-+mappingsPage.py \
-+modulesPage.py \
-+polgen.glade \
-+portsPage.py \
-+lockdown.glade \
-+semanagePage.py \
-+statusPage.py \
-+system-config-selinux.glade \
-+usersPage.py \
-+selinux.tbl
-+
-+all: $(TARGETS) system-config-selinux.py polgengui.py templates lockdown.py polgen.py 
-+
-+install: all
-+      -mkdir -p $(SHAREDIR)/templates
-+      -mkdir -p $(BINDIR)
-+      install -m 755 system-config-selinux.py $(SHAREDIR)
-+      install -m 755 polgengui.py $(SHAREDIR)
-+      install -m 755 polgen.py $(SHAREDIR)
-+      (cd $(BINDIR);  ln -fs ../share/system-config-selinux/polgen.py sepolgen)
-+      install -m 755 lockdown.py $(SHAREDIR)
-+      install -m 644 $(TARGETS) $(SHAREDIR)
-+      install -m 644 templates/*.py $(SHAREDIR)/templates/
-+
-+clean:
-+
-+indent:
-+
-+relabel:
-diff -up policycoreutils-2.1.8/gui/mappingsPage.py.gui policycoreutils-2.1.8/gui/mappingsPage.py
---- policycoreutils-2.1.8/gui/mappingsPage.py.gui      2011-11-07 15:12:01.899834229 -0500
-+++ policycoreutils-2.1.8/gui/mappingsPage.py  2011-11-07 15:12:01.899834229 -0500
-@@ -0,0 +1,56 @@
-+## mappingsPage.py - show selinux mappings
-+## Copyright (C) 2006 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import seobject
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class loginsPage:
-+    def __init__(self, xml):
-+        self.xml = xml
-+        self.view = xml.get_widget("mappingsView")
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        self.view.set_model(self.store)
-+        self.login = loginRecords()
-+        dict = self.login.get_all(0)
-+        keys = dict.keys()
-+        keys.sort()
-+        for k in keys:
-+            print "%-25s %-25s %-25s" % (k, dict[k][0], translate(dict[k][1]))
-+
-diff -up policycoreutils-2.1.8/gui/modulesPage.py.gui policycoreutils-2.1.8/gui/modulesPage.py
---- policycoreutils-2.1.8/gui/modulesPage.py.gui       2011-11-07 15:12:01.899834229 -0500
-+++ policycoreutils-2.1.8/gui/modulesPage.py   2011-11-07 15:12:01.899834229 -0500
-@@ -0,0 +1,190 @@
-+## modulesPage.py - show selinux mappings
-+## Copyright (C) 2006-2009 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import commands
-+import gobject
-+import sys
-+import seobject
-+import selinux
-+from semanagePage import *;
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class modulesPage(semanagePage):
-+    def __init__(self, xml):
-+        semanagePage.__init__(self, xml, "modules", _("Policy Module"))
-+        self.module_filter = xml.get_widget("modulesFilterEntry")
-+        self.module_filter.connect("focus_out_event", self.filter_changed)
-+        self.module_filter.connect("activate", self.filter_changed)
-+        self.audit_enabled = False
-+
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Module Name"), gtk.CellRendererText(), text = 0)
-+        col.set_sort_column_id(0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
-+        col = gtk.TreeViewColumn(_("Version"), gtk.CellRendererText(), text = 1)
-+        self.enable_audit_button = xml.get_widget("enableAuditButton")
-+        self.enable_audit_button.connect("clicked", self.enable_audit)
-+        self.new_button = xml.get_widget("newModuleButton")
-+        self.new_button.connect("clicked", self.new_module)
-+        col.set_sort_column_id(1)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.store.set_sort_func(1,self.sort_int, "")
-+        status, self.policy_type = selinux.selinux_getpolicytype()
-+
-+        self.load()
-+        
-+    def sort_int(self, treemodel, iter1, iter2, user_data):
-+        try:
-+            p1 = int(treemodel.get_value(iter1,1))
-+            p2 = int(treemodel.get_value(iter1,1))
-+            if p1 > p2:
-+                return 1
-+            if p1 == p2:
-+                return 0
-+            return -1
-+        except:
-+            return 0
-+
-+    def load(self, filter=""):
-+        self.filter=filter            
-+        self.store.clear()
-+        try:
-+            fd=os.popen("semodule -l")
-+            l = fd.readlines()
-+            fd.close()
-+            for i in l:
-+                module, ver, newline = i.split('\t')
-+                if not (self.match(module, filter) or self.match(ver, filter)):
-+                    continue
-+                iter = self.store.append()
-+                self.store.set_value(iter, 0, module.strip())
-+                self.store.set_value(iter, 1, ver.strip())
-+        except:
-+            pass
-+        self.view.get_selection().select_path ((0,))
-+    
-+
-+    def new_module(self, args):
-+        try:
-+            os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/polgengui.py")
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def delete(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        module = store.get_value(iter, 0)
-+        try:
-+            self.wait()
-+            status, output = commands.getstatusoutput("semodule -r %s" % module)
-+            self.ready()
-+            if status != 0:
-+                self.error(output)
-+            else:
-+                store.remove(iter)
-+                self.view.get_selection().select_path ((0,))
-+                
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def enable_audit(self, button):
-+        self.audit_enabled = not self.audit_enabled 
-+        try:
-+            self.wait()
-+            if self.audit_enabled:
-+                status, output =commands.getstatusoutput("semodule -DB")
-+                button.set_label(_("Disable Audit"))
-+            else:
-+                status, output =commands.getstatusoutput("semodule -B")
-+                button.set_label(_("Enable Audit"))
-+            self.ready()
-+
-+            if status != 0:
-+                self.error(output)
-+
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def disable_audit(self, button):
-+        try:
-+            self.wait()
-+            status, output =commands.getstatusoutput("semodule -B")
-+            self.ready()
-+            if status != 0:
-+                self.error(output)
-+
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def propertiesDialog(self):
-+        # Do nothing
-+        return
-+    
-+    def addDialog(self):
-+        dialog = gtk.FileChooserDialog(_("Load Policy Module"),
-+                                       None,
-+                                       gtk.FILE_CHOOSER_ACTION_OPEN,
-+                                       (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
-+                                        gtk.STOCK_OPEN, gtk.RESPONSE_OK))
-+        dialog.set_default_response(gtk.RESPONSE_OK)
-+
-+        filter = gtk.FileFilter()
-+        filter.set_name("Policy Files")
-+        filter.add_pattern("*.pp")
-+        dialog.add_filter(filter)
-+
-+        response = dialog.run()
-+        if response == gtk.RESPONSE_OK:
-+            self.add(dialog.get_filename())
-+        dialog.destroy()
-+
-+    def add(self, file):
-+        try:
-+            self.wait()
-+            status, output =commands.getstatusoutput("semodule -i %s" % file)
-+            self.ready()
-+            if status != 0:
-+                self.error(output)
-+            else:
-+                self.load()
-+                
-+        except ValueError, e:
-+            self.error(e.args[0])
-diff -up policycoreutils-2.1.8/gui/polgen.glade.gui policycoreutils-2.1.8/gui/polgen.glade
---- policycoreutils-2.1.8/gui/polgen.glade.gui 2011-11-07 15:12:01.902834231 -0500
-+++ policycoreutils-2.1.8/gui/polgen.glade     2011-11-07 15:12:01.903834231 -0500
-@@ -0,0 +1,3432 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
-+
-+<glade-interface>
-+<requires lib="gnome"/>
-+
-+<widget class="GtkFileChooserDialog" id="filechooserdialog">
-+  <property name="border_width">5</property>
-+  <property name="action">GTK_FILE_CHOOSER_ACTION_OPEN</property>
-+  <property name="local_only">True</property>
-+  <property name="select_multiple">True</property>
-+  <property name="show_hidden">True</property>
-+  <property name="do_overwrite_confirmation">False</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_MOUSE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="dialog-vbox1">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">24</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="dialog-action_area1">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="button5">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="button6">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="has_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-add</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GtkAboutDialog" id="about_dialog">
-+  <property name="border_width">5</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="name" translatable="yes">Polgen</property>
-+  <property name="copyright" translatable="yes">Red Hat 2007</property>
-+  <property name="license" translatable="yes">GPL</property>
-+  <property name="wrap_license">False</property>
-+  <property name="website">www.redhat.com</property>
-+  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;</property>
-+  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
-+</widget>
-+
-+<widget class="GtkWindow" id="main_window">
-+  <property name="visible">True</property>
-+  <property name="title" translatable="yes">SELinux Policy Generation Tool</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+
-+  <child>
-+    <widget class="GtkVBox" id="vbox11">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">18</property>
-+
-+      <child>
-+      <widget class="GtkNotebook" id="notebook">
-+        <property name="visible">True</property>
-+        <property name="show_tabs">False</property>
-+        <property name="show_border">True</property>
-+        <property name="tab_pos">GTK_POS_LEFT</property>
-+        <property name="scrollable">False</property>
-+        <property name="enable_popup">False</property>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox59">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_type_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select the policy type for the application or user role you want to confine:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox58">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkVBox" id="vbox14">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkHBox" id="hbox16">
-+                        <property name="visible">True</property>
-+                        <property name="homogeneous">False</property>
-+                        <property name="spacing">12</property>
-+
-+                        <child>
-+                          <widget class="GtkVBox" id="vbox18">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">6</property>
-+
-+                            <child>
-+                              <widget class="GtkLabel" id="label41">
-+                                <property name="visible">True</property>
-+                                <property name="label" translatable="yes">&lt;b&gt;Applications&lt;/b&gt;</property>
-+                                <property name="use_underline">False</property>
-+                                <property name="use_markup">True</property>
-+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                <property name="wrap">False</property>
-+                                <property name="selectable">False</property>
-+                                <property name="xalign">0</property>
-+                                <property name="yalign">0.5</property>
-+                                <property name="xpad">0</property>
-+                                <property name="ypad">0</property>
-+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                <property name="width_chars">-1</property>
-+                                <property name="single_line_mode">False</property>
-+                                <property name="angle">0</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox17">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">0</property>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label52">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">    </property>
-+                                    <property name="use_underline">False</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkVBox" id="vbox6">
-+                                    <property name="visible">True</property>
-+                                    <property name="homogeneous">False</property>
-+                                    <property name="spacing">6</property>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="init_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Standard Init Daemon are daemons started on boot via init scripts.  Usually requires a script in /etc/rc.d/init.d</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Standard Init Daemon</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="dbus_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Standard Init Daemon are daemons started on boot via init scripts.  Usually requires a script in /etc/rc.d/init.d</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">DBUS System Daemon</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="inetd_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Internet Services Daemon are daemons started by xinetd</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Internet Services Daemon (inetd)</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="cgi_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Web Applications/Script (CGI) CGI scripts started by the web server (apache)</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Web Application/Script (CGI)</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">User Application are any application that you would like to confine that is started by a user</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">User Application</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="sandbox_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">User Application are any application that you would like to confine that is started by a user</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Sandbox</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkVBox" id="vbox19">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">6</property>
-+
-+                            <child>
-+                              <widget class="GtkLabel" id="label42">
-+                                <property name="visible">True</property>
-+                                <property name="label" translatable="yes">&lt;b&gt;Login Users&lt;/b&gt;</property>
-+                                <property name="use_underline">False</property>
-+                                <property name="use_markup">True</property>
-+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                <property name="wrap">False</property>
-+                                <property name="selectable">False</property>
-+                                <property name="xalign">0</property>
-+                                <property name="yalign">0.5</property>
-+                                <property name="xpad">0</property>
-+                                <property name="ypad">0</property>
-+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                <property name="width_chars">-1</property>
-+                                <property name="single_line_mode">False</property>
-+                                <property name="angle">0</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox18">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">0</property>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label53">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">    </property>
-+                                    <property name="use_underline">False</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkVBox" id="vbox15">
-+                                    <property name="visible">True</property>
-+                                    <property name="homogeneous">False</property>
-+                                    <property name="spacing">6</property>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="existing_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Modify an existing login user record.</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Existing User Roles</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="terminal_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">This user will login to a machine only via a terminal or remote login.  By default this user will have  no setuid, no networking, no su, no sudo.</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Minimal Terminal User Role</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="xwindows_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">This user can login to a machine via X or terminal.  By default this user will have no setuid, no networking, no sudo, no su</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Minimal X Windows User Role</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="login_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">User with full networking, no setuid applications without transition, no sudo, no su.</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">User Role</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="admin_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">User with full networking, no setuid applications without transition, no su, can sudo to Root Administration Roles</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Admin User Role</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">True</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkVBox" id="vbox20">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">6</property>
-+
-+                            <child>
-+                              <widget class="GtkLabel" id="label50">
-+                                <property name="visible">True</property>
-+                                <property name="label" translatable="yes">&lt;b&gt;Root Users&lt;/b&gt;</property>
-+                                <property name="use_underline">False</property>
-+                                <property name="use_markup">True</property>
-+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                <property name="wrap">False</property>
-+                                <property name="selectable">False</property>
-+                                <property name="xalign">0</property>
-+                                <property name="yalign">0.5</property>
-+                                <property name="xpad">0</property>
-+                                <property name="ypad">0</property>
-+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                <property name="width_chars">-1</property>
-+                                <property name="single_line_mode">False</property>
-+                                <property name="angle">0</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox19">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">0</property>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label54">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">    </property>
-+                                    <property name="use_underline">False</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkVBox" id="vbox21">
-+                                    <property name="visible">True</property>
-+                                    <property name="homogeneous">False</property>
-+                                    <property name="spacing">0</property>
-+
-+                                    <child>
-+                                      <widget class="GtkRadioButton" id="root_user_radiobutton">
-+                                        <property name="visible">True</property>
-+                                        <property name="tooltip" translatable="yes">Select Root Administrator User Role, if this user will be used to administer the machine while running as root.  This user will not be able to login to the system directly.</property>
-+                                        <property name="can_focus">True</property>
-+                                        <property name="label" translatable="yes">Root Admin User Role</property>
-+                                        <property name="use_underline">True</property>
-+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                        <property name="focus_on_click">True</property>
-+                                        <property name="active">False</property>
-+                                        <property name="inconsistent">False</property>
-+                                        <property name="draw_indicator">True</property>
-+                                        <property name="group">init_radiobutton</property>
-+                                      </widget>
-+                                      <packing>
-+                                        <property name="padding">0</property>
-+                                        <property name="expand">False</property>
-+                                        <property name="fill">False</property>
-+                                      </packing>
-+                                    </child>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">True</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label104">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label104</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox60">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_name_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Enter name of application or user role:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkTable" id="table5">
-+                <property name="visible">True</property>
-+                <property name="n_rows">3</property>
-+                <property name="n_columns">3</property>
-+                <property name="homogeneous">False</property>
-+                <property name="row_spacing">6</property>
-+                <property name="column_spacing">12</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label1">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">Name</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">False</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">0</property>
-+                    <property name="right_attach">1</property>
-+                    <property name="top_attach">0</property>
-+                    <property name="bottom_attach">1</property>
-+                    <property name="x_options">fill</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkEntry" id="exec_entry">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Enter complete path for executable to be confined.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="editable">True</property>
-+                    <property name="visibility">True</property>
-+                    <property name="max_length">0</property>
-+                    <property name="text" translatable="yes"></property>
-+                    <property name="has_frame">True</property>
-+                    <property name="invisible_char">•</property>
-+                    <property name="activates_default">False</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">1</property>
-+                    <property name="right_attach">2</property>
-+                    <property name="top_attach">1</property>
-+                    <property name="bottom_attach">2</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkButton" id="exec_button">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">...</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <signal name="clicked" handler="on_exec_select_clicked" last_modification_time="Wed, 21 Feb 2007 18:45:26 GMT"/>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">2</property>
-+                    <property name="right_attach">3</property>
-+                    <property name="top_attach">1</property>
-+                    <property name="bottom_attach">2</property>
-+                    <property name="x_options">fill</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkEntry" id="name_entry">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Enter unique name for the confined application or user role.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="editable">True</property>
-+                    <property name="visibility">True</property>
-+                    <property name="max_length">0</property>
-+                    <property name="text" translatable="yes"></property>
-+                    <property name="has_frame">True</property>
-+                    <property name="invisible_char">•</property>
-+                    <property name="activates_default">False</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">1</property>
-+                    <property name="right_attach">3</property>
-+                    <property name="top_attach">0</property>
-+                    <property name="bottom_attach">1</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label2">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">Executable</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">False</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">0</property>
-+                    <property name="right_attach">1</property>
-+                    <property name="top_attach">1</property>
-+                    <property name="bottom_attach">2</property>
-+                    <property name="x_options">fill</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label40">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">Init script</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">False</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">0</property>
-+                    <property name="right_attach">1</property>
-+                    <property name="top_attach">2</property>
-+                    <property name="bottom_attach">3</property>
-+                    <property name="x_options">fill</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkEntry" id="init_script_entry">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Enter complete path to init script used to start the confined application.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="editable">True</property>
-+                    <property name="visibility">True</property>
-+                    <property name="max_length">0</property>
-+                    <property name="text" translatable="yes"></property>
-+                    <property name="has_frame">True</property>
-+                    <property name="invisible_char">•</property>
-+                    <property name="activates_default">False</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">1</property>
-+                    <property name="right_attach">2</property>
-+                    <property name="top_attach">2</property>
-+                    <property name="bottom_attach">3</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkButton" id="init_script_button">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">...</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <signal name="clicked" handler="on_init_script_select_clicked" last_modification_time="Thu, 30 Aug 2007 15:36:47 GMT"/>
-+                  </widget>
-+                  <packing>
-+                    <property name="left_attach">2</property>
-+                    <property name="right_attach">3</property>
-+                    <property name="top_attach">2</property>
-+                    <property name="bottom_attach">3</property>
-+                    <property name="x_options">fill</property>
-+                    <property name="y_options"></property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="select_name_label">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label105</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox61">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_existing_role_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select existing role to modify:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkScrolledWindow" id="scrolledwindow5">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                <property name="shadow_type">GTK_SHADOW_IN</property>
-+                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="existing_user_treeview">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select the user roles that will transiton to the %s domain.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label106">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label106</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox62">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select roles that %s will transition to:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkScrolledWindow" id="scrolledwindow12">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="transition_treeview">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select applications domains that %s will transition to.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label107">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label107</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox63">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_user_roles_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select the user_roles that will transition to %s:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkScrolledWindow" id="scrolledwindow13">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="user_transition_treeview">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select the user roles that will transiton to this applications domains.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label108">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label108</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox64">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_domain_admin_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select domains that %s will administer:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkScrolledWindow" id="scrolledwindow14">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="admin_treeview">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select the domains that you would like this user administer.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label109">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label109</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox65">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_role_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select additional roles for %s:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkScrolledWindow" id="scrolledwindow15">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="role_treeview">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select the domains that you would like this user administer.</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="in_net_page">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label111</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="in_net_page">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_in_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Enter network ports that %s binds on:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox22">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">6</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label55">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">&lt;b&gt;TCP Ports&lt;/b&gt;</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">True</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox20">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label56">
-+                        <property name="visible">True</property>
-+                        <property name="label">    </property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkVBox" id="vbox23">
-+                        <property name="visible">True</property>
-+                        <property name="homogeneous">False</property>
-+                        <property name="spacing">6</property>
-+
-+                        <child>
-+                          <widget class="GtkHBox" id="hbox21">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">12</property>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_tcp_all_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp port</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">All</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_tcp_reserved_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allow %s to call bindresvport with 0. Binding to port 600-1024</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">600-1024</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_tcp_unreserved_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s binds to. Example: 612, 650-660</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">Unreserved Ports (&gt;1024)</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkHBox" id="hbox22">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">12</property>
-+
-+                            <child>
-+                              <widget class="GtkLabel" id="label57">
-+                                <property name="visible">True</property>
-+                                <property name="label" translatable="yes">Select Ports</property>
-+                                <property name="use_underline">False</property>
-+                                <property name="use_markup">False</property>
-+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                <property name="wrap">False</property>
-+                                <property name="selectable">False</property>
-+                                <property name="xalign">0</property>
-+                                <property name="yalign">0.5</property>
-+                                <property name="xpad">0</property>
-+                                <property name="ypad">0</property>
-+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                <property name="width_chars">-1</property>
-+                                <property name="single_line_mode">False</property>
-+                                <property name="angle">0</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">5</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkEntry" id="in_tcp_entry">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp ports &gt; 1024</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="editable">True</property>
-+                                <property name="visibility">True</property>
-+                                <property name="max_length">0</property>
-+                                <property name="text" translatable="yes"></property>
-+                                <property name="has_frame">True</property>
-+                                <property name="invisible_char">•</property>
-+                                <property name="activates_default">False</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox24">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">6</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label58">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">&lt;b&gt;UDP Ports&lt;/b&gt;</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">True</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox23">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label59">
-+                        <property name="visible">True</property>
-+                        <property name="label">    </property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkVBox" id="vbox25">
-+                        <property name="visible">True</property>
-+                        <property name="homogeneous">False</property>
-+                        <property name="spacing">6</property>
-+
-+                        <child>
-+                          <widget class="GtkHBox" id="hbox24">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">12</property>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_udp_all_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp port</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">All</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_udp_reserved_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allow %s to call bindresvport with 0. Binding to port 600-1024</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">600-1024</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkCheckButton" id="in_udp_unreserved_checkbutton">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s binds to. Example: 612, 650-660</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="label" translatable="yes">Unreserved Ports (&gt;1024)</property>
-+                                <property name="use_underline">True</property>
-+                                <property name="relief">GTK_RELIEF_NORMAL</property>
-+                                <property name="focus_on_click">True</property>
-+                                <property name="active">False</property>
-+                                <property name="inconsistent">False</property>
-+                                <property name="draw_indicator">True</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">10</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkHBox" id="hbox25">
-+                            <property name="visible">True</property>
-+                            <property name="homogeneous">False</property>
-+                            <property name="spacing">12</property>
-+
-+                            <child>
-+                              <widget class="GtkLabel" id="label60">
-+                                <property name="visible">True</property>
-+                                <property name="label" translatable="yes">Select Ports</property>
-+                                <property name="use_underline">False</property>
-+                                <property name="use_markup">False</property>
-+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                <property name="wrap">False</property>
-+                                <property name="selectable">False</property>
-+                                <property name="xalign">0</property>
-+                                <property name="yalign">0.5</property>
-+                                <property name="xpad">0</property>
-+                                <property name="ypad">0</property>
-+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                <property name="width_chars">-1</property>
-+                                <property name="single_line_mode">False</property>
-+                                <property name="angle">0</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">5</property>
-+                                <property name="expand">False</property>
-+                                <property name="fill">False</property>
-+                              </packing>
-+                            </child>
-+
-+                            <child>
-+                              <widget class="GtkEntry" id="in_udp_entry">
-+                                <property name="visible">True</property>
-+                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp ports &gt; 1024</property>
-+                                <property name="can_focus">True</property>
-+                                <property name="editable">True</property>
-+                                <property name="visibility">True</property>
-+                                <property name="max_length">0</property>
-+                                <property name="text" translatable="yes"></property>
-+                                <property name="has_frame">True</property>
-+                                <property name="invisible_char">•</property>
-+                                <property name="activates_default">False</property>
-+                              </widget>
-+                              <packing>
-+                                <property name="padding">0</property>
-+                                <property name="expand">True</property>
-+                                <property name="fill">True</property>
-+                              </packing>
-+                            </child>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label113">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label113</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox75">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_out_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select network ports that %s connects to:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox26">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">6</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label37">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">&lt;b&gt;TCP Ports&lt;/b&gt;</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">True</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox26">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label61">
-+                        <property name="visible">True</property>
-+                        <property name="label">    </property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkHBox" id="hbox15">
-+                        <property name="visible">True</property>
-+                        <property name="homogeneous">False</property>
-+                        <property name="spacing">12</property>
-+
-+                        <child>
-+                          <widget class="GtkCheckButton" id="out_tcp_all_checkbutton">
-+                            <property name="tooltip" translatable="yes">Allows %s to connect to any tcp port</property>
-+                            <property name="visible">True</property>
-+                            <property name="can_focus">True</property>
-+                            <property name="label" translatable="yes">All</property>
-+                            <property name="use_underline">True</property>
-+                            <property name="relief">GTK_RELIEF_NORMAL</property>
-+                            <property name="focus_on_click">True</property>
-+                            <property name="active">False</property>
-+                            <property name="inconsistent">False</property>
-+                            <property name="draw_indicator">True</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">10</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">False</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkLabel" id="label38">
-+                            <property name="visible">True</property>
-+                            <property name="label" translatable="yes">Select Ports</property>
-+                            <property name="use_underline">False</property>
-+                            <property name="use_markup">False</property>
-+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                            <property name="wrap">False</property>
-+                            <property name="selectable">False</property>
-+                            <property name="xalign">0</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                            <property name="width_chars">-1</property>
-+                            <property name="single_line_mode">False</property>
-+                            <property name="angle">0</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">5</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">False</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkEntry" id="out_tcp_entry">
-+                            <property name="visible">True</property>
-+                            <property name="tooltip" translatable="yes">Enter a comma separated list of tcp ports or ranges of ports that %s connects to. Example: 612, 650-660</property>
-+                            <property name="can_focus">True</property>
-+                            <property name="editable">True</property>
-+                            <property name="visibility">True</property>
-+                            <property name="max_length">0</property>
-+                            <property name="text" translatable="yes"></property>
-+                            <property name="has_frame">True</property>
-+                            <property name="invisible_char">•</property>
-+                            <property name="activates_default">False</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox27">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">6</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label23">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">&lt;b&gt;UDP Ports&lt;/b&gt;</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">True</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox27">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label62">
-+                        <property name="visible">True</property>
-+                        <property name="label">    </property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkHBox" id="hbox12">
-+                        <property name="visible">True</property>
-+                        <property name="homogeneous">False</property>
-+                        <property name="spacing">12</property>
-+
-+                        <child>
-+                          <widget class="GtkCheckButton" id="out_udp_all_checkbutton">
-+                            <property name="tooltip" translatable="yes">Allows %s to connect to any udp port</property>
-+                            <property name="visible">True</property>
-+                            <property name="can_focus">True</property>
-+                            <property name="label" translatable="yes">All</property>
-+                            <property name="use_underline">True</property>
-+                            <property name="relief">GTK_RELIEF_NORMAL</property>
-+                            <property name="focus_on_click">True</property>
-+                            <property name="active">False</property>
-+                            <property name="inconsistent">False</property>
-+                            <property name="draw_indicator">True</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">10</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">False</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkLabel" id="label22">
-+                            <property name="visible">True</property>
-+                            <property name="label" translatable="yes">Select Ports</property>
-+                            <property name="use_underline">False</property>
-+                            <property name="use_markup">False</property>
-+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                            <property name="wrap">False</property>
-+                            <property name="selectable">False</property>
-+                            <property name="xalign">0</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                            <property name="width_chars">-1</property>
-+                            <property name="single_line_mode">False</property>
-+                            <property name="angle">0</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">5</property>
-+                            <property name="expand">False</property>
-+                            <property name="fill">False</property>
-+                          </packing>
-+                        </child>
-+
-+                        <child>
-+                          <widget class="GtkEntry" id="out_udp_entry">
-+                            <property name="visible">True</property>
-+                            <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s connects to. Example: 612, 650-660</property>
-+                            <property name="can_focus">True</property>
-+                            <property name="editable">True</property>
-+                            <property name="visibility">True</property>
-+                            <property name="max_length">0</property>
-+                            <property name="text" translatable="yes"></property>
-+                            <property name="has_frame">True</property>
-+                            <property name="invisible_char">•</property>
-+                            <property name="activates_default">False</property>
-+                          </widget>
-+                          <packing>
-+                            <property name="padding">0</property>
-+                            <property name="expand">True</property>
-+                            <property name="fill">True</property>
-+                          </packing>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label114">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label114</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox68">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_common_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select common application traits for %s:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox4">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">6</property>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="syslog_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Writes syslog messages  </property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="tmp_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Create/Manipulate temporary files in /tmp</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="pam_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Uses Pam for authentication</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="uid_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Uses nsswitch or getpw* calls</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="dbus_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Uses dbus</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="audit_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Sends audit messages</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="terminal_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Interacts with the terminal</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkCheckButton" id="mail_checkbutton">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">Sends email</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                    <property name="active">False</property>
-+                    <property name="inconsistent">False</property>
-+                    <property name="draw_indicator">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label115">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label115</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox69">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_manages_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Add files/directories that %s manages&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkHBox" id="hbox1">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">12</property>
-+
-+                <child>
-+                  <widget class="GtkVBox" id="vbox3">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">6</property>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button2">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Wed, 21 Feb 2007 18:47:51 GMT"/>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment6">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox4">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image3">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-add</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label17">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">Add File</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button9">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_add_dir_clicked" last_modification_time="Wed, 21 Feb 2007 22:15:43 GMT"/>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment5">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox3">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image2">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-add</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label16">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">Add Directory</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button4">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-delete</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Wed, 21 Feb 2007 18:48:10 GMT"/>
-+                        <accelerator key="Delete" modifiers="0" signal="clicked"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">4</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow2">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                    <property name="shadow_type">GTK_SHADOW_IN</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="write_treeview">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Files/Directories which the %s &quot;manages&quot;. Pid Files, Log Files, /var/lib Files ...</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">False</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label116">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">label116</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox70">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_booleans_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Add booleans from the %s policy:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">5</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkHBox" id="hbox1">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">12</property>
-+
-+                <child>
-+                  <widget class="GtkVBox" id="vbox3">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">6</property>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button2">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_add_boolean_clicked" last_modification_time="Wed, 17 Oct 2007 00:02:27 GMT"/>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment6">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox4">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image3">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-add</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label17">
-+                                    <property name="visible">True</property>
-+                                    <property name="label">Add Boolean</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkButton" id="button4">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="label">gtk-delete</property>
-+                        <property name="use_stock">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <signal name="clicked" handler="on_delete_boolean_clicked" last_modification_time="Wed, 17 Oct 2007 00:02:39 GMT"/>
-+                        <accelerator key="Delete" modifiers="0" signal="clicked"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">4</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow2">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-+                    <property name="shadow_type">GTK_SHADOW_IN</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="boolean_treeview">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Add/Remove booleans used by the %s domain</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">True</property>
-+                <property name="fill">True</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="GtkLabel">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes"></property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkVBox" id="vbox71">
-+            <property name="visible">True</property>
-+            <property name="homogeneous">False</property>
-+            <property name="spacing">0</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="select_dir_label">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Which directory you will generate the %s policy?&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="padding">0</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkHBox" id="hbox6">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">12</property>
-+
-+                <child>
-+                  <widget class="GtkLabel" id="label18">
-+                    <property name="visible">True</property>
-+                    <property name="label" translatable="yes">Policy Directory</property>
-+                    <property name="use_underline">False</property>
-+                    <property name="use_markup">False</property>
-+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                    <property name="wrap">False</property>
-+                    <property name="selectable">False</property>
-+                    <property name="xalign">0.5</property>
-+                    <property name="yalign">0.5</property>
-+                    <property name="xpad">0</property>
-+                    <property name="ypad">0</property>
-+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                    <property name="width_chars">-1</property>
-+                    <property name="single_line_mode">False</property>
-+                    <property name="angle">0</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkEntry" id="output_entry">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="editable">True</property>
-+                    <property name="visibility">True</property>
-+                    <property name="max_length">0</property>
-+                    <property name="text" translatable="yes"></property>
-+                    <property name="has_frame">True</property>
-+                    <property name="invisible_char">•</property>
-+                    <property name="activates_default">False</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkButton" id="output_button">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="label" translatable="yes">...</property>
-+                    <property name="use_underline">True</property>
-+                    <property name="relief">GTK_RELIEF_NORMAL</property>
-+                    <property name="focus_on_click">True</property>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="padding">12</property>
-+                <property name="expand">False</property>
-+                <property name="fill">False</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="tab_expand">False</property>
-+            <property name="tab_fill">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="GtkLabel">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes"></property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0.5</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="type">tab</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkHButtonBox" id="hbuttonbox2">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+        <property name="spacing">0</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="cancel_button">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <signal name="activate" handler="on_cancel_activate" last_modification_time="Wed, 02 Feb 2011 21:21:29 GMT"/>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="back_button">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-go-back</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <signal name="activate" handler="on_back_activate" last_modification_time="Wed, 02 Feb 2011 21:22:00 GMT"/>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="forward_button">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-media-forward</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <signal name="activate" handler="on_forward_activate" last_modification_time="Wed, 02 Feb 2011 21:22:32 GMT"/>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">5</property>
-+        <property name="expand">False</property>
-+        <property name="fill">False</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GtkDialog" id="boolean_dialog">
-+  <property name="border_width">12</property>
-+  <property name="title" translatable="yes">Add Booleans Dialog</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_MOUSE</property>
-+  <property name="modal">False</property>
-+  <property name="default_width">400</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="has_separator">False</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="dialog-vbox2">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">6</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="dialog-action_area2">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="cancelbutton1">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="okbutton1">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-add</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkTable" id="table6">
-+        <property name="visible">True</property>
-+        <property name="n_rows">2</property>
-+        <property name="n_columns">2</property>
-+        <property name="homogeneous">False</property>
-+        <property name="row_spacing">6</property>
-+        <property name="column_spacing">12</property>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label48">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">Boolean Name</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="left_attach">0</property>
-+            <property name="right_attach">1</property>
-+            <property name="top_attach">0</property>
-+            <property name="bottom_attach">1</property>
-+            <property name="x_options">fill</property>
-+            <property name="y_options"></property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkLabel" id="label49">
-+            <property name="visible">True</property>
-+            <property name="label" translatable="yes">Description</property>
-+            <property name="use_underline">False</property>
-+            <property name="use_markup">False</property>
-+            <property name="justify">GTK_JUSTIFY_LEFT</property>
-+            <property name="wrap">False</property>
-+            <property name="selectable">False</property>
-+            <property name="xalign">0</property>
-+            <property name="yalign">0.5</property>
-+            <property name="xpad">0</property>
-+            <property name="ypad">0</property>
-+            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+            <property name="width_chars">-1</property>
-+            <property name="single_line_mode">False</property>
-+            <property name="angle">0</property>
-+          </widget>
-+          <packing>
-+            <property name="left_attach">0</property>
-+            <property name="right_attach">1</property>
-+            <property name="top_attach">1</property>
-+            <property name="bottom_attach">2</property>
-+            <property name="x_options">fill</property>
-+            <property name="y_options"></property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkEntry" id="boolean_name_entry">
-+            <property name="visible">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="editable">True</property>
-+            <property name="visibility">True</property>
-+            <property name="max_length">0</property>
-+            <property name="text" translatable="yes"></property>
-+            <property name="has_frame">True</property>
-+            <property name="invisible_char">•</property>
-+            <property name="activates_default">False</property>
-+          </widget>
-+          <packing>
-+            <property name="left_attach">1</property>
-+            <property name="right_attach">2</property>
-+            <property name="top_attach">0</property>
-+            <property name="bottom_attach">1</property>
-+            <property name="y_options"></property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkEntry" id="boolean_description_entry">
-+            <property name="visible">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="editable">True</property>
-+            <property name="visibility">True</property>
-+            <property name="max_length">0</property>
-+            <property name="text" translatable="yes"></property>
-+            <property name="has_frame">True</property>
-+            <property name="invisible_char">•</property>
-+            <property name="activates_default">False</property>
-+          </widget>
-+          <packing>
-+            <property name="left_attach">1</property>
-+            <property name="right_attach">2</property>
-+            <property name="top_attach">1</property>
-+            <property name="bottom_attach">2</property>
-+            <property name="y_options"></property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+</glade-interface>
-diff -up policycoreutils-2.1.8/gui/polgen.gladep.gui policycoreutils-2.1.8/gui/polgen.gladep
---- policycoreutils-2.1.8/gui/polgen.gladep.gui        2011-11-07 15:12:01.903834231 -0500
-+++ policycoreutils-2.1.8/gui/polgen.gladep    2011-11-07 15:12:01.903834231 -0500
-@@ -0,0 +1,7 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd">
-+
-+<glade-project>
-+  <name></name>
-+  <program_name></program_name>
-+</glade-project>
-diff -up policycoreutils-2.1.8/gui/polgengui.py.gui policycoreutils-2.1.8/gui/polgengui.py
---- policycoreutils-2.1.8/gui/polgengui.py.gui 2011-11-07 15:12:01.904834232 -0500
-+++ policycoreutils-2.1.8/gui/polgengui.py     2011-11-07 15:12:01.904834232 -0500
-@@ -0,0 +1,750 @@
-+#!/usr/bin/python -Es
-+#
-+# polgengui.py - GUI for SELinux Config tool in system-config-selinux
-+#
-+# Dan Walsh <dwalsh@redhat.com>
-+#
-+# Copyright (C) 2007-2011 Red Hat 
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+import signal
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import gnome
-+import sys
-+import polgen
-+import re
-+
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+gnome.program_init("SELinux Policy Generation Tool", "5")
-+
-+version = "1.0"
-+
-+sys.path.append('/usr/share/system-config-selinux')
-+sys.path.append('.')
-+
-+# From John Hunter http://www.daa.com.au/pipermail/pygtk/2003-February/004454.html
-+def foreach(model, path, iter, selected):
-+    selected.append(model.get_value(iter, 0))
-+
-+##
-+## Pull in the Glade file
-+##
-+if os.access("polgen.glade", os.F_OK):
-+    xml = gtk.glade.XML ("polgen.glade", domain=PROGNAME)
-+else:
-+    xml = gtk.glade.XML ("/usr/share/system-config-selinux/polgen.glade", domain=PROGNAME)
-+
-+FILE = 1
-+DIR = 2
-+
-+class childWindow:
-+    START_PAGE = 0
-+    SELECT_TYPE_PAGE = 0
-+    APP_PAGE = 1
-+    EXISTING_USER_PAGE = 2
-+    TRANSITION_PAGE = 3
-+    USER_TRANSITION_PAGE = 4
-+    ADMIN_PAGE = 5
-+    ROLE_PAGE = 6
-+    IN_NET_PAGE = 7
-+    OUT_NET_PAGE = 8
-+    COMMON_APPS_PAGE = 9
-+    FILES_PAGE = 10
-+    BOOLEAN_PAGE = 11
-+    SELECT_DIR_PAGE = 12
-+    FINISH_PAGE = 12
-+
-+    def __init__(self):
-+        self.xml = xml
-+        self.notebook = xml.get_widget ("notebook")
-+        self.label_dict = {}
-+        self.tooltip_dict = {}
-+        label = xml.get_widget ("select_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_user_roles_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_dir_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_domain_admin_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_in_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_out_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_common_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_manages_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("select_booleans_label")
-+        self.label_dict[label] = label.get_text()
-+
-+        label = xml.get_widget ("existing_user_treeview")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("transition_treeview")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_tcp_all_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_tcp_reserved_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_tcp_unreserved_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_tcp_entry")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_udp_all_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_udp_reserved_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_udp_unreserved_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("in_udp_entry")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("out_tcp_entry")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("out_udp_entry")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("out_tcp_all_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("out_udp_all_checkbutton")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("boolean_treeview")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        label = xml.get_widget ("write_treeview")
-+        self.tooltip_dict[label] = label.get_tooltip_text()
-+
-+        try:
-+            self.all_types = polgen.get_all_types()
-+            self.all_modules = polgen.get_all_modules()
-+            self.all_roles = polgen.get_all_roles()
-+            self.all_users = polgen.get_all_users()
-+        except RuntimeError, e:
-+            self.all_types = []
-+            self.all_modules = []
-+            self.all_roles = []
-+            self.all_users = []
-+            self.error(str(e))
-+
-+        self.name=""
-+        xml.signal_connect("on_delete_clicked", self.delete)
-+        xml.signal_connect("on_delete_boolean_clicked", self.delete_boolean)
-+        xml.signal_connect("on_exec_select_clicked", self.exec_select)
-+        xml.signal_connect("on_init_script_select_clicked", self.init_script_select)
-+        xml.signal_connect("on_add_clicked", self.add)
-+        xml.signal_connect("on_add_boolean_clicked", self.add_boolean)
-+        xml.signal_connect("on_add_dir_clicked", self.add_dir)
-+        xml.signal_connect("on_about_clicked", self.on_about_clicked)
-+        xml.get_widget ("cancel_button").connect("clicked",self.quit)
-+        self.forward_button = xml.get_widget ("forward_button")
-+        self.forward_button.connect("clicked",self.forward)
-+        self.back_button = xml.get_widget ("back_button")
-+        self.back_button.connect("clicked",self.back)
-+
-+        self.boolean_dialog = xml.get_widget ("boolean_dialog")
-+        self.boolean_name_entry = xml.get_widget ("boolean_name_entry")
-+        self.boolean_description_entry = xml.get_widget ("boolean_description_entry")
-+
-+        self.pages={}
-+        for i in polgen.USERS:
-+            self.pages[i] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.TRANSITION_PAGE, self.ROLE_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
-+        self.pages[polgen.RUSER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE,  self.ADMIN_PAGE, self.USER_TRANSITION_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
-+        self.pages[polgen.LUSER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.TRANSITION_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
-+        self.pages[polgen.SANDBOX] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE]
-+        self.pages[polgen.EUSER] = [ self.SELECT_TYPE_PAGE, self.EXISTING_USER_PAGE, self.TRANSITION_PAGE, self.ROLE_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
-+
-+        for i in polgen.APPLICATIONS:
-+            self.pages[i] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.COMMON_APPS_PAGE, self.FILES_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE]
-+        self.pages[polgen.USER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.USER_TRANSITION_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.COMMON_APPS_PAGE, self.FILES_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
-+        
-+        self.current_page = 0
-+        self.back_button.set_sensitive(0)
-+
-+        self.network_buttons = {}
-+
-+        self.in_tcp_all_checkbutton = xml.get_widget ("in_tcp_all_checkbutton")
-+        self.in_tcp_reserved_checkbutton = xml.get_widget ("in_tcp_reserved_checkbutton")
-+        self.in_tcp_unreserved_checkbutton = xml.get_widget ("in_tcp_unreserved_checkbutton")
-+        self.in_tcp_entry = self.xml.get_widget("in_tcp_entry")
-+        self.network_buttons[self.in_tcp_all_checkbutton] = [ self.in_tcp_reserved_checkbutton, self.in_tcp_unreserved_checkbutton, self.in_tcp_entry ]
-+
-+
-+        self.out_tcp_all_checkbutton = xml.get_widget ("out_tcp_all_checkbutton")
-+        self.out_tcp_reserved_checkbutton = xml.get_widget ("out_tcp_reserved_checkbutton")
-+        self.out_tcp_unreserved_checkbutton = xml.get_widget ("out_tcp_unreserved_checkbutton")
-+        self.out_tcp_entry = self.xml.get_widget("out_tcp_entry")
-+
-+        self.network_buttons[self.out_tcp_all_checkbutton] = [ self.out_tcp_entry ]
-+
-+        self.in_udp_all_checkbutton = xml.get_widget ("in_udp_all_checkbutton")
-+        self.in_udp_reserved_checkbutton = xml.get_widget ("in_udp_reserved_checkbutton")
-+        self.in_udp_unreserved_checkbutton = xml.get_widget ("in_udp_unreserved_checkbutton")
-+        self.in_udp_entry = self.xml.get_widget("in_udp_entry")
-+
-+        self.network_buttons[self.in_udp_all_checkbutton] = [ self.in_udp_reserved_checkbutton, self.in_udp_unreserved_checkbutton, self.in_udp_entry ]
-+
-+        self.out_udp_all_checkbutton = xml.get_widget ("out_udp_all_checkbutton")
-+        self.out_udp_entry = self.xml.get_widget("out_udp_entry")
-+        self.network_buttons[self.out_udp_all_checkbutton] = [ self.out_udp_entry ]
-+
-+        for b in self.network_buttons.keys():
-+            b.connect("clicked",self.network_all_clicked)
-+
-+        self.boolean_treeview = self.xml.get_widget("boolean_treeview")
-+        self.boolean_store = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_STRING)
-+        self.boolean_treeview.set_model(self.boolean_store)
-+        self.boolean_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Name"), gtk.CellRendererText(), text = 0)
-+        self.boolean_treeview.append_column(col)
-+        col = gtk.TreeViewColumn(_("Description"), gtk.CellRendererText(), text = 1)
-+        self.boolean_treeview.append_column(col)
-+
-+        self.role_treeview = self.xml.get_widget("role_treeview")
-+        self.role_store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.role_treeview.set_model(self.role_store)
-+        self.role_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
-+        self.role_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Role"), gtk.CellRendererText(), text = 0)
-+        self.role_treeview.append_column(col)
-+
-+        self.existing_user_treeview = self.xml.get_widget("existing_user_treeview")
-+        self.existing_user_store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.existing_user_treeview.set_model(self.existing_user_store)
-+        self.existing_user_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Existing_User"), gtk.CellRendererText(), text = 0)
-+        self.existing_user_treeview.append_column(col)
-+
-+        for i in self.all_roles:
-+            iter = self.role_store.append()
-+            self.role_store.set_value(iter, 0, i[:-2])
-+
-+        self.in_tcp_reserved_checkbutton = xml.get_widget ("in_tcp_reserved_checkbutton")
-+
-+        self.transition_treeview = self.xml.get_widget("transition_treeview")
-+        self.transition_store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.transition_treeview.set_model(self.transition_store)
-+        self.transition_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
-+        self.transition_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
-+        self.transition_treeview.append_column(col)
-+
-+        self.user_transition_treeview = self.xml.get_widget("user_transition_treeview")
-+        self.user_transition_store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.user_transition_treeview.set_model(self.user_transition_store)
-+        self.user_transition_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
-+        self.user_transition_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
-+        self.user_transition_treeview.append_column(col)
-+
-+        for i in self.all_users:
-+            iter = self.user_transition_store.append()
-+            self.user_transition_store.set_value(iter, 0, i[:-2])
-+            iter = self.existing_user_store.append()
-+            self.existing_user_store.set_value(iter, 0, i[:-2])
-+
-+        self.admin_treeview = self.xml.get_widget("admin_treeview")
-+        self.admin_store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.admin_treeview.set_model(self.admin_store)
-+        self.admin_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
-+        self.admin_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
-+        self.admin_treeview.append_column(col)
-+
-+        for i in polgen.methods:
-+            m = re.findall("(.*)%s" % polgen.USER_TRANSITION_INTERFACE, i) 
-+            if len(m) > 0:
-+                if "%s_exec_t" % m[0] in self.all_types:
-+                    iter = self.transition_store.append()
-+                    self.transition_store.set_value(iter, 0, m[0])
-+                continue
-+
-+            m = re.findall("(.*)%s" % polgen.ADMIN_TRANSITION_INTERFACE, i) 
-+            if len(m) > 0:
-+                iter = self.admin_store.append()
-+                self.admin_store.set_value(iter, 0, m[0])
-+                continue
-+        
-+    def confine_application(self):
-+        return self.get_type() in polgen.APPLICATIONS
-+
-+    def forward(self, arg):
-+        type = self.get_type()
-+        if self.current_page == self.START_PAGE:
-+            self.back_button.set_sensitive(1)
-+
-+        if self.pages[type][self.current_page] == self.SELECT_TYPE_PAGE:
-+            if self.on_select_type_page_next():
-+                return
-+
-+        if self.pages[type][self.current_page] == self.IN_NET_PAGE:
-+            if self.on_in_net_page_next():
-+                return
-+
-+        if self.pages[type][self.current_page] == self.OUT_NET_PAGE:
-+            if self.on_out_net_page_next():
-+                return
-+
-+        if self.pages[type][self.current_page] == self.APP_PAGE:
-+            if self.on_name_page_next():
-+                return
-+
-+        if self.pages[type][self.current_page] == self.EXISTING_USER_PAGE:
-+            if self.on_existing_user_page_next():
-+                return
-+
-+        if self.pages[type][self.current_page] == self.SELECT_DIR_PAGE:
-+            outputdir = self.output_entry.get_text()
-+            if not os.path.isdir(outputdir):
-+                self.error(_("%s must be a directory") % outputdir )
-+                return False
-+
-+        if self.pages[type][self.current_page] == self.FINISH_PAGE:
-+            self.generate_policy()
-+            self.xml.get_widget ("cancel_button").set_label(gtk.STOCK_CLOSE)
-+        else:
-+            self.current_page = self.current_page + 1
-+            self.notebook.set_current_page(self.pages[type][self.current_page])
-+            if self.pages[type][self.current_page] == self.FINISH_PAGE:
-+                self.forward_button.set_label(gtk.STOCK_APPLY)
-+        
-+    def back(self,arg):
-+        type = self.get_type()
-+        if self.pages[type][self.current_page] == self.FINISH_PAGE:
-+            self.forward_button.set_label(gtk.STOCK_GO_FORWARD)
-+
-+        self.current_page = self.current_page - 1 
-+        self.notebook.set_current_page(self.pages[type][self.current_page])
-+        if self.pages[type][self.current_page] == self.START_PAGE:
-+            self.back_button.set_sensitive(0)
-+        
-+    def network_all_clicked(self, button):
-+        active = button.get_active()
-+        for b in self.network_buttons[button]:
-+            b.set_sensitive(not active)
-+        
-+    def verify(self, message, title="" ):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
-+                                gtk.BUTTONS_YES_NO,
-+                                message)
-+        dlg.set_title(title)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        rc = dlg.run()
-+        dlg.destroy()
-+        return rc
-+
-+    def info(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
-+                                gtk.BUTTONS_OK,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        dlg.run()
-+        dlg.destroy()
-+
-+    def error(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
-+                                gtk.BUTTONS_CLOSE,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        dlg.run()
-+        dlg.destroy()
-+
-+    def get_name(self):
-+        if self.existing_user_radiobutton.get_active():
-+            store, iter = self.existing_user_treeview.get_selection().get_selected()
-+            if iter == None:
-+                raise ValueError(_("You must select a user"))
-+            return store.get_value(iter, 0)
-+        else:
-+            return self.name_entry.get_text()
-+
-+    def get_type(self):
-+        if self.sandbox_radiobutton.get_active():
-+            return polgen.SANDBOX
-+        if self.cgi_radiobutton.get_active():
-+            return polgen.CGI
-+        if self.user_radiobutton.get_active():
-+            return polgen.USER
-+        if self.init_radiobutton.get_active():
-+            return polgen.DAEMON
-+        if self.dbus_radiobutton.get_active():
-+            return polgen.DBUS
-+        if self.inetd_radiobutton.get_active():
-+            return polgen.INETD
-+        if self.login_user_radiobutton.get_active():
-+            return polgen.LUSER
-+        if self.admin_user_radiobutton.get_active():
-+            return polgen.AUSER
-+        if self.xwindows_user_radiobutton.get_active():
-+            return polgen.XUSER
-+        if self.terminal_user_radiobutton.get_active():
-+            return polgen.TUSER
-+        if self.root_user_radiobutton.get_active():
-+            return polgen.RUSER
-+        if self.existing_user_radiobutton.get_active():
-+            return polgen.EUSER
-+
-+    def generate_policy(self, *args):
-+        outputdir = self.output_entry.get_text()
-+        try:
-+            my_policy=polgen.policy(self.get_name(), self.get_type())
-+
-+            iter= self.boolean_store.get_iter_first()
-+            while(iter):
-+                my_policy.add_boolean(self.boolean_store.get_value(iter, 0), self.boolean_store.get_value(iter, 1))
-+                iter= self.boolean_store.iter_next(iter)
-+
-+            if self.get_type() in polgen.APPLICATIONS:
-+                my_policy.set_program(self.exec_entry.get_text())
-+                my_policy.gen_symbols()
-+
-+                my_policy.set_use_syslog(self.syslog_checkbutton.get_active() == 1)
-+                my_policy.set_use_tmp(self.tmp_checkbutton.get_active() == 1)
-+                my_policy.set_use_uid(self.uid_checkbutton.get_active() == 1)
-+                my_policy.set_use_pam(self.pam_checkbutton.get_active() == 1)
-+
-+                my_policy.set_use_dbus(self.dbus_checkbutton.get_active() == 1)
-+                my_policy.set_use_audit(self.audit_checkbutton.get_active() == 1)
-+                my_policy.set_use_terminal(self.terminal_checkbutton.get_active() == 1)
-+                my_policy.set_use_mail(self.mail_checkbutton.get_active() == 1)
-+                if self.get_type() is polgen.DAEMON:
-+                    my_policy.set_init_script(self.init_script_entry.get_text())
-+                if self.get_type() == polgen.USER:
-+                    selected = []
-+                    self.user_transition_treeview.get_selection().selected_foreach(foreach, selected)
-+                    my_policy.set_transition_users(selected)
-+            else:
-+                if self.get_type() == polgen.RUSER:
-+                    selected = []
-+                    self.admin_treeview.get_selection().selected_foreach(foreach, selected)
-+                    my_policy.set_admin_domains(selected)
-+                    selected = []
-+                    self.user_transition_treeview.get_selection().selected_foreach(foreach, selected)
-+                    my_policy.set_transition_users(selected)
-+                else:
-+                    selected = []
-+                    self.transition_treeview.get_selection().selected_foreach(foreach, selected)
-+                    my_policy.set_transition_domains(selected)
-+                
-+                    selected = []
-+                    self.role_treeview.get_selection().selected_foreach(foreach, selected)
-+                    my_policy.set_admin_roles(selected)
-+
-+            my_policy.set_in_tcp(self.in_tcp_all_checkbutton.get_active(), self.in_tcp_reserved_checkbutton.get_active(), self.in_tcp_unreserved_checkbutton.get_active(), self.in_tcp_entry.get_text())
-+            my_policy.set_in_udp(self.in_udp_all_checkbutton.get_active(), self.in_udp_reserved_checkbutton.get_active(), self.in_udp_unreserved_checkbutton.get_active(), self.in_udp_entry.get_text())
-+            my_policy.set_out_tcp(self.out_tcp_all_checkbutton.get_active(), self.out_tcp_entry.get_text())
-+            my_policy.set_out_udp(self.out_udp_all_checkbutton.get_active(), self.out_udp_entry.get_text())
-+                
-+            iter= self.store.get_iter_first()
-+            while(iter):
-+                if self.store.get_value(iter, 1) == FILE:
-+                    my_policy.add_file(self.store.get_value(iter, 0))
-+                else:
-+                    my_policy.add_dir(self.store.get_value(iter, 0))
-+                iter= self.store.iter_next(iter)
-+                
-+            self.info(my_policy.generate(outputdir))
-+            return False
-+        except ValueError, e:
-+            self.error(e.message)
-+        
-+    def delete(self, args):
-+        store, iter = self.view.get_selection().get_selected()
-+        if iter != None:
-+            store.remove(iter)
-+            self.view.get_selection().select_path ((0,))
-+
-+    def delete_boolean(self, args):
-+        store, iter = self.boolean_treeview.get_selection().get_selected()
-+        if iter != None:
-+            store.remove(iter)
-+            self.boolean_treeview.get_selection().select_path ((0,))
-+
-+    def add_boolean(self,type):
-+        self.boolean_name_entry.set_text("")
-+        self.boolean_description_entry.set_text("")
-+        rc = self.boolean_dialog.run()
-+        self.boolean_dialog.hide()
-+        if rc == gtk.RESPONSE_CANCEL:
-+            return
-+        iter = self.boolean_store.append()
-+        self.boolean_store.set_value(iter, 0, self.boolean_name_entry.get_text())
-+        self.boolean_store.set_value(iter, 1, self.boolean_description_entry.get_text())
-+        
-+    def __add(self,type):
-+        rc = self.file_dialog.run()
-+        self.file_dialog.hide()
-+        if rc == gtk.RESPONSE_CANCEL:
-+            return
-+        for i in self.file_dialog.get_filenames():
-+            iter = self.store.append()
-+            self.store.set_value(iter, 0, i)
-+            self.store.set_value(iter, 1, type)
-+        
-+    def exec_select(self, args):
-+        self.file_dialog.set_select_multiple(0)
-+        self.file_dialog.set_title(_("Select executable file to be confined."))
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
-+        self.file_dialog.set_current_folder("/usr/sbin")
-+        rc = self.file_dialog.run()
-+        self.file_dialog.hide()
-+        if rc == gtk.RESPONSE_CANCEL:
-+            return
-+        self.exec_entry.set_text(self.file_dialog.get_filename())
-+
-+    def init_script_select(self, args):
-+        self.file_dialog.set_select_multiple(0)
-+        self.file_dialog.set_title(_("Select init script file to be confined."))
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
-+        self.file_dialog.set_current_folder("/etc/rc.d/init.d")
-+        rc = self.file_dialog.run()
-+        self.file_dialog.hide()
-+        if rc == gtk.RESPONSE_CANCEL:
-+            return
-+        self.init_script_entry.set_text(self.file_dialog.get_filename())
-+
-+    def add(self, args):
-+        self.file_dialog.set_title(_("Select file(s) that confined application creates or writes"))
-+        self.file_dialog.set_current_folder("/")
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
-+        self.file_dialog.set_select_multiple(1)
-+        self.__add(FILE)
-+
-+    def add_dir(self, args):
-+        self.file_dialog.set_title(_("Select directory(s) that the confined application owns and writes into"))
-+        self.file_dialog.set_current_folder("/")
-+        self.file_dialog.set_select_multiple(1)
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER)
-+        self.__add(DIR)
-+        
-+    def on_about_clicked(self, args):
-+        dlg = xml.get_widget ("about_dialog")
-+        dlg.run ()
-+        dlg.hide ()
-+
-+    def quit(self, args):
-+        gtk.main_quit()
-+
-+    def setupScreen(self):
-+        # Bring in widgets from glade file.
-+        self.mainWindow = self.xml.get_widget("main_window")
-+        self.druid = self.xml.get_widget("druid")
-+        self.type = 0
-+        self.name_entry = self.xml.get_widget("name_entry")
-+        self.name_entry.connect("insert_text",self.on_name_entry_changed)
-+        self.name_entry.connect("focus_out_event",self.on_focus_out_event)
-+        self.exec_entry = self.xml.get_widget("exec_entry")
-+        self.exec_button = self.xml.get_widget("exec_button")
-+        self.init_script_entry = self.xml.get_widget("init_script_entry")
-+        self.init_script_button = self.xml.get_widget("init_script_button")
-+        self.output_entry = self.xml.get_widget("output_entry")
-+        self.output_entry.set_text(os.getcwd())
-+        self.xml.get_widget("output_button").connect("clicked",self.output_button_clicked)
-+        
-+        self.xwindows_user_radiobutton = self.xml.get_widget("xwindows_user_radiobutton")
-+        self.terminal_user_radiobutton = self.xml.get_widget("terminal_user_radiobutton")
-+        self.root_user_radiobutton = self.xml.get_widget("root_user_radiobutton")
-+        self.login_user_radiobutton = self.xml.get_widget("login_user_radiobutton")
-+        self.admin_user_radiobutton = self.xml.get_widget("admin_user_radiobutton")
-+        self.existing_user_radiobutton = self.xml.get_widget("existing_user_radiobutton")
-+
-+        self.user_radiobutton = self.xml.get_widget("user_radiobutton")
-+        self.init_radiobutton = self.xml.get_widget("init_radiobutton")
-+        self.inetd_radiobutton = self.xml.get_widget("inetd_radiobutton")
-+        self.dbus_radiobutton = self.xml.get_widget("dbus_radiobutton")
-+        self.cgi_radiobutton = self.xml.get_widget("cgi_radiobutton")
-+        self.sandbox_radiobutton = self.xml.get_widget("sandbox_radiobutton")
-+        self.tmp_checkbutton = self.xml.get_widget("tmp_checkbutton")
-+        self.uid_checkbutton = self.xml.get_widget("uid_checkbutton")
-+        self.pam_checkbutton = self.xml.get_widget("pam_checkbutton")
-+        self.dbus_checkbutton = self.xml.get_widget("dbus_checkbutton")
-+        self.audit_checkbutton = self.xml.get_widget("audit_checkbutton")
-+        self.terminal_checkbutton = self.xml.get_widget("terminal_checkbutton")
-+        self.mail_checkbutton = self.xml.get_widget("mail_checkbutton")
-+        self.syslog_checkbutton = self.xml.get_widget("syslog_checkbutton")
-+        self.view = self.xml.get_widget("write_treeview")
-+        self.file_dialog = self.xml.get_widget("filechooserdialog")
-+
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_INT)
-+        self.view.set_model(self.store)
-+        col = gtk.TreeViewColumn("",  gtk.CellRendererText(), text = 0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.view.get_selection().select_path ((0,))
-+
-+    def output_button_clicked(self, *args):
-+        self.file_dialog.set_title(_("Select directory to generate policy files in"))
-+        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER)
-+        self.file_dialog.set_select_multiple(0)
-+        rc = self.file_dialog.run()
-+        self.file_dialog.hide()
-+        if rc == gtk.RESPONSE_CANCEL:
-+            return
-+        self.output_entry.set_text(self.file_dialog.get_filename())
-+        
-+    def on_name_entry_changed(self, entry, text, size, position):
-+        if text.find(" ") >= 0:
-+            entry.emit_stop_by_name("insert_text")
-+            
-+    def on_focus_out_event(self, entry, third):
-+        name = entry.get_text()
-+        if self.name != name:
-+            if name in self.all_types:
-+                if self.verify(_("Type %s_t already defined in current policy.\nDo you want to continue?") % name, _("Verify Name")) == gtk.RESPONSE_NO:
-+                    entry.set_text("")
-+                    return False
-+            if name in self.all_modules:
-+                if self.verify(_("Module %s.pp already loaded in current policy.\nDo you want to continue?") % name, _("Verify Name")) == gtk.RESPONSE_NO:
-+                    entry.set_text("")
-+                    return False
-+
-+            file = "/etc/rc.d/init.d/" + name
-+            if os.path.isfile(file) and self.init_script_entry.get_text() == "":
-+                self.init_script_entry.set_text(file)
-+                
-+            file = "/usr/sbin/" + name
-+            if os.path.isfile(file) and self.exec_entry.get_text() == "":
-+                self.exec_entry.set_text(file)
-+
-+        self.name = name
-+        return False
-+
-+    def on_in_net_page_next(self, *args):
-+        try:
-+            polgen.verify_ports(self.in_tcp_entry.get_text())
-+            polgen.verify_ports(self.in_udp_entry.get_text())
-+        except ValueError, e:
-+            self.error(e.message)
-+            return True
-+        
-+    def on_out_net_page_next(self, *args):
-+        try:
-+            polgen.verify_ports(self.out_tcp_entry.get_text())
-+            polgen.verify_ports(self.out_udp_entry.get_text())
-+        except ValueError, e:
-+            self.error(e.message)
-+            return True
-+        
-+    def on_select_type_page_next(self, *args):
-+        self.exec_entry.set_sensitive(self.confine_application())
-+        self.exec_button.set_sensitive(self.confine_application())
-+        self.init_script_entry.set_sensitive(self.init_radiobutton.get_active())
-+        self.init_script_button.set_sensitive(self.init_radiobutton.get_active())
-+
-+    def on_existing_user_page_next(self, *args):
-+        store, iter = self.view.get_selection().get_selected()
-+        if iter != None:
-+            self.error(_("You must select a user"))
-+            return True
-+        
-+    def on_name_page_next(self, *args):
-+        name=self.name_entry.get_text()
-+        if not name.isalnum():
-+            self.error(_("You must add a name made up of letters and numbers and containing no spaces."))
-+            return True
-+        
-+        for i in self.label_dict:
-+            text = '<b>%s</b>' % (self.label_dict[i] % ("'" + name + "'"))
-+            i.set_markup(text)
-+
-+        for i in self.tooltip_dict:
-+            text = self.tooltip_dict[i] % ("'" + name + "'")
-+            i.set_tooltip_text(text)
-+
-+        if self.confine_application():
-+            exe = self.exec_entry.get_text()
-+            if exe == "":
-+                self.error(_("You must enter a executable"))
-+                return True
-+            policy=polgen.policy(name, self.get_type())
-+            policy.set_program(exe)
-+            policy.gen_writeable()
-+            policy.gen_symbols()
-+            for f in policy.files.keys():
-+                iter = self.store.append()
-+                self.store.set_value(iter, 0, f)
-+                self.store.set_value(iter, 1, FILE)
-+                
-+            for f in policy.dirs.keys():
-+                iter = self.store.append()
-+                self.store.set_value(iter, 0, f)
-+                self.store.set_value(iter, 1, DIR)
-+            self.tmp_checkbutton.set_active(policy.use_tmp)
-+            self.uid_checkbutton.set_active(policy.use_uid)
-+            self.pam_checkbutton.set_active(policy.use_pam)
-+            self.dbus_checkbutton.set_active(policy.use_dbus)
-+            self.audit_checkbutton.set_active(policy.use_audit)
-+            self.terminal_checkbutton.set_active(policy.use_terminal)
-+            self.mail_checkbutton.set_active(policy.use_mail)
-+            self.syslog_checkbutton.set_active(policy.use_syslog)
-+
-+    def stand_alone(self):
-+        desktopName = _("Configue SELinux")
-+
-+        self.setupScreen()
-+        self.mainWindow.connect("destroy", self.quit)
-+
-+        self.mainWindow.show_all()
-+        gtk.main()
-+
-+if __name__ == "__main__":
-+    signal.signal (signal.SIGINT, signal.SIG_DFL)
-+
-+    app = childWindow()
-+    app.stand_alone()
-diff -up policycoreutils-2.1.8/gui/polgen.py.gui policycoreutils-2.1.8/gui/polgen.py
---- policycoreutils-2.1.8/gui/polgen.py.gui    2011-11-07 15:12:01.905834233 -0500
-+++ policycoreutils-2.1.8/gui/polgen.py        2011-11-07 15:12:39.045857808 -0500
-@@ -0,0 +1,1351 @@
-+#!/usr/bin/python -Es
-+#
-+# Copyright (C) 2007-2011 Red Hat 
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA     
-+#                                        02111-1307  USA
-+#
-+#  
-+import os, sys, stat
-+import re
-+import commands
-+import setools
-+
-+from templates import executable
-+from templates import boolean
-+from templates import etc_rw
-+from templates import var_cache
-+from templates import var_spool
-+from templates import var_lib
-+from templates import var_log
-+from templates import var_run
-+from templates import tmp
-+from templates import rw
-+from templates import network
-+from templates import script
-+from templates import user
-+import sepolgen.interfaces as interfaces
-+import sepolgen.defaults as defaults
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+methods = []
-+fn = defaults.interface_info()
-+try:
-+    fd = open(fn)
-+    # List of per_role_template interfaces
-+    ifs = interfaces.InterfaceSet()
-+    ifs.from_file(fd)
-+    methods = ifs.interfaces.keys()
-+    fd.close()
-+except:
-+    sys.stderr.write("could not open interface info [%s]\n" % fn)
-+    sys.exit(1)
-+
-+all_types = None
-+def get_all_types():
-+    global all_types
-+    if all_types == None:
-+        all_types = map(lambda x: x['name'], setools.seinfo(setools.TYPE))
-+    return all_types
-+
-+def get_all_ports():
-+    dict = {}
-+    for p in setools.seinfo(setools.PORT):
-+        if p['type'] == "reserved_port_t" or \
-+                p['type'] == "port_t" or \
-+                p['type'] == "hi_reserved_port_t":
-+            continue
-+        dict[(p['low'], p['high'], p['protocol'])]=(p['type'], p['range'])
-+    return dict
-+
-+def get_all_roles():
-+    roles = map(lambda x: x['name'], setools.seinfo(setools.ROLE))
-+    roles.remove("object_r")
-+    roles.sort()
-+    return roles
-+
-+def get_all_attributes():
-+    attributes = map(lambda x: x['name'], setools.seinfo(setools.ATTRIBUTE))
-+    attributes.sort()
-+    return attributes
-+
-+def get_all_domains():
-+    all_domains = []
-+    types=get_all_types()
-+    types.sort()
-+    for i in types:
-+        m = re.findall("(.*)%s" % "_exec_t$", i) 
-+        if len(m) > 0:
-+            if len(re.findall("(.*)%s" % "_initrc$", m[0])) == 0 and m[0] not in all_domains:
-+                all_domains.append(m[0])
-+    return all_domains
-+
-+def get_all_modules():
-+    try:
-+        all_modules = []
-+        rc, output=commands.getstatusoutput("semodule -l 2>/dev/null")
-+        if rc == 0:
-+            l = output.split("\n")
-+            for i in l:
-+                all_modules.append(i.split()[0])
-+    except:
-+        pass
-+
-+    return all_modules
-+
-+def get_all_users():
-+    users = map(lambda x: x['name'], setools.seinfo(setools.USER))
-+    users.remove("system_u")
-+    users.remove("root")
-+    users.sort()
-+    return users
-+
-+ALL = 0
-+RESERVED = 1
-+UNRESERVED = 2
-+PORTS = 3
-+ADMIN_TRANSITION_INTERFACE = "_admin$"
-+USER_TRANSITION_INTERFACE = "_role$"
-+
-+DAEMON = 0
-+DBUS = 1
-+INETD = 2
-+USER = 3
-+CGI = 4
-+XUSER = 5
-+TUSER = 6
-+LUSER = 7
-+AUSER = 8
-+EUSER = 9
-+RUSER = 10
-+SANDBOX = 11
-+
-+poltype={} 
-+poltype[DAEMON] = _("Standard Init Daemon")
-+poltype[DBUS] = _("DBUS System Daemon")
-+poltype[INETD] = _("Internet Services Daemon") 
-+poltype[CGI] = _("Web Application/Script (CGI)")
-+poltype[USER] = _("User Application")
-+poltype[TUSER] = _("Minimal Terminal User Role")
-+poltype[XUSER] = _("Minimal X Windows User Role")
-+poltype[LUSER] = _("User Role")
-+poltype[AUSER] = _("Admin User Role")
-+poltype[RUSER] = _("Root Admin User Role")
-+poltype[SANDBOX] = _("Sandbox")
-+
-+APPLICATIONS = [ DAEMON, DBUS, INETD, USER, CGI ]
-+USERS = [ XUSER, TUSER, LUSER, AUSER, EUSER, RUSER]
-+
-+def verify_ports(ports):
-+    if ports == "":
-+        return []
-+    max_port=2**16
-+    try:
-+        temp = []
-+        for a in ports.split(","):
-+            r =  a.split("-")
-+            if len(r) > 2:
-+                raise  ValueError
-+            if len(r) == 1:
-+                begin = int (r[0])
-+                end = int (r[0])
-+            else:
-+                begin = int (r[0])
-+                end = int (r[1])
-+                
-+                if begin > end:
-+                    raise  ValueError
-+                
-+            for p in range(begin, end + 1):
-+                if p < 1 or p > max_port:
-+                    raise  ValueError
-+                temp.append(p)
-+        return temp
-+    except ValueError:
-+        raise  ValueError(_("Ports must be numbers or ranges of numbers from 1 to %d " % max_port ))
-+
-+class policy:
-+    
-+      def __init__(self, name, type):
-+                self.ports = []
-+                try:
-+                    self.ports = get_all_ports()
-+                except ValueError, e:
-+                    print "Can not get port types, must be root for this information"
-+                except RuntimeError, e:
-+                    print "Can not get port types", e
-+
-+                self.symbols = {} 
-+                self.symbols["openlog"] = "set_use_kerberos(True)"
-+                self.symbols["openlog"] = "set_use_kerb_rcache(True)"
-+                self.symbols["openlog"] = "set_use_syslog(True)"
-+                self.symbols["gethostby"] = "set_use_resolve(True)"
-+                self.symbols["getaddrinfo"] = "set_use_resolve(True)"
-+                self.symbols["getnameinfo"] = "set_use_resolve(True)"
-+                self.symbols["krb"] = "set_use_kerberos(True)"
-+                self.symbols["gss_accept_sec_context"] = "set_manage_krb5_rcache(True)"
-+                self.symbols["krb5_verify_init_creds"] = "set_manage_krb5_rcache(True)"
-+                self.symbols["krb5_rd_req"] = "set_manage_krb5_rcache(True)"
-+                self.symbols["__syslog_chk"] = "set_use_syslog(True)"
-+                self.symbols["getpwnam"] = "set_use_uid(True)"
-+                self.symbols["getpwuid"] = "set_use_uid(True)"
-+                self.symbols["dbus_"] = "set_use_dbus(True)"
-+                self.symbols["pam_"] = "set_use_pam(True)"
-+                self.symbols["pam_"] = "set_use_audit(True)"
-+                self.symbols["fork"] = "add_process('fork')"
-+                self.symbols["transition"] = "add_process('transition')"
-+                self.symbols["sigchld"] = "add_process('sigchld')"
-+                self.symbols["sigkill"] = "add_process('sigkill')"
-+                self.symbols["sigstop"] = "add_process('sigstop')"
-+                self.symbols["signull"] = "add_process('signull')"
-+                self.symbols["signal"] = "add_process('signal')"
-+                self.symbols["ptrace"] = "add_process('ptrace')"
-+                self.symbols["getsched"] = "add_process('getsched')"
-+                self.symbols["setsched"] = "add_process('setsched')"
-+                self.symbols["getsession"] = "add_process('getsession')"
-+                self.symbols["getpgid"] = "add_process('getpgid')"
-+                self.symbols["setpgid"] = "add_process('setpgid')"
-+                self.symbols["getcap"] = "add_process('getcap')"
-+                self.symbols["setcap"] = "add_process('setcap')"
-+                self.symbols["share"] = "add_process('share')"
-+                self.symbols["getattr"] = "add_process('getattr')"
-+                self.symbols["setexec"] = "add_process('setexec')"
-+                self.symbols["setfscreate"] = "add_process('setfscreate')"
-+                self.symbols["noatsecure"] = "add_process('noatsecure')"
-+                self.symbols["siginh"] = "add_process('siginh')"
-+                self.symbols["setrlimit"] = "add_process('setrlimit')"
-+                self.symbols["rlimitinh"] = "add_process('rlimitinh')"
-+                self.symbols["dyntransition"] = "add_process('dyntransition')"
-+                self.symbols["setcurrent"] = "add_process('setcurrent')"
-+                self.symbols["execmem"] = "add_process('execmem')"
-+                self.symbols["execstack"] = "add_process('execstack')"
-+                self.symbols["execheap"] = "add_process('execheap')"
-+                self.symbols["setkeycreate"] = "add_process('setkeycreate')"
-+                self.symbols["setsockcreate"] = "add_process('setsockcreate')"
-+
-+                self.symbols["chown"] = "add_capability('chown')"
-+                self.symbols["dac_override"] = "add_capability('dac_override')"
-+                self.symbols["dac_read_search"] = "add_capability('dac_read_search')"
-+                self.symbols["fowner"] = "add_capability('fowner')"
-+                self.symbols["fsetid"] = "add_capability('fsetid')"
-+                self.symbols["kill"] = "add_capability('kill')"
-+                self.symbols["setgid"] = "add_capability('setgid')"
-+                self.symbols["setresuid"] = "add_capability('setuid')"
-+                self.symbols["setuid"] = "add_capability('setuid')"
-+                self.symbols["setpcap"] = "add_capability('setpcap')"
-+                self.symbols["linux_immutable"] = "add_capability('linux_immutable')"
-+                self.symbols["net_bind_service"] = "add_capability('net_bind_service')"
-+                self.symbols["net_broadcast"] = "add_capability('net_broadcast')"
-+                self.symbols["net_admin"] = "add_capability('net_admin')"
-+                self.symbols["net_raw"] = "add_capability('net_raw')"
-+                self.symbols["ipc_lock"] = "add_capability('ipc_lock')"
-+                self.symbols["ipc_owner"] = "add_capability('ipc_owner')"
-+                self.symbols["sys_module"] = "add_capability('sys_module')"
-+                self.symbols["sys_rawio"] = "add_capability('sys_rawio')"
-+                self.symbols["chroot"] = "add_capability('sys_chroot')"
-+                self.symbols["sys_chroot"] = "add_capability('sys_chroot')"
-+                self.symbols["sys_ptrace"] = "add_capability('sys_ptrace')"
-+                self.symbols["sys_pacct"] = "add_capability('sys_pacct')"
-+                self.symbols["mount"] = "add_capability('sys_admin')"
-+                self.symbols["unshare"] = "add_capability('sys_admin')"
-+                self.symbols["sys_admin"] = "add_capability('sys_admin')"
-+                self.symbols["sys_boot"] = "add_capability('sys_boot')"
-+                self.symbols["sys_nice"] = "add_capability('sys_nice')"
-+                self.symbols["sys_resource"] = "add_capability('sys_resource')"
-+                self.symbols["sys_time"] = "add_capability('sys_time')"
-+                self.symbols["sys_tty_config"] = "add_capability('sys_tty_config')"
-+                self.symbols["mknod"] = "add_capability('mknod')"
-+                self.symbols["lease"] = "add_capability('lease')"
-+                self.symbols["audit_write"] = "add_capability('audit_write')"
-+                self.symbols["audit_control"] = "add_capability('audit_control')"
-+                self.symbols["setfcap"] = "add_capability('setfcap')"
-+                
-+              self.DEFAULT_DIRS = {}
-+              self.DEFAULT_DIRS["/etc"] = ["etc_rw", [], etc_rw];
-+              self.DEFAULT_DIRS["/tmp"] = ["tmp", [], tmp];
-+              self.DEFAULT_DIRS["rw"] = ["rw", [], rw];
-+              self.DEFAULT_DIRS["/var/cache"] = ["var_cache", [], var_cache];
-+              self.DEFAULT_DIRS["/var/lib"] = ["var_lib", [], var_lib];
-+              self.DEFAULT_DIRS["/var/log"] = ["var_log", [], var_log];
-+              self.DEFAULT_DIRS["/var/run"] = ["var_run", [], var_run];
-+              self.DEFAULT_DIRS["/var/spool"] = ["var_spool", [], var_spool];
-+
-+                self.DEFAULT_KEYS=["/etc", "/var/cache", "/var/log", "/tmp", "rw", "/var/lib", "/var/run", "/var/spool"]
-+
-+              self.DEFAULT_TYPES = (\
-+( self.generate_daemon_types, self.generate_daemon_rules), \
-+( self.generate_dbusd_types, self.generate_dbusd_rules), \
-+( self.generate_inetd_types, self.generate_inetd_rules), \
-+( self.generate_userapp_types, self.generate_userapp_rules), \
-+( self.generate_cgi_types, self.generate_cgi_rules), \
-+( self.generate_x_login_user_types, self.generate_x_login_user_rules), \
-+( self.generate_min_login_user_types, self.generate_login_user_rules), \
-+( self.generate_login_user_types, self.generate_login_user_rules), \
-+( self.generate_admin_user_types, self.generate_login_user_rules), \
-+( self.generate_existing_user_types, self.generate_existing_user_rules), \
-+( self.generate_root_user_types, self.generate_root_user_rules), \
-+( self.generate_sandbox_types, self.generate_sandbox_rules))
-+              if name == "":
-+                      raise ValueError(_("You must enter a name for your confined process/user"))
-+                if not name.isalnum():
-+                    raise ValueError(_("Name must be alpha numberic with no spaces. Consider using option \"-n MODULENAME\""))
-+
-+              if type == CGI:
-+                      self.name = "httpd_%s_script" % name
-+              else:
-+                      self.name = name
-+
-+                self.file_name = name
-+
-+                self.capabilities = []
-+                self.processes = []
-+              self.type = type
-+              self.initscript = ""
-+                self.program = ""
-+              self.in_tcp = [False, False, False, []]
-+              self.in_udp = [False, False, False, []]
-+              self.out_tcp = [False, False, False, []]
-+              self.out_udp = [False, False, False, []]
-+              self.use_resolve = False
-+              self.use_tmp = False
-+              self.use_uid = False
-+              self.use_syslog = False
-+              self.use_kerberos = False
-+              self.manage_krb5_rcache = False
-+              self.use_pam = False
-+              self.use_dbus = False
-+              self.use_audit = False
-+              self.use_etc = True
-+              self.use_localization = True
-+              self.use_fd = True
-+              self.use_terminal = False
-+              self.use_mail = False
-+              self.booleans = {}
-+              self.files = {}
-+              self.dirs = {}
-+                self.found_tcp_ports=[]
-+                self.found_udp_ports=[]
-+                self.need_tcp_type=False
-+                self.need_udp_type=False
-+              self.admin_domains = []
-+              self.transition_domains = []
-+              self.transition_users = []
-+                self.roles = []
-+
-+        def __isnetset(self, l):
-+            return l[ALL] or l[RESERVED] or l[UNRESERVED] or len(l[PORTS]) > 0
-+
-+        def set_admin_domains(self, admin_domains):
-+            self.admin_domains = admin_domains
-+
-+        def set_admin_roles(self, roles):
-+            self.roles = roles
-+
-+        def set_transition_domains(self, transition_domains):
-+            self.transition_domains = transition_domains
-+
-+        def set_transition_users(self, transition_users):
-+            self.transition_users = transition_users
-+
-+        def use_in_udp(self):
-+            return self.__isnetset(self.in_udp)
-+            
-+        def use_out_udp(self):
-+            return self.__isnetset(self.out_udp)
-+            
-+        def use_udp(self):
-+            return self.use_in_udp() or self.use_out_udp()
-+
-+        def use_in_tcp(self):
-+            return self.__isnetset(self.in_tcp)
-+            
-+        def use_out_tcp(self):
-+            return self.__isnetset(self.out_tcp)
-+        
-+        def use_tcp(self):
-+            return self.use_in_tcp() or self.use_out_tcp()
-+
-+        def use_network(self):
-+            return self.use_tcp() or self.use_udp()
-+        
-+        def find_port(self, port, protocol="tcp"):
-+            for begin,end,p in self.ports.keys():
-+                if port >= begin and port <= end and protocol == p:
-+                    return self.ports[begin, end, protocol]
-+            return  None
-+
-+      def set_program(self, program):
-+                if self.type not in APPLICATIONS:
-+                    raise ValueError(_("User Role types can not be assigned executables."))
-+
-+              self.program = program
-+
-+      def set_init_script(self, initscript):
-+                if self.type != DAEMON:
-+                    raise ValueError(_("Only Daemon apps can use an init script.."))
-+
-+              self.initscript = initscript
-+
-+      def set_in_tcp(self, all, reserved, unreserved, ports):
-+              self.in_tcp = [ all, reserved, unreserved, verify_ports(ports)]
-+
-+      def set_in_udp(self, all, reserved, unreserved, ports):
-+              self.in_udp = [ all, reserved, unreserved, verify_ports(ports)]
-+
-+      def set_out_tcp(self, all, ports):
-+              self.out_tcp = [ all , False, False, verify_ports(ports) ]
-+
-+      def set_out_udp(self, all, ports):
-+              self.out_udp = [ all , False, False, verify_ports(ports) ]
-+
-+      def set_use_resolve(self, val):
-+              if val != True and val != False:
-+                      raise  ValueError(_("use_resolve must be a boolean value "))
-+            
-+              self.use_resolve = val
-+              
-+      def set_use_syslog(self, val):
-+              if val != True and val != False:
-+                      raise  ValueError(_("use_syslog must be a boolean value "))
-+            
-+              self.use_syslog = val
-+              
-+      def set_use_kerberos(self, val):
-+              if val != True and val != False:
-+                      raise  ValueError(_("use_kerberos must be a boolean value "))
-+            
-+              self.use_kerberos = val
-+              
-+      def set_manage_krb5_rcache(self, val):
-+              if val != True and val != False:
-+                      raise  ValueError(_("manage_krb5_rcache must be a boolean value "))
-+            
-+              self.manage_krb5_rcache = val
-+              
-+      def set_use_pam(self, val):
-+              self.use_pam = val == True
-+              
-+      def set_use_dbus(self, val):
-+              self.use_dbus = val == True
-+              
-+      def set_use_audit(self, val):
-+              self.use_audit = val == True
-+              
-+      def set_use_etc(self, val):
-+              self.use_etc = val == True
-+              
-+      def set_use_localization(self, val):
-+              self.use_localization = val == True
-+              
-+      def set_use_fd(self, val):
-+              self.use_fd = val == True
-+              
-+      def set_use_terminal(self, val):
-+              self.use_terminal = val == True
-+              
-+      def set_use_mail(self, val):
-+              self.use_mail = val == True
-+              
-+      def set_use_tmp(self, val):
-+            if self.type in USERS:
-+                raise ValueError(_("USER Types automatically get a tmp type"))
-+
-+            if val:
-+              self.DEFAULT_DIRS["/tmp"][1].append("/tmp");
-+            else:
-+              self.DEFAULT_DIRS["/tmp"][1]=[]
-+              
-+      def set_use_uid(self, val):
-+              self.use_uid = val == True
-+
-+      def generate_uid_rules(self):
-+                if self.use_uid:
-+                    return re.sub("TEMPLATETYPE", self.name, executable.te_uid_rules)
-+                else:
-+                    return ""
-+
-+      def generate_syslog_rules(self):
-+                if self.use_syslog:
-+                    return re.sub("TEMPLATETYPE", self.name, executable.te_syslog_rules)
-+                else:
-+                    return ""
-+
-+      def generate_resolve_rules(self):
-+                if self.use_resolve:
-+                    return re.sub("TEMPLATETYPE", self.name, executable.te_resolve_rules)
-+                else:
-+                    return ""
-+
-+      def generate_kerberos_rules(self):
-+                if self.use_kerberos:
-+                    return re.sub("TEMPLATETYPE", self.name, executable.te_kerberos_rules)
-+                else:
-+                    return ""
-+
-+      def generate_manage_krb5_rcache_rules(self):
-+                if self.manage_krb5_rcache:
-+                    return re.sub("TEMPLATETYPE", self.name, executable.te_manage_krb5_rcache_rules)
-+                else:
-+                    return ""
-+
-+      def generate_pam_rules(self):
-+                newte =""
-+                if self.use_pam:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_pam_rules)
-+                return newte
-+
-+      def generate_audit_rules(self):
-+                newte =""
-+                if self.use_audit:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_audit_rules)
-+                return newte
-+
-+      def generate_etc_rules(self):
-+                newte =""
-+                if self.use_etc:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_etc_rules)
-+                return newte
-+
-+      def generate_fd_rules(self):
-+                newte =""
-+                if self.use_fd:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_fd_rules)
-+                return newte
-+
-+      def generate_localization_rules(self):
-+                newte =""
-+                if self.use_localization:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_localization_rules)
-+                return newte
-+
-+      def generate_dbus_rules(self):
-+                newte =""
-+                if self.type != DBUS and self.use_dbus:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_dbus_rules)
-+                return newte
-+
-+      def generate_mail_rules(self):
-+                newte =""
-+                if self.use_mail:
-+                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_mail_rules)
-+                return newte
-+
-+        def generate_network_action(self, protocol, action, port_name):
-+            line = ""
-+            method = "corenet_%s_%s_%s" % (protocol, action, port_name)
-+            if method in methods:
-+                line = "%s(%s_t)\n" % (method, self.name)
-+            else:
-+                line = """
-+gen_require(`
-+    type %s_t;
-+')
-+allow %s_t %s_t:%s_socket name_%s;
-+""" % (port_name, self.name, port_name, protocol, action)
-+            return line
-+                
-+      def generate_network_types(self):
-+            for i in self.in_tcp[PORTS]:
-+                rec = self.find_port(int(i), "tcp")
-+                if rec == None:
-+                    self.need_tcp_type = True;
-+                else:
-+                    port_name = rec[0][:-2]
-+                    line = self.generate_network_action("tcp", "bind", port_name)
-+#                   line = "corenet_tcp_bind_%s(%s_t)\n" % (port_name, self.name)
-+                    if line not in self.found_tcp_ports:
-+                        self.found_tcp_ports.append(line)
-+
-+            for i in self.out_tcp[PORTS]:
-+                rec = self.find_port(int(i), "tcp")
-+                if rec == None:
-+                    self.need_tcp_type = True;
-+                else:
-+                    port_name = rec[0][:-2]
-+                    line = self.generate_network_action("tcp", "connect", port_name)
-+#                   line = "corenet_tcp_connect_%s(%s_t)\n" % (port_name, self.name)
-+                    if line not in self.found_tcp_ports:
-+                        self.found_tcp_ports.append(line)
-+                        
-+            for i in self.in_udp[PORTS]:
-+                rec = self.find_port(int(i),"udp")
-+                if rec == None:
-+                    self.need_udp_type = True;
-+                else:
-+                    port_name = rec[0][:-2]
-+                    line = self.generate_network_action("udp", "bind", port_name)
-+#                   line = "corenet_udp_bind_%s(%s_t)\n" % (port_name, self.name)
-+                    if line not in self.found_udp_ports:
-+                        self.found_udp_ports.append(line)
-+                
-+            if self.need_udp_type == True or self.need_tcp_type == True:
-+                return re.sub("TEMPLATETYPE", self.name, network.te_port_types)
-+            return ""
-+      
-+      def __find_path(self, file):
-+            for d in self.DEFAULT_DIRS:
-+                if file.find(d) == 0:
-+                    self.DEFAULT_DIRS[d][1].append(file)
-+                    return self.DEFAULT_DIRS[d]
-+            self.DEFAULT_DIRS["rw"][1].append(file)
-+            return self.DEFAULT_DIRS["rw"]
-+      
-+      def add_capability(self, capability):
-+            if capability not in self.capabilities:
-+                self.capabilities.append(capability)
-+
-+      def add_process(self, process):
-+            if process not in self.processes:
-+                self.processes.append(process)
-+
-+      def add_boolean(self, name, description):
-+                self.booleans[name] = description
-+
-+      def add_file(self, file):
-+              self.files[file] = self.__find_path(file)
-+
-+      def add_dir(self, file):
-+              self.dirs[file] = self.__find_path(file)
-+              
-+      def generate_capabilities(self):
-+            newte = ""
-+            self.capabilities.sort()
-+            if len(self.capabilities) > 0:
-+                newte = "allow %s_t self:capability { %s };\n" % (self.name, " ".join(self.capabilities))
-+            return newte
-+
-+      def generate_process(self):
-+            newte = ""
-+            self.processes.sort()
-+            if len(self.processes) > 0:
-+                newte = "allow %s_t self:process { %s };\n" % (self.name, " ".join(self.processes))
-+            return newte
-+
-+
-+      def generate_network_rules(self):
-+              newte = ""
-+              if self.use_network():
-+                    newte = "\n"
-+
-+                    newte += re.sub("TEMPLATETYPE", self.name, network.te_network)
-+                    
-+                    if self.use_tcp():
-+                        newte += "\n"
-+                        newte += re.sub("TEMPLATETYPE", self.name, network.te_tcp)
-+
-+                        if self.use_in_tcp():
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_tcp)
-+
-+                            if self.need_tcp_type and len(self.in_tcp[PORTS]) > 0:
-+                                newte += re.sub("TEMPLATETYPE", self.name, network.te_in_need_port_tcp)
-+
-+                        if self.need_tcp_type and len(self.out_tcp[PORTS]) > 0:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_need_port_tcp)
-+
-+
-+                        if self.in_tcp[ALL]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_all_ports_tcp)
-+                        if self.in_tcp[RESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_reserved_ports_tcp)
-+                        if self.in_tcp[UNRESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_unreserved_ports_tcp)
-+                            
-+                        if self.out_tcp[ALL]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_all_ports_tcp)
-+                        if self.out_tcp[RESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_reserved_ports_tcp)
-+                        if self.out_tcp[UNRESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_unreserved_ports_tcp)
-+
-+                        for i in self.found_tcp_ports:
-+                            newte += i
-+
-+                    if self.use_udp():
-+                        newte += "\n"
-+                        newte += re.sub("TEMPLATETYPE", self.name, network.te_udp)
-+
-+                        if self.need_udp_type:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_need_port_udp)
-+                        if self.use_in_udp():
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_udp)
-+                        if self.in_udp[ALL]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_all_ports_udp)
-+                        if self.in_udp[RESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_reserved_ports_udp)
-+                        if self.in_udp[UNRESERVED]:
-+                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_unreserved_ports_udp)
-+
-+                        for i in self.found_udp_ports:
-+                            newte += i
-+              return newte
-+      
-+        def generate_transition_rules(self):
-+            newte = ""
-+            for app in self.transition_domains:
-+                tmp = re.sub("TEMPLATETYPE", self.name, user.te_transition_rules)
-+                newte += re.sub("APPLICATION", app, tmp)
-+
-+            if self.type == USER:
-+                for u in self.transition_users:
-+                    temp =  re.sub("TEMPLATETYPE", self.name, executable.te_run_rules)
-+                    newte += re.sub("USER", u.split("_u")[0], temp)
-+
-+            return newte
-+
-+        def generate_admin_rules(self):
-+            newte = ""
-+            if self.type == RUSER:
-+                newte += re.sub("TEMPLATETYPE", self.name, user.te_admin_rules)
-+            
-+                for app in self.admin_domains:
-+                    tmp = re.sub("TEMPLATETYPE", self.name, user.te_admin_domain_rules)
-+                    newte += re.sub("APPLICATION", app, tmp)
-+
-+                all_roles = []
-+                try:
-+                    all_roles = get_all_roles()
-+                except ValueError, e:
-+                    print "Can not get all roles, must be root for this information"
-+                except RuntimeError, e:
-+                    print "Can not get all roles", e
-+
-+                for u in self.transition_users:
-+                    role = u.split("_u")[0]
-+                    
-+                    if (role + "_r") in all_roles:
-+                        tmp =  re.sub("TEMPLATETYPE", self.name, user.te_admin_trans_rules)
-+                        newte += re.sub("USER", role, tmp)
-+
-+            return newte
-+
-+      def generate_dbus_if(self):
-+                newif = ""
-+                if self.use_dbus:
-+                    newif = re.sub("TEMPLATETYPE", self.name, executable.if_dbus_rules)
-+                return newif
-+
-+        def generate_sandbox_if(self):
-+            newif = ""
-+            if self.type != SANDBOX:
-+                return newif
-+            newif = re.sub("TEMPLATETYPE", self.name, executable.if_sandbox_rules)
-+            return newif
-+            
-+            
-+        def generate_admin_if(self):
-+            newif = ""
-+            newtypes = ""
-+            if self.initscript != "":
-+                newtypes += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_admin_types)
-+                newif += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_admin)
-+            for d in self.DEFAULT_KEYS:
-+                if len(self.DEFAULT_DIRS[d][1]) > 0:
-+                    newtypes += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_admin_types)
-+                    newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_admin_rules)
-+
-+            if newif != "":
-+                ret = re.sub("TEMPLATETYPE", self.name, executable.if_begin_admin)
-+                ret += newtypes
-+
-+                ret += re.sub("TEMPLATETYPE", self.name, executable.if_middle_admin)
-+                ret += newif
-+                ret += re.sub("TEMPLATETYPE", self.name, executable.if_end_admin)
-+                return ret
-+                
-+            return ""
-+                
-+      def generate_cgi_types(self):
-+              return re.sub("TEMPLATETYPE", self.file_name, executable.te_cgi_types)
-+      
-+      def generate_sandbox_types(self):
-+              return re.sub("TEMPLATETYPE", self.file_name, executable.te_sandbox_types)
-+      
-+      def generate_userapp_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_userapp_types)
-+      
-+      def generate_inetd_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_inetd_types)
-+      
-+      def generate_dbusd_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_dbusd_types)
-+      
-+      def generate_min_login_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_min_login_user_types)
-+      
-+      def generate_login_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_login_user_types)
-+      
-+      def generate_admin_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_admin_user_types)
-+
-+      def generate_existing_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_existing_user_types)
-+      
-+      def generate_x_login_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_x_login_user_types)
-+      
-+      def generate_root_user_types(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_root_user_types)
-+      
-+      def generate_daemon_types(self):
-+                newte = re.sub("TEMPLATETYPE", self.name, executable.te_daemon_types)
-+                if self.initscript != "":
-+                    newte += re.sub("TEMPLATETYPE", self.name, executable.te_initscript_types)
-+              return newte
-+      
-+      def generate_tmp_types(self):
-+              if self.use_tmp:
-+                    return re.sub("TEMPLATETYPE", self.name, tmp.te_types)
-+                else:
-+                    return ""
-+      
-+      def generate_booleans(self):
-+            newte = ""
-+            for b in self.booleans:
-+                tmp = re.sub("BOOLEAN", b, boolean.te_boolean)
-+                newte += re.sub("DESCRIPTION", self.booleans[b], tmp)
-+            return newte
-+
-+      def generate_boolean_rules(self):
-+            newte = ""
-+            for b in self.booleans:
-+                newte += re.sub("BOOLEAN", b, boolean.te_rules)
-+            return newte
-+
-+      def generate_sandbox_te(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_sandbox_types)
-+
-+      def generate_cgi_te(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_cgi_types)
-+
-+      def generate_daemon_rules(self):
-+                newif =  re.sub("TEMPLATETYPE", self.name, executable.te_daemon_rules)
-+
-+                return  newif
-+      
-+      def generate_login_user_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_login_user_rules)
-+      
-+      def generate_existing_user_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_existing_user_rules)
-+      
-+      def generate_x_login_user_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, user.te_x_login_user_rules)
-+      
-+      def generate_root_user_rules(self):
-+                newte =re.sub("TEMPLATETYPE", self.name, user.te_root_user_rules)
-+              return newte
-+      
-+      def generate_userapp_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_userapp_rules)
-+      
-+      def generate_inetd_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_inetd_rules)
-+      
-+      def generate_dbusd_rules(self):
-+              return re.sub("TEMPLATETYPE", self.name, executable.te_dbusd_rules)
-+      
-+      def generate_tmp_rules(self):
-+              if self.use_tmp:
-+                    return re.sub("TEMPLATETYPE", self.name, tmp.te_rules)
-+                else:
-+                    return ""
-+      
-+      def generate_cgi_rules(self):
-+              newte = ""
-+              newte += re.sub("TEMPLATETYPE", self.name, executable.te_cgi_rules)
-+              return newte
-+      
-+      def generate_sandbox_rules(self):
-+              newte = ""
-+              newte += re.sub("TEMPLATETYPE", self.name, executable.te_sandbox_rules)
-+              return newte
-+      
-+      def generate_user_if(self):
-+                newif =""
-+                if self.use_terminal or self.type == USER:
-+                    newif = re.sub("TEMPLATETYPE", self.name, executable.if_user_program_rules)
-+
-+                if self.type in ( TUSER, XUSER, AUSER, LUSER):
-+                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_role_change_rules)
-+                return newif
-+                
-+      def generate_if(self):
-+                newif = ""
-+                newif += re.sub("TEMPLATETYPE", self.name, executable.if_heading_rules)
-+                if self.program != "":
-+                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_program_rules)
-+                if self.initscript != "":
-+                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_rules)
-+              
-+                for d in self.DEFAULT_KEYS:
-+                      if len(self.DEFAULT_DIRS[d][1]) > 0:
-+                              newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_rules)
-+                                for i in self.DEFAULT_DIRS[d][1]:
-+                                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
-+                                            newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_stream_rules)
-+                                            break
-+                newif += self.generate_user_if()
-+                newif += self.generate_dbus_if()
-+                newif += self.generate_admin_if()
-+                newif += self.generate_sandbox_if()
-+    
-+              return newif
-+
-+      def generate_default_types(self):
-+              return self.DEFAULT_TYPES[self.type][0]()
-+              
-+      def generate_default_rules(self):
-+              return self.DEFAULT_TYPES[self.type][1]()
-+              
-+      def generate_roles_rules(self):
-+            newte = ""
-+            if self.type in ( TUSER, XUSER, AUSER, LUSER, EUSER):
-+                roles = ""
-+                if len(self.roles) > 0:
-+                    newte += re.sub("TEMPLATETYPE", self.name, user.te_sudo_rules)
-+                    newte += re.sub("TEMPLATETYPE", self.name, user.te_newrole_rules)
-+                    for role in self.roles:
-+                        tmp = re.sub("TEMPLATETYPE", self.name, user.te_roles_rules)
-+                        newte += re.sub("ROLE", role, tmp)
-+            return newte
-+        
-+      def generate_te(self):
-+              newte = self.generate_default_types()
-+                for d in self.DEFAULT_KEYS:
-+                      if len(self.DEFAULT_DIRS[d][1]) > 0:
-+                              # CGI scripts already have a rw_t 
-+                              if self.type != CGI or d != "rw":
-+                                      newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_types)
-+
-+                newte +="""
-+########################################
-+#
-+# %s local policy
-+#
-+""" % self.name
-+                newte += self.generate_capabilities()
-+                newte += self.generate_process()
-+              newte += self.generate_network_types()
-+              newte += self.generate_tmp_types()
-+              newte += self.generate_booleans()
-+              newte += self.generate_default_rules()
-+              newte += self.generate_boolean_rules()
-+
-+                for d in self.DEFAULT_KEYS:
-+                      if len(self.DEFAULT_DIRS[d][1]) > 0:
-+                              newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_rules)
-+                                for i in self.DEFAULT_DIRS[d][1]:
-+                                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
-+                                            newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_stream_rules)
-+                                            break
-+
-+              newte += self.generate_tmp_rules()
-+              newte += self.generate_network_rules()
-+              newte += self.generate_fd_rules()
-+              newte += self.generate_etc_rules()
-+              newte += self.generate_pam_rules()
-+              newte += self.generate_uid_rules()              
-+              newte += self.generate_audit_rules()    
-+              newte += self.generate_syslog_rules()           
-+              newte += self.generate_localization_rules()
-+              newte += self.generate_resolve_rules()          
-+              newte += self.generate_roles_rules()
-+              newte += self.generate_mail_rules()             
-+              newte += self.generate_transition_rules()
-+              newte += self.generate_admin_rules()
-+              newte += self.generate_dbus_rules()
-+              newte += self.generate_kerberos_rules()
-+              newte += self.generate_manage_krb5_rcache_rules()               
-+
-+              return newte
-+              
-+      def generate_fc(self):
-+              newfc = ""
-+                fclist = []
-+                if self.type in USERS +  [ SANDBOX ]:
-+                    return re.sub("EXECUTABLE", self.program, executable.fc_user)
-+                if self.program == "":
-+                    raise ValueError(_("You must enter the executable path for your confined process"))
-+
-+              t1 = re.sub("EXECUTABLE", self.program, executable.fc_program)
-+              fclist.append(re.sub("TEMPLATETYPE", self.name, t1))
-+
-+                if self.initscript != "":
-+                    t1 = re.sub("EXECUTABLE", self.initscript, executable.fc_initscript)
-+                    fclist.append(re.sub("TEMPLATETYPE", self.name, t1))
-+
-+              for i in self.files.keys():
-+                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
-+                            t1 = re.sub("TEMPLATETYPE", self.name, self.files[i][2].fc_sock_file)
-+                        else:
-+                            t1 = re.sub("TEMPLATETYPE", self.name, self.files[i][2].fc_file)
-+                      t2 = re.sub("FILENAME", i, t1)
-+                        fclist.append(re.sub("FILETYPE", self.files[i][0], t2))
-+
-+              for i in self.dirs.keys():
-+                      t1 = re.sub("TEMPLATETYPE", self.name, self.dirs[i][2].fc_dir)
-+                      t2 = re.sub("FILENAME", i, t1)
-+                        fclist.append(re.sub("FILETYPE", self.dirs[i][0], t2))
-+
-+                fclist.sort()
-+                newfc="\n".join(fclist)
-+              return newfc
-+      
-+      def generate_user_sh(self):
-+            newsh = ""
-+            if self.type not in ( TUSER, XUSER, AUSER, LUSER, EUSER):
-+                return newsh
-+
-+            roles = ""
-+            for role in self.roles:
-+                roles += " %s_r" % role
-+            if roles != "":
-+                roles += " system_r"
-+            if self.type == EUSER:
-+                tmp = re.sub("TEMPLATETYPE", self.name, script.eusers)
-+            else:
-+                tmp = re.sub("TEMPLATETYPE", self.name, script.users)
-+            newsh += re.sub("ROLES", roles, tmp)
-+
-+            if self.type == RUSER:
-+                for u in self.transition_users:
-+                    tmp =  re.sub("TEMPLATETYPE", self.name, script.admin_trans)
-+                    newsh += re.sub("USER", u, tmp)
-+
-+            if self.type == LUSER:
-+                    newsh +=  re.sub("TEMPLATETYPE", self.name, script.min_login_user_default_context)
-+            else:
-+                    newsh +=  re.sub("TEMPLATETYPE", self.name, script.x_login_user_default_context)
-+
-+                
-+            return newsh
-+        
-+      def generate_sh(self):
-+                temp  = re.sub("TEMPLATETYPE", self.file_name, script.compile)
-+                if self.type == EUSER:
-+                    newsh  = re.sub("TEMPLATEFILE", "my%s" % self.file_name, temp)
-+                else:
-+                    newsh  = re.sub("TEMPLATEFILE", self.file_name, temp)
-+                if self.program != "":
-+                    newsh += re.sub("FILENAME", self.program, script.restorecon)
-+                if self.initscript != "":
-+                    newsh += re.sub("FILENAME", self.initscript, script.restorecon)
-+
-+              for i in self.files.keys():
-+                      newsh += re.sub("FILENAME", i, script.restorecon)
-+
-+              for i in self.dirs.keys():
-+                      newsh += re.sub("FILENAME", i, script.restorecon)
-+
-+                for i in self.in_tcp[PORTS] + self.out_tcp[PORTS]:
-+                    if self.find_port(i,"tcp") == None:
-+                        t1 = re.sub("PORTNUM", "%d" % i, script.tcp_ports)
-+                        newsh += re.sub("TEMPLATETYPE", self.name, t1)
-+
-+                for i in self.in_udp[PORTS]:
-+                    if self.find_port(i,"udp") == None:
-+                      t1 = re.sub("PORTNUM", "%d" % i, script.udp_ports)
-+                      newsh += re.sub("TEMPLATETYPE", self.name, t1)
-+
-+                newsh += self.generate_user_sh()
-+                      
-+              return newsh
-+      
-+      def write_te(self, out_dir):
-+                if self.type == EUSER:
-+                    tefile = "%s/my%s.te" % (out_dir, self.file_name)
-+                else:
-+                    tefile = "%s/%s.te" % (out_dir, self.file_name)
-+              fd = open(tefile, "w")
-+              fd.write(self.generate_te())
-+              fd.close()
-+              return tefile
-+
-+      def write_sh(self, out_dir):
-+                if self.type == EUSER:
-+                    shfile = "%s/my%s.sh" % (out_dir, self.file_name)
-+                else:
-+                    shfile = "%s/%s.sh" % (out_dir, self.file_name)
-+              fd = open(shfile, "w")
-+              fd.write(self.generate_sh())
-+              fd.close()
-+                os.chmod(shfile, 0750)
-+              return shfile
-+
-+      def write_if(self, out_dir):
-+                if self.type == EUSER:
-+                    iffile = "%s/my%s.if" % (out_dir, self.file_name)
-+                else:
-+                    iffile = "%s/%s.if" % (out_dir, self.file_name)
-+              fd = open(iffile, "w")
-+              fd.write(self.generate_if())
-+              fd.close()
-+              return iffile
-+
-+      def write_fc(self,out_dir):
-+                if self.type == EUSER:
-+                    fcfile = "%s/my%s.fc" % (out_dir, self.file_name)
-+                else:
-+                    fcfile = "%s/%s.fc" % (out_dir, self.file_name)
-+                fd = open(fcfile, "w")
-+                fd.write(self.generate_fc())
-+                fd.close()
-+              return fcfile
-+
-+        def gen_writeable(self):
-+            fd = os.popen("rpm -qlf %s" % self.program)
-+            for f in fd.read().split():
-+                for b in self.DEFAULT_DIRS:
-+                    if b == "/etc":
-+                        continue
-+                    if f.startswith(b):
-+                        if os.path.isfile(f):
-+                            self.add_file(f)
-+                        else:
-+                            self.add_dir(f)
-+            fd.close()
-+            if os.path.isfile("/var/run/%s.pid"  % self.name):
-+                self.add_file("/var/run/%s.pid"  % self.name)
-+
-+            if os.path.isfile("/etc/rc.d/init.d/%s"  % self.name):
-+                self.set_init_script("/etc/rc\.d/init\.d/%s"  % self.name)
-+
-+
-+        def gen_symbols(self):
-+            if self.type not in APPLICATIONS:
-+                return
-+
-+            fd = os.popen("nm -D %s | grep U" % self.program)
-+            for s in fd.read().split():
-+                for b in self.symbols:
-+                    if s.startswith(b):
-+                        exec "self.%s" %  self.symbols[b]
-+            fd.close()
-+
-+      def generate(self, out_dir = "."):
-+            self.write_te(out_dir)
-+            self.write_if(out_dir)
-+            self.write_fc(out_dir)
-+            self.write_sh(out_dir)
-+            out = "Created the following files in:\n%s/\n" %  out_dir
-+            out += "%s.te # %s\n" % (self.file_name, _("Type Enforcement file"))
-+            out += "%s.if # %s\n" % (self.file_name, _("Interface file"))
-+            out += "%s.fc # %s\n" % (self.file_name, _("File Contexts file"))
-+            out += "%s.sh # %s\n" % (self.file_name, _("Setup Script"))
-+            return out
-+
-+def errorExit(error):
-+      sys.stderr.write("%s: " % sys.argv[0])
-+      sys.stderr.write("%s\n" % error)
-+      sys.stderr.flush()
-+      sys.exit(1)
-+
-+def test():
-+    import tempfile
-+
-+    tmpdir = tempfile.mkdtemp(prefix="polgen_")
-+
-+    mypolicy = policy("myrwho", DAEMON)
-+    mypolicy.set_program("/usr/sbin/myrwhod")
-+    mypolicy.set_init_script("/etc/init.d/myrwhod")
-+    mypolicy.add_dir("/etc/nasd")
-+    mypolicy.set_in_tcp(1, 0, 0, "513")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_tmp(True)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    mypolicy.add_dir("/var/run/myrwho")
-+    mypolicy.add_dir("/var/lib/myrwho")
-+    print mypolicy.generate(tmpdir)
-+
-+    mypolicy = policy("mywhois", USER)
-+    mypolicy.set_program("/usr/bin/jwhois")
-+    mypolicy.set_out_tcp(0, "43,63,4321")
-+    mypolicy.set_out_udp(0, "43,63,4321")
-+    mypolicy.add_dir("/var/cache/jwhois")
-+    mypolicy.set_transition_users(["staff_u"])
-+    print mypolicy.generate(tmpdir)
-+
-+    mypolicy = policy("mytuser", TUSER)
-+    mypolicy.set_admin_roles(["mydbadm"])
-+    mypolicy.add_boolean("allow_mytuser_setuid", "Allow mytuser users to run setuid applications")
-+    print mypolicy.generate(tmpdir)
-+    
-+    mypolicy = policy("mycgi", CGI)
-+    mypolicy.set_program("/var/www/cgi-bin/cgi")
-+    mypolicy.set_in_tcp(1, 0, 0, "512, 55000-55000")
-+    mypolicy.set_in_udp(1, 0, 0, "1513")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_tmp(False)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    mypolicy.set_out_tcp(0,"8000")
-+    print mypolicy.generate(tmpdir)
-+
-+    mypolicy = policy("myinetd", INETD)
-+    mypolicy.set_program("/usr/bin/mytest")
-+    mypolicy.set_in_tcp(1, 0, 0, "513")
-+    mypolicy.set_in_udp(1, 0, 0, "1513")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_tmp(True)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    mypolicy.add_file("/var/lib/mysql/mysql.sock")
-+    mypolicy.add_file("/var/run/rpcbind.sock")
-+    mypolicy.add_file("/var/run/daemon.pub")
-+    mypolicy.add_file("/var/log/daemon.log")
-+    mypolicy.add_dir("/var/lib/daemon")
-+    mypolicy.add_dir("/etc/daemon")
-+    mypolicy.add_dir("/etc/daemon/special")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    mypolicy.set_use_audit(True)
-+    mypolicy.set_use_dbus(True)
-+    mypolicy.set_use_terminal(True)
-+    mypolicy.set_use_mail(True)
-+    mypolicy.set_out_tcp(0,"8000")
-+    print mypolicy.generate(tmpdir)
-+
-+
-+    mypolicy = policy("mydbus", DBUS)
-+    mypolicy.set_program("/usr/libexec/mydbus")
-+    mypolicy.set_in_tcp(1, 0, 0, "513")
-+    mypolicy.set_in_udp(1, 0, 0, "1513")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_tmp(True)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    print mypolicy.generate(tmpdir)
-+
-+    mypolicy = policy("myxuser", XUSER)
-+    mypolicy.set_in_tcp(1, 1, 1, "28920")
-+    mypolicy.set_in_udp(0, 0, 1, "1513")
-+    mypolicy.set_transition_domains(["mozilla"])
-+    print mypolicy.generate(tmpdir)
-+    
-+    mypolicy = policy("myuser", USER)
-+    mypolicy.set_program("/usr/bin/myuser")
-+    mypolicy.set_in_tcp(1, 0, 0, "513")
-+    mypolicy.set_in_udp(1, 0, 0, "1513")
-+    mypolicy.set_use_uid(True)
-+    mypolicy.set_use_tmp(True)
-+    mypolicy.set_use_syslog(True)
-+    mypolicy.set_use_pam(True)
-+    mypolicy.add_file("/var/lib/myuser/myuser.sock")
-+    mypolicy.set_out_tcp(0,"8000")
-+    mypolicy.set_transition_users(["unconfined_u", "staff_u"])
-+    print mypolicy.generate(tmpdir)
-+    
-+    mypolicy = policy("mysandbox", SANDBOX)
-+    mypolicy.set_out_udp(0, "993")
-+    print mypolicy.generate("/tmp")
-+
-+    mypolicy = policy("mydbadm", RUSER)
-+    mypolicy.set_admin_domains(["postgresql", "mysql"])
-+    print mypolicy.generate(tmpdir)
-+    os.chdir(tmpdir)
-+    rc, output=commands.getstatusoutput("make -f /usr/share/selinux/devel/Makefile")
-+    print output
-+    sys.exit(os.WEXITSTATUS(rc))
-+
-+import os, sys, getopt, socket, random, fcntl
-+    
-+def usage(msg):
-+    print _("""
-+%s
-+
-+sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]
-+valid Types:
-+""") % msg
-+    keys=poltype.keys()
-+    for i in keys:
-+        print "\t%s\t%s" % (i, poltype[i])
-+    sys.exit(-1)
-+        
-+if __name__ == '__main__':
-+    setype = DAEMON
-+    name = None
-+    try:
-+        gopts, cmds = getopt.getopt(sys.argv[1:], "ht:mn:", 
-+                                    ["type=", 
-+                                     "mount",
-+                                     "test",
-+                                     "name=",
-+                                     "help"])
-+        for o, a in gopts:
-+            if o == "-t" or o == "--type":
-+                try:
-+                    if int(a) not in poltype:
-+                        usage ("invalid type %s" % a )
-+                except:
-+                    usage ("invalid type %s" % a )
-+
-+                setype = int(a)
-+
-+            if o == "-m" or o == "--mount":
-+                mount_ind = True
-+                
-+            if o == "-n" or o == "--name":
-+                name = a
-+                
-+            if o == "-h" or o == "--help":
-+                usage("")
-+
-+            if o == "--test":
-+                test()
-+                sys.exit(0)
-+            
-+    except getopt.error, error:
-+        usage(_("Options Error %s ") % error.msg)
-+
-+    if len(cmds) == 0:
-+           usage(_("Executable or Name required"))
-+
-+    try:
-+        if not name:
-+            name = os.path.basename(cmds[0]).replace("-","_")
-+        cmd = cmds[0]
-+        mypolicy = policy(name, setype)
-+        if setype not in USERS +  [ SANDBOX ]:
-+            mypolicy.set_program(cmd)
-+
-+        if setype in APPLICATIONS:
-+            mypolicy.gen_writeable()
-+            mypolicy.gen_symbols()
-+        print mypolicy.generate()
-+        sys.exit(0)
-+    except ValueError, e:
-+        usage(e)
-diff -up policycoreutils-2.1.8/gui/portsPage.py.gui policycoreutils-2.1.8/gui/portsPage.py
---- policycoreutils-2.1.8/gui/portsPage.py.gui 2011-11-07 15:12:01.906834233 -0500
-+++ policycoreutils-2.1.8/gui/portsPage.py     2011-11-07 15:12:01.906834233 -0500
-@@ -0,0 +1,259 @@
-+## portsPage.py - show selinux mappings
-+## Copyright (C) 2006 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import seobject
-+import commands
-+from semanagePage import *;
-+
-+##
-+## I18N
-+## 
-+PROGNAME = "policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+TYPE_COL = 0
-+PROTOCOL_COL = 1
-+MLS_COL = 2
-+PORT_COL = 3
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class portsPage(semanagePage):
-+    def __init__(self, xml):
-+        semanagePage.__init__(self, xml, "ports", _("Network Port"))
-+        xml.signal_connect("on_group_clicked", self.on_group_clicked)
-+        self.group = False
-+        self.ports_filter = xml.get_widget("portsFilterEntry")
-+        self.ports_filter.connect("focus_out_event", self.filter_changed)
-+        self.ports_filter.connect("activate", self.filter_changed)
-+        self.ports_name_entry = xml.get_widget("portsNameEntry")
-+        self.ports_protocol_combo = xml.get_widget("portsProtocolCombo")
-+        self.ports_number_entry = xml.get_widget("portsNumberEntry")
-+        self.ports_mls_entry = xml.get_widget("portsMLSEntry")
-+        self.ports_add_button = xml.get_widget("portsAddButton")
-+        self.ports_properties_button = xml.get_widget("portsPropertiesButton")
-+        self.ports_delete_button = xml.get_widget("portsDeleteButton")
-+        liststore = self.ports_protocol_combo.get_model()
-+        iter = liststore.get_iter_first()
-+        self.ports_protocol_combo.set_active_iter(iter)
-+        self.init_store()
-+        self.edit = True
-+        self.load()
-+
-+    def filter_changed(self, *arg):
-+        filter =  arg[0].get_text()
-+        if filter != self.filter:
-+            if self.edit:
-+                self.load(filter)
-+            else:
-+                self.group_load(filter)
-+        
-+    def init_store(self):
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING , gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+
-+        self.view.set_search_equal_func(self.search)
-+        col = gtk.TreeViewColumn(_("SELinux Port\nType"), gtk.CellRendererText(), text = TYPE_COL)
-+        col.set_sort_column_id(TYPE_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.store.set_sort_column_id(TYPE_COL, gtk.SORT_ASCENDING)
-+
-+        col = gtk.TreeViewColumn(_("Protocol"), gtk.CellRendererText(), text = PROTOCOL_COL)
-+        col.set_sort_column_id(PROTOCOL_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        self.mls_col = gtk.TreeViewColumn(_("MLS/MCS\nLevel"), gtk.CellRendererText(), text = MLS_COL)
-+        self.mls_col.set_resizable(True)
-+        self.mls_col.set_sort_column_id(MLS_COL)
-+        self.view.append_column(self.mls_col)
-+
-+        col = gtk.TreeViewColumn(_("Port"), gtk.CellRendererText(), text = PORT_COL)
-+        col.set_sort_column_id(PORT_COL)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+        self.store.set_sort_func(PORT_COL,self.sort_int, "")
-+
-+    def sort_int(self, treemodel, iter1, iter2, user_data):
-+        try:
-+            p1 = int(treemodel.get_value(iter1,PORT_COL).split('-')[0])
-+            p2 = int(treemodel.get_value(iter2,PORT_COL).split('-')[0])
-+            if p1 > p2:
-+                return 1
-+            if p1 == p2:
-+                return 0
-+            return -1
-+        except:
-+            return 0
-+
-+    def load(self,filter = ""):
-+        self.filter=filter            
-+        self.port = seobject.portRecords()
-+        dict = self.port.get_all(self.local)
-+        keys = dict.keys()
-+        keys.sort()
-+        self.store.clear()
-+        for k in keys:
-+            if not (self.match(str(k[0]), filter) or self.match(dict[k][0], filter) or self.match(k[2], filter) or self.match(dict[k][1], filter) or self.match(dict[k][1], filter)):
-+                continue
-+            iter = self.store.append()
-+            if k[0] == k[1]:
-+                self.store.set_value(iter, PORT_COL, k[0])
-+            else:
-+                rec = "%s-%s" % k[:2]
-+                self.store.set_value(iter, PORT_COL, rec)
-+            self.store.set_value(iter, TYPE_COL, dict[k][0])
-+            self.store.set_value(iter, PROTOCOL_COL, k[2])
-+            self.store.set_value(iter, MLS_COL, dict[k][1])
-+        self.view.get_selection().select_path ((0,))
-+    
-+    def group_load(self, filter = ""):
-+        self.filter=filter            
-+        self.port = seobject.portRecords()
-+        dict = self.port.get_all_by_type(self.local)
-+        keys = dict.keys()
-+        keys.sort()
-+        self.store.clear()
-+        for k in keys:
-+            ports_string = ", ".join(dict[k])
-+            if not (self.match(ports_string, filter) or self.match(k[0], filter) or self.match(k[1], filter) ):
-+                continue
-+            iter = self.store.append()
-+            self.store.set_value(iter, TYPE_COL, k[0])
-+            self.store.set_value(iter, PROTOCOL_COL, k[1])
-+            self.store.set_value(iter, PORT_COL, ports_string)
-+            self.store.set_value(iter, MLS_COL, "")
-+        self.view.get_selection().select_path ((0,))
-+
-+    def propertiesDialog(self):
-+        if self.edit:
-+            semanagePage.propertiesDialog(self)
-+        
-+    def dialogInit(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        self.ports_number_entry.set_text(store.get_value(iter, PORT_COL))
-+        self.ports_number_entry.set_sensitive(False)
-+        self.ports_protocol_combo.set_sensitive(False)
-+        self.ports_name_entry.set_text(store.get_value(iter, TYPE_COL))
-+        self.ports_mls_entry.set_text(store.get_value(iter, MLS_COL))
-+        protocol = store.get_value(iter, PROTOCOL_COL)
-+        liststore = self.ports_protocol_combo.get_model()
-+        iter = liststore.get_iter_first()
-+        while iter != None and liststore.get_value(iter,0) != protocol:
-+            iter = liststore.iter_next(iter)
-+        if iter != None:
-+            self.ports_protocol_combo.set_active_iter(iter)
-+        
-+    def dialogClear(self):
-+        self.ports_number_entry.set_text("")
-+        self.ports_number_entry.set_sensitive(True)
-+        self.ports_protocol_combo.set_sensitive(True)
-+        self.ports_name_entry.set_text("")
-+        self.ports_mls_entry.set_text("s0")
-+        
-+    def delete(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        port = store.get_value(iter, PORT_COL)
-+        protocol = store.get_value(iter, 1)
-+        try:
-+            self.wait()            
-+            (rc, out) = commands.getstatusoutput("semanage port -d -p %s %s" % (protocol, port))
-+            self.ready()
-+            if rc != 0:
-+                return self.error(out)
-+            store.remove(iter)
-+            self.view.get_selection().select_path ((0,))
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
-+    def add(self):
-+        target = self.ports_name_entry.get_text().strip()
-+        mls = self.ports_mls_entry.get_text().strip()
-+        port_number = self.ports_number_entry.get_text().strip()
-+        if port_number == "":
-+            port_number = "1"
-+        for i in port_number.split("-"):
-+            if not i.isdigit():
-+                self.error(_("Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 ") % port_number )
-+                return False
-+        list_model = self.ports_protocol_combo.get_model()
-+        iter = self.ports_protocol_combo.get_active_iter()
-+        protocol = list_model.get_value(iter,0)
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage port -a -p %s -r %s -t %s %s" % (protocol, mls, target, port_number))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        iter = self.store.append()
-+
-+        self.store.set_value(iter, TYPE_COL, target)
-+        self.store.set_value(iter, PORT_COL, port_number)
-+        self.store.set_value(iter, PROTOCOL_COL, protocol)
-+        self.store.set_value(iter, MLS_COL, mls)
-+        
-+    def modify(self):
-+        target = self.ports_name_entry.get_text().strip()
-+        mls = self.ports_mls_entry.get_text().strip()
-+        port_number = self.ports_number_entry.get_text().strip()
-+        list_model = self.ports_protocol_combo.get_model()
-+        iter = self.ports_protocol_combo.get_active_iter()
-+        protocol = list_model.get_value(iter,0)
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage port -m -p %s -r %s -t %s %s" % (protocol, mls, target, port_number))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        store, iter = self.view.get_selection().get_selected()
-+        self.store.set_value(iter, TYPE_COL, target)
-+        self.store.set_value(iter, PORT_COL, port_number)
-+        self.store.set_value(iter, PROTOCOL_COL, protocol)
-+        self.store.set_value(iter, MLS_COL, mls)
-+
-+    def on_group_clicked(self, button):
-+        self.ports_add_button.set_sensitive(self.group)
-+        self.ports_properties_button.set_sensitive(self.group)
-+        self.ports_delete_button.set_sensitive(self.group)
-+        self.mls_col.set_visible(self.group)
-+
-+        self.group = not self.group
-+        if self.group:
-+            button.set_label(_("List View"))
-+            self.group_load(self.filter)
-+        else:
-+            button.set_label(_("Group View"))
-+            self.load(self.filter)
-+
-+        return True
-+        
-diff -up policycoreutils-2.1.8/gui/selinux.tbl.gui policycoreutils-2.1.8/gui/selinux.tbl
---- policycoreutils-2.1.8/gui/selinux.tbl.gui  2011-11-07 15:12:01.907834233 -0500
-+++ policycoreutils-2.1.8/gui/selinux.tbl      2011-11-07 15:12:01.907834233 -0500
-@@ -0,0 +1,234 @@
-+acct_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for acct daemon")
-+allow_daemons_dump_core _("Admin") _("Allow all daemons to write corefiles to /")
-+allow_daemons_use_tty _("Admin") _("Allow all daemons the ability to use unallocated ttys")
-+allow_gadmin_exec_content _("User Privs") _("Allow gadmin SELinux user account to execute files in home directory or /tmp")
-+allow_guest_exec_content _("User Privs") _("Allow guest SELinux user account to execute files in home directory or /tmp")
-+allow_java_execstack _("Memory Protection") _("Allow java executable stack")
-+allow_mount_anyfile _("Mount") _("Allow mount to mount any file")
-+allow_mounton_anydir  _("Mount") _("Allow mount to mount any directory")
-+allow_mplayer_execstack _("Memory Protection") _("Allow mplayer executable stack")
-+allow_ssh_keysign _("SSH") _("Allow ssh to run ssh-keysign")
-+allow_staff_exec_content _("User Privs") _("Allow staff SELinux user account to execute files in home directory or /tmp")
-+allow_sysadm_exec_content _("User Privs") _("Allow sysadm SELinux user account to execute files in home directory or /tmp")
-+allow_unconfined_exec_content _("User Privs") _("Allow unconfined SELinux user account to execute files in home directory or /tmp")
-+allow_unlabeled_packets _("Network Configuration") _("Allow unlabeled packets to flow on the network")
-+allow_user_exec_content _("User Privs") _("Allow user SELinux user account to execute files in home directory or /tmp")
-+allow_unconfined_execmem_dyntrans _("Memory Protection") _("Allow unconfined to dyntrans to unconfined_execmem")
-+allow_user_mysql_connect _("Databases") _("Allow user to connect to mysql socket")
-+allow_user_postgresql_connect _("Databases") _("Allow user to connect to postgres socket")
-+allow_write_xshm _("XServer") _("Allow clients to write to X shared memory")
-+allow_xguest_exec_content _("User Privs") _("Allow xguest SELinux user account to execute files in home directory or /tmp")
-+allow_ypbind _("NIS") _("Allow daemons to run with NIS")
-+browser_confine_staff _("Web Applications") _("Transition staff SELinux user to Web Browser Domain")
-+browser_confine_sysadm _("Web Applications") _("Transition sysadm SELinux user to Web Browser Domain")
-+browser_confine_user _("Web Applications") _("Transition user SELinux user to Web Browser Domain")
-+browser_confine_xguest _("Web Applications") _("Transition xguest SELinux user to Web Browser Domain")
-+browser_write_staff_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
-+browser_write_sysadm_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
-+browser_write_user_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
-+browser_write_xguest_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
-+amanda_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for amanda")
-+amavis_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for amavis")
-+apmd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for apmd daemon")
-+arpwatch_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for arpwatch daemon")
-+auditd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for auditd daemon")
-+automount_disable_trans _("Mount") _("Disable SELinux protection for automount daemon")
-+avahi_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for avahi")
-+bluetooth_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for bluetooth daemon")
-+canna_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for canna daemon")
-+cardmgr_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cardmgr daemon")
-+ccs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for Cluster Server")
-+cdrecord_read_content _("User Privs") _("Allow cdrecord to read various content. nfs, samba, removable devices, user temp and untrusted content files")
-+ciped_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ciped daemon")
-+clamd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clamd daemon")
-+clamscan_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clamscan")
-+clvmd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clvmd")
-+comsat_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for comsat daemon")
-+courier_authdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
-+courier_pcp_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
-+courier_pop_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
-+courier_sqwebmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
-+courier_tcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
-+cpucontrol_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cpucontrol daemon")
-+cpuspeed_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cpuspeed daemon")
-+crond_disable_trans _("Cron") _("Disable SELinux protection for crond daemon")
-+cupsd_config_disable_trans _("Printing") _("Disable SELinux protection for cupsd back end server")
-+cupsd_disable_trans _("Printing") _("Disable SELinux protection for cupsd daemon")
-+cupsd_lpd_disable_trans _("Printing") _("Disable SELinux protection for cupsd_lpd")
-+cvs_disable_trans _("CVS") _("Disable SELinux protection for cvs daemon")
-+cyrus_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cyrus daemon")
-+dbskkd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dbskkd daemon")
-+dbusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dbusd daemon")
-+dccd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccd")
-+dccifd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccifd")
-+dccm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccm")
-+ddt_client_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ddt daemon")
-+devfsd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for devfsd daemon")
-+dhcpc_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dhcpc daemon")
-+dhcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dhcpd daemon")
-+dictd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dictd daemon")
-+direct_sysadm_daemon _("Admin") _("Allow sysadm_t to directly start daemons")
-+disable_evolution_trans _("Web Applications") _("Disable SELinux protection for Evolution")
-+disable_games_trans _("Games") _("Disable SELinux protection for games")
-+disable_mozilla_trans _("Web Applications") _("Disable SELinux protection for the web browsers")
-+disable_thunderbird_trans _("Web Applications") _("Disable SELinux protection for Thunderbird")
-+distccd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for distccd daemon")
-+dmesg_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dmesg daemon")
-+dnsmasq_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dnsmasq daemon")
-+dovecot_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dovecot daemon")
-+entropyd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for entropyd daemon")
-+fetchmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fetchmail")
-+fingerd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fingerd daemon")
-+freshclam_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for freshclam daemon")
-+fsdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fsdaemon daemon")
-+gpm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for gpm daemon")
-+gssd_disable_trans _("NFS") _("Disable SELinux protection for gss daemon")
-+hald_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for Hal daemon")
-+hide_broken_symptoms _("Compatibility") _("Do not audit things that we know to be broken but which are not security risks")
-+hostname_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hostname daemon")
-+hotplug_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hotplug daemon")
-+howl_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for howl daemon")
-+hplip_disable_trans _("Printing") _("Disable SELinux protection for cups hplip daemon")
-+httpd_rotatelogs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for httpd rotatelogs")
-+httpd_suexec_disable_trans _("HTTPD Service") _("Disable SELinux protection for http suexec")
-+hwclock_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hwclock daemon")
-+i18n_input_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for i18n daemon")
-+imazesrv_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for imazesrv daemon")
-+inetd_child_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for inetd child daemons")
-+inetd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for inetd daemon")
-+innd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for innd daemon")
-+iptables_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for iptables daemon")
-+ircd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ircd daemon")
-+irqbalance_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for irqbalance daemon")
-+iscsid_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for iscsi daemon")
-+jabberd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for jabberd daemon")
-+kadmind_disable_trans _("Kerberos") _("Disable SELinux protection for kadmind daemon")
-+klogd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for klogd daemon")
-+krb5kdc_disable_trans _("Kerberos") _("Disable SELinux protection for krb5kdc daemon")
-+ktalkd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ktalk daemons")
-+kudzu_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for kudzu daemon")
-+locate_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for locate daemon")
-+lpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lpd daemon")
-+lrrd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lrrd daemon")
-+lvm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lvm daemon")
-+mailman_mail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mailman")
-+mail_read_content _("Web Applications") _("Allow evolution and thunderbird to read user files")
-+mdadm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mdadm daemon")
-+monopd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for monopd daemon")
-+mozilla_read_content _("Web Applications") _("Allow the mozilla browser to read user files")
-+mrtg_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mrtg daemon")
-+mysqld_disable_trans _("Databases") _("Disable SELinux protection for mysqld daemon")
-+nagios_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nagios daemon")
-+named_disable_trans _("Name Service") _("Disable SELinux protection for named daemon")
-+nessusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nessusd daemon")
-+NetworkManager_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for NetworkManager")
-+nfsd_disable_trans _("NFS") _("Disable SELinux protection for nfsd daemon")
-+nmbd_disable_trans _("Samba") _("Disable SELinux protection for nmbd daemon")
-+nrpe_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nrpe daemon")
-+nscd_disable_trans _("Name Service") _("Disable SELinux protection for nscd daemon")
-+nsd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nsd daemon")
-+ntpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ntpd daemon")
-+oddjob_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for oddjob")
-+oddjob_mkhomedir_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for oddjob_mkhomedir")
-+openvpn_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for openvpn daemon")
-+pam_console_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pam daemon")
-+pegasus_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pegasus")
-+perdition_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for perdition daemon")
-+portmap_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for portmap daemon")
-+portslave_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for portslave daemon")
-+postfix_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for postfix")
-+postgresql_disable_trans _("Databases") _("Disable SELinux protection for postgresql daemon")
-+pppd_for_user _("pppd") _("Allow pppd to be run for a regular user")
-+pptp_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pptp")
-+prelink_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for prelink daemon")
-+privoxy_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for privoxy daemon")
-+ptal_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ptal daemon")
-+pxe_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pxe daemon")
-+pyzord_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pyzord")
-+quota_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for quota daemon")
-+radiusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for radiusd daemon")
-+radvd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for radvd daemon")
-+rdisc_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rdisc")
-+readahead_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for readahead")
-+read_default_t _("Admin") _("Allow programs to read files in non-standard locations (default_t)")
-+restorecond_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for restorecond")
-+rhgb_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rhgb daemon")
-+ricci_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ricci")
-+ricci_modclusterd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ricci_modclusterd")
-+rlogind_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rlogind daemon")
-+rpcd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rpcd daemon")
-+rshd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rshd")
-+rsync_disable_trans _("rsync") _("Disable SELinux protection for rsync daemon")
-+run_ssh_inetd _("SSH") _("Allow ssh to run from inetd instead of as a daemon")
-+samba_share_nfs _("Samba") _("Allow Samba to share nfs directories")
-+allow_saslauthd_read_shadow _("SASL authentication server") _("Allow sasl authentication server to read /etc/shadow")
-+allow_xserver_execmem _("XServer") _("Allow X-Windows server to map a memory region as both executable and writable")
-+saslauthd_disable_trans _("SASL authentication server") _("Disable SELinux protection for saslauthd daemon")
-+scannerdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for scannerdaemon daemon")
-+secure_mode  _("Admin") _("Do not allow transition to sysadm_t, sudo and su effected")
-+secure_mode_insmod  _("Admin") _("Do not allow any processes to load kernel modules")
-+secure_mode_policyload  _("Admin") _("Do not allow any processes to modify kernel SELinux policy")
-+sendmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sendmail daemon")
-+setrans_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for setrans")
-+setroubleshootd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for setroubleshoot daemon")
-+slapd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for slapd daemon")
-+slrnpull_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for slrnpull daemon")
-+smbd_disable_trans _("Samba") _("Disable SELinux protection for smbd daemon")
-+snmpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for snmpd daemon")
-+snort_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for snort daemon")
-+soundd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for soundd daemon")
-+sound_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sound daemon")
-+spamd_disable_trans _("Spam Protection") _("Disable SELinux protection for spamd daemon")
-+spamd_enable_home_dirs _("Spam Protection") _("Allow spamd to access home directories")
-+spamassassin_can_network _("Spam Protection") _("Allow Spam Assassin daemon network access")
-+speedmgmt_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for speedmgmt daemon")
-+squid_connect_any _("Squid") _("Allow squid daemon to connect to the network")
-+squid_disable_trans _("Squid") _("Disable SELinux protection for squid daemon")
-+ssh_keygen_disable_trans _("SSH") _("Disable SELinux protection for ssh daemon")
-+ssh_sysadm_login _("SSH") _("Allow ssh logins as sysadm_r:sysadm_t")
-+staff_read_sysadm_file _("Admin") _("Allow staff_r users to search the sysadm home dir and read files (such as ~/.bashrc)")
-+stunnel_disable_trans _("Universal SSL tunnel") _("Disable SELinux protection for stunnel daemon")
-+stunnel_is_daemon _("Universal SSL tunnel") _("Allow stunnel daemon to run as standalone, outside of xinetd")
-+swat_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for swat daemon")
-+sxid_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sxid daemon")
-+syslogd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for syslogd daemon")
-+system_crond_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for system cron jobs")
-+tcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for tcp daemon")
-+telnetd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for telnet daemon")
-+tftpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for tftpd daemon")
-+transproxy_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for transproxy daemon")
-+udev_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for udev daemon")
-+uml_switch_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uml daemon")
-+unlimitedInetd _("Admin") _("Allow xinetd to run unconfined, including any services it starts that do not have a domain transition explicitly defined")
-+unlimitedRC _("Admin") _("Allow rc scripts to run unconfined, including any daemon started by an rc script that does not have a domain transition explicitly defined")
-+unlimitedRPM _("Admin") _("Allow rpm to run unconfined")
-+unlimitedUtils _("Admin") _("Allow privileged utilities like hotplug and insmod to run unconfined")
-+updfstab_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for updfstab daemon")
-+uptimed_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uptimed daemon")
-+user_canbe_sysadm _("User Privs") _("Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only staff_r can do so")
-+user_can_mount _("Mount") _("Allow users to execute the mount command")
-+user_direct_mouse _("User Privs") _("Allow regular users direct mouse access (only allow the X server)")
-+user_dmesg _("User Privs") _("Allow users to run the dmesg command")
-+user_net_control _("User Privs") _("Allow users to control network interfaces (also needs USERCTL=true)")
-+user_ping _("User Privs") _("Allow normal user to execute ping")
-+user_rw_noexattrfile _("User Privs") _("Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)")
-+user_rw_usb _("User Privs") _("Allow users to rw usb devices")
-+user_tcp_server _("User Privs") _("Allow users to run TCP servers (bind to ports and accept connection from the same domain and outside users)  disabling this forces FTP passive mode and may change other protocols")
-+user_ttyfile_stat _("User Privs") _("Allow user to stat ttyfiles")
-+uucpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uucpd daemon")
-+vmware_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for vmware daemon")
-+watchdog_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for watchdog daemon")
-+winbind_disable_trans _("Samba") _("Disable SELinux protection for winbind daemon")
-+xdm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xdm daemon")
-+xdm_sysadm_login _("XServer") _("Allow xdm logins as sysadm_r:sysadm_t")
-+xend_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xen daemon")
-+xen_use_raw_disk _("XEN") _("Allow xen to read/write physical disk devices")
-+xfs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xfs daemon")
-+xm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xen control")
-+ypbind_disable_trans _("NIS") _("Disable SELinux protection for ypbind daemon")
-+yppasswdd_disable_trans _("NIS") _("Disable SELinux protection for NIS Password Daemon")
-+ypserv_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ypserv daemon")
-+ypxfr_disable_trans _("NIS") _("Disable SELinux protection for NIS Transfer Daemon")
-+webadm_manage_user_files _("HTTPD Service") _("Allow SELinux webadm user to manage unprivileged users home directories")
-+webadm_read_user_files _("HTTPD Service") _("Allow SELinux webadm user to read unprivileged users home directories")
-+
-diff -up policycoreutils-2.1.8/gui/semanagePage.py.gui policycoreutils-2.1.8/gui/semanagePage.py
---- policycoreutils-2.1.8/gui/semanagePage.py.gui      2011-11-07 15:12:01.908834234 -0500
-+++ policycoreutils-2.1.8/gui/semanagePage.py  2011-11-07 15:12:01.908834234 -0500
-@@ -0,0 +1,168 @@
-+## semanagePage.py - show selinux mappings
-+## Copyright (C) 2006 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import seobject
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+def idle_func():
-+    while gtk.events_pending():
-+        gtk.main_iteration()
-+        
-+class semanagePage:
-+    def __init__(self, xml, name, description):
-+        self.xml = xml
-+        self.window = self.xml.get_widget("mainWindow").get_root_window()
-+        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
-+        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
-+
-+        self.local = False
-+        self.view = xml.get_widget("%sView" % name)
-+        self.dialog = xml.get_widget("%sDialog" % name)
-+        self.filter_entry = xml.get_widget("%sFilterEntry" % name )
-+        self.filter_entry.connect("focus_out_event", self.filter_changed)
-+        self.filter_entry.connect("activate", self.filter_changed)
-+
-+        self.view.connect("row_activated", self.rowActivated)
-+        self.view.get_selection().connect("changed", self.itemSelected)
-+        self.description = description;
-+
-+    def wait(self):
-+        self.window.set_cursor(self.busy_cursor)
-+        idle_func()
-+    
-+    def ready(self):
-+        self.window.set_cursor(self.ready_cursor)
-+        idle_func()
-+    
-+    def get_description(self):
-+        return self.description 
-+        
-+    def itemSelected(self, args):
-+        return
-+
-+    def filter_changed(self, *arg):
-+        filter =  arg[0].get_text()
-+        if filter != self.filter:
-+            self.load(filter)
-+        
-+    def search(self, model, col, key, i):
-+        sort_col = self.store.get_sort_column_id()[0]
-+        val = model.get_value(i,sort_col)
-+        if val.lower().startswith(key.lower()):
-+            return False
-+        return True
-+
-+    def match(self, target, filter):
-+        try:
-+            f=filter.lower()
-+            t=target.lower()
-+            if t.find(f) >= 0:
-+                return True
-+        except:
-+            pass
-+        return False
-+
-+    def rowActivated(self, view, row, Column):
-+        self.propertiesDialog()
-+
-+    def verify(self, message, title="" ):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
-+                                gtk.BUTTONS_YES_NO,
-+                                message)
-+        dlg.set_title(title)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        rc = dlg.run()
-+        dlg.destroy()
-+        return rc
-+
-+    def error(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
-+                                gtk.BUTTONS_CLOSE,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        dlg.run()
-+        dlg.destroy()
-+
-+    def deleteDialog(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        if self.verify(_("Are you sure you want to delete %s '%s'?" % (self.description, store.get_value(iter, 0))), _("Delete %s" % self.description)) == gtk.RESPONSE_YES:
-+            self.delete()
-+        
-+    def use_menus(self):
-+        return True
-+    
-+    def addDialog(self):
-+        self.dialogClear()
-+        self.dialog.set_title(_("Add %s" % self.description))
-+        self.dialog.set_position(gtk.WIN_POS_MOUSE)
-+
-+        while self.dialog.run() ==  gtk.RESPONSE_OK:
-+            try:
-+                if self.add() == False:
-+                    continue
-+                break;
-+            except ValueError, e:
-+                self.error(e.args[0])
-+        self.dialog.hide()
-+
-+    def propertiesDialog(self):
-+        self.dialogInit()
-+        self.dialog.set_title(_("Modify %s" % self.description))
-+        self.dialog.set_position(gtk.WIN_POS_MOUSE)
-+        while self.dialog.run() ==  gtk.RESPONSE_OK:
-+            try:
-+                if self.modify() == False:
-+                    continue
-+                break;
-+            except ValueError, e:
-+                self.error(e.args[0])
-+        self.dialog.hide()
-+    
-+    def on_local_clicked(self, button):
-+        self.local = not self.local
-+        if self.local:
-+            button.set_label(_("all"))
-+        else:
-+            button.set_label(_("Customized"))
-+
-+        self.load(self.filter)
-+        return True
-+        
-diff -up policycoreutils-2.1.8/gui/statusPage.py.gui policycoreutils-2.1.8/gui/statusPage.py
---- policycoreutils-2.1.8/gui/statusPage.py.gui        2011-11-07 15:12:01.909834235 -0500
-+++ policycoreutils-2.1.8/gui/statusPage.py    2011-11-07 15:12:01.909834235 -0500
-@@ -0,0 +1,190 @@
-+# statusPage.py - show selinux status
-+## Copyright (C) 2006-2009 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import tempfile
-+
-+INSTALLPATH = '/usr/share/system-config-selinux'
-+sys.path.append(INSTALLPATH)
-+
-+import commands
-+ENFORCING = 1
-+PERMISSIVE = 0
-+DISABLED = -1
-+modearray = ( "disabled", "permissive",  "enforcing" )
-+
-+SELINUXDIR = "/etc/selinux/"
-+RELABELFILE = "/.autorelabel"
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+import selinux
-+try:
-+    gettext.install(PROGNAME, localedir="/usr/share/locale", unicode=1)
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class statusPage:
-+    def __init__(self, xml):
-+        self.xml = xml
-+        self.needRelabel = False
-+
-+        self.type = selinux.selinux_getpolicytype()
-+        # Bring in widgets from glade file.
-+        self.typeHBox = xml.get_widget("typeHBox")
-+        self.selinuxTypeOptionMenu = xml.get_widget("selinuxTypeOptionMenu")
-+        self.typeLabel = xml.get_widget("typeLabel")
-+        self.enabledOptionMenu = xml.get_widget("enabledOptionMenu")
-+        self.currentOptionMenu = xml.get_widget("currentOptionMenu")
-+        self.relabel_checkbutton = xml.get_widget("relabelCheckbutton")
-+        self.relabel_checkbutton.set_active(self.is_relabel())
-+        self.relabel_checkbutton.connect("toggled", self.on_relabel_toggle)
-+        if self.get_current_mode() == ENFORCING or self.get_current_mode() == PERMISSIVE:
-+                self.currentOptionMenu.append_text(_("Permissive"))
-+                self.currentOptionMenu.append_text(_("Enforcing"))
-+                self.currentOptionMenu.set_active(self.get_current_mode())
-+                self.currentOptionMenu.connect("changed", self.set_current_mode)
-+                self.currentOptionMenu.set_sensitive(True)
-+        else:
-+                self.currentOptionMenu.append_text(_("Disabled"))
-+                self.currentOptionMenu.set_active(0)
-+                self.currentOptionMenu.set_sensitive(False)
-+
-+        if self.read_selinux_config() == None:
-+            self.selinuxsupport = False
-+        else:
-+            self.enabledOptionMenu.connect("changed", self.enabled_changed)
-+        #
-+        # This line must come after read_selinux_config
-+        #
-+        self.selinuxTypeOptionMenu.connect("changed", self.typemenu_changed)
-+
-+        self.typeLabel.set_mnemonic_widget(self.selinuxTypeOptionMenu)
-+        
-+    def use_menus(self):
-+        return False
-+    
-+    def get_description(self):
-+        return _("Status")
-+
-+    def get_current_mode(self):
-+        if selinux.is_selinux_enabled():
-+            if selinux.security_getenforce() > 0:
-+                return ENFORCING
-+            else:
-+                return PERMISSIVE
-+        else:
-+            return DISABLED
-+
-+    def set_current_mode(self,menu):
-+        selinux.security_setenforce(menu.get_active() == 1)
-+
-+    def is_relabel(self):
-+        return os.access(RELABELFILE, os.F_OK) != 0
-+
-+    def on_relabel_toggle(self,button):
-+        if button.get_active():
-+            fd = open(RELABELFILE,"w")
-+            fd.close()
-+        else:
-+            if os.access(RELABELFILE, os.F_OK) != 0:
-+                os.unlink(RELABELFILE)
-+
-+    def verify(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
-+                                gtk.BUTTONS_YES_NO,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        rc = dlg.run()
-+        dlg.destroy()
-+        return rc
-+
-+    def typemenu_changed(self, menu):
-+        type = self.get_type()
-+        enabled = self.enabledOptionMenu.get_active()
-+        if self.initialtype != type:
-+            if self.verify(_("Changing the policy type will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system.  Do you wish to continue?")) == gtk.RESPONSE_NO:
-+                menu.set_active(self.typeHistory)
-+                return None
-+
-+            self.relabel_checkbutton.set_active(True)
-+
-+        self.write_selinux_config(modearray[enabled], type )
-+        self.typeHistory = menu.get_active()
-+        
-+    def enabled_changed(self, combo):
-+        enabled = combo.get_active()
-+        type = self.get_type()
-+
-+        if self.initEnabled != DISABLED and enabled == DISABLED:
-+            if self.verify(_("Changing to SELinux disabled requires a reboot.  It is not recommended.  If you later decide to turn SELinux back on, the system will be required to relabel.  If you just want to see if SELinux is causing a problem on your system, you can go to permissive mode which will only log errors and not enforce SELinux policy.  Permissive mode does not require a reboot    Do you wish to continue?")) == gtk.RESPONSE_NO:
-+                combo.set_active(self.enabled)
-+                return None
-+
-+        if self.initEnabled == DISABLED and enabled < 2:
-+            if self.verify(_("Changing to SELinux enabled will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system.  Do you wish to continue?")) == gtk.RESPONSE_NO:
-+                combo.set_active(self.enabled)
-+                return None
-+            self.relabel_checkbutton.set_active(True)
-+
-+        self.write_selinux_config(modearray[enabled], type )
-+        self.enabled = enabled
-+
-+    def write_selinux_config(self, enforcing, type):
-+        import commands
-+        commands.getstatusoutput("/usr/sbin/lokkit --selinuxtype=%s --selinux=%s" % (type, enforcing))
-+
-+    def read_selinux_config(self):
-+        self.initialtype = selinux.selinux_getpolicytype()[1]
-+        self.initEnabled = selinux.selinux_getenforcemode()[1]
-+        self.enabled = self.initEnabled
-+        self.enabledOptionMenu.set_active(self.enabled + 1 )
-+
-+        self.types = []
-+
-+        n = 0
-+        current = n
-+
-+        for i in os.listdir(SELINUXDIR):
-+            if os.path.isdir(SELINUXDIR+i) and os.path.isdir(SELINUXDIR+i+"/policy"):
-+                self.types.append(i)
-+                self.selinuxTypeOptionMenu.append_text(i)
-+                if i == self.initialtype:
-+                    current = n
-+                n = n+1
-+        self.selinuxTypeOptionMenu.set_active(current)
-+        self.typeHistory = current
-+
-+        return 0
-+
-+    def get_type(self):
-+        return self.types[self.selinuxTypeOptionMenu.get_active()]
-+
-+
-diff -up policycoreutils-2.1.8/gui/system-config-selinux.glade.gui policycoreutils-2.1.8/gui/system-config-selinux.glade
---- policycoreutils-2.1.8/gui/system-config-selinux.glade.gui  2011-11-07 15:12:01.913834238 -0500
-+++ policycoreutils-2.1.8/gui/system-config-selinux.glade      2011-11-07 15:12:01.913834238 -0500
-@@ -0,0 +1,3024 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
-+
-+<glade-interface>
-+<requires lib="gnome"/>
-+<requires lib="bonobo"/>
-+
-+<widget class="GtkAboutDialog" id="aboutWindow">
-+  <property name="border_width">5</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="name" translatable="yes">system-config-selinux</property>
-+  <property name="copyright" translatable="yes">Copyright (c)2006 Red Hat, Inc.
-+Copyright (c) 2006 Dan Walsh &lt;dwalsh@redhat.com&gt;</property>
-+  <property name="wrap_license">False</property>
-+  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;
-+</property>
-+  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
-+  <property name="logo">system-config-selinux.png</property>
-+</widget>
-+
-+<widget class="GtkDialog" id="loginsDialog">
-+  <property name="title" translatable="yes">Add SELinux Login Mapping</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="has_separator">True</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="dialog-vbox1">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">0</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="dialog-action_area1">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="cancelbutton1">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="okbutton1">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-ok</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkVBox" id="vbox2">
-+        <property name="visible">True</property>
-+        <property name="homogeneous">False</property>
-+        <property name="spacing">0</property>
-+
-+        <child>
-+          <widget class="GtkTable" id="table1">
-+            <property name="visible">True</property>
-+            <property name="n_rows">3</property>
-+            <property name="n_columns">2</property>
-+            <property name="homogeneous">False</property>
-+            <property name="row_spacing">4</property>
-+            <property name="column_spacing">6</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label15">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">Login Name</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label16">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">SELinux User</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label17">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">MLS/MCS Range</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="loginsNameEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkComboBox" id="loginsSelinuxUserCombo">
-+                <property name="visible">True</property>
-+                <property name="add_tearoffs">False</property>
-+                <property name="focus_on_click">True</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options">fill</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="loginsMLSEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="padding">5</property>
-+            <property name="expand">True</property>
-+            <property name="fill">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GtkDialog" id="portsDialog">
-+  <property name="title" translatable="yes">Add SELinux Network Ports</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="has_separator">True</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="vbox3">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">0</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="hbuttonbox1">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="button1">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="button2">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-ok</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkVBox" id="vbox4">
-+        <property name="visible">True</property>
-+        <property name="homogeneous">False</property>
-+        <property name="spacing">0</property>
-+
-+        <child>
-+          <widget class="GtkTable" id="table2">
-+            <property name="visible">True</property>
-+            <property name="n_rows">4</property>
-+            <property name="n_columns">2</property>
-+            <property name="homogeneous">False</property>
-+            <property name="row_spacing">4</property>
-+            <property name="column_spacing">6</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label18">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">Port Number</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label19">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">Protocol</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label20">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">SELinux Type</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="portsNumberEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkComboBox" id="portsProtocolCombo">
-+                <property name="visible">True</property>
-+                <property name="items">tcp
-+udp</property>
-+                <property name="add_tearoffs">False</property>
-+                <property name="focus_on_click">True</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options">fill</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="portsNameEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label21">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">MLS/MCS
-+Level</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">3</property>
-+                <property name="bottom_attach">4</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="portsMLSEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">3</property>
-+                <property name="bottom_attach">4</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="padding">5</property>
-+            <property name="expand">True</property>
-+            <property name="fill">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GtkDialog" id="fcontextDialog">
-+  <property name="title" translatable="yes">Add SELinux Login Mapping</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="has_separator">True</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="vbox7">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">0</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="hbuttonbox3">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="button5">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="button6">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-ok</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkVBox" id="vbox8">
-+        <property name="visible">True</property>
-+        <property name="homogeneous">False</property>
-+        <property name="spacing">0</property>
-+
-+        <child>
-+          <widget class="GtkTable" id="table4">
-+            <property name="visible">True</property>
-+            <property name="n_rows">4</property>
-+            <property name="n_columns">2</property>
-+            <property name="homogeneous">False</property>
-+            <property name="row_spacing">4</property>
-+            <property name="column_spacing">6</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label25">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">File Specification</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label26">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">File Type</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label27">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">SELinux Type</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="fcontextEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkComboBox" id="fcontextFileTypeCombo">
-+                <property name="visible">True</property>
-+                <property name="items" translatable="yes">all files
-+regular file
-+directory
-+character device
-+block device
-+socket
-+symbolic link
-+named pipe
-+</property>
-+                <property name="add_tearoffs">False</property>
-+                <property name="focus_on_click">True</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options">fill</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="fcontextTypeEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label31">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">MLS</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">3</property>
-+                <property name="bottom_attach">4</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="fcontextMLSEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">3</property>
-+                <property name="bottom_attach">4</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="padding">5</property>
-+            <property name="expand">True</property>
-+            <property name="fill">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GtkDialog" id="usersDialog">
-+  <property name="title" translatable="yes">Add SELinux User</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="has_separator">True</property>
-+
-+  <child internal-child="vbox">
-+    <widget class="GtkVBox" id="vbox9">
-+      <property name="visible">True</property>
-+      <property name="homogeneous">False</property>
-+      <property name="spacing">0</property>
-+
-+      <child internal-child="action_area">
-+      <widget class="GtkHButtonBox" id="hbuttonbox4">
-+        <property name="visible">True</property>
-+        <property name="layout_style">GTK_BUTTONBOX_END</property>
-+
-+        <child>
-+          <widget class="GtkButton" id="button7">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-cancel</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-6</property>
-+          </widget>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkButton" id="button8">
-+            <property name="visible">True</property>
-+            <property name="can_default">True</property>
-+            <property name="can_focus">True</property>
-+            <property name="label">gtk-ok</property>
-+            <property name="use_stock">True</property>
-+            <property name="relief">GTK_RELIEF_NORMAL</property>
-+            <property name="focus_on_click">True</property>
-+            <property name="response_id">-5</property>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">False</property>
-+        <property name="fill">True</property>
-+        <property name="pack_type">GTK_PACK_END</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkVBox" id="vbox10">
-+        <property name="visible">True</property>
-+        <property name="homogeneous">False</property>
-+        <property name="spacing">0</property>
-+
-+        <child>
-+          <widget class="GtkTable" id="table5">
-+            <property name="visible">True</property>
-+            <property name="n_rows">3</property>
-+            <property name="n_columns">2</property>
-+            <property name="homogeneous">False</property>
-+            <property name="row_spacing">4</property>
-+            <property name="column_spacing">6</property>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label32">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">SELinux User</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label34">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">MLS/MCS Range</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="mlsRangeEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">1</property>
-+                <property name="bottom_attach">2</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label36">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">SELinux Roles</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">0</property>
-+                <property name="right_attach">1</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="x_options">fill</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="selinuxRolesEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">2</property>
-+                <property name="bottom_attach">3</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkEntry" id="selinuxUserEntry">
-+                <property name="visible">True</property>
-+                <property name="can_focus">True</property>
-+                <property name="editable">True</property>
-+                <property name="visibility">True</property>
-+                <property name="max_length">0</property>
-+                <property name="text" translatable="yes"></property>
-+                <property name="has_frame">True</property>
-+                <property name="invisible_char">*</property>
-+                <property name="activates_default">False</property>
-+              </widget>
-+              <packing>
-+                <property name="left_attach">1</property>
-+                <property name="right_attach">2</property>
-+                <property name="top_attach">0</property>
-+                <property name="bottom_attach">1</property>
-+                <property name="y_options"></property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="padding">5</property>
-+            <property name="expand">True</property>
-+            <property name="fill">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="padding">0</property>
-+        <property name="expand">True</property>
-+        <property name="fill">True</property>
-+      </packing>
-+      </child>
-+    </widget>
-+  </child>
-+</widget>
-+
-+<widget class="GnomeApp" id="mainWindow">
-+  <property name="width_request">800</property>
-+  <property name="height_request">500</property>
-+  <property name="title" translatable="yes">SELinux Administration</property>
-+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
-+  <property name="window_position">GTK_WIN_POS_NONE</property>
-+  <property name="modal">False</property>
-+  <property name="resizable">True</property>
-+  <property name="destroy_with_parent">False</property>
-+  <property name="icon">system-config-selinux.png</property>
-+  <property name="decorated">True</property>
-+  <property name="skip_taskbar_hint">False</property>
-+  <property name="skip_pager_hint">False</property>
-+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
-+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-+  <property name="focus_on_map">True</property>
-+  <property name="urgency_hint">False</property>
-+  <property name="enable_layout_config">True</property>
-+
-+  <child internal-child="dock">
-+    <widget class="BonoboDock" id="bonobodock2">
-+      <property name="visible">True</property>
-+      <property name="allow_floating">True</property>
-+
-+      <child>
-+      <widget class="BonoboDockItem" id="bonobodockitem3">
-+        <property name="visible">True</property>
-+        <property name="shadow_type">GTK_SHADOW_NONE</property>
-+
-+        <child>
-+          <widget class="GtkMenuBar" id="menubar1">
-+            <property name="visible">True</property>
-+            <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
-+            <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
-+
-+            <child>
-+              <widget class="GtkMenuItem" id="file1">
-+                <property name="visible">True</property>
-+                <property name="stock_item">GNOMEUIINFO_MENU_FILE_TREE</property>
-+
-+                <child>
-+                  <widget class="GtkMenu" id="file1_menu">
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="add_menu_item">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Add</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_add_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
-+                        <accelerator key="a" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image13">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-add</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="properties_menu_item">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">_Properties</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_properties_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
-+                        <accelerator key="p" modifiers="GDK_CONTROL_MASK" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image14">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-properties</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="delete_menu_item">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">_Delete</property>
-+                        <property name="use_underline">True</property>
-+                        <signal name="activate" handler="on_delete_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
-+                        <accelerator key="Delete" modifiers="0" signal="activate"/>
-+
-+                        <child internal-child="image">
-+                          <widget class="GtkImage" id="image15">
-+                            <property name="visible">True</property>
-+                            <property name="stock">gtk-delete</property>
-+                            <property name="icon_size">1</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xpad">0</property>
-+                            <property name="ypad">0</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="quit">
-+                        <property name="visible">True</property>
-+                        <property name="stock_item">GNOMEUIINFO_MENU_EXIT_ITEM</property>
-+                        <signal name="activate" handler="on_quit_activate" last_modification_time="Fri, 06 Oct 2006 13:58:19 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkMenuItem" id="help1">
-+                <property name="visible">True</property>
-+                <property name="stock_item">GNOMEUIINFO_MENU_HELP_TREE</property>
-+
-+                <child>
-+                  <widget class="GtkMenu" id="help1_menu">
-+
-+                    <child>
-+                      <widget class="GtkImageMenuItem" id="about">
-+                        <property name="visible">True</property>
-+                        <property name="stock_item">GNOMEUIINFO_MENU_ABOUT_ITEM</property>
-+                        <signal name="activate" handler="on_about_activate" last_modification_time="Fri, 06 Oct 2006 13:58:02 GMT"/>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+          </widget>
-+        </child>
-+      </widget>
-+      <packing>
-+        <property name="placement">BONOBO_DOCK_TOP</property>
-+        <property name="band">0</property>
-+        <property name="position">0</property>
-+        <property name="offset">0</property>
-+        <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_NEVER_VERTICAL|BONOBO_DOCK_ITEM_BEH_LOCKED</property>
-+      </packing>
-+      </child>
-+
-+      <child>
-+      <widget class="GtkHPaned" id="hpaned1">
-+        <property name="visible">True</property>
-+        <property name="can_focus">True</property>
-+        <property name="position">0</property>
-+
-+        <child>
-+          <widget class="GtkFrame" id="frame1">
-+            <property name="border_width">5</property>
-+            <property name="visible">True</property>
-+            <property name="label_xalign">0</property>
-+            <property name="label_yalign">0.5</property>
-+            <property name="shadow_type">GTK_SHADOW_NONE</property>
-+
-+            <child>
-+              <widget class="GtkAlignment" id="alignment1">
-+                <property name="visible">True</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xscale">1</property>
-+                <property name="yscale">1</property>
-+                <property name="top_padding">0</property>
-+                <property name="bottom_padding">0</property>
-+                <property name="left_padding">12</property>
-+                <property name="right_padding">0</property>
-+
-+                <child>
-+                  <widget class="GtkTreeView" id="selectView">
-+                    <property name="visible">True</property>
-+                    <property name="tooltip" translatable="yes">Select Management Object</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="headers_visible">False</property>
-+                    <property name="rules_hint">False</property>
-+                    <property name="reorderable">False</property>
-+                    <property name="enable_search">True</property>
-+                    <property name="fixed_height_mode">False</property>
-+                    <property name="hover_selection">False</property>
-+                    <property name="hover_expand">False</property>
-+                  </widget>
-+                </child>
-+              </widget>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label45">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">&lt;b&gt;Select:&lt;/b&gt;</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">True</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">label_item</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="shrink">False</property>
-+            <property name="resize">True</property>
-+          </packing>
-+        </child>
-+
-+        <child>
-+          <widget class="GtkNotebook" id="notebook">
-+            <property name="visible">True</property>
-+            <property name="show_tabs">False</property>
-+            <property name="show_border">True</property>
-+            <property name="tab_pos">GTK_POS_TOP</property>
-+            <property name="scrollable">False</property>
-+            <property name="enable_popup">False</property>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox1">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkTable" id="table6">
-+                    <property name="visible">True</property>
-+                    <property name="n_rows">4</property>
-+                    <property name="n_columns">2</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="row_spacing">5</property>
-+                    <property name="column_spacing">5</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label29">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">System Default Enforcing Mode</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">0</property>
-+                        <property name="right_attach">1</property>
-+                        <property name="top_attach">0</property>
-+                        <property name="bottom_attach">1</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options"></property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkComboBox" id="enabledOptionMenu">
-+                        <property name="visible">True</property>
-+                        <property name="items" translatable="yes">Disabled
-+Permissive
-+Enforcing
-+</property>
-+                        <property name="add_tearoffs">False</property>
-+                        <property name="focus_on_click">True</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">1</property>
-+                        <property name="right_attach">2</property>
-+                        <property name="top_attach">0</property>
-+                        <property name="bottom_attach">1</property>
-+                        <property name="y_options">fill</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label48">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Current Enforcing Mode</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">0</property>
-+                        <property name="right_attach">1</property>
-+                        <property name="top_attach">1</property>
-+                        <property name="bottom_attach">2</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options"></property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkComboBox" id="currentOptionMenu">
-+                        <property name="visible">True</property>
-+                        <property name="items" translatable="yes"></property>
-+                        <property name="add_tearoffs">False</property>
-+                        <property name="focus_on_click">True</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">1</property>
-+                        <property name="right_attach">2</property>
-+                        <property name="top_attach">1</property>
-+                        <property name="bottom_attach">2</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options">fill</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="typeLabel">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">System Default Policy Type: </property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">0</property>
-+                        <property name="right_attach">1</property>
-+                        <property name="top_attach">2</property>
-+                        <property name="bottom_attach">3</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options"></property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkComboBox" id="selinuxTypeOptionMenu">
-+                        <property name="visible">True</property>
-+                        <property name="items" translatable="yes"></property>
-+                        <property name="add_tearoffs">False</property>
-+                        <property name="focus_on_click">True</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">1</property>
-+                        <property name="right_attach">2</property>
-+                        <property name="top_attach">2</property>
-+                        <property name="bottom_attach">3</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options">fill</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkCheckButton" id="relabelCheckbutton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Select if you wish to relabel then entire file system on next reboot.  Relabeling can take a very long time, depending on the size of the system.  If you are changing policy types or going from disabled to enforcing, a relabel is required.</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="relief">GTK_RELIEF_NORMAL</property>
-+                        <property name="focus_on_click">True</property>
-+                        <property name="active">False</property>
-+                        <property name="inconsistent">False</property>
-+                        <property name="draw_indicator">True</property>
-+
-+                        <child>
-+                          <widget class="GtkAlignment" id="alignment4">
-+                            <property name="visible">True</property>
-+                            <property name="xalign">0.5</property>
-+                            <property name="yalign">0.5</property>
-+                            <property name="xscale">0</property>
-+                            <property name="yscale">0</property>
-+                            <property name="top_padding">0</property>
-+                            <property name="bottom_padding">0</property>
-+                            <property name="left_padding">0</property>
-+                            <property name="right_padding">0</property>
-+
-+                            <child>
-+                              <widget class="GtkHBox" id="hbox6">
-+                                <property name="visible">True</property>
-+                                <property name="homogeneous">False</property>
-+                                <property name="spacing">2</property>
-+
-+                                <child>
-+                                  <widget class="GtkImage" id="image2">
-+                                    <property name="visible">True</property>
-+                                    <property name="stock">gtk-refresh</property>
-+                                    <property name="icon_size">4</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+
-+                                <child>
-+                                  <widget class="GtkLabel" id="label49">
-+                                    <property name="visible">True</property>
-+                                    <property name="label" translatable="yes">Relabel on next reboot.</property>
-+                                    <property name="use_underline">True</property>
-+                                    <property name="use_markup">False</property>
-+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                                    <property name="wrap">False</property>
-+                                    <property name="selectable">False</property>
-+                                    <property name="xalign">0.5</property>
-+                                    <property name="yalign">0.5</property>
-+                                    <property name="xpad">0</property>
-+                                    <property name="ypad">0</property>
-+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                                    <property name="width_chars">-1</property>
-+                                    <property name="single_line_mode">False</property>
-+                                    <property name="angle">0</property>
-+                                  </widget>
-+                                  <packing>
-+                                    <property name="padding">0</property>
-+                                    <property name="expand">False</property>
-+                                    <property name="fill">False</property>
-+                                  </packing>
-+                                </child>
-+                              </widget>
-+                            </child>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="left_attach">0</property>
-+                        <property name="right_attach">2</property>
-+                        <property name="top_attach">3</property>
-+                        <property name="bottom_attach">4</property>
-+                        <property name="x_options">fill</property>
-+                        <property name="y_options">fill</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label37">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label37</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox18">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar9">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="booleanRevertButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Revert boolean setting to system default</property>
-+                        <property name="stock_id">gtk-revert-to-saved</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton34">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Toggle between Customized and All Booleans</property>
-+                        <property name="label" translatable="yes">Customized</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-find</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton36">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Run booleans lockdown wizard</property>
-+                        <property name="label" translatable="yes">Lockdown...</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-print-error</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_lockdown_clicked" last_modification_time="Thu, 03 Jul 2008 16:51:17 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox7">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label51">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="booleansFilter">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">10</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow18">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="booleansView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Boolean</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label50">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label50</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox11">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar2">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton5">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Add File Context</property>
-+                        <property name="stock_id">gtk-add</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton6">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Modify File Context</property>
-+                        <property name="stock_id">gtk-properties</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton7">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Delete File Context</property>
-+                        <property name="stock_id">gtk-delete</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="customizedButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Toggle between all and customized file context</property>
-+                        <property name="label" translatable="yes">Customized</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-find</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox14">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label58">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="fcontextFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_fcontextFilter_changed" last_modification_time="Mon, 05 Nov 2007 21:22:11 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow19">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="fcontextView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">File Labeling</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label38">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label38</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox12">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar3">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton8">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Add SELinux User Mapping</property>
-+                        <property name="stock_id">gtk-add</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton29">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Modify SELinux User Mapping</property>
-+                        <property name="stock_id">gtk-properties</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Wed, 15 Nov 2006 16:38:33 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton10">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Delete SELinux User Mapping</property>
-+                        <property name="stock_id">gtk-delete</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox13">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label57">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="loginsFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow16">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="loginsView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">User Mapping</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label39">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label39</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox14">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar5">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton14">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Add User</property>
-+                        <property name="stock_id">gtk-add</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton15">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Modify User</property>
-+                        <property name="stock_id">gtk-properties</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton16">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Delete User</property>
-+                        <property name="stock_id">gtk-delete</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox12">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label56">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="usersFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow11">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="usersView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">SELinux User</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label41">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label41</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox15">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar6">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">False</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="portsAddButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Add Network Port</property>
-+                        <property name="stock_id">gtk-add</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="portsPropertiesButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Edit Network Port</property>
-+                        <property name="stock_id">gtk-properties</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="portsDeleteButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Delete Network Port</property>
-+                        <property name="stock_id">gtk-delete</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolItem" id="toolitem2">
-+                        <property name="visible">True</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+
-+                        <child>
-+                          <widget class="GtkVSeparator" id="vseparator1">
-+                            <property name="width_request">32</property>
-+                            <property name="visible">True</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="listViewButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Toggle between Customized and All Ports</property>
-+                        <property name="label" translatable="yes">Group View</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-indent</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_group_clicked" last_modification_time="Mon, 01 Oct 2007 21:31:19 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton35">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Toggle between Customized and All Ports</property>
-+                        <property name="label" translatable="yes">Customized</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-find</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox9">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label53">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="portsFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow13">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="portsView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Network Port</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label42">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label42</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox17">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar8">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="newModuleButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Generate new policy module</property>
-+                        <property name="stock_id">gtk-new</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_new_clicked" last_modification_time="Sat, 17 Mar 2007 15:53:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton23">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Load policy module</property>
-+                        <property name="stock_id">gtk-add</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="toolbutton25">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Remove loadable policy module</property>
-+                        <property name="stock_id">gtk-remove</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolItem" id="toolitem3">
-+                        <property name="visible">True</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+
-+                        <child>
-+                          <widget class="GtkVSeparator" id="vseparator2">
-+                            <property name="width_request">10</property>
-+                            <property name="visible">True</property>
-+                          </widget>
-+                        </child>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="enableAuditButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Enable/Disable additional audit rules, that are normally not reported in the log files.</property>
-+                        <property name="label" translatable="yes">Enable Audit</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-zoom-in</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_disable_audit_clicked" last_modification_time="Wed, 15 Nov 2006 16:29:34 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox11">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label55">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="modulesFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow15">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="modulesView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Policy Module</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label44">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label44</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkVBox" id="vbox19">
-+                <property name="visible">True</property>
-+                <property name="homogeneous">False</property>
-+                <property name="spacing">0</property>
-+
-+                <child>
-+                  <widget class="GtkToolbar" id="toolbar10">
-+                    <property name="visible">True</property>
-+                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
-+                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
-+                    <property name="tooltips">True</property>
-+                    <property name="show_arrow">True</property>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="permissiveButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Change process mode to permissive.</property>
-+                        <property name="label" translatable="yes">Permissive</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-dialog-warning</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkToolButton" id="enforcingButton">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Change process mode to enforcing</property>
-+                        <property name="label" translatable="yes">Enforcing</property>
-+                        <property name="use_underline">True</property>
-+                        <property name="stock_id">gtk-dialog-error</property>
-+                        <property name="visible_horizontal">True</property>
-+                        <property name="visible_vertical">True</property>
-+                        <property name="is_important">False</property>
-+                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="expand">False</property>
-+                        <property name="homogeneous">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">False</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkHBox" id="hbox15">
-+                    <property name="visible">True</property>
-+                    <property name="homogeneous">False</property>
-+                    <property name="spacing">0</property>
-+
-+                    <child>
-+                      <widget class="GtkLabel" id="label60">
-+                        <property name="visible">True</property>
-+                        <property name="label" translatable="yes">Filter</property>
-+                        <property name="use_underline">False</property>
-+                        <property name="use_markup">False</property>
-+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                        <property name="wrap">False</property>
-+                        <property name="selectable">False</property>
-+                        <property name="xalign">0.5</property>
-+                        <property name="yalign">0.5</property>
-+                        <property name="xpad">0</property>
-+                        <property name="ypad">0</property>
-+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                        <property name="width_chars">-1</property>
-+                        <property name="single_line_mode">False</property>
-+                        <property name="angle">0</property>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">10</property>
-+                        <property name="expand">False</property>
-+                        <property name="fill">False</property>
-+                      </packing>
-+                    </child>
-+
-+                    <child>
-+                      <widget class="GtkEntry" id="domainsFilterEntry">
-+                        <property name="visible">True</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="editable">True</property>
-+                        <property name="visibility">True</property>
-+                        <property name="max_length">0</property>
-+                        <property name="text" translatable="yes"></property>
-+                        <property name="has_frame">True</property>
-+                        <property name="invisible_char">•</property>
-+                        <property name="activates_default">False</property>
-+                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
-+                      </widget>
-+                      <packing>
-+                        <property name="padding">0</property>
-+                        <property name="expand">True</property>
-+                        <property name="fill">True</property>
-+                      </packing>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">5</property>
-+                    <property name="expand">False</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+
-+                <child>
-+                  <widget class="GtkScrolledWindow" id="scrolledwindow20">
-+                    <property name="visible">True</property>
-+                    <property name="can_focus">True</property>
-+                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
-+                    <property name="shadow_type">GTK_SHADOW_NONE</property>
-+                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-+
-+                    <child>
-+                      <widget class="GtkTreeView" id="domainsView">
-+                        <property name="visible">True</property>
-+                        <property name="tooltip" translatable="yes">Process Domain</property>
-+                        <property name="can_focus">True</property>
-+                        <property name="headers_visible">True</property>
-+                        <property name="rules_hint">False</property>
-+                        <property name="reorderable">False</property>
-+                        <property name="enable_search">True</property>
-+                        <property name="fixed_height_mode">False</property>
-+                        <property name="hover_selection">False</property>
-+                        <property name="hover_expand">False</property>
-+                      </widget>
-+                    </child>
-+                  </widget>
-+                  <packing>
-+                    <property name="padding">0</property>
-+                    <property name="expand">True</property>
-+                    <property name="fill">True</property>
-+                  </packing>
-+                </child>
-+              </widget>
-+              <packing>
-+                <property name="tab_expand">False</property>
-+                <property name="tab_fill">True</property>
-+              </packing>
-+            </child>
-+
-+            <child>
-+              <widget class="GtkLabel" id="label59">
-+                <property name="visible">True</property>
-+                <property name="label" translatable="yes">label59</property>
-+                <property name="use_underline">False</property>
-+                <property name="use_markup">False</property>
-+                <property name="justify">GTK_JUSTIFY_LEFT</property>
-+                <property name="wrap">False</property>
-+                <property name="selectable">False</property>
-+                <property name="xalign">0.5</property>
-+                <property name="yalign">0.5</property>
-+                <property name="xpad">0</property>
-+                <property name="ypad">0</property>
-+                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-+                <property name="width_chars">-1</property>
-+                <property name="single_line_mode">False</property>
-+                <property name="angle">0</property>
-+              </widget>
-+              <packing>
-+                <property name="type">tab</property>
-+              </packing>
-+            </child>
-+          </widget>
-+          <packing>
-+            <property name="shrink">True</property>
-+            <property name="resize">True</property>
-+          </packing>
-+        </child>
-+      </widget>
-+      </child>
-+    </widget>
-+    <packing>
-+      <property name="padding">0</property>
-+      <property name="expand">True</property>
-+      <property name="fill">True</property>
-+    </packing>
-+  </child>
-+
-+  <child internal-child="appbar">
-+    <widget class="GnomeAppBar" id="appbar2">
-+      <property name="visible">True</property>
-+      <property name="has_progress">True</property>
-+      <property name="has_status">True</property>
-+    </widget>
-+    <packing>
-+      <property name="padding">0</property>
-+      <property name="expand">True</property>
-+      <property name="fill">True</property>
-+    </packing>
-+  </child>
-+</widget>
-+
-+</glade-interface>
-diff -up policycoreutils-2.1.8/gui/system-config-selinux.gladep.gui policycoreutils-2.1.8/gui/system-config-selinux.gladep
---- policycoreutils-2.1.8/gui/system-config-selinux.gladep.gui 2011-11-07 15:12:01.914834238 -0500
-+++ policycoreutils-2.1.8/gui/system-config-selinux.gladep     2011-11-07 15:12:01.914834238 -0500
-@@ -0,0 +1,7 @@
-+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
-+<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd">
-+
-+<glade-project>
-+  <name></name>
-+  <program_name></program_name>
-+</glade-project>
-diff -up policycoreutils-2.1.8/gui/system-config-selinux.py.gui policycoreutils-2.1.8/gui/system-config-selinux.py
---- policycoreutils-2.1.8/gui/system-config-selinux.py.gui     2011-11-07 15:12:01.914834238 -0500
-+++ policycoreutils-2.1.8/gui/system-config-selinux.py 2011-11-07 15:12:01.915834239 -0500
-@@ -0,0 +1,187 @@
-+#!/usr/bin/python -Es
-+#
-+# system-config-selinux.py - GUI for SELinux Config tool in system-config-selinux
-+#
-+# Dan Walsh <dwalsh@redhat.com>
-+#
-+# Copyright 2006-2009 Red Hat, Inc.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+import signal
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import gnome
-+import sys
-+import statusPage
-+import booleansPage
-+import loginsPage
-+import usersPage
-+import portsPage
-+import modulesPage
-+import domainsPage
-+import fcontextPage
-+import selinux
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME,
-+                    localedir="/usr/share/locale",
-+                    unicode=False,
-+                    codeset = 'utf-8')
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+gnome.program_init("SELinux Management Tool", "5")
-+
-+version = "1.0"
-+
-+sys.path.append('/usr/share/system-config-selinux')
-+
-+
-+
-+##
-+## Pull in the Glade file
-+##
-+if os.access("system-config-selinux.glade", os.F_OK):
-+    xml = gtk.glade.XML ("system-config-selinux.glade", domain=PROGNAME)
-+else:
-+    xml = gtk.glade.XML ("/usr/share/system-config-selinux/system-config-selinux.glade", domain=PROGNAME)
-+
-+class childWindow:
-+    def __init__(self):
-+        self.tabs=[]
-+        self.xml = xml
-+        xml.signal_connect("on_quit_activate", self.destroy)
-+        xml.signal_connect("on_delete_clicked", self.delete)
-+        xml.signal_connect("on_add_clicked", self.add)
-+        xml.signal_connect("on_properties_clicked", self.properties)
-+        xml.signal_connect("on_local_clicked", self.on_local_clicked)
-+        self.add_page(statusPage.statusPage(xml))
-+        if selinux.is_selinux_enabled() > 0:
-+            try:
-+                self.add_page(booleansPage.booleansPage(xml))
-+                self.add_page(fcontextPage.fcontextPage(xml))
-+                self.add_page(loginsPage.loginsPage(xml))
-+                self.add_page(usersPage.usersPage(xml))
-+                self.add_page(portsPage.portsPage(xml))
-+                self.add_page(modulesPage.modulesPage(xml)) # modules
-+                self.add_page(domainsPage.domainsPage(xml)) # domains
-+            except ValueError, e:
-+                self.error(e.message)
-+
-+        xml.signal_connect("on_quit_activate", self.destroy)
-+        xml.signal_connect("on_policy_activate", self.policy)
-+        xml.signal_connect("on_logging_activate", self.logging)
-+        xml.signal_connect("on_about_activate", self.on_about_activate)
-+
-+        self.add_menu = xml.get_widget("add_menu_item")
-+        self.properties_menu = xml.get_widget("properties_menu_item")
-+        self.delete_menu = xml.get_widget("delete_menu_item")
-+
-+    def error(self, message):
-+        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
-+                                gtk.BUTTONS_CLOSE,
-+                                message)
-+        dlg.set_position(gtk.WIN_POS_MOUSE)
-+        dlg.show_all()
-+        dlg.run()
-+        dlg.destroy()
-+
-+    def add_page(self, page):
-+        self.tabs.append(page)
-+        
-+    def policy(self, args):
-+        os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/semanagegui.py")
-+    def logging(self, args):
-+        os.spawnl(os.P_NOWAIT, "/usr/bin/seaudit")
-+    
-+    def delete(self, args):
-+        self.tabs[self.notebook.get_current_page()].deleteDialog()
-+
-+    def add(self, args):
-+        self.tabs[self.notebook.get_current_page()].addDialog()
-+
-+    def properties(self, args):
-+        self.tabs[self.notebook.get_current_page()].propertiesDialog()
-+
-+    def on_local_clicked(self, button):
-+        self.tabs[self.notebook.get_current_page()].on_local_clicked(button)
-+
-+    def on_about_activate(self, args):
-+        dlg = xml.get_widget ("aboutWindow")
-+        dlg.run ()
-+        dlg.hide ()
-+
-+    def destroy(self, args):
-+        gtk.main_quit()
-+
-+    def use_menus(self, use_menus):
-+        self.add_menu.set_sensitive(use_menus)
-+        self.properties_menu.set_sensitive(use_menus)
-+        self.delete_menu.set_sensitive(use_menus)
-+
-+    def itemSelected(self, selection):
-+        store, rows = selection.get_selected_rows()
-+        if store != None and len(rows) > 0:
-+            self.notebook.set_current_page(rows[0][0])
-+            self.use_menus(self.tabs[rows[0][0]].use_menus())
-+        else:
-+            self.notebook.set_current_page(0)
-+            self.use_menus(self.tabs[0].use_menus())
-+            
-+
-+    def setupScreen(self):
-+        # Bring in widgets from glade file.
-+        self.mainWindow = self.xml.get_widget("mainWindow")
-+        self.notebook = self.xml.get_widget("notebook")
-+        self.view = self.xml.get_widget("selectView")
-+        self.view.get_selection().connect("changed", self.itemSelected)
-+        self.store = gtk.ListStore(gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        col = gtk.TreeViewColumn("",  gtk.CellRendererText(), text = 0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        for page in self.tabs:
-+            iter = self.store.append()
-+            self.store.set_value(iter, 0, page.get_description())
-+        self.view.get_selection().select_path ((0,))
-+
-+    def stand_alone(self):
-+        desktopName = _("Configue SELinux")
-+
-+        self.setupScreen()
-+
-+        self.mainWindow.connect("destroy", self.destroy)
-+
-+        self.mainWindow.show_all()
-+        gtk.main()
-+
-+if __name__ == "__main__":
-+    signal.signal (signal.SIGINT, signal.SIG_DFL)
-+
-+    app = childWindow()
-+    app.stand_alone()
-diff -up policycoreutils-2.1.8/gui/templates/boolean.py.gui policycoreutils-2.1.8/gui/templates/boolean.py
---- policycoreutils-2.1.8/gui/templates/boolean.py.gui 2011-11-07 15:12:01.915834239 -0500
-+++ policycoreutils-2.1.8/gui/templates/boolean.py     2011-11-07 15:12:01.916834240 -0500
-@@ -0,0 +1,40 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### boolean Template File ###########################
-+
-+te_boolean="""
-+## <desc>
-+##    <p>
-+##    DESCRIPTION
-+##    </p>
-+## </desc>
-+gen_tunable(BOOLEAN, false)
-+"""
-+
-+te_rules="""
-+tunable_policy(`BOOLEAN',`
-+#TRUE
-+',`
-+#FALSE
-+')
-+"""
-+
-diff -up policycoreutils-2.1.8/gui/templates/etc_rw.py.gui policycoreutils-2.1.8/gui/templates/etc_rw.py
---- policycoreutils-2.1.8/gui/templates/etc_rw.py.gui  2011-11-07 15:12:01.916834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/etc_rw.py      2011-11-07 15:12:01.916834240 -0500
-@@ -0,0 +1,112 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### etc_rw Template File #############################
-+
-+########################### Type Enforcement File #############################
-+te_types="""
-+type TEMPLATETYPE_etc_rw_t;
-+files_type(TEMPLATETYPE_etc_rw_t)
-+"""
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
-+files_etc_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, { dir file })
-+"""
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Search TEMPLATETYPE conf directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_search_conf',`
-+      gen_require(`
-+              type TEMPLATETYPE_etc_rw_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_etc_rw_t:dir search_dir_perms;
-+      files_search_etc($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE conf files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_conf_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_etc_rw_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_etc_rw_t:file read_file_perms;
-+      allow $1 TEMPLATETYPE_etc_rw_t:dir list_dir_perms;
-+      files_search_etc($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE conf files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_conf_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_etc_rw_t;
-+      ')
-+
-+      manage_files_pattern($1, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
-+      files_search_etc($1)
-+')
-+
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_etc_rw_t;"""
-+
-+if_admin_rules="""
-+      files_search_etc($1)
-+      admin_pattern($1, TEMPLATETYPE_etc_rw_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_etc_rw_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_etc_rw_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/executable.py.gui policycoreutils-2.1.8/gui/templates/executable.py
---- policycoreutils-2.1.8/gui/templates/executable.py.gui      2011-11-07 15:12:01.916834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/executable.py  2011-11-07 15:12:01.917834240 -0500
-@@ -0,0 +1,451 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### Type Enforcement File #############################
-+te_daemon_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+type TEMPLATETYPE_t;
-+type TEMPLATETYPE_exec_t;
-+init_daemon_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
-+
-+permissive TEMPLATETYPE_t;
-+"""
-+
-+te_initscript_types="""
-+type TEMPLATETYPE_initrc_exec_t;
-+init_script_file(TEMPLATETYPE_initrc_exec_t)
-+"""
-+
-+te_dbusd_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+type TEMPLATETYPE_t;
-+type TEMPLATETYPE_exec_t;
-+dbus_system_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
-+
-+permissive TEMPLATETYPE_t;
-+"""
-+
-+te_inetd_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+type TEMPLATETYPE_t;
-+type TEMPLATETYPE_exec_t;
-+inetd_service_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
-+
-+permissive TEMPLATETYPE_t;
-+"""
-+
-+te_userapp_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+type TEMPLATETYPE_t;
-+type TEMPLATETYPE_exec_t;
-+application_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
-+role system_r types TEMPLATETYPE_t;
-+
-+permissive TEMPLATETYPE_t;
-+"""
-+
-+te_sandbox_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+sandbox_x_domain_template(TEMPLATETYPE)
-+
-+permissive TEMPLATETYPE_t;
-+permissive TEMPLATETYPE_client_t;
-+
-+"""
-+
-+te_cgi_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+apache_content_template(TEMPLATETYPE)
-+
-+permissive httpd_TEMPLATETYPE_script_t;
-+"""
-+
-+te_daemon_rules="""
-+allow TEMPLATETYPE_t self:fifo_file rw_fifo_file_perms;
-+allow TEMPLATETYPE_t self:unix_stream_socket create_stream_socket_perms;
-+"""
-+
-+te_inetd_rules="""
-+"""
-+
-+te_dbusd_rules="""
-+"""
-+
-+te_userapp_rules="""
-+allow TEMPLATETYPE_t self:fifo_file manage_fifo_file_perms;
-+allow TEMPLATETYPE_t self:unix_stream_socket create_stream_socket_perms;
-+"""
-+
-+te_cgi_rules="""
-+"""
-+
-+te_sandbox_rules="""
-+"""
-+
-+te_uid_rules="""
-+auth_use_nsswitch(TEMPLATETYPE_t)
-+"""
-+
-+te_syslog_rules="""
-+logging_send_syslog_msg(TEMPLATETYPE_t)
-+"""
-+
-+te_resolve_rules="""
-+sysnet_dns_name_resolve(TEMPLATETYPE_t)
-+"""
-+
-+te_pam_rules="""
-+auth_domtrans_chk_passwd(TEMPLATETYPE_t)
-+"""
-+
-+te_mail_rules="""
-+mta_send_mail(TEMPLATETYPE_t)
-+"""
-+
-+te_dbus_rules="""
-+optional_policy(`
-+      dbus_system_bus_client(TEMPLATETYPE_t)
-+      dbus_connect_system_bus(TEMPLATETYPE_t)
-+')
-+"""
-+
-+te_kerberos_rules="""
-+optional_policy(`
-+      kerberos_use(TEMPLATETYPE_t)
-+')
-+"""
-+
-+te_manage_krb5_rcache_rules="""
-+optional_policy(`
-+      kerberos_keytab_template(TEMPLATETYPE, TEMPLATETYPE_t)
-+      kerberos_manage_host_rcache(TEMPLATETYPE_t)
-+')
-+"""
-+
-+te_audit_rules="""
-+logging_send_audit_msgs(TEMPLATETYPE_t)
-+"""
-+
-+te_run_rules="""
-+optional_policy(`
-+      gen_require(`
-+              type USER_t;
-+              role USER_r;
-+      ')
-+
-+      TEMPLATETYPE_run(USER_t, USER_r)
-+')
-+"""
-+
-+te_fd_rules="""
-+domain_use_interactive_fds(TEMPLATETYPE_t)
-+"""
-+
-+te_etc_rules="""
-+files_read_etc_files(TEMPLATETYPE_t)
-+"""
-+
-+te_localization_rules="""
-+miscfiles_read_localization(TEMPLATETYPE_t)
-+"""
-+
-+########################### Interface File #############################
-+
-+if_heading_rules="""
-+## <summary>policy for TEMPLATETYPE</summary>
-+"""
-+
-+if_program_rules="""
-+
-+########################################
-+## <summary>
-+##    Transition to TEMPLATETYPE.
-+## </summary>
-+## <param name=\"domain\">
-+## <summary>
-+##    Domain allowed to transition.
-+## </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_domtrans',`
-+      gen_require(`
-+              type TEMPLATETYPE_t, TEMPLATETYPE_exec_t;
-+      ')
-+
-+      corecmd_search_bin($1)
-+      domtrans_pattern($1, TEMPLATETYPE_exec_t, TEMPLATETYPE_t)
-+')
-+
-+"""
-+
-+if_user_program_rules="""
-+########################################
-+## <summary>
-+##    Execute TEMPLATETYPE in the TEMPLATETYPE domain, and
-+##    allow the specified role the TEMPLATETYPE domain.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed to transition
-+##    </summary>
-+## </param>
-+## <param name="role">
-+##    <summary>
-+##    The role to be allowed the TEMPLATETYPE domain.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_run',`
-+      gen_require(`
-+              type TEMPLATETYPE_t;
-+      ')
-+
-+      TEMPLATETYPE_domtrans($1)
-+      role $2 types TEMPLATETYPE_t;
-+')
-+
-+########################################
-+## <summary>
-+##    Role access for TEMPLATETYPE
-+## </summary>
-+## <param name="role">
-+##    <summary>
-+##    Role allowed access
-+##    </summary>
-+## </param>
-+## <param name="domain">
-+##    <summary>
-+##    User domain for the role
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_role',`
-+      gen_require(`
-+              type TEMPLATETYPE_t;
-+      ')
-+
-+      role $1 types TEMPLATETYPE_t;
-+
-+      TEMPLATETYPE_domtrans($2)
-+
-+      ps_process_pattern($2, TEMPLATETYPE_t)
-+      allow $2 TEMPLATETYPE_t:process signal;
-+')
-+
-+"""
-+
-+if_sandbox_rules="""
-+########################################
-+## <summary>
-+##    Execute sandbox in the TEMPLATETYPE_t domain, and
-+##    allow the specified role the TEMPLATETYPE_t domain.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed to transition.
-+##    </summary>
-+## </param>
-+## <param name="role">
-+##    <summary>
-+##    The role to be allowed the TEMPLATETYPE_t domain.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_transition',`
-+      gen_require(`
-+              type TEMPLATETYPE_t;
-+              type TEMPLATETYPE_client_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_t:process { signal_perms transition };
-+      dontaudit $1 TEMPLATETYPE_t:process { noatsecure siginh rlimitinh };
-+      role $2 types TEMPLATETYPE_t;
-+      role $2 types TEMPLATETYPE_client_t;
-+
-+      allow TEMPLATETYPE_t $1:process { sigchld signull };
-+      allow TEMPLATETYPE_t $1:fifo_file rw_inherited_fifo_file_perms;
-+      allow TEMPLATETYPE_client_t $1:process { sigchld signull };
-+      allow TEMPLATETYPE_client_t $1:fifo_file rw_inherited_fifo_file_perms;
-+')
-+
-+"""
-+
-+if_role_change_rules="""
-+########################################
-+## <summary>
-+##    Change to the TEMPLATETYPE role.
-+## </summary>
-+## <param name="role">
-+##    <summary>
-+##    Role allowed access.
-+##    </summary>
-+## </param>
-+## <rolecap/>
-+#
-+interface(`TEMPLATETYPE_role_change',`
-+      gen_require(`
-+              role TEMPLATETYPE_r;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_r;
-+')
-+
-+"""
-+
-+if_initscript_rules="""
-+########################################
-+## <summary>
-+##    Execute TEMPLATETYPE server in the TEMPLATETYPE domain.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_initrc_domtrans',`
-+      gen_require(`
-+              type TEMPLATETYPE_initrc_exec_t;
-+      ')
-+
-+      init_labeled_script_domtrans($1, TEMPLATETYPE_initrc_exec_t)
-+')
-+
-+"""
-+
-+if_dbus_rules="""
-+########################################
-+## <summary>
-+##    Send and receive messages from
-+##    TEMPLATETYPE over dbus.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_dbus_chat',`
-+      gen_require(`
-+              type TEMPLATETYPE_t;
-+              class dbus send_msg;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_t:dbus send_msg;
-+      allow TEMPLATETYPE_t $1:dbus send_msg;
-+')
-+
-+"""
-+
-+if_begin_admin="""
-+########################################
-+## <summary>
-+##    All of the rules required to administrate
-+##    an TEMPLATETYPE environment
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+## <param name="role">
-+##    <summary>
-+##    Role allowed access.
-+##    </summary>
-+## </param>
-+## <rolecap/>
-+#
-+interface(`TEMPLATETYPE_admin',`
-+      gen_require(`
-+              type TEMPLATETYPE_t;"""
-+
-+if_middle_admin="""
-+      ')
-+
-+      allow $1 TEMPLATETYPE_t:process { ptrace signal_perms };
-+      ps_process_pattern($1, TEMPLATETYPE_t)
-+"""
-+
-+if_initscript_admin_types="""
-+      type TEMPLATETYPE_initrc_exec_t;"""
-+
-+if_initscript_admin="""
-+      TEMPLATETYPE_initrc_domtrans($1)
-+      domain_system_change_exemption($1)
-+      role_transition $2 TEMPLATETYPE_initrc_exec_t system_r;
-+      allow $2 system_r;
-+"""
-+
-+if_end_admin="""
-+')
-+
-+"""
-+
-+########################### File Context ##################################
-+fc_program="""\
-+
-+EXECUTABLE            --      gen_context(system_u:object_r:TEMPLATETYPE_exec_t,s0)
-+"""
-+
-+fc_user="""\
-+# Users do not have file context, leave blank
-+"""
-+
-+fc_initscript="""\
-+
-+EXECUTABLE    --      gen_context(system_u:object_r:TEMPLATETYPE_initrc_exec_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/__init__.py.gui policycoreutils-2.1.8/gui/templates/__init__.py
---- policycoreutils-2.1.8/gui/templates/__init__.py.gui        2011-11-07 15:12:01.917834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/__init__.py    2011-11-07 15:12:01.917834240 -0500
-@@ -0,0 +1,18 @@
-+#
-+# Copyright (C) 2007-2011 Red Hat
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-+
-diff -up policycoreutils-2.1.8/gui/templates/network.py.gui policycoreutils-2.1.8/gui/templates/network.py
---- policycoreutils-2.1.8/gui/templates/network.py.gui 2011-11-07 15:12:01.917834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/network.py     2011-11-07 15:12:01.918834240 -0500
-@@ -0,0 +1,102 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### Type Enforcement File #############################
-+te_port_types="""
-+type TEMPLATETYPE_port_t;
-+corenet_port(TEMPLATETYPE_port_t)
-+"""
-+
-+te_network="""\
-+sysnet_dns_name_resolve(TEMPLATETYPE_t)
-+corenet_all_recvfrom_unlabeled(TEMPLATETYPE_t)
-+"""
-+
-+te_tcp="""\
-+allow TEMPLATETYPE_t self:tcp_socket create_stream_socket_perms;
-+corenet_tcp_sendrecv_generic_if(TEMPLATETYPE_t)
-+corenet_tcp_sendrecv_generic_node(TEMPLATETYPE_t)
-+corenet_tcp_sendrecv_all_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_tcp="""\
-+corenet_tcp_bind_generic_node(TEMPLATETYPE_t)
-+"""
-+
-+te_in_need_port_tcp="""\
-+allow TEMPLATETYPE_t TEMPLATETYPE_port_t:tcp_socket name_bind;
-+"""
-+
-+te_out_need_port_tcp="""\
-+allow TEMPLATETYPE_t TEMPLATETYPE_port_t:tcp_socket name_connect;
-+"""
-+
-+te_udp="""\
-+allow TEMPLATETYPE_t self:udp_socket { create_socket_perms listen };
-+corenet_udp_sendrecv_generic_if(TEMPLATETYPE_t)
-+corenet_udp_sendrecv_generic_node(TEMPLATETYPE_t)
-+corenet_udp_sendrecv_all_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_udp="""\
-+corenet_udp_bind_generic_node(TEMPLATETYPE_t)
-+"""
-+
-+te_in_need_port_udp="""\
-+allow TEMPLATETYPE_t TEMPLATETYPE_port_t:udp_socket name_bind;
-+"""
-+
-+te_out_all_ports_tcp="""\
-+corenet_tcp_connect_all_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_out_reserved_ports_tcp="""\
-+corenet_tcp_connect_all_rpc_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_out_unreserved_ports_tcp="""\
-+corenet_tcp_connect_all_unreserved_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_all_ports_tcp="""\
-+corenet_tcp_bind_all_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_reserved_ports_tcp="""\
-+corenet_tcp_bind_all_rpc_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_unreserved_ports_tcp="""\
-+corenet_tcp_bind_all_unreserved_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_all_ports_udp="""\
-+corenet_udp_bind_all_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_reserved_ports_udp="""\
-+corenet_udp_bind_all_rpc_ports(TEMPLATETYPE_t)
-+"""
-+
-+te_in_unreserved_ports_udp="""\
-+corenet_udp_bind_all_unreserved_ports(TEMPLATETYPE_t)
-+"""
-+
-diff -up policycoreutils-2.1.8/gui/templates/rw.py.gui policycoreutils-2.1.8/gui/templates/rw.py
---- policycoreutils-2.1.8/gui/templates/rw.py.gui      2011-11-07 15:12:01.918834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/rw.py  2011-11-07 15:12:01.918834240 -0500
-@@ -0,0 +1,129 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+
-+########################### tmp Template File #############################
-+te_types="""
-+type TEMPLATETYPE_rw_t;
-+files_type(TEMPLATETYPE_rw_t)
-+"""
-+
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
-+"""
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Search TEMPLATETYPE rw directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_search_rw_dir',`
-+      gen_require(`
-+              type TEMPLATETYPE_rw_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_rw_t:dir search_dir_perms;
-+      files_search_rw($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE rw files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_rw_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_rw_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_rw_t:file read_file_perms;
-+      allow $1 TEMPLATETYPE_rw_t:dir list_dir_perms;
-+      files_search_rw($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE rw files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_rw_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_rw_t;
-+      ')
-+
-+      manage_files_pattern($1, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Create, read, write, and delete
-+##    TEMPLATETYPE rw dirs.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_rw_dirs',`
-+      gen_require(`
-+              type TEMPLATETYPE_rw_t;
-+      ')
-+
-+      manage_dirs_pattern($1, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
-+')
-+
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_rw_t;"""
-+
-+if_admin_rules="""
-+      files_search_etc($1)
-+      admin_pattern($1, TEMPLATETYPE_rw_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_rw_t,s0)
-+"""
-+
-+fc_dir="""
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_rw_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/script.py.gui policycoreutils-2.1.8/gui/templates/script.py
---- policycoreutils-2.1.8/gui/templates/script.py.gui  2011-11-07 15:12:01.918834240 -0500
-+++ policycoreutils-2.1.8/gui/templates/script.py      2011-11-07 15:12:01.919834241 -0500
-@@ -0,0 +1,126 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+
-+########################### tmp Template File #############################
-+compile="""\
-+#!/bin/sh -e
-+
-+DIRNAME=`dirname $0`
-+cd $DIRNAME
-+USAGE="$0 [ --update ]"
-+if [ `id -u` != 0 ]; then
-+echo 'You must be root to run this script'
-+exit 1
-+fi
-+
-+if [ $# -eq 1 ]; then
-+      if [ "$1" = "--update" ] ; then
-+              time=`ls -l --time-style="+%x %X" TEMPLATEFILE.te | awk '{ printf "%s %s", $6, $7 }'`
-+              rules=`ausearch --start $time -m avc --raw -se TEMPLATETYPE`
-+              if [ x"$rules" != "x" ] ; then
-+                      echo "Found avc's to update policy with"
-+                      echo -e "$rules" | audit2allow -R
-+                      echo "Do you want these changes added to policy [y/n]?"
-+                      read ANS
-+                      if [ "$ANS" = "y" -o "$ANS" = "Y" ] ; then
-+                              echo "Updating policy"
-+                              echo -e "$rules" | audit2allow -R >> TEMPLATEFILE.te
-+                              # Fall though and rebuild policy
-+                      else
-+                              exit 0
-+                      fi
-+              else
-+                      echo "No new avcs found"
-+                      exit 0
-+              fi
-+      else
-+              echo -e $USAGE
-+              exit 1
-+      fi
-+elif [ $# -ge 2 ] ; then
-+      echo -e $USAGE
-+      exit 1
-+fi
-+
-+echo "Building and Loading Policy"
-+set -x
-+make -f /usr/share/selinux/devel/Makefile || exit
-+/usr/sbin/semodule -i TEMPLATEFILE.pp
-+
-+"""
-+
-+restorecon="""\
-+# Fixing the file context on FILENAME
-+/sbin/restorecon -F -R -v FILENAME
-+"""
-+
-+tcp_ports="""\
-+# Adding SELinux tcp port to port PORTNUM
-+/usr/sbin/semanage port -a -t TEMPLATETYPE_port_t -p tcp PORTNUM
-+"""
-+
-+udp_ports="""\
-+# Adding SELinux udp port to port PORTNUM
-+/usr/sbin/semanage port -a -t TEMPLATETYPE_port_t -p udp PORTNUM
-+"""
-+
-+users="""\
-+# Adding SELinux user TEMPLATETYPE_u
-+/usr/sbin/semanage user -a -R "TEMPLATETYPE_rROLES" TEMPLATETYPE_u
-+"""
-+
-+eusers="""\
-+# Adding roles to SELinux user TEMPLATETYPE_u
-+/usr/sbin/semanage user -m -R "TEMPLATETYPE_rROLES" TEMPLATETYPE_u
-+"""
-+
-+admin_trans="""\
-+# Adding roles to SELinux user USER
-+/usr/sbin/semanage user -m -R +TEMPLATETYPE_r USER
-+"""
-+
-+min_login_user_default_context="""\
-+if [ ! -f /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u ]; then
-+cat > /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u << _EOF
-+TEMPLATETYPE_r:TEMPLATETYPE_t:s0      TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:crond_t              TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:initrc_su_t          TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:local_login_t                TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:remote_login_t               TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:sshd_t                       TEMPLATETYPE_r:TEMPLATETYPE_t
-+_EOF
-+fi
-+"""
-+
-+x_login_user_default_context="""\
-+if [ ! -f /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u ]; then
-+cat > /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u << _EOF
-+TEMPLATETYPE_r:TEMPLATETYPE_t TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:crond_t              TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:initrc_su_t          TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:local_login_t                TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:remote_login_t               TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:sshd_t                               TEMPLATETYPE_r:TEMPLATETYPE_t
-+system_r:xdm_t                                TEMPLATETYPE_r:TEMPLATETYPE_t
-+_EOF
-+fi
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/semodule.py.gui policycoreutils-2.1.8/gui/templates/semodule.py
---- policycoreutils-2.1.8/gui/templates/semodule.py.gui        2011-11-07 15:12:01.919834241 -0500
-+++ policycoreutils-2.1.8/gui/templates/semodule.py    2011-11-07 15:12:01.919834241 -0500
-@@ -0,0 +1,41 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA     
-+#                                        02111-1307  USA
-+#
-+#  
-+
-+########################### tmp Template File #############################
-+compile="""
-+#!/bin/sh
-+make -f /usr/share/selinux/devel/Makefile
-+semodule -i TEMPLATETYPE.pp
-+"""
-+
-+restorecon="""
-+restorecon -R -v FILENAME
-+"""
-+
-+tcp_ports="""
-+semanage ports -a -t TEMPLATETYPE_port_t -p tcp PORTNUM
-+"""
-+
-+udp_ports="""
-+semanage ports -a -t TEMPLATETYPE_port_t -p udp PORTNUM
-+"""
-+
-diff -up policycoreutils-2.1.8/gui/templates/tmp.py.gui policycoreutils-2.1.8/gui/templates/tmp.py
---- policycoreutils-2.1.8/gui/templates/tmp.py.gui     2011-11-07 15:12:01.919834241 -0500
-+++ policycoreutils-2.1.8/gui/templates/tmp.py 2011-11-07 15:12:01.920834242 -0500
-@@ -0,0 +1,102 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### tmp Template File #############################
-+
-+te_types="""
-+type TEMPLATETYPE_tmp_t;
-+files_tmp_file(TEMPLATETYPE_tmp_t)
-+"""
-+
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
-+files_tmp_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, { dir file })
-+"""
-+
-+if_rules="""
-+########################################
-+## <summary>
-+##    Do not audit attempts to read,
-+##    TEMPLATETYPE tmp files
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain to not audit.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_dontaudit_read_tmp_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_tmp_t;
-+      ')
-+
-+      dontaudit $1 TEMPLATETYPE_tmp_t:file read_file_perms;
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE tmp files
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_tmp_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_tmp_t;
-+      ')
-+
-+      files_search_tmp($1)
-+      allow $1 TEMPLATETYPE_tmp_t:file read_file_perms;
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE tmp files
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_tmp',`
-+      gen_require(`
-+              type TEMPLATETYPE_tmp_t;
-+      ')
-+
-+      files_search_tmp($1)
-+      manage_dirs_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
-+      manage_files_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
-+      manage_lnk_files_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
-+')
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_tmp_t;"""
-+
-+if_admin_rules="""
-+      files_search_tmp($1)
-+      admin_pattern($1, TEMPLATETYPE_tmp_t)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/user.py.gui policycoreutils-2.1.8/gui/templates/user.py
---- policycoreutils-2.1.8/gui/templates/user.py.gui    2011-11-07 15:12:01.920834242 -0500
-+++ policycoreutils-2.1.8/gui/templates/user.py        2011-11-07 15:12:01.920834242 -0500
-@@ -0,0 +1,204 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### Type Enforcement File #############################
-+
-+te_login_user_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+userdom_unpriv_user_template(TEMPLATETYPE)
-+"""
-+
-+te_admin_user_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+userdom_admin_user_template(TEMPLATETYPE)
-+"""
-+
-+te_min_login_user_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+userdom_restricted_user_template(TEMPLATETYPE)
-+"""
-+
-+te_x_login_user_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+userdom_restricted_xwindows_user_template(TEMPLATETYPE)
-+"""
-+
-+te_existing_user_types="""\
-+policy_module(myTEMPLATETYPE, 1.0.0)
-+
-+gen_require(`
-+      type TEMPLATETYPE_t, TEMPLATETYPE_devpts_t;
-+      role TEMPLATETYPE_r;
-+')
-+
-+"""
-+
-+te_root_user_types="""\
-+policy_module(TEMPLATETYPE, 1.0.0)
-+
-+########################################
-+#
-+# Declarations
-+#
-+
-+userdom_base_user_template(TEMPLATETYPE)
-+"""
-+
-+te_login_user_rules="""\
-+
-+########################################
-+#
-+# TEMPLATETYPE local policy
-+#
-+
-+"""
-+
-+te_existing_user_rules="""\
-+
-+########################################
-+#
-+# TEMPLATETYPE customized policy
-+#
-+
-+"""
-+
-+te_x_login_user_rules="""\
-+
-+########################################
-+#
-+# TEMPLATETYPE local policy
-+#
-+"""
-+
-+te_root_user_rules="""\
-+
-+########################################
-+#
-+# TEMPLATETYPE local policy
-+#
-+"""
-+
-+te_transition_rules="""
-+optional_policy(`
-+      APPLICATION_role(TEMPLATETYPE_r, TEMPLATETYPE_t)
-+')
-+"""
-+
-+te_user_trans_rules="""
-+optional_policy(`
-+      gen_require(`
-+              role USER_r;
-+      ')
-+
-+      TEMPLATETYPE_role_change(USER_r)
-+')
-+"""
-+
-+te_admin_rules="""
-+allow TEMPLATETYPE_t self:capability { dac_override dac_read_search kill sys_ptrace sys_nice };
-+files_dontaudit_search_all_dirs(TEMPLATETYPE_t)
-+
-+selinux_get_enforce_mode(TEMPLATETYPE_t)
-+seutil_domtrans_setfiles(TEMPLATETYPE_t)
-+seutil_search_default_contexts(TEMPLATETYPE_t)
-+
-+logging_send_syslog_msg(TEMPLATETYPE_t)
-+
-+kernel_read_system_state(TEMPLATETYPE_t)
-+
-+domain_dontaudit_search_all_domains_state(TEMPLATETYPE_t)
-+domain_dontaudit_ptrace_all_domains(TEMPLATETYPE_t)
-+
-+userdom_dontaudit_search_admin_dir(TEMPLATETYPE_t)
-+userdom_dontaudit_search_user_home_dirs(TEMPLATETYPE_t)
-+
-+bool TEMPLATETYPE_read_user_files false;
-+bool TEMPLATETYPE_manage_user_files false;
-+
-+if (TEMPLATETYPE_read_user_files) {
-+      userdom_read_user_home_content_files(TEMPLATETYPE_t)
-+      userdom_read_user_tmp_files(TEMPLATETYPE_t)
-+}
-+
-+if (TEMPLATETYPE_manage_user_files) {
-+      userdom_manage_user_home_content(TEMPLATETYPE_t)
-+      userdom_manage_user_tmp_files(TEMPLATETYPE_t)
-+}
-+
-+"""
-+
-+te_admin_trans_rules="""
-+gen_require(`
-+      role USER_r;
-+')
-+
-+allow USER_r TEMPLATETYPE_r;
-+"""
-+
-+te_admin_domain_rules="""
-+optional_policy(`
-+      APPLICATION_admin(TEMPLATETYPE_t, TEMPLATETYPE_r)
-+')
-+"""
-+
-+te_roles_rules="""
-+optional_policy(`
-+      gen_require(`
-+              role ROLE_r;
-+      ')
-+
-+      allow TEMPLATETYPE_r ROLE_r;
-+')
-+"""
-+
-+te_sudo_rules="""
-+optional_policy(`
-+      sudo_role_template(TEMPLATETYPE, TEMPLATETYPE_r, TEMPLATETYPE_t)
-+')
-+"""
-+
-+te_newrole_rules="""
-+seutil_run_newrole(TEMPLATETYPE_t, TEMPLATETYPE_r)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/var_cache.py.gui policycoreutils-2.1.8/gui/templates/var_cache.py
---- policycoreutils-2.1.8/gui/templates/var_cache.py.gui       2011-11-07 15:12:01.920834242 -0500
-+++ policycoreutils-2.1.8/gui/templates/var_cache.py   2011-11-07 15:12:01.921834243 -0500
-@@ -0,0 +1,132 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### cache Template File #############################
-+
-+########################### Type Enforcement File #############################
-+te_types="""
-+type TEMPLATETYPE_cache_t;
-+files_type(TEMPLATETYPE_cache_t)
-+"""
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
-+manage_lnk_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
-+files_var_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, { dir file })
-+"""
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Search TEMPLATETYPE cache directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_search_cache',`
-+      gen_require(`
-+              type TEMPLATETYPE_cache_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_cache_t:dir search_dir_perms;
-+      files_search_var($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE cache files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_cache_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_cache_t;
-+      ')
-+
-+      files_search_var($1)
-+      read_files_pattern($1, TEMPLATETYPE_cache_t TEMPLATETYPE_cache_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Create, read, write, and delete
-+##    TEMPLATETYPE cache files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_cache_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_cache_t;
-+      ')
-+
-+      files_search_var($1)
-+      manage_files_pattern($1, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE cache dirs.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_cache_dirs',`
-+      gen_require(`
-+              type TEMPLATETYPE_cache_t;
-+      ')
-+
-+      files_search_var($1)
-+      manage_dirs_pattern($1, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
-+')
-+
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_cache_t;"""
-+
-+if_admin_rules="""
-+      files_search_var($1)
-+      admin_pattern($1, TEMPLATETYPE_cache_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_cache_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_cache_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/var_lib.py.gui policycoreutils-2.1.8/gui/templates/var_lib.py
---- policycoreutils-2.1.8/gui/templates/var_lib.py.gui 2011-11-07 15:12:01.921834243 -0500
-+++ policycoreutils-2.1.8/gui/templates/var_lib.py     2011-11-07 15:12:01.921834243 -0500
-@@ -0,0 +1,160 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### var_lib Template File #############################
-+
-+########################### Type Enforcement File #############################
-+te_types="""
-+type TEMPLATETYPE_var_lib_t;
-+files_type(TEMPLATETYPE_var_lib_t)
-+"""
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+files_var_lib_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, { dir file })
-+"""
-+
-+te_stream_rules="""\
-+allow TEMPLATETYPE_t TEMPLATETYPE_var_lib_t:sock_file manage_sock_file_perms;
-+files_var_lib_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, sock_file)
-+"""
-+
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Search TEMPLATETYPE lib directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_search_lib',`
-+      gen_require(`
-+              type TEMPLATETYPE_var_lib_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_var_lib_t:dir search_dir_perms;
-+      files_search_var_lib($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE lib files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_lib_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_var_lib_t;
-+      ')
-+
-+      files_search_var_lib($1)
-+      read_files_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE lib files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_lib_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_var_lib_t;
-+      ')
-+
-+      files_search_var_lib($1)
-+      manage_files_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE lib directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_lib_dirs',`
-+      gen_require(`
-+              type TEMPLATETYPE_var_lib_t;
-+      ')
-+
-+      files_search_var_lib($1)
-+      manage_dirs_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+')
-+
-+"""
-+
-+if_stream_rules="""
-+########################################
-+## <summary>
-+##    Connect to TEMPLATETYPE over an unix stream socket.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_stream_connect',`
-+      gen_require(`
-+              type TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t;
-+      ')
-+
-+      stream_connect_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
-+')
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_var_lib_t;"""
-+
-+if_admin_rules="""
-+      files_search_var_lib($1)
-+      admin_pattern($1, TEMPLATETYPE_var_lib_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
-+"""
-+
-+fc_sock_file="""\
-+FILENAME              -s      gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/var_log.py.gui policycoreutils-2.1.8/gui/templates/var_log.py
---- policycoreutils-2.1.8/gui/templates/var_log.py.gui 2011-11-07 15:12:01.921834243 -0500
-+++ policycoreutils-2.1.8/gui/templates/var_log.py     2011-11-07 15:12:01.922834244 -0500
-@@ -0,0 +1,114 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### var_log Template File #############################
-+
-+########################### Type Enforcement File #############################
-+te_types="""
-+type TEMPLATETYPE_log_t;
-+logging_log_file(TEMPLATETYPE_log_t)
-+"""
-+
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+logging_log_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_log_t, { dir file })
-+"""
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE's log files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+## <rolecap/>
-+#
-+interface(`TEMPLATETYPE_read_log',`
-+      gen_require(`
-+              type TEMPLATETYPE_log_t;
-+      ')
-+
-+      logging_search_logs($1)
-+      read_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Append to TEMPLATETYPE log files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_append_log',`
-+      gen_require(`
-+              type TEMPLATETYPE_log_t;
-+      ')
-+
-+      logging_search_logs($1)
-+      append_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE log files
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_log',`
-+      gen_require(`
-+              type TEMPLATETYPE_log_t;
-+      ')
-+
-+      logging_search_logs($1)
-+      manage_dirs_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+      manage_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+      manage_lnk_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
-+')
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_log_t;"""
-+
-+if_admin_rules="""
-+      logging_search_logs($1)
-+      admin_pattern($1, TEMPLATETYPE_log_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_log_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_log_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/var_run.py.gui policycoreutils-2.1.8/gui/templates/var_run.py
---- policycoreutils-2.1.8/gui/templates/var_run.py.gui 2011-11-07 15:12:01.922834244 -0500
-+++ policycoreutils-2.1.8/gui/templates/var_run.py     2011-11-07 15:12:01.922834244 -0500
-@@ -0,0 +1,101 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### var_run Template File #############################
-+
-+te_types="""
-+type TEMPLATETYPE_var_run_t;
-+files_pid_file(TEMPLATETYPE_var_run_t)
-+"""
-+
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t)
-+files_pid_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, { dir file })
-+"""
-+
-+te_stream_rules="""
-+allow TEMPLATETYPE_t TEMPLATETYPE_var_run_t:sock_file manage_sock_file_perms;
-+files_pid_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, sock_file)
-+"""
-+
-+if_rules="""
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE PID files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_pid_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_var_run_t;
-+      ')
-+
-+      files_search_pids($1)
-+      allow $1 TEMPLATETYPE_var_run_t:file read_file_perms;
-+')
-+
-+"""
-+
-+if_stream_rules="""\
-+########################################
-+## <summary>
-+##    Connect to TEMPLATETYPE over an unix stream socket.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_stream_connect',`
-+      gen_require(`
-+              type TEMPLATETYPE_t, TEMPLATETYPE_var_run_t;
-+      ')
-+
-+      files_search_pids($1)
-+      stream_connect_pattern($1, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_t)
-+')
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_var_run_t;"""
-+
-+if_admin_rules="""
-+      files_search_pids($1)
-+      admin_pattern($1, TEMPLATETYPE_var_run_t)
-+"""
-+
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
-+"""
-+
-+fc_sock_file="""\
-+FILENAME              -s      gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/templates/var_spool.py.gui policycoreutils-2.1.8/gui/templates/var_spool.py
---- policycoreutils-2.1.8/gui/templates/var_spool.py.gui       2011-11-07 15:12:01.922834244 -0500
-+++ policycoreutils-2.1.8/gui/templates/var_spool.py   2011-11-07 15:12:01.923834245 -0500
-@@ -0,0 +1,131 @@
-+# Copyright (C) 2007-2011 Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# policygentool is a tool for the initial generation of SELinux policy
-+#
-+#    This program is free software; you can redistribute it and/or
-+#    modify it under the terms of the GNU General Public License as
-+#    published by the Free Software Foundation; either version 2 of
-+#    the License, or (at your option) any later version.
-+#
-+#    This program is distributed in the hope that it will be useful,
-+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+#    GNU General Public License for more details.
-+#
-+#    You should have received a copy of the GNU General Public License
-+#    along with this program; if not, write to the Free Software
-+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-+#                                        02111-1307  USA
-+#
-+#
-+########################### var_spool Template File #############################
-+
-+########################### Type Enforcement File #############################
-+te_types="""
-+type TEMPLATETYPE_spool_t;
-+files_type(TEMPLATETYPE_spool_t)
-+"""
-+te_rules="""
-+manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+manage_lnk_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+files_spool_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, { dir file })
-+"""
-+
-+########################### Interface File #############################
-+if_rules="""
-+########################################
-+## <summary>
-+##    Search TEMPLATETYPE spool directories.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_search_spool',`
-+      gen_require(`
-+              type TEMPLATETYPE_spool_t;
-+      ')
-+
-+      allow $1 TEMPLATETYPE_spool_t:dir search_dir_perms;
-+      files_search_spool($1)
-+')
-+
-+########################################
-+## <summary>
-+##    Read TEMPLATETYPE spool files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_read_spool_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_spool_t;
-+      ')
-+
-+      files_search_spool($1)
-+      read_files_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE spool files.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_spool_files',`
-+      gen_require(`
-+              type TEMPLATETYPE_spool_t;
-+      ')
-+
-+      files_search_spool($1)
-+      manage_files_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+')
-+
-+########################################
-+## <summary>
-+##    Manage TEMPLATETYPE spool dirs.
-+## </summary>
-+## <param name="domain">
-+##    <summary>
-+##    Domain allowed access.
-+##    </summary>
-+## </param>
-+#
-+interface(`TEMPLATETYPE_manage_spool_dirs',`
-+      gen_require(`
-+              type TEMPLATETYPE_spool_t;
-+      ')
-+
-+      files_search_spool($1)
-+      manage_dirs_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
-+')
-+
-+"""
-+
-+if_admin_types="""
-+      type TEMPLATETYPE_spool_t;"""
-+
-+if_admin_rules="""
-+      files_search_spool($1)
-+      admin_pattern($1, TEMPLATETYPE_spool_t)
-+"""
-+
-+########################### File Context ##################################
-+fc_file="""\
-+FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_spool_t,s0)
-+"""
-+
-+fc_dir="""\
-+FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_spool_t,s0)
-+"""
-diff -up policycoreutils-2.1.8/gui/usersPage.py.gui policycoreutils-2.1.8/gui/usersPage.py
---- policycoreutils-2.1.8/gui/usersPage.py.gui 2011-11-07 15:12:01.923834245 -0500
-+++ policycoreutils-2.1.8/gui/usersPage.py     2011-11-07 15:12:01.923834245 -0500
-@@ -0,0 +1,150 @@
-+## usersPage.py - show selinux mappings
-+## Copyright (C) 2006,2007,2008 Red Hat, Inc.
-+
-+## This program is free software; you can redistribute it and/or modify
-+## it under the terms of the GNU General Public License as published by
-+## the Free Software Foundation; either version 2 of the License, or
-+## (at your option) any later version.
-+
-+## This program is distributed in the hope that it will be useful,
-+## but WITHOUT ANY WARRANTY; without even the implied warranty of
-+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+## GNU General Public License for more details.
-+
-+## You should have received a copy of the GNU General Public License
-+## along with this program; if not, write to the Free Software
-+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+
-+## Author: Dan Walsh
-+import string
-+import gtk
-+import gtk.glade
-+import os
-+import gobject
-+import sys
-+import commands
-+import seobject
-+from semanagePage import *;
-+
-+##
-+## I18N
-+## 
-+PROGNAME="policycoreutils"
-+import gettext
-+gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
-+gettext.textdomain(PROGNAME)
-+try:
-+    gettext.install(PROGNAME, localedir="/usr/share/locale", unicode=1)
-+except IOError:
-+    import __builtin__
-+    __builtin__.__dict__['_'] = unicode
-+
-+class usersPage(semanagePage):
-+    def __init__(self, xml):
-+        semanagePage.__init__(self, xml, "users", _("SELinux User"))
-+
-+        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
-+        self.view.set_model(self.store)
-+        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
-+
-+        col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text = 0)
-+        col.set_sort_column_id(0)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text = 1)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        col = gtk.TreeViewColumn(_("SELinux Roles"), gtk.CellRendererText(), text = 2)
-+        col.set_resizable(True)
-+        self.view.append_column(col)
-+
-+        self.load()
-+        self.selinuxUserEntry = xml.get_widget("selinuxUserEntry")
-+        self.mlsRangeEntry = xml.get_widget("mlsRangeEntry")
-+        self.selinuxRolesEntry = xml.get_widget("selinuxRolesEntry")
-+
-+    def load(self, filter = ""):
-+        self.filter=filter            
-+        self.user = seobject.seluserRecords()
-+        dict = self.user.get_all()
-+        keys = dict.keys()
-+        keys.sort()
-+        self.store.clear()
-+        for k in keys:
-+            range = seobject.translate(dict[k][2])
-+            if not (self.match(k, filter) or self.match(dict[k][0], filter) or self.match(range, filter) or self.match(dict[k][3], filter)):
-+                continue
-+            
-+            iter = self.store.append()
-+            self.store.set_value(iter, 0, k)
-+            self.store.set_value(iter, 1, range)
-+            self.store.set_value(iter, 2, dict[k][3])
-+        self.view.get_selection().select_path ((0,))
-+
-+    def delete(self):
-+        if semanagePage.delete(self) == gtk.RESPONSE_NO:
-+                return None
-+
-+    def dialogInit(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        self.selinuxUserEntry.set_text(store.get_value(iter, 0))
-+        self.selinuxUserEntry.set_sensitive(False)
-+        self.mlsRangeEntry.set_text(store.get_value(iter, 1))
-+        self.selinuxRolesEntry.set_text(store.get_value(iter, 2))
-+        
-+    def dialogClear(self):
-+        self.selinuxUserEntry.set_text("")
-+        self.selinuxUserEntry.set_sensitive(True)
-+        self.mlsRangeEntry.set_text("s0")
-+        self.selinuxRolesEntry.set_text("")
-+        
-+    def add(self):
-+        user = self.selinuxUserEntry.get_text()
-+        range = self.mlsRangeEntry.get_text()
-+        roles = self.selinuxRolesEntry.get_text()
-+
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage user -a -R '%s' -r %s %s" %  (roles, range, user))
-+        self.ready()
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        iter = self.store.append()
-+        self.store.set_value(iter, 0, user)
-+        self.store.set_value(iter, 1, range)
-+        self.store.set_value(iter, 2, roles)
-+        
-+    def modify(self):
-+        user = self.selinuxUserEntry.get_text()
-+        range = self.mlsRangeEntry.get_text()
-+        roles = self.selinuxRolesEntry.get_text()
-+
-+        self.wait()
-+        (rc, out) = commands.getstatusoutput("semanage user -m -R '%s' -r %s %s" %  (roles, range, user))
-+        self.ready()
-+
-+        if rc != 0:
-+            self.error(out)
-+            return False
-+        self.load(self.filter)
-+
-+    def delete(self):
-+        store, iter = self.view.get_selection().get_selected()
-+        try:
-+            user=store.get_value(iter, 0)
-+            if user == "root" or user == "user_u":
-+                raise ValueError(_("SELinux user '%s' is required") % user)
-+                
-+            self.wait()
-+            (rc, out) = commands.getstatusoutput("semanage user -d %s" %  user)
-+            self.ready()
-+            if rc != 0:
-+                self.error(out)
-+                return False
-+            store.remove(iter)
-+            self.view.get_selection().select_path ((0,))
-+        except ValueError, e:
-+            self.error(e.args[0])
-+
diff --git a/policycoreutils/patches/policycoreutils-rhat.patch b/policycoreutils/patches/policycoreutils-rhat.patch
deleted file mode 100644 (file)
index a0eb0ff..0000000
+++ /dev/null
@@ -1,1222 +0,0 @@
-diff -Nur a/Makefile b/Makefile
---- a/Makefile 2011-11-04 14:38:45.000000000 +0100
-+++ b/Makefile 2011-11-27 18:02:23.488513229 +0100
-@@ -1,4 +1,4 @@
--SUBDIRS = setfiles semanage load_policy newrole run_init sandbox secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps sepolgen-ifgen setsebool po
-+SUBDIRS = setfiles semanage semanage/default_encoding load_policy newrole run_init sandbox secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps sepolgen-ifgen setsebool po
- INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null)
-diff -Nur a/newrole/newrole.c b/newrole/newrole.c
---- a/newrole/newrole.c        2011-11-04 14:38:45.000000000 +0100
-+++ b/newrole/newrole.c        2011-11-27 18:02:23.489513229 +0100
-@@ -543,13 +543,13 @@
- #if defined(AUDIT_LOG_PRIV) && !defined(NAMESPACE_PRIV)
- static int drop_capabilities(int full)
- {
-+      uid_t uid = getuid();
-+      if (!uid) return 0;
-+
-       capng_clear(CAPNG_SELECT_BOTH);
-       if (capng_lock() < 0) 
-               return -1;
--      uid_t uid = getuid();
--      if (!uid) return 0;
--
-       /* Change uid */
-       if (setresuid(uid, uid, uid)) {
-               fprintf(stderr, _("Error changing uid, aborting.\n"));
-@@ -1030,10 +1030,11 @@
-        * if it makes sense to continue to run newrole, and setting up
-        * a scrubbed environment.
-        */
--      if (drop_capabilities(FALSE)) {
-+/*    if (drop_capabilities(FALSE)) {
-               perror(_("Sorry, newrole failed to drop capabilities\n"));
-               return -1;
-       }
-+*/
-       if (set_signal_handles())
-               return -1;
-diff -Nur a/po/Makefile b/po/Makefile
---- a/po/Makefile      2011-11-04 14:38:45.000000000 +0100
-+++ b/po/Makefile      2011-11-27 18:02:23.495513229 +0100
-@@ -7,7 +7,7 @@
- # What is this package?
- NLSPACKAGE    = policycoreutils
- POTFILE               = $(NLSPACKAGE).pot
--INSTALL               = /usr/bin/install -c
-+INSTALL               = /usr/bin/install -c -p
- INSTALL_DATA  = $(INSTALL) -m 644
- INSTALL_DIR   = /usr/bin/install -d
-diff -Nur a/restorecond/restorecond.c b/restorecond/restorecond.c
---- a/restorecond/restorecond.c        2011-11-04 14:38:44.000000000 +0100
-+++ b/restorecond/restorecond.c        2011-11-27 18:02:23.496513229 +0100
-@@ -140,6 +140,7 @@
- {
-       int opt;
-       struct sigaction sa;
-+      const char *null_array[1] = { NULL };
-       memset(&r_opts, 0, sizeof(r_opts));
-@@ -160,6 +161,7 @@
-       r_opts.fts_flags = FTS_PHYSICAL;
-       r_opts.selabel_opt_validate = NULL;
-       r_opts.selabel_opt_path = NULL;
-+      r_opts.selabel_opt_prefixes = null_array;
-       r_opts.ignore_enoent = 1;
-       restore_init(&r_opts);
-diff -Nur a/run_init/run_init.c b/run_init/run_init.c
---- a/run_init/run_init.c      2011-11-04 14:38:45.000000000 +0100
-+++ b/run_init/run_init.c      2011-11-27 18:02:23.497513229 +0100
-@@ -414,10 +414,17 @@
-        * execvp or using a exec(1) recycles pty's, and does not open a new
-        * one. 
-        */
-+#ifdef USE_OPEN_INIT_PTY
-       if (execvp("/usr/sbin/open_init_pty", argv)) {
-               perror("execvp");
-               exit(-1);
-       }
-+#else
-+      if (execvp(argv[1], argv + 1)) {
-+              perror("execvp");
-+              exit(-1);
-+      }
-+#endif
-       return 0;
- }                             /* main() */
-diff -Nur a/sandbox/Makefile b/sandbox/Makefile
---- a/sandbox/Makefile 2011-11-04 14:38:45.000000000 +0100
-+++ b/sandbox/Makefile 2011-11-27 18:02:23.518513231 +0100
-@@ -23,7 +23,7 @@
-       install -m 644 sandbox.8 $(MANDIR)/man8/
-       install -m 644 seunshare.8 $(MANDIR)/man8/
-       -mkdir -p $(MANDIR)/man5
--      install -m 644 sandbox.conf.5 $(MANDIR)/man5/
-+      install -m 644 sandbox.5 $(MANDIR)/man5/sandbox.5
-       -mkdir -p $(SBINDIR)
-       install -m 4755 seunshare $(SBINDIR)/
-       -mkdir -p $(SHAREDIR)
-diff -Nur a/sandbox/sandbox b/sandbox/sandbox
---- a/sandbox/sandbox  2011-11-04 14:38:45.000000000 +0100
-+++ b/sandbox/sandbox  2011-11-27 18:02:23.519513231 +0100
-@@ -118,10 +118,30 @@
-     sock.bind("\0%s" % level)
-     fcntl.fcntl(sock.fileno(), fcntl.F_SETFD, fcntl.FD_CLOEXEC)
-+def get_range():
-+       try:
-+              level =selinux.getcon_raw()[1].split(":")[4]
-+              lowc,highc = level.split(".")
-+              low = int(lowc[1:])
-+              high = int(highc[1:])+1
-+              if high - low < 100:
-+                     raise IndexError
-+                     
-+              return low,high
-+       except IndexError:
-+              raise ValueError(_("User account must be setup with an MCS Range with more then 100 categories"))
-+
- def gen_mcs():
--       while True:
--              i1 = random.randrange(0, 1024)
--              i2 = random.randrange(0, 1024)
-+       low, high = get_range()
-+
-+       level = None
-+       ctr = 0
-+       total = high-low 
-+       total = (total * total)/2 - total
-+       while ctr < total:
-+              ctr += 1
-+              i1 = random.randrange(low, high)
-+              i2 = random.randrange(low, high)
-               if i1 == i2:
-                      continue
-               if i1 > i2:
-@@ -134,7 +154,10 @@
-               except socket.error:
-                      continue
-               break
--       return level
-+       if level:
-+              return level
-+       raise ValueError(_("Failed to find any unused categories"))
-+       
- def fullpath(cmd):
-        for i in [ "/", "./", "../" ]:
-@@ -160,6 +183,17 @@
-         self.__level = None
-         self.__homedir = None
-         self.__tmpdir = None
-+        self.__set_dpi()
-+    
-+    def __set_dpi(self):
-+        rc, out = commands.getstatusoutput("/usr/bin/xrdb -query")
-+        if rc != 0:
-+               self.dpi = 96
-+        else:
-+               for i in out.split("\n"):
-+                      if i.startswith("Xft.dpi:"):
-+                             self.dpi = i.split()[1]
-+                             break;
-     def __validate_mount(self):
-            if self.__options.level:
-@@ -278,6 +312,9 @@
-                           action="callback", callback=self.__mount_callback, 
-                           help=_("mount new home and/or tmp directory"))
-+        parser.add_option("-d", "--dpi", 
-+                          dest="dpi", action="store",default=self.dpi,
-+                          help=_("dots per inch for X display: (%s)" % self.dpi))
-         parser.add_option("-S", "--session", action="store_true",  dest="session", 
-                           default=False,  help=_("run complete desktop session within sandbox"))
-@@ -322,7 +359,7 @@
-         if self.__options.X_ind:
-                self.setype = DEFAULT_X_TYPE
--               self.dpi=commands.getoutput("xrdb -query | grep dpi  | /bin/cut -f 2")
-+
-         if self.__options.setype:
-                self.setype = self.__options.setype
-@@ -408,7 +445,7 @@
-                                 self.__setup_sandboxrc(self.__options.wm)
--                                cmds += [ "--", SANDBOXSH, self.__options.windowsize, self.dpi ]
-+                                cmds += [ "--", SANDBOXSH, self.__options.windowsize, self.__options.dpi ]
-                          else:
-                                 cmds += [ "--" ] + self.__paths
-                          return subprocess.Popen(cmds).wait()
-diff -Nur a/sandbox/sandbox.5 b/sandbox/sandbox.5
---- a/sandbox/sandbox.5        1970-01-01 01:00:00.000000000 +0100
-+++ b/sandbox/sandbox.5        2011-11-27 18:02:23.520513231 +0100
-@@ -0,0 +1,40 @@
-+.TH sandbox.conf "5" "June 2010" "sandbox.conf" "Linux System Administration"
-+.SH NAME
-+sandbox.conf \- user config file for the SELinux sandbox
-+.SH DESCRIPTION
-+.PP
-+When running sandbox with the -C argument, it will be confined using control groups and a system administrator can specify how the sandbox is confined.
-+
-+.PP
-+Everything after "#" is ignored, as are empty lines.  All arguments should be separated by and equals sign ("=").
-+
-+.PP
-+These keywords are allowed.
-+
-+.RS
-+.TP
-+.B NAME
-+The name of the sandbox control group.  Default is "sandbox".
-+
-+.TP
-+.B CPUAFFINITY
-+Which cpus to assign sandbox to.  The default is ALL, but users can specify a comma-separated list with dashes ("-") to represent ranges.  Ex: 0-2,5
-+
-+.TP
-+.B MEMUSAGE
-+How much memory to allow sandbox to use.  The default is 80%.  Users can specify either a percentage or a value in the form of a number followed by one of the suffixes K, M, G to denote kilobytes, megabytes or gigabytes respectively.  Ex: 50% or 100M
-+
-+.TP
-+.B CPUUSAGE
-+Percentage of cpu sandbox should be allowed to use.  The default is 80%.  Specify a value followed by a percent sign ("%"). Ex: 50%
-+
-+
-+
-+.SH "SEE ALSO"
-+.TP
-+sandbox(8)
-+.PP
-+
-+.SH AUTHOR
-+This manual page was written by
-+.I Thomas Liu <tliu@fedoraproject.org>
-diff -Nur a/sandbox/sandbox.8 b/sandbox/sandbox.8
---- a/sandbox/sandbox.8        2011-11-04 14:38:45.000000000 +0100
-+++ b/sandbox/sandbox.8        2011-11-27 18:02:23.520513231 +0100
-@@ -3,11 +3,11 @@
- sandbox \- Run cmd under an SELinux sandbox
- .SH SYNOPSIS
- .B sandbox
--[-C] [-c] [-l level ] [[-M | -X]  -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] cmd
-+[-C] [-c] [ -d DPI ] [-l level ] [[-M | -X]  -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] cmd
- .br
- .B sandbox
--[-C] [-c] [-l level ] [[-M | -X]  -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] -S
-+[-C] [-c] [ -d DPI ] [-l level ] [[-M | -X]  -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] -S
- .br
- .SH DESCRIPTION
- .PP
-@@ -60,6 +60,9 @@
- Create an X based Sandbox for gui apps, temporary files for
- $HOME and /tmp, secondary Xserver, defaults to sandbox_x_t
- .TP
-+\fB\-d\fR
-+Set the DPI value for the sanbox X Server. Defaults to the current X Sever DPI.
-+.TP
- \fB\-c\fR
- Use control groups to control this copy of sandbox.  Specify parameters in /etc/sysconfig/sandbox.  Max memory usage and cpu usage are to be specified in percent.  You can specify which CPUs to use by numbering them 0,1,2... etc.
- .TP
-diff -Nur a/sandbox/sandbox.conf.5 b/sandbox/sandbox.conf.5
---- a/sandbox/sandbox.conf.5   2011-11-04 14:38:45.000000000 +0100
-+++ b/sandbox/sandbox.conf.5   1970-01-01 01:00:00.000000000 +0100
-@@ -1,40 +0,0 @@
--.TH sandbox.conf "5" "June 2010" "sandbox.conf" "Linux System Administration"
--.SH NAME
--sandbox.conf \- user config file for the SELinux sandbox
--.SH DESCRIPTION
--.PP
--When running sandbox with the -C argument, it will be confined using control groups and a system administrator can specify how the sandbox is confined.
--
--.PP
--Everything after "#" is ignored, as are empty lines.  All arguments should be separated by and equals sign ("=").
--
--.PP
--These keywords are allowed.
--
--.RS
--.TP
--.B NAME
--The name of the sandbox control group.  Default is "sandbox".
--
--.TP
--.B CPUAFFINITY
--Which cpus to assign sandbox to.  The default is ALL, but users can specify a comma-separated list with dashes ("-") to represent ranges.  Ex: 0-2,5
--
--.TP
--.B MEMUSAGE
--How much memory to allow sandbox to use.  The default is 80%.  Users can specify either a percentage or a value in the form of a number followed by one of the suffixes K, M, G to denote kilobytes, megabytes or gigabytes respectively.  Ex: 50% or 100M
--
--.TP
--.B CPUUSAGE
--Percentage of cpu sandbox should be allowed to use.  The default is 80%.  Specify a value followed by a percent sign ("%"). Ex: 50%
--
--
--
--.SH "SEE ALSO"
--.TP
--sandbox(8)
--.PP
--
--.SH AUTHOR
--This manual page was written by
--.I Thomas Liu <tliu@fedoraproject.org>
-diff -Nur a/sandbox/sandbox.init b/sandbox/sandbox.init
---- a/sandbox/sandbox.init     2011-11-04 14:38:45.000000000 +0100
-+++ b/sandbox/sandbox.init     2011-11-27 18:02:23.521513231 +0100
-@@ -19,6 +19,7 @@
- #
- # Source function library.
-+. /etc/init.d/functions
- LOCKFILE=/var/lock/subsys/sandbox
-@@ -27,7 +28,7 @@
- start() {
-       echo -n "Starting sandbox"
--      [ -f "$LOCKFILE" ] && return 1
-+      [ -f "$LOCKFILE" ] && return 0
-       touch $LOCKFILE
-       mount --make-rshared / || return $? 
-diff -Nur a/scripts/genhomedircon b/scripts/genhomedircon
---- a/scripts/genhomedircon    2011-11-04 14:38:45.000000000 +0100
-+++ b/scripts/genhomedircon    2011-11-27 18:02:23.521513231 +0100
-@@ -1,2 +1,3 @@
- #!/bin/sh
-+
- /usr/sbin/semodule -Bn
-diff -Nur a/semanage/default_encoding/default_encoding.c b/semanage/default_encoding/default_encoding.c
---- a/semanage/default_encoding/default_encoding.c     1970-01-01 01:00:00.000000000 +0100
-+++ b/semanage/default_encoding/default_encoding.c     2011-11-27 18:02:23.533513231 +0100
-@@ -0,0 +1,57 @@
-+/*
-+ * Authors:
-+ *   John Dennis <jdennis@redhat.com>
-+ *
-+ * Copyright (C) 2009  Red Hat
-+ * see file 'COPYING' for use and warranty information
-+ *
-+ * This program is free software; you can redistribute it and/or
-+ * modify it under the terms of the GNU General Public License as
-+ * published by the Free Software Foundation.
-+ *
-+ * This program is distributed in the hope that it will be useful,
-+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
-+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+ * GNU General Public License for more details.
-+ *
-+ * You should have received a copy of the GNU General Public License
-+ * along with this program; if not, write to the Free Software
-+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-+ */
-+
-+#include <Python.h>
-+
-+PyDoc_STRVAR(setdefaultencoding_doc,
-+"setdefaultencoding(encoding='utf-8')\n\
-+\n\
-+Set the current default string encoding used by the Unicode implementation.\n\
-+Defaults to utf-8."
-+);
-+
-+static PyObject *
-+setdefaultencoding(PyObject *self, PyObject *args, PyObject *kwds)
-+{
-+    static char *kwlist[] = {"utf-8", NULL};
-+    char *encoding;
-+
-+    if (!PyArg_ParseTupleAndKeywords(args, kwds, "s:setdefaultencoding", kwlist, &encoding))
-+        return NULL;
-+
-+    if (PyUnicode_SetDefaultEncoding(encoding))
-+        return NULL;
-+
-+    Py_RETURN_NONE;
-+}
-+
-+static PyMethodDef methods[] = {
-+    {"setdefaultencoding", (PyCFunction)setdefaultencoding, METH_VARARGS|METH_KEYWORDS, setdefaultencoding_doc},
-+      {NULL,          NULL}           /* sentinel */
-+};
-+
-+
-+PyMODINIT_FUNC
-+initdefault_encoding_utf8(void)
-+{
-+    PyUnicode_SetDefaultEncoding("utf-8");
-+    Py_InitModule3("default_encoding_utf8", methods, "Forces the default encoding to utf-8");
-+}
-diff -Nur a/semanage/default_encoding/Makefile b/semanage/default_encoding/Makefile
---- a/semanage/default_encoding/Makefile       1970-01-01 01:00:00.000000000 +0100
-+++ b/semanage/default_encoding/Makefile       2011-11-27 18:02:23.533513231 +0100
-@@ -0,0 +1,8 @@
-+all:
-+      LDFLAGS="" python setup.py build
-+
-+install: all
-+      LDFLAGS="" python setup.py install --root=$(DESTDIR)/
-+
-+clean:
-+      rm -rf build *~
-diff -Nur a/semanage/default_encoding/policycoreutils/__init__.py b/semanage/default_encoding/policycoreutils/__init__.py
---- a/semanage/default_encoding/policycoreutils/__init__.py    1970-01-01 01:00:00.000000000 +0100
-+++ b/semanage/default_encoding/policycoreutils/__init__.py    2011-11-27 18:02:23.534513231 +0100
-@@ -0,0 +1,17 @@
-+#
-+# Copyright (C) 2006,2007,2008, 2009 Red Hat, Inc.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-+#
-diff -Nur a/semanage/default_encoding/setup.py b/semanage/default_encoding/setup.py
---- a/semanage/default_encoding/setup.py       1970-01-01 01:00:00.000000000 +0100
-+++ b/semanage/default_encoding/setup.py       2011-11-27 18:02:23.536513231 +0100
-@@ -0,0 +1,38 @@
-+# Authors:
-+#   John Dennis <jdennis@redhat.com>
-+#
-+# Copyright (C) 2009  Red Hat
-+# see file 'COPYING' for use and warranty information
-+#
-+# This program is free software; you can redistribute it and/or
-+# modify it under the terms of the GNU General Public License as
-+# published by the Free Software Foundation.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-+
-+from distutils.core import setup, Extension
-+
-+default_encoding_utf8 = Extension('policycoreutils.default_encoding_utf8', ['default_encoding.c'])
-+
-+setup(name             = 'policycoreutils-default-encoding',
-+      version          = '0.1',
-+      description      = 'Forces the default encoding in Python to be utf-8',
-+      long_description = 'Forces the default encoding in Python to be utf-8',
-+      author           = 'John Dennis',
-+      author_email     = 'jdennis@redhat.com',
-+      maintainer       = 'John Dennis',
-+      maintainer_email = 'jdennis@redhat.com',
-+      license          = 'GPLv3+',
-+      platforms        = 'posix',
-+      url              = '',
-+      download_url     = '',
-+      ext_modules      = [default_encoding_utf8],
-+      packages=["policycoreutils"],
-+)
-diff -Nur a/semanage/semanage b/semanage/semanage
---- a/semanage/semanage        2011-11-04 14:38:45.000000000 +0100
-+++ b/semanage/semanage        2011-11-27 18:02:23.537513231 +0100
-@@ -20,6 +20,7 @@
- #                                        02111-1307  USA
- #
- #  
-+import policycoreutils.default_encoding_utf8
- import sys, getopt, re
- import seobject
- import selinux
-@@ -32,7 +33,7 @@
- try:
-        gettext.install(PROGNAME,
-                        localedir="/usr/share/locale",
--                       unicode=False,
-+                       unicode=True,
-                        codeset = 'utf-8')
- except IOError:
-        import __builtin__
-@@ -283,11 +284,14 @@
-                               equal = a
-                       if o == "--enable":
--                              set_action(o)
-+                              if disable:
-+                                      raise ValueError(_("You can't disable and enable at the same time"))
-+
-                               enable = True
-                       if o == "--disable":
--                              set_action(o)
-+                              if enable:
-+                                      raise ValueError(_("You can't disable and enable at the same time"))
-                               disable = True
-                       if o == "-F"  or o == "--file":
-@@ -504,31 +508,36 @@
-                if len(sys.argv) < 3:
-                       usage(_("Requires 2 or more arguments"))
-                 
--               gopts, cmds = getopt.getopt(sys.argv[1:],
--                                           '01adf:i:lhmno:p:s:FCDR:L:r:t:T:P:S:',
--                                           ['add',
--                                            'delete',
--                                            'deleteall',
--                                            'ftype=',
--                                            'file',
--                                            'help',
--                                            'input=',
--                                            'list', 
--                                            'modify',
--                                            'noheading',
--                                            'localist',
--                                            'off', 
--                                            'on', 
--                                            'output=',
--                                            'proto=',
--                                            'seuser=',
--                                            'store=',
--                                            'range=',
--                                            'level=',
--                                            'roles=',
--                                            'type=',
--                                            'prefix='
--                                            ])
-+               try:
-+                      gopts, cmds = getopt.getopt(sys.argv[1:],
-+                                                  '01adf:i:lhmno:p:s:FCDR:L:r:t:T:P:S:',
-+                                                  ['add',
-+                                                   'delete',
-+                                                   'deleteall',
-+                                                   'ftype=',
-+                                                   'file',
-+                                                   'help',
-+                                                   'input=',
-+                                                   'list',
-+                                                   'modify',
-+                                                   'noheading',
-+                                                   'localist',
-+                                                   'off',
-+                                                   'on',
-+                                                   'output=',
-+                                                   'proto=',
-+                                                   'seuser=',
-+                                                   'store=',
-+                                                   'range=',
-+                                                   'level=',
-+                                                   'roles=',
-+                                                   'type=',
-+                                                   'trans=',
-+                                                   'prefix='
-+                                                   ])
-+               except getopt.error, error:
-+                      usage(_("Options Error %s ") % error.msg)
-+
-                for o, a in gopts:
-                       if o == "-S" or o == '--store':
-                              store = a
-@@ -558,8 +567,6 @@
-                else:
-                       process_args(sys.argv[1:])
-                       
--      except getopt.error, error:
--              usage(_("Options Error %s ") % error.msg)
-       except ValueError, error:
-               errorExit(error.args[0])
-       except KeyError, error:
-diff -Nur a/semanage/seobject.py b/semanage/seobject.py
---- a/semanage/seobject.py     2011-11-04 14:38:45.000000000 +0100
-+++ b/semanage/seobject.py     2011-11-27 18:02:23.539513231 +0100
-@@ -30,11 +30,10 @@
- import gettext
- gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
- gettext.textdomain(PROGNAME)
--try:
--       gettext.install(PROGNAME, localedir = "/usr/share/locale", unicode = 1)
--except IOError:
--       import __builtin__
--       __builtin__.__dict__['_'] = unicode
-+
-+import gettext
-+translation=gettext.translation(PROGNAME, localedir = "/usr/share/locale", fallback=True)
-+_=translation.ugettext
- import syslog
-@@ -166,6 +165,7 @@
-         transaction = False
-         handle = None
-         store = None
-+
-         def __init__(self, store):
-                global handle
-                       
-@@ -333,6 +333,7 @@
-                       name = semanage_module_get_name(mod)
-                       if name and name.startswith("permissive_"):
-                              l.append(name.split("permissive_")[1])
-+
-                return l
-       def list(self, heading = 1, locallist = 0):
-@@ -431,7 +432,9 @@
-               if rc < 0:
-                       raise ValueError(_("Could not check if login mapping for %s is defined") % name)
-               if exists:
--                      raise ValueError(_("Login mapping for %s is already defined") % name)
-+                       semanage_seuser_key_free(k)
-+                       return self.__modify(name, sename, serange)
-+
-                 if name[0] == '%':
-                        try:
-                               grp.getgrnam(name[1:])
-@@ -641,7 +644,8 @@
-                 if rc < 0:
-                        raise ValueError(_("Could not check if SELinux user %s is defined") % name)
-                 if exists:
--                       raise ValueError(_("SELinux user %s is already defined") % name)
-+                       semanage_user_key_free(k)
-+                       return self.__modify(name, roles, selevel, serange, prefix)
-                 (rc, u) = semanage_user_create(self.sh)
-                 if rc < 0:
-@@ -881,6 +885,7 @@
-               return ( k, proto_d, low, high )
-       def __add(self, port, proto, serange, type):
-+
-               if is_mls_enabled == 1:
-                       if serange == "":
-                               serange = "s0"
-@@ -943,6 +948,7 @@
-                 self.commit()
-       def __modify(self, port, proto, serange, setype):
-+
-               if serange == "" and setype == "":
-                       if is_mls_enabled == 1:
-                               raise ValueError(_("Requires setype or serange"))
-@@ -1156,7 +1162,8 @@
-                (rc, exists) = semanage_node_exists(self.sh, k)
-                if exists:
--                       raise ValueError(_("Addr %s already defined") % addr)
-+                       semanage_node_key_free(k)
-+                       return self.__modify(addr, mask, self.protocol[proto], serange, ctype)
-                (rc, node) = semanage_node_create(self.sh)
-                if rc < 0:
-@@ -1172,7 +1179,6 @@
-                if rc < 0:
-                        raise ValueError(_("Could not set mask for %s") % addr)
--
-                rc = semanage_context_set_user(self.sh, con, "system_u")
-                if rc < 0:
-                        raise ValueError(_("Could not set user in addr context for %s") % addr)
-@@ -1224,12 +1230,11 @@
-                if not exists:
-                        raise ValueError(_("Addr %s is not defined") % addr)
--               (rc, node) = semanage_node_query(self.sh, k)
-+               (rc, node) = semanage_node_query_local(self.sh, k)
-                if rc < 0:
-                        raise ValueError(_("Could not query addr %s") % addr)
-                con = semanage_node_get_con(node)
--
-                if serange != "":
-                        semanage_context_set_mls(self.sh, con, untranslate(serange))
-                if setype != "":
-@@ -1357,7 +1362,8 @@
-               if rc < 0:
-                       raise ValueError(_("Could not check if interface %s is defined") % interface)
-               if exists:
--                      raise ValueError(_("Interface %s already defined") % interface)
-+                        semanage_iface_key_free(k)
-+                        return self.__modify(interface, serange, ctype)
-               (rc, iface) = semanage_iface_create(self.sh)
-               if rc < 0:
-@@ -1525,6 +1531,7 @@
-       def __init__(self, store = ""):
-               semanageRecords.__init__(self, store)
-                 self.equiv = {}
-+                self.equiv_dist = {}
-                 self.equal_ind = False
-                 try:
-                        fd = open(selinux.selinux_file_context_subs_path(), "r")
-@@ -1534,6 +1541,14 @@
-                        fd.close()
-                 except IOError:
-                        pass
-+                try:
-+                       fd = open(selinux.selinux_file_context_subs_dist_path(), "r")
-+                       for i in fd.readlines():
-+                              src, dst = i.split()
-+                              self.equiv_dist[src] = dst
-+                       fd.close()
-+                except IOError:
-+                       pass
-         def commit(self):
-                 if self.equal_ind:
-@@ -1589,12 +1604,21 @@
-                 return con
-                
-+        def check_equiv(self, target, fdict):
-+              for i in fdict:
-+                      if target.startswith(i+"/"):
-+                              t = re.sub(i, fdict[i], target)
-+                              raise ValueError(_("File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead") % (target, i, fdict[i], t))
-+
-+                      
-         def validate(self, target):
-                if target == "" or target.find("\n") >= 0:
-                       raise ValueError(_("Invalid file specification"))
-                if target.find(" ") != -1:
-                       raise ValueError(_("File specification can not include spaces"))
--                      
-+             self.check_equiv(target, self.equiv)
-+             self.check_equiv(target, self.equiv_dist)
-+                             
-       def __add(self, target, type, ftype = "", serange = "", seuser = "system_u"):
-                 self.validate(target)
-@@ -1618,7 +1642,8 @@
-                               raise ValueError(_("Could not check if file context for %s is defined") % target)
-                 if exists:
--                       raise ValueError(_("File context for %s already defined") % target)
-+                       semanage_fcontext_key_free(k)
-+                       return self.__modify(target, type, ftype, serange, seuser)
-               (rc, fcontext) = semanage_fcontext_create(self.sh)
-               if rc < 0:
-@@ -1825,9 +1850,17 @@
-                                       print "%-50s %-18s %s:%s:%s " % (k[0], k[1], fcon_dict[k][0], fcon_dict[k][1],fcon_dict[k][2])
-                       else:
-                               print "%-50s %-18s <<None>>" % (k[0], k[1])
--                if len(self.equiv.keys()) > 0:
-+
-+
-+              if len(self.equiv_dist):
-+                     if not locallist:
-+                             if heading:
-+                                     print _("\nSELinux Distribution fcontext Equivalence \n")
-+                             for src in self.equiv_dist.keys():
-+                                     print "%s = %s" % (src, self.equiv_dist[src])
-+              if len(self.equiv):
-                        if heading:
--                              print _("\nSELinux fcontext Equivalence \n")
-+                              print _("\nSELinux Local fcontext Equivalence \n")
-                        for src in self.equiv.keys():
-                               print "%s = %s" % (src, self.equiv[src])
-diff -Nur a/setfiles/restore.c b/setfiles/restore.c
---- a/setfiles/restore.c       2011-11-04 14:38:45.000000000 +0100
-+++ b/setfiles/restore.c       2011-11-27 18:02:23.540513231 +0100
-@@ -1,5 +1,6 @@
- #include "restore.h"
- #include <glob.h>
-+#include <selinux/context.h>
- #define SKIP -2
- #define ERR -1
-@@ -33,7 +34,6 @@
- static file_spec_t *fl_head;
- static int filespec_add(ino_t ino, const security_context_t con, const char *file);
--static int only_changed_user(const char *a, const char *b);
- struct restore_opts *r_opts = NULL;
- static void filespec_destroy(void);
- static void filespec_eval(void);
-@@ -58,11 +58,16 @@
- void restore_init(struct restore_opts *opts)
- {     
-       r_opts = opts;
--      struct selinux_opt selinux_opts[] = {
--              { SELABEL_OPT_VALIDATE, r_opts->selabel_opt_validate },
--              { SELABEL_OPT_PATH, r_opts->selabel_opt_path }
--      };
--      r_opts->hnd = selabel_open(SELABEL_CTX_FILE, selinux_opts, 2);
-+      struct selinux_opt selinux_opts[3];
-+
-+      selinux_opts[0].type = SELABEL_OPT_VALIDATE;
-+      selinux_opts[0].value = r_opts->selabel_opt_validate;
-+      selinux_opts[1].type = SELABEL_OPT_PATH;
-+      selinux_opts[1].value = r_opts->selabel_opt_path;
-+      selinux_opts[2].type = SELABEL_OPT_PREFIXES;
-+      selinux_opts[2].values = r_opts->selabel_opt_prefixes;
-+
-+      r_opts->hnd = selabel_open(SELABEL_CTX_FILE, selinux_opts, 3);
-       if (!r_opts->hnd) {
-               perror(r_opts->selabel_opt_path);
-               exit(1);
-@@ -104,8 +109,7 @@
- {
-       char *my_file = strdupa(ftsent->fts_path);
-       int ret = -1;
--      char *context, *newcon;
--      int user_only_changed = 0;
-+      security_context_t curcon = NULL, newcon = NULL;
-       if (match(my_file, ftsent->fts_statp, &newcon) < 0)
-               /* Check for no matching specification. */
-@@ -139,74 +143,105 @@
-               printf("%s:  %s matched by %s\n", r_opts->progname, my_file, newcon);
-       }
-+      /*
-+       * Do not relabel if their is no default specification for this file
-+       */
-+
-+      if (strcmp(newcon, "<<none>>") == 0) {
-+              goto out;
-+      }
-+
-       /* Get the current context of the file. */
--      ret = lgetfilecon_raw(ftsent->fts_accpath, &context);
-+      ret = lgetfilecon_raw(ftsent->fts_accpath, &curcon);
-       if (ret < 0) {
-               if (errno == ENODATA) {
--                      context = NULL;
-+                      curcon = NULL;
-               } else {
-                       fprintf(stderr, "%s get context on %s failed: '%s'\n",
-                               r_opts->progname, my_file, strerror(errno));
-                       goto err;
-               }
--              user_only_changed = 0;
--      } else
--              user_only_changed = only_changed_user(context, newcon);
-+      }
-+
-       /* lgetfilecon returns number of characters and ret needs to be reset
-        * to 0.
-        */
-       ret = 0;
-       /*
--       * Do not relabel the file if the matching specification is 
--       * <<none>> or the file is already labeled according to the 
--       * specification.
-+       * Do not relabel the file if the file is already labeled according to
-+       * the specification.
-        */
--      if ((strcmp(newcon, "<<none>>") == 0) ||
--          (context && (strcmp(context, newcon) == 0))) {
--              freecon(context);
-+      if (curcon && (strcmp(curcon, newcon) == 0)) {
-               goto out;
-       }
--      if (!r_opts->force && context && (is_context_customizable(context) > 0)) {
-+      if (!r_opts->force && curcon && (is_context_customizable(curcon) > 0)) {
-               if (r_opts->verbose > 1) {
-                       fprintf(stderr,
-                               "%s: %s not reset customized by admin to %s\n",
--                              r_opts->progname, my_file, context);
-+                              r_opts->progname, my_file, curcon);
-               }
--              freecon(context);
-               goto out;
-       }
--      if (r_opts->verbose) {
--              /* If we're just doing "-v", trim out any relabels where
--               * the user has r_opts->changed but the role and type are the
--               * same.  For "-vv", emit everything. */
--              if (r_opts->verbose > 1 || !user_only_changed) {
--                      printf("%s reset %s context %s->%s\n",
--                             r_opts->progname, my_file, context ?: "", newcon);
-+      /*
-+       *  Do not change label unless this is a force or the type is different
-+       */
-+      if (!r_opts->force && curcon) {
-+              int types_differ = 0;
-+              context_t cona;
-+              context_t conb;
-+              int err = 0;
-+              cona = context_new(curcon);
-+              if (! cona) {
-+                      goto out;
-+              }
-+              conb = context_new(newcon);
-+              if (! conb) {
-+                      context_free(cona);
-+                      goto out;
-               }
-+
-+              types_differ = strcmp(context_type_get(cona), context_type_get(conb));
-+              if (types_differ) {
-+                      err |= context_user_set(conb, context_user_get(cona));
-+                      err |= context_role_set(conb, context_role_get(cona));
-+                      err |= context_range_set(conb, context_range_get(cona));
-+                      if (!err) {
-+                              freecon(newcon);
-+                              newcon = strdup(context_str(conb));
-+                      }
-+              }
-+              context_free(cona);
-+              context_free(conb);
-+
-+              if (!types_differ || err) {
-+                      goto out;
-+              }
-+      }
-+
-+      if (r_opts->verbose) {
-+              printf("%s reset %s context %s->%s\n",
-+                     r_opts->progname, my_file, curcon ?: "", newcon);
-       }
--      if (r_opts->logging && !user_only_changed) {
--              if (context)
-+      if (r_opts->logging) {
-+              if (curcon)
-                       syslog(LOG_INFO, "relabeling %s from %s to %s\n",
--                             my_file, context, newcon);
-+                             my_file, curcon, newcon);
-               else
-                       syslog(LOG_INFO, "labeling %s to %s\n",
-                              my_file, newcon);
-       }
--      if (r_opts->outfile && !user_only_changed)
-+      if (r_opts->outfile)
-               fprintf(r_opts->outfile, "%s\n", my_file);
--      if (context)
--              freecon(context);
--
-       /*
-        * Do not relabel the file if -n was used.
-        */
--      if (!r_opts->change || user_only_changed)
-+      if (!r_opts->change)
-               goto out;
-       /*
-@@ -220,12 +255,15 @@
-       }
-       ret = 1;
- out:
-+      freecon(curcon);
-       freecon(newcon);
-       return ret;
- skip:
-+      freecon(curcon);
-       freecon(newcon);
-       return SKIP;
- err:
-+      freecon(curcon);
-       freecon(newcon);
-       return ERR;
- }
-@@ -447,22 +485,6 @@
-       return 0;
- }
--/* Compare two contexts to see if their differences are "significant",
-- * or whether the only difference is in the user. */
--static int only_changed_user(const char *a, const char *b)
--{
--      char *rest_a, *rest_b;  /* Rest of the context after the user */
--      if (r_opts->force)
--              return 0;
--      if (!a || !b)
--              return 0;
--      rest_a = strchr(a, ':');
--      rest_b = strchr(b, ':');
--      if (!rest_a || !rest_b)
--              return 0;
--      return (strcmp(rest_a, rest_b) == 0);
--}
--
- /*
-  * Evaluate the association hash table distribution.
-  */
-diff -Nur a/setfiles/restorecon.8 b/setfiles/restorecon.8
---- a/setfiles/restorecon.8    2011-11-04 14:38:45.000000000 +0100
-+++ b/setfiles/restorecon.8    2011-11-27 18:02:23.541513231 +0100
-@@ -4,22 +4,27 @@
- .SH "SYNOPSIS"
- .B restorecon
--.I [\-o outfilename ] [\-R] [\-n] [\-p] [\-v] [\-e directory ] pathname...
-+.I [\-o outfilename ] [\-R] [\-n] [\-p] [\-v] [\-e directory ] [\-L labelprefix ] pathname...
- .P
- .B restorecon
--.I \-f infilename [\-o outfilename ] [\-e directory ] [\-R] [\-n] [\-p] [\-v] [\-F]
-+.I \-f infilename [\-o outfilename ] [\-e directory ] [\-L labelprefix ] [\-R] [\-n] [\-p] [\-v] [\-F]
- .SH "DESCRIPTION"
- This manual page describes the
- .BR restorecon
- program.
- .P
--This program is primarily used to set the security context
-+This program is primarily used to reset the security context (type)
- (extended attributes) on one or more files. 
- .P
- It can be run at any time to correct errors, to add support for
- new policy, or with the \-n option it can just check whether the file
- contexts are all as you expect.
-+.P
-+If a file object does not have a context, restorecon will write the default
-+context to the file object's extended attributes. If a file object has a
-+context, restorecon will only modify the type portion of the security context.
-+The -F option will force a replacement of the entire context.
- .SH "OPTIONS"
- .TP 
-@@ -32,6 +37,12 @@
- .B \-e directory
- directory to exclude (repeat option for more than one directory.)
- .TP 
-+.B \-L labelprefix
-+Tells selinux to only use the file context that match this prefix for labeling,  -L can be called multiple times.  Can speed up labeling if you are only doing one directory.
-+
-+# restorecon -R -v -L /dev /dev
-+
-+.TP
- .B \-R \-r
- change files and directories file labels recursively
- .TP 
-@@ -47,11 +58,8 @@
- .B \-v
- show changes in file labels.
- .TP 
--.B \-vv
--show changes in file labels, if type, role, or user are changing.
--.TP 
- .B \-F
--Force reset of context to match file_context for customizable files, or the user section, if it has changed. 
-+Force reset of context to match file_context for customizable files, and the default file context, changing the user, role, range portion as well as the type.
- .TP 
- .SH "ARGUMENTS"
- .B pathname...
-diff -Nur a/setfiles/restore.h b/setfiles/restore.h
---- a/setfiles/restore.h       2011-11-04 14:38:45.000000000 +0100
-+++ b/setfiles/restore.h       2011-11-27 18:02:23.540513231 +0100
-@@ -40,6 +40,7 @@
-       int fts_flags; /* Flags to fts, e.g. follow links, follow mounts */
-       const char *selabel_opt_validate;
-       const char *selabel_opt_path;
-+      const char **selabel_opt_prefixes;
- };
- void restore_init(struct restore_opts *opts);
-diff -Nur a/setfiles/setfiles.8 b/setfiles/setfiles.8
---- a/setfiles/setfiles.8      2011-11-04 14:38:45.000000000 +0100
-+++ b/setfiles/setfiles.8      2011-11-27 18:02:23.542513231 +0100
-@@ -4,7 +4,7 @@
- .SH "SYNOPSIS"
- .B setfiles
--.I [\-c policy ] [\-d] [\-l] [\-n] [\-e directory ] [\-o filename ] [\-q] [\-s] [\-v] [\-vv] [\-W] [\-F] spec_file pathname...
-+.I [\-c policy ] [\-d] [\-l] [\-n] [\-e directory ] [\-o filename ] [\-L labelprefix ] [\-q] [\-s] [\-v] [\-W] [\-F] spec_file pathname...
- .SH "DESCRIPTION"
- This manual page describes the
- .BR setfiles
-@@ -17,6 +17,11 @@
- It can also be run at any time to correct errors, to add support for
- new policy, or with the \-n option it can just check whether the file
- contexts are all as you expect.
-+.P
-+If a file object does not have a context, setfiles will write the default
-+context to the file object's extended attributes. If a file object has a
-+context, setfiles will only modify the type portion of the security context.
-+The -F option will force a replacement of the entire context.
- .SH "OPTIONS"
- .TP 
-@@ -45,8 +50,11 @@
- directory to exclude (repeat option for more than one directory.)
- .TP 
- .B \-F
--Force reset of context to match file_context for customizable files
-+Force reset of context to match file_context for customizable files, and the default file context, changing the user, role, range portion as well as the type.
- .TP 
-+.B \-L labelprefix
-+Tells selinux to only use the file context that match this prefix for labeling,  -L can be called multiple times.  Can speed up labeling if you are only doing one directory.
-+.TP
- .B \-o filename
- save list of files with incorrect context in filename.
- .TP 
-@@ -55,10 +63,7 @@
- command line.
- .TP
- .B \-v
--show changes in file labels, if type or role are changing.
--.TP 
--.B \-vv
--show changes in file labels, if type, role, or user are changing.
-+show changes in file labels.
- .TP 
- .B \-W
- display warnings about entries that had no matching files.
-diff -Nur a/setfiles/setfiles.c b/setfiles/setfiles.c
---- a/setfiles/setfiles.c      2011-11-04 14:38:45.000000000 +0100
-+++ b/setfiles/setfiles.c      2011-11-27 18:02:23.542513231 +0100
-@@ -39,7 +39,7 @@
- {
-       if (iamrestorecon) {
-               fprintf(stderr,
--                      "usage:  %s [-iFnprRv0] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
-+                      "usage:  %s [-iFnprRv0] [ -L labelprefix ] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
-                       name);
-       } else {
-               fprintf(stderr,
-@@ -137,7 +137,7 @@
- int main(int argc, char **argv)
- {
-       struct stat sb;
--      int opt, i = 0;
-+      int opt, i;
-       char *input_filename = NULL;
-       int use_input_file = 0;
-       char *buf = NULL;
-@@ -145,6 +145,8 @@
-       int recurse; /* Recursive descent. */
-       char *base;
-       int mass_relabel = 0, errors = 0;
-+      int num_prefixes = 0;
-+      const char *null_array[1] = { NULL };
-       
-       memset(&r_opts, 0, sizeof(r_opts));
-@@ -160,6 +162,7 @@
-       r_opts.outfile = NULL;
-       r_opts.force = 0;
-       r_opts.hard_links = 1;
-+      r_opts.selabel_opt_prefixes = null_array;
-       altpath = NULL;
-@@ -217,7 +220,7 @@
-       exclude_non_seclabel_mounts();
-       /* Process any options. */
--      while ((opt = getopt(argc, argv, "c:de:f:ilnpqrsvo:FRW0")) > 0) {
-+      while ((opt = getopt(argc, argv, "c:de:f:ilnpqrsvo:FL:RW0")) > 0) {
-               switch (opt) {
-               case 'c':
-                       {
-@@ -280,6 +283,35 @@
-               case 'n':
-                       r_opts.change = 0;
-                       break;
-+              case 'L':
-+              {
-+                      char **new_prefixes;
-+
-+                      /* we need 1 for this entry and 1 for the NULL entry */
-+                      new_prefixes = malloc(sizeof(*new_prefixes) * (num_prefixes + 2));
-+                      if (!new_prefixes) {
-+                              fprintf(stderr, "Can't allocate memory for labeling prefix %s:%s\n",
-+                              optarg, strerror(errno));
-+                              exit(1);
-+                      }
-+
-+                      memcpy(new_prefixes, r_opts.selabel_opt_prefixes, sizeof(*new_prefixes) * num_prefixes);
-+                      new_prefixes[num_prefixes] = strdup(optarg);
-+                      if (!new_prefixes[num_prefixes]) {
-+                              fprintf(stderr, "Can't allocate memory for labeling prefix %s:%s\n",
-+                              optarg, strerror(errno));
-+                              exit(1);
-+                      }
-+
-+                      new_prefixes[num_prefixes + 1] = NULL;
-+                      num_prefixes++;
-+
-+                      if (r_opts.selabel_opt_prefixes != null_array)
-+                              free(r_opts.selabel_opt_prefixes);
-+
-+                      r_opts.selabel_opt_prefixes = (const char **)new_prefixes;
-+                      break;
-+              }
-               case 'o':
-                       if (strcmp(optarg, "-") == 0) {
-                               r_opts.outfile = stdout;
-@@ -433,7 +465,15 @@
-       if (r_opts.outfile)
-               fclose(r_opts.outfile);
--       if (r_opts.progress && r_opts.count >= STAR_COUNT)
--               printf("\n");
-+      if (r_opts.progress && r_opts.count >= STAR_COUNT)
-+              printf("\n");
-+
-+      free(r_opts.progname);
-+      i = 0;
-+      while (r_opts.selabel_opt_prefixes[i])
-+              free((void *)r_opts.selabel_opt_prefixes[i++]);
-+      if (r_opts.selabel_opt_prefixes != null_array)
-+              free(r_opts.selabel_opt_prefixes);
-+      free(r_opts.rootpath);
-       exit(errors);
- }
similarity index 53%
rename from policycoreutils/patches/policycoreutils-po.patch
rename to policycoreutils/patches/policycoreutils-rhat.patch2
index a1162c41b4efcd37ffd56529ebf257a853d81225..bbcb29d9501c81e1a9328b31bd099c4f38b93d8a 100644 (file)
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils-2.0.85/po/af.po
---- nsapolicycoreutils/po/af.po        2011-02-17 15:11:25.504728610 -0500
-+++ policycoreutils-2.0.85/po/af.po    2011-02-18 16:03:41.328975464 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
+diff --git a/policycoreutils/.gitignore b/policycoreutils/.gitignore
+index 50f8b82..9e2d86b 100644
+--- a/policycoreutils/.gitignore
++++ b/policycoreutils/.gitignore
+@@ -14,3 +14,4 @@ sestatus/sestatus
+ setfiles/restorecon
+ setfiles/setfiles
+ setsebool/setsebool
++.tx
+diff --git a/policycoreutils/Makefile b/policycoreutils/Makefile
+index 9cfe3bc..9c242d4 100644
+--- a/policycoreutils/Makefile
++++ b/policycoreutils/Makefile
+@@ -1,4 +1,4 @@
+-SUBDIRS = setfiles semanage load_policy newrole run_init sandbox secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps sepolgen-ifgen setsebool po man
++SUBDIRS = setfiles semanage semanage/default_encoding load_policy newrole run_init sandbox secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps sepolgen-ifgen setsebool po man gui
+ INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null)
+diff --git a/policycoreutils/audit2allow/sepolgen-ifgen b/policycoreutils/audit2allow/sepolgen-ifgen
+index ef4bec3..9b313ec 100644
+--- a/policycoreutils/audit2allow/sepolgen-ifgen
++++ b/policycoreutils/audit2allow/sepolgen-ifgen
+@@ -61,20 +61,10 @@ def parse_options():
+     
+     return options
+-def get_policy():
+-    i = selinux.security_policyvers()
+-    p = selinux.selinux_binary_policy_path() + "." + str(i)
+-    while i > 0 and not os.path.exists(p):
+-        i = i - 1
+-        p = selinux.selinux_binary_policy_path() + "." + str(i)
+-    if i > 0:
+-        return p
+-    return None
+-
+ def get_attrs(policy_path):
+     try:
+         if not policy_path:
+-            policy_path = get_policy()
++            policy_path = selinux.selinux_current_policy_path()
+         if not policy_path:
+             sys.stderr.write("No installed policy to check\n")
+             return None
+diff --git a/policycoreutils/gui/Makefile b/policycoreutils/gui/Makefile
+new file mode 100644
+index 0000000..53efa84
+--- /dev/null
++++ b/policycoreutils/gui/Makefile
+@@ -0,0 +1,38 @@
++# Installation directories.
++PREFIX ?= ${DESTDIR}/usr
++BINDIR ?= $(PREFIX)/bin
++SHAREDIR ?= $(PREFIX)/share/system-config-selinux
++
++TARGETS= \
++booleansPage.py \
++domainsPage.py \
++fcontextPage.py \
++html_util.py \
++loginsPage.py \
++mappingsPage.py \
++modulesPage.py \
++polgen.glade \
++portsPage.py \
++semanagePage.py \
++statusPage.py \
++system-config-selinux.glade \
++usersPage.py \
++selinux.tbl
++
++all: $(TARGETS) system-config-selinux.py polgengui.py templates polgen.py 
++
++install: all
++      -mkdir -p $(SHAREDIR)/templates
++      -mkdir -p $(BINDIR)
++      install -m 755 system-config-selinux.py $(SHAREDIR)
++      install -m 755 polgengui.py $(SHAREDIR)
++      install -m 755 polgen.py $(SHAREDIR)
++      (cd $(BINDIR);  ln -fs ../share/system-config-selinux/polgen.py sepolgen)
++      install -m 644 $(TARGETS) $(SHAREDIR)
++      install -m 644 templates/*.py $(SHAREDIR)/templates/
++
++clean:
++
++indent:
++
++relabel:
+diff --git a/policycoreutils/gui/booleansPage.py b/policycoreutils/gui/booleansPage.py
+new file mode 100644
+index 0000000..dca786d
+--- /dev/null
++++ b/policycoreutils/gui/booleansPage.py
+@@ -0,0 +1,247 @@
++#
++# booleansPage.py - GUI for Booleans page in system-config-securitylevel
++#
++# Dan Walsh <dwalsh@redhat.com>
++#
++# Copyright 2006, 2007 Red Hat, Inc.
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import tempfile
++import seobject
++import semanagePage
++
++INSTALLPATH='/usr/share/system-config-selinux'
++sys.path.append(INSTALLPATH)
++
++import commands
++ENFORCING=0
++PERMISSIVE=1
++DISABLED=2
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++from glob import fnmatch
++
++class Modifier:
++    def __init__(self,name, on, save):
++        self.on=on
++        self.name=name
++        self.save=save
++
++    def set(self,value):
++        self.on=value
++        self.save=True
++
++    def isOn(self):
++        return self.on
++
++class Boolean(Modifier):
++    def __init__(self,name, val, save=False):
++        Modifier.__init__(self,name, val, save)
++
++ACTIVE = 0
++MODULE = 1
++DESC = 2
++BOOLEAN = 3
++
++class booleansPage:
++    def __init__(self, xml, doDebug=None):
++        self.xml = xml
++        xml.signal_connect("on_lockdown_clicked", self.on_lockdown_clicked)
++        self.window = self.xml.get_widget("mainWindow").get_root_window()
++        self.local = False
++        self.types=[]
++        self.selinuxsupport = True
++        self.typechanged = False
++        self.doDebug = doDebug
++        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
++        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
++
++        # Bring in widgets from glade file.
++        self.typeHBox = xml.get_widget("typeHBox")
++        self.booleanSW = xml.get_widget("booleanSW")
++        self.booleansFilter = xml.get_widget("booleansFilter")
++        self.booleansFilter.connect("focus_out_event", self.filter_changed)
++        self.booleansFilter.connect("activate", self.filter_changed)
++        
++        self.booleansView = xml.get_widget("booleansView")
++        self.typeLabel = xml.get_widget("typeLabel")
++        self.modifySeparator = xml.get_widget("modifySeparator")
++
++        self.revertButton = xml.get_widget("booleanRevertButton")
++        self.revertButton.set_sensitive(self.local)
++        self.revertButton.connect("clicked", self.on_revert_clicked)
++        listStore = gtk.ListStore(gobject.TYPE_STRING)
++        cell = gtk.CellRendererText()
++
++        self.store = gtk.ListStore(gobject.TYPE_BOOLEAN, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.store.set_sort_column_id(1, gtk.SORT_ASCENDING)        
++        self.booleansView.set_model(self.store)
++
++        checkbox = gtk.CellRendererToggle()
++        checkbox.connect("toggled", self.boolean_toggled)
++        col = gtk.TreeViewColumn('Active', checkbox, active = ACTIVE)
++        col.set_clickable(True)
++        col.set_sort_column_id(ACTIVE)
++        self.booleansView.append_column(col)
++
++        col = gtk.TreeViewColumn("Module", gtk.CellRendererText(), text=MODULE)
++        col.set_sort_column_id(MODULE)
++        col.set_resizable(True)
++        self.booleansView.append_column(col)
++
++        col = gtk.TreeViewColumn("Description", gtk.CellRendererText(), text=DESC)
++      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
++        col.set_fixed_width(400)
++        col.set_sort_column_id(DESC)
++        col.set_resizable(True)
++        self.booleansView.append_column(col)
++
++        col = gtk.TreeViewColumn("Name", gtk.CellRendererText(), text=BOOLEAN)
++        col.set_sort_column_id(BOOLEAN)
++        col.set_resizable(True)
++        self.booleansView.set_search_equal_func(self.__search)
++        self.booleansView.append_column(col)
++        self.filter=""
++        self.load(self.filter)
++            
++    def __search(self, model, col, key, i):
++        sort_col = self.store.get_sort_column_id()[0]
++        if sort_col > 0:
++            val = model.get_value(i, sort_col)
++            if val.lower().startswith(key.lower()):
++                return False
++        return True
++
++    def wait(self):
++        self.window.set_cursor(self.busy_cursor)
++        semanagePage.idle_func()
++    
++    def ready(self):
++        self.window.set_cursor(self.ready_cursor)
++        semanagePage.idle_func()
++    
++    def deleteDialog(self):
++        store, iter = self.booleansView.get_selection().get_selected()
++        if iter == None:
++            return
++        boolean = store.get_value(iter, BOOLEAN)
++        # change cursor
++        if boolean == None:
++            return
++        try:
++            self.wait()
++            (rc, out) = commands.getstatusoutput("semanage boolean -d %s" % boolean)
++            
++            self.ready()
++            if rc != 0:
++                return self.error(out)
++            self.load(self.filter)
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def filter_changed(self, *arg):
++        filter =  arg[0].get_text()
++        if filter != self.filter:
++            self.load(filter)
++            self.filter=filter
++        
++    def use_menus(self):
++        return False
++    
++    def get_description(self):
++        return _("Boolean")
++
++    def match(self,key, filter=""):
++        try:
++            f=filter.lower()
++            cat=self.booleans.get_category(key).lower()
++            val=self.booleans.get_desc(key).lower()
++            k=key.lower()
++            return val.find(f) >= 0 or k.find(f) >= 0 or cat.find(f) >= 0
++        except:
++            return False
++
++
++    def load(self, filter=None):
++        self.store.clear()
++        self.booleans = seobject.booleanRecords()
++        booleansList = self.booleans.get_all(self.local)
++        for name in booleansList:
++            rec = booleansList[name]
++            if self.match(name, filter):
++                iter=self.store.append()
++                self.store.set_value(iter, ACTIVE, rec[2] == 1)
++                self.store.set_value(iter, MODULE, self.booleans.get_category(name))
++                self.store.set_value(iter, DESC, self.booleans.get_desc(name))
++                self.store.set_value(iter, BOOLEAN, name)
++
++    def boolean_toggled(self, widget, row):
++        iter = self.store.get_iter(row)
++        val = self.store.get_value(iter, ACTIVE)
++        key = self.store.get_value(iter, BOOLEAN)
++        self.store.set_value(iter, ACTIVE , not val)
++        self.wait()
++        setsebool="/usr/sbin/setsebool -P %s=%d" % (key, not val)
++        commands.getstatusoutput(setsebool)
++        self.load(self.filter)
++        self.ready()
++
++    def on_revert_clicked(self, button):
++        self.wait()
++        setsebool="semanage boolean --deleteall"
++        commands.getstatusoutput(setsebool)
++        self.load(self.filter)
++        self.ready()
++
++    def on_lockdown_clicked(self, button):
++        try:
++            os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/lockdown.py")
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def on_local_clicked(self, button):
++        self.local = not self.local
++        self.revertButton.set_sensitive(self.local)
++
++        if self.local:
++            button.set_label(_("all"))
++        else:
++            button.set_label(_("Customized"))
++
++        self.load(self.filter)
++        return True
++        
+diff --git a/policycoreutils/gui/domainsPage.py b/policycoreutils/gui/domainsPage.py
+new file mode 100644
+index 0000000..3eeebca
+--- /dev/null
++++ b/policycoreutils/gui/domainsPage.py
+@@ -0,0 +1,154 @@
++## domainsPage.py - show selinux domains
++## Copyright (C) 2009 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import commands
++import gobject
++import sys
++import seobject
++import selinux
++from semanagePage import *;
++import polgen
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class domainsPage(semanagePage):
++    def __init__(self, xml):
++        semanagePage.__init__(self, xml, "domains", _("Process Domain"))
++        self.domain_filter = xml.get_widget("domainsFilterEntry")
++        self.domain_filter.connect("focus_out_event", self.filter_changed)
++        self.domain_filter.connect("activate", self.filter_changed)
++
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Domain Name"), gtk.CellRendererText(), text = 0)
++        col.set_sort_column_id(0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
++        col = gtk.TreeViewColumn(_("Mode"), gtk.CellRendererText(), text = 1)
++        col.set_sort_column_id(1)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.view.get_selection().connect("changed", self.itemSelected)
++
++        self.permissive_button = xml.get_widget("permissiveButton")
++        self.enforcing_button = xml.get_widget("enforcingButton")
++
++        self.domains=polgen.get_all_domains()
++        self.load()
++        
++    def get_modules(self):
++        modules=[]
++        fd=os.popen("semodule -l")
++        mods = fd.readlines()
++        fd.close()
++        for l in mods:
++            modules.append(l.split()[0])
++        return modules
++
++    def load(self, filter=""):
++        self.filter=filter            
++        self.store.clear()
++        try:
++            modules=self.get_modules()
++            for domain in self.domains:
++                if not self.match(domain, filter):
++                    continue
++                iter = self.store.append()
++                self.store.set_value(iter, 0, domain)
++                t = "permissive_%s_t" % domain 
++                if t in modules:
++                    self.store.set_value(iter, 1, _("Permissive"))
++                else:
++                    self.store.set_value(iter, 1, "")
++        except:
++            pass
++        self.view.get_selection().select_path ((0,))
++    
++    def itemSelected(self, selection):
++        store, iter = selection.get_selected()
++        if iter == None:
++            return
++        p = store.get_value(iter, 1) == _("Permissive")
++        self.permissive_button.set_sensitive(not p)
++        self.enforcing_button.set_sensitive(p)
++
++    def deleteDialog(self):
++        # Do nothing
++        return self.delete()
++    
++    def delete(self):
++        selection = self.view.get_selection()
++        store, iter = selection.get_selected()
++        domain = store.get_value(iter, 0)
++        try:
++            self.wait()
++            status, output = commands.getstatusoutput("semanage permissive -d %s_t" % domain)
++            self.ready()
++            if status != 0:
++                self.error(output)
++            else:
++                domain = store.set_value(iter, 1, "")
++                self.itemSelected(selection)
++                
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def propertiesDialog(self):
++        # Do nothing
++        return
++    
++    def addDialog(self):
++        # Do nothing
++        return self.add()
++    
++    def add(self):
++        selection = self.view.get_selection()
++        store, iter = selection.get_selected()
++        domain = store.get_value(iter, 0)
++        try:
++            self.wait()
++            status, output = commands.getstatusoutput("semanage permissive -a %s_t" % domain)
++            self.ready()
++            if status != 0:
++                self.error(output)
++            else:
++                domain = store.set_value(iter, 1, _("Permissive"))
++                self.itemSelected(selection)
++                
++        except ValueError, e:
++            self.error(e.args[0])
+diff --git a/policycoreutils/gui/fcontextPage.py b/policycoreutils/gui/fcontextPage.py
+new file mode 100644
+index 0000000..d0889b2
+--- /dev/null
++++ b/policycoreutils/gui/fcontextPage.py
+@@ -0,0 +1,223 @@
++## fcontextPage.py - show selinux mappings
++## Copyright (C) 2006 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import gtk
++import gtk.glade
++import os
++import gobject
++import seobject
++import commands
++from semanagePage import *;
++
++SPEC_COL = 0
++TYPE_COL = 1
++FTYPE_COL = 2
++
++class context:
++    def __init__(self, scontext):
++        self.scontext = scontext
++        con=scontext.split(":")
++        self.type = con[0]
++        if len(con) > 1:
++            self.mls = con[1]
++        else:
++            self.mls = "s0"
++        
++    def __str__(self):
++        return self.scontext
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++
++class fcontextPage(semanagePage):
++    def __init__(self, xml):
++        semanagePage.__init__(self, xml, "fcontext", _("File Labeling"))
++        self.fcontextFilter = xml.get_widget("fcontextFilterEntry")
++        self.fcontextFilter.connect("focus_out_event", self.filter_changed)
++        self.fcontextFilter.connect("activate", self.filter_changed)
++
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.view = xml.get_widget("fcontextView")
++        self.view.set_model(self.store)
++        self.view.set_search_equal_func(self.search)
++
++        col = gtk.TreeViewColumn(_("File\nSpecification"), gtk.CellRendererText(), text=SPEC_COL)
++      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
++      col.set_fixed_width(250)
++        
++        col.set_sort_column_id(SPEC_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        col = gtk.TreeViewColumn(_("Selinux\nFile Type"), gtk.CellRendererText(), text=TYPE_COL)
++
++      col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
++      col.set_fixed_width(250)
++        col.set_sort_column_id(TYPE_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        col = gtk.TreeViewColumn(_("File\nType"), gtk.CellRendererText(), text=2)
++        col.set_sort_column_id(FTYPE_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        self.store.set_sort_column_id(SPEC_COL, gtk.SORT_ASCENDING)        
++        self.load()
++        self.fcontextEntry = xml.get_widget("fcontextEntry")
++        self.fcontextFileTypeCombo = xml.get_widget("fcontextFileTypeCombo")
++        liststore=self.fcontextFileTypeCombo.get_model()
++        for k in seobject.file_types:
++            if len(k) > 0 and  k[0] != '-':
++                iter=liststore.append()
++                liststore.set_value(iter, 0, k)
++        iter = liststore.get_iter_first()
++        self.fcontextFileTypeCombo.set_active_iter(iter)
++        self.fcontextTypeEntry = xml.get_widget("fcontextTypeEntry")
++        self.fcontextMLSEntry = xml.get_widget("fcontextMLSEntry")
++
++    def match(self, fcon_dict, k, filter):
++        try:
++            f=filter.lower()
++            for con in k:
++                k=con.lower()
++                if k.find(f) >= 0:
++                    return True
++            for con in fcon_dict[k]:
++                k=con.lower()
++                if k.find(f) >= 0:
++                    return True
++        except:
++            pass
++        return False
++
++    def load(self, filter=""):
++        self.filter=filter            
++        self.fcontext=seobject.fcontextRecords()
++        self.store.clear()
++        fcon_dict=self.fcontext.get_all(self.local)
++        keys = fcon_dict.keys()
++        keys.sort()
++        for k in keys:
++            if not self.match(fcon_dict, k, filter):
++                continue
++            iter=self.store.append()
++            self.store.set_value(iter, SPEC_COL, k[0])
++            self.store.set_value(iter, FTYPE_COL, k[1])
++            if fcon_dict[k]:
++                rec="%s:%s" % (fcon_dict[k][2], seobject.translate(fcon_dict[k][3],False))
++            else:
++                rec="<<None>>"
++            self.store.set_value(iter, TYPE_COL, rec)
++        self.view.get_selection().select_path ((0,))
++    
++    def filter_changed(self, *arg):
++        filter =  arg[0].get_text()
++        if filter != self.filter:
++            self.load(filter)
++
++    def dialogInit(self):
++        store, iter = self.view.get_selection().get_selected()
++        self.fcontextEntry.set_text(store.get_value(iter, SPEC_COL))
++        self.fcontextEntry.set_sensitive(False)
++        scontext = store.get_value(iter, TYPE_COL)
++        scon=context(scontext)
++        self.fcontextTypeEntry.set_text(scon.type)
++        self.fcontextMLSEntry.set_text(scon.mls)
++        type=store.get_value(iter, FTYPE_COL)
++        liststore=self.fcontextFileTypeCombo.get_model()
++        iter = liststore.get_iter_first()
++        while iter != None and liststore.get_value(iter,0) != type:
++            iter = liststore.iter_next(iter)
++        if iter != None:
++            self.fcontextFileTypeCombo.set_active_iter(iter)
++        self.fcontextFileTypeCombo.set_sensitive(False)
++        
++    def dialogClear(self):
++        self.fcontextEntry.set_text("")
++        self.fcontextEntry.set_sensitive(True)
++        self.fcontextFileTypeCombo.set_sensitive(True)
++        self.fcontextTypeEntry.set_text("")
++        self.fcontextMLSEntry.set_text("s0")
++        
++    def delete(self):
++        store, iter = self.view.get_selection().get_selected()
++        try:
++            fspec=store.get_value(iter, SPEC_COL)
++            ftype=store.get_value(iter, FTYPE_COL)
++            self.wait()
++            (rc, out) = commands.getstatusoutput("semanage fcontext -d -f '%s' '%s'" % (ftype, fspec))
++            self.ready()
++            
++            if rc != 0:
++                return self.error(out)
++            store.remove(iter)
++            self.view.get_selection().select_path ((0,))
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def add(self):
++        ftype=["", "--", "-d", "-c", "-b", "-s", "-l", "-p" ]
++        fspec=self.fcontextEntry.get_text().strip()
++        type=self.fcontextTypeEntry.get_text().strip()
++        mls=self.fcontextMLSEntry.get_text().strip()
++        list_model=self.fcontextFileTypeCombo.get_model()
++        active = self.fcontextFileTypeCombo.get_active()
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage fcontext -a -t %s -r %s -f '%s' '%s'" % (type, mls, ftype[active], fspec))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        
++        iter=self.store.append()
++        self.store.set_value(iter, SPEC_COL, fspec)
++        self.store.set_value(iter, FTYPE_COL, ftype)
++        self.store.set_value(iter, TYPE_COL, "%s:%s" % (type, mls))
++        
++    def modify(self):
++        fspec=self.fcontextEntry.get_text().strip()
++        type=self.fcontextTypeEntry.get_text().strip()
++        mls=self.fcontextMLSEntry.get_text().strip()
++        list_model=self.fcontextFileTypeCombo.get_model()
++        iter = self.fcontextFileTypeCombo.get_active_iter()
++        ftype=list_model.get_value(iter,0)
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage fcontext -m -t %s -r %s -f '%s' '%s'" % (type, mls, ftype, fspec))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++
++        store, iter = self.view.get_selection().get_selected()
++        self.store.set_value(iter, SPEC_COL, fspec)
++        self.store.set_value(iter, FTYPE_COL, ftype)
++        self.store.set_value(iter, TYPE_COL, "%s:%s" % (type, mls))
+diff --git a/policycoreutils/gui/html_util.py b/policycoreutils/gui/html_util.py
+new file mode 100644
+index 0000000..d41643c
+--- /dev/null
++++ b/policycoreutils/gui/html_util.py
+@@ -0,0 +1,164 @@
++# Authors: John Dennis <jdennis@redhat.com>
++#
++# Copyright (C) 2007 Red Hat, Inc.
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
++__all__ = [
++    'escape_html',
++    'unescape_html',
++    'html_to_text',
++
++    'html_document',
++]
++
++import htmllib
++import formatter as Formatter
++import string
++from types import *
++import StringIO
++
++#------------------------------------------------------------------------------
++
++class TextWriter(Formatter.DumbWriter):
++    def __init__(self, file=None, maxcol=80, indent_width=4):
++        Formatter.DumbWriter.__init__(self, file, maxcol)
++        self.indent_level = 0
++        self.indent_width = indent_width
++        self._set_indent()
++
++    def _set_indent(self):
++        self.indent_col = self.indent_level * self.indent_width
++        self.indent = ' ' * self.indent_col
++
++    def new_margin(self, margin, level):
++        self.indent_level = level
++        self._set_indent()
++
++    def send_label_data(self, data):
++        data = data + ' '
++        if len(data) > self.indent_col:
++            self.send_literal_data(data)
++        else:
++            offset = self.indent_col - len(data)
++            self.send_literal_data(' ' * offset + data)
++
++    def send_flowing_data(self, data):
++        if not data: return
++        atbreak = self.atbreak or data[0] in string.whitespace
++        col = self.col
++        maxcol = self.maxcol
++        write = self.file.write
++        col = self.col
++        if col == 0:
++            write(self.indent)
++            col = self.indent_col
++        for word in data.split():
++            if atbreak:
++                if col + len(word) >= maxcol:
++                    write('\n' + self.indent)
++                    col = self.indent_col
++                else:
++                    write(' ')
++                    col = col + 1
++            write(word)
++            col = col + len(word)
++            atbreak = 1
++        self.col = col
++        self.atbreak = data[-1] in string.whitespace
++            
++class HTMLParserAnchor(htmllib.HTMLParser):
++
++    def __init__(self, formatter, verbose=0):
++        htmllib.HTMLParser.__init__(self, formatter, verbose)
++
++    def anchor_bgn(self, href, name, type):
++        self.anchor = href
++
++    def anchor_end(self):
++        if self.anchor:
++            self.handle_data(' (%s) ' % self.anchor)
++            self.anchor = None
++
++#------------------------------------------------------------------------------
++
++def escape_html(s):
++    if s is None: return None
++    s = s.replace("&", "&amp;") # Must be done first!
++    s = s.replace("<", "&lt;")
++    s = s.replace(">", "&gt;")
++    s = s.replace("'", "&apos;")
++    s = s.replace('"', "&quot;")
++    return s
++
++
++def unescape_html(s):
++    if s is None: return None
++    if '&' not in s:
++        return s
++    s = s.replace("&lt;", "<")
++    s = s.replace("&gt;", ">")
++    s = s.replace("&apos;", "'")
++    s = s.replace("&quot;", '"')
++    s = s.replace("&amp;", "&") # Must be last
++    return s
++
++def html_to_text(html, maxcol=80):
++    try:
++        buffer = StringIO.StringIO()
++        formatter = Formatter.AbstractFormatter(TextWriter(buffer, maxcol))
++        parser = HTMLParserAnchor(formatter)
++        parser.feed(html)
++        parser.close()
++        text = buffer.getvalue()
++        buffer.close()
++        return text
++    except Exception, e:
++        log_program.error('cannot convert html to text: %s' % e)
++        return None
++
++def html_document(*body_components):
++    '''Wrap the body components in a HTML document structure with a valid header.
++    Accepts a variable number of arguments of of which canb be:
++    * string
++    * a sequences of strings (tuple or list).
++    * a callable object taking no parameters and returning a string or sequence of strings.
++    '''
++    head = '<html>\n  <head>\n    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>\n  </head>\n  <body>\n'
++    tail = '\n  </body>\n</html>'
++
++    doc = head
++
++    for body_component in body_components:
++        if type(body_component) is StringTypes:
++            doc += body_component
++        elif type(body_component) in [TupleType, ListType]:
++            for item in body_component:
++                doc += item
++        elif callable(body_component):
++            result = body_component()
++            if type(result) in [TupleType, ListType]:
++                for item in result:
++                    doc += item
++            else:
++                doc += result
++        else:
++            doc += body_component
++
++    doc += tail
++    return doc
++
+diff --git a/policycoreutils/gui/lockdown.glade b/policycoreutils/gui/lockdown.glade
+new file mode 100644
+index 0000000..714da60
+--- /dev/null
++++ b/policycoreutils/gui/lockdown.glade
+@@ -0,0 +1,771 @@
++<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
++<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
++
++<glade-interface>
++<requires lib="gnome"/>
++<requires lib="bonobo"/>
++
++<widget class="GtkAboutDialog" id="aboutWindow">
++  <property name="border_width">5</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="name" translatable="yes">system-config-selinux</property>
++  <property name="copyright" translatable="yes">Copyright (c)2006 Red Hat, Inc.
++Copyright (c) 2006 Dan Walsh &lt;dwalsh@redhat.com&gt;</property>
++  <property name="wrap_license">False</property>
++  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;
++</property>
++  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
++  <property name="logo">system-config-selinux.png</property>
++</widget>
++
++<widget class="GnomeApp" id="mainWindow">
++  <property name="width_request">800</property>
++  <property name="height_request">400</property>
++  <property name="title" translatable="yes">SELinux Boolean Lockdown</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="icon">system-config-selinux.png</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="enable_layout_config">True</property>
++
++  <child internal-child="dock">
++    <widget class="BonoboDock" id="bonobodock2">
++      <property name="visible">True</property>
++      <property name="allow_floating">True</property>
++
++      <child>
++      <widget class="BonoboDockItem" id="bonobodockitem3">
++        <property name="visible">True</property>
++        <property name="shadow_type">GTK_SHADOW_NONE</property>
++
++        <child>
++          <widget class="GtkMenuBar" id="menubar1">
++            <property name="visible">True</property>
++            <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
++            <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
++
++            <child>
++              <widget class="GtkMenuItem" id="file1">
++                <property name="visible">True</property>
++                <property name="stock_item">GNOMEUIINFO_MENU_FILE_TREE</property>
++
++                <child>
++                  <widget class="GtkMenu" id="file1_menu">
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="forward_menu_item">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">_Forward</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_forward_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
++                        <accelerator key="f" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image46">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-media-next</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="previous_menu_item">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">_Previous</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_previous_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
++                        <accelerator key="p" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image47">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-media-previous</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkSeparatorMenuItem" id="separator1">
++                        <property name="visible">True</property>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="save_as2">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Save As</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_save_clicked" last_modification_time="Thu, 03 Jul 2008 13:30:05 GMT"/>
++                        <accelerator key="s" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image48">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-save-as</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="apply1">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Apply</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_apply_clicked" last_modification_time="Thu, 03 Jul 2008 13:25:23 GMT"/>
++                        <accelerator key="a" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image49">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-apply</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="cancel">
++                        <property name="visible">True</property>
++                        <property name="stock_item">GNOMEUIINFO_MENU_EXIT_ITEM</property>
++                        <signal name="activate" handler="on_cancel_clicked" last_modification_time="Thu, 24 Apr 2008 10:18:41 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++
++            <child>
++              <widget class="GtkMenuItem" id="help1">
++                <property name="visible">True</property>
++                <property name="stock_item">GNOMEUIINFO_MENU_HELP_TREE</property>
++
++                <child>
++                  <widget class="GtkMenu" id="help1_menu">
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="about">
++                        <property name="visible">True</property>
++                        <property name="stock_item">GNOMEUIINFO_MENU_ABOUT_ITEM</property>
++                        <signal name="activate" handler="on_about_activate" last_modification_time="Fri, 06 Oct 2006 13:58:02 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="placement">BONOBO_DOCK_TOP</property>
++        <property name="band">0</property>
++        <property name="position">0</property>
++        <property name="offset">0</property>
++        <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_NEVER_VERTICAL|BONOBO_DOCK_ITEM_BEH_LOCKED</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkHPaned" id="hpaned1">
++        <property name="visible">True</property>
++        <property name="can_focus">True</property>
++        <property name="position">0</property>
++
++        <child>
++          <widget class="GtkFrame" id="frame1">
++            <property name="border_width">5</property>
++            <property name="visible">True</property>
++            <property name="label_xalign">0</property>
++            <property name="label_yalign">0.5</property>
++            <property name="shadow_type">GTK_SHADOW_NONE</property>
++
++            <child>
++              <widget class="GtkAlignment" id="alignment1">
++                <property name="visible">True</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xscale">1</property>
++                <property name="yscale">1</property>
++                <property name="top_padding">0</property>
++                <property name="bottom_padding">0</property>
++                <property name="left_padding">12</property>
++                <property name="right_padding">0</property>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow21">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="booleanView">
++                        <property name="width_request">300</property>
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Select Management Object</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">False</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label45">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">label_item</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="shrink">False</property>
++            <property name="resize">False</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox1">
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkVBox" id="radio_vbox">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="html_scrolledwindow">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <placeholder/>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHButtonBox" id="savebox">
++                    <property name="visible">True</property>
++                    <property name="layout_style">GTK_BUTTONBOX_END</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkButton" id="button4">
++                        <property name="visible">True</property>
++                        <property name="can_default">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-apply</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_apply_clicked" last_modification_time="Thu, 03 Jul 2008 12:39:08 GMT"/>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="savebutton">
++                        <property name="visible">True</property>
++                        <property name="can_default">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-save-as</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_save_clicked" last_modification_time="Thu, 03 Jul 2008 12:38:54 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                    <property name="pack_type">GTK_PACK_END</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="radiobox">
++                    <property name="homogeneous">True</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkRadioButton" id="enable_radiobutton">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <property name="active">False</property>
++                        <property name="inconsistent">False</property>
++                        <property name="draw_indicator">True</property>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment2">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox15">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image20">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-yes</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="button1">
++                                    <property name="label" translatable="yes">Enable</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkRadioButton" id="disable_radiobutton">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <property name="active">False</property>
++                        <property name="inconsistent">False</property>
++                        <property name="draw_indicator">True</property>
++                        <property name="group">enable_radiobutton</property>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment3">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox16">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image21">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-no</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label60">
++                                    <property name="visible">True</property>
++                                    <property name="label" translatable="yes">Disable</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkRadioButton" id="default_radiobutton">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <property name="active">False</property>
++                        <property name="inconsistent">False</property>
++                        <property name="draw_indicator">True</property>
++                        <property name="group">enable_radiobutton</property>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment4">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox17">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image22">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-undo</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label61">
++                                    <property name="visible">True</property>
++                                    <property name="label" translatable="yes">Default</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">11</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHButtonBox" id="hbuttonbox4">
++                    <property name="visible">True</property>
++                    <property name="layout_style">GTK_BUTTONBOX_END</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkButton" id="cancelButton">
++                        <property name="visible">True</property>
++                        <property name="can_default">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-quit</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_cancel_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:10 GMT"/>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="previousButton">
++                        <property name="visible">True</property>
++                        <property name="can_default">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-media-previous</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_previous_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:23 GMT"/>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="forwardButton">
++                        <property name="visible">True</property>
++                        <property name="can_default">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-media-forward</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_forward_clicked" last_modification_time="Thu, 24 Apr 2008 10:14:38 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="shrink">True</property>
++            <property name="resize">True</property>
++          </packing>
++        </child>
++      </widget>
++      </child>
++    </widget>
++    <packing>
++      <property name="padding">0</property>
++      <property name="expand">True</property>
++      <property name="fill">True</property>
++    </packing>
++  </child>
++
++  <child internal-child="appbar">
++    <widget class="GnomeAppBar" id="appbar2">
++      <property name="visible">True</property>
++      <property name="has_progress">True</property>
++      <property name="has_status">True</property>
++    </widget>
++    <packing>
++      <property name="padding">0</property>
++      <property name="expand">True</property>
++      <property name="fill">True</property>
++    </packing>
++  </child>
++</widget>
++
++<widget class="GtkFileChooserDialog" id="filechooserdialog">
++  <property name="border_width">5</property>
++  <property name="tooltip" translatable="yes">Select file name to save  boolean settings.</property>
++  <property name="action">GTK_FILE_CHOOSER_ACTION_SAVE</property>
++  <property name="local_only">True</property>
++  <property name="select_multiple">False</property>
++  <property name="show_hidden">False</property>
++  <property name="do_overwrite_confirmation">False</property>
++  <property name="title" translatable="yes">Save Boolean Configuration File</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_MOUSE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="dialog-vbox1">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">2</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="dialog-action_area1">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="button7">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="button8">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="has_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-save</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++</glade-interface>
+diff --git a/policycoreutils/gui/lockdown.py b/policycoreutils/gui/lockdown.py
+new file mode 100644
+index 0000000..3c29327
+--- /dev/null
++++ b/policycoreutils/gui/lockdown.py
+@@ -0,0 +1,375 @@
++#!/usr/bin/python
++#
++# lockdown.py - GUI for Booleans page in system-config-securitylevel
++#
++# Dan Walsh <dwalsh@redhat.com>
++#
++# Copyright 2008 Red Hat, Inc.
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
++import signal
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import gnome
++import sys
++import selinux
++import seobject
++import webkit
++import commands
++import tempfile
++
++from html_util import *
++
++gnome.program_init("SELinux Boolean Lockdown Tool", "5")
++
++INSTALLPATH='/usr/share/system-config-selinux'
++sys.path.append(INSTALLPATH)
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++from glob import fnmatch
++
++STATUS=(_("Disable"), _("Enable"), _("Default"))
++DISABLE = 0
++ENABLE = 1
++DEFAULT = 2
++
++def idle_func():
++    while gtk.events_pending():
++        gtk.main_iteration()
++        
++def td_fmt(val):
++    return '<td>%s</td>' % val
++
++tr_fmt = '<tr>%s</tr>\n'
++
++p_fmt = '<p>%s\n'
++
++##
++## Pull in the Glade file
++##
++if os.access("system-config-selinux.glade", os.F_OK):
++    xml = gtk.glade.XML ("lockdown.glade", domain=PROGNAME)
++else:
++    xml = gtk.glade.XML ("/usr/share/system-config-selinux/lockdown.glade", domain=PROGNAME)
++BOOLEAN = 0
++class booleanWindow:
++    def __init__(self):
++        self.tabs=[]
++        self.xml = xml
++        xml.signal_connect("on_cancel_clicked", self.cancel)
++        xml.signal_connect("on_forward_clicked", self.forward)
++        xml.signal_connect("on_previous_clicked", self.previous)
++        xml.signal_connect("on_save_clicked", self.save)
++        xml.signal_connect("on_apply_clicked", self.apply)
++        self.xml = xml
++        self.mainWindow = self.xml.get_widget("mainWindow")
++        self.forwardbutton = self.xml.get_widget("forwardButton")
++        self.window = self.xml.get_widget("mainWindow").get_root_window()
++        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
++        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
++        self.radiobox = self.xml.get_widget("radiobox")
++        self.savebox = self.xml.get_widget("savebox")
++        self.file_dialog = self.xml.get_widget("filechooserdialog")
++        self.vbox = self.xml.get_widget("vbox")
++        self.enable_radiobutton = self.xml.get_widget("enable_radiobutton")
++        self.enable_radiobutton.connect("toggled", self.toggled)
++        self.disable_radiobutton = self.xml.get_widget("disable_radiobutton")
++        self.disable_radiobutton.connect("toggled", self.toggled)
++        self.default_radiobutton = self.xml.get_widget("default_radiobutton")
++        self.default_radiobutton.connect("toggled", self.toggled)
++        self.html_scrolledwindow = self.xml.get_widget("html_scrolledwindow")
++        self.view = xml.get_widget("booleanView")
++        self.view.get_selection().connect("changed", self.itemSelected)
++
++        self.store = gtk.TreeStore(gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++
++        col = gtk.TreeViewColumn("Boolean", gtk.CellRendererText(), text=BOOLEAN)
++        col.set_sort_column_id(BOOLEAN)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        self.html_view = self.create_htmlview(self.html_scrolledwindow)
++        self.load()
++        self.view.get_selection().select_path ((0,))
++
++    def create_htmlview(self, container):
++        view = webkit.WebView()
++        container.add(view)
++        return (view)
++
++    def wait(self):
++        self.window.set_cursor(self.busy_cursor)
++        idle_func()
++    
++    def ready(self):
++        self.window.set_cursor(self.ready_cursor)
++        idle_func()
++    
++    def load(self):
++        self.store.clear()
++        self.booleans = seobject.booleanRecords()
++        booleansList = self.booleans.get_all(0)
++        self.booldict = {}
++        for name in booleansList:
++            cat = self.booleans.get_category(name)
++            if cat not in self.booldict:
++                self.booldict[cat] = {}
++            
++            rec = booleansList[name]
++            self.booldict[cat][name]= [rec[2], self.booleans.get_desc(name)]
++
++        cats = self.booldict.keys()
++        cats.sort()
++
++        citer = self.store.append(None)
++        self.store.set_value(citer, BOOLEAN, "Begin")
++        for cat in  cats:
++            citer = self.store.append(None)
++            self.store.set_value(citer, BOOLEAN, cat)
++            bools = self.booldict[cat].keys()
++            for bool in  bools:
++                biter = self.store.append(citer)
++                self.store.set_value(biter, BOOLEAN, bool)
++            biter = self.store.append(citer)
++            self.store.set_value(biter, BOOLEAN, "Finish")
++        citer = self.store.append(None)
++        self.store.set_value(citer, BOOLEAN, "Finish")
++
++    def on_about_activate(self, args):
++        dlg = xml.get_widget ("aboutWindow")
++        dlg.run ()
++        dlg.hide ()
++
++    def cancel(self, args):
++        gtk.main_quit()
++
++    def error(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
++                                gtk.BUTTONS_CLOSE,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        dlg.run()
++        dlg.destroy()
++
++    def __out(self):
++        out = ''
++        for c in self.booldict.keys():
++            for b in self.booldict[c]:
++                out += "%s=%s\n" % (b, self.booldict[c][b][0])
++        return out
++
++    def save(self, args):
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SAVE)
++        rc = self.file_dialog.run()
++        self.file_dialog.hide()
++        if rc == gtk.RESPONSE_OK:
++            try:
++                fd = open(self.file_dialog.get_filename(), "w")
++                fd.write(self.__out())
++                fd.close()
++
++            except IOError, e:
++                self.error(e)
++
++    def apply(self, args):
++        fd = tempfile.NamedTemporaryFile(dir = "/var/lib/selinux")
++        fd.write(self.__out())
++        fd.flush()
++        self.wait()
++        rc, err = commands.getstatusoutput("semanage boolean -m -F %s" % fd.name)
++        self.ready()
++        fd.close()
++        if rc != 0:
++            self.error(err)
++
++    def forward(self, args):
++        selection = self.view.get_selection()
++        store, iter = selection.get_selected()
++        if self.store.iter_has_child(iter):
++            store, rows = selection.get_selected_rows()
++            self.view.expand_to_path(rows[0])
++            niter = self.store.iter_nth_child(iter, 0)
++        else:
++            niter = store.iter_next(iter)
++
++        if niter == None:
++            piter = self.store.iter_parent(iter)
++            if piter == None:
++                return
++            niter = store.iter_next(piter)
++
++        if niter != None:
++            selection.select_iter(niter)
++            store, rows = selection.get_selected_rows()
++            self.view.scroll_to_cell(rows[0])
++        else:
++            print "Finish"
++
++    def toggled(self, button):
++        if button.get_active() == False:
++            return
++        if self.cat == None:
++            return
++        if self.disable_radiobutton == button:
++            self.booldict[self.cat][self.name][0] = DISABLE
++        if self.enable_radiobutton == button:
++            self.booldict[self.cat][self.name][0] = ENABLE
++        if self.default_radiobutton == button:
++            self.booldict[self.cat][self.name][0] = DEFAULT
++
++    def previous(self, args):
++        selection = self.view.get_selection()
++        store, iter = selection.get_selected()
++        store, rows = selection.get_selected_rows()
++        row = rows[0]
++        if len(row) == 1 or self.store.iter_has_child(iter):
++            if row[0] == 0:
++                return
++            nrow = row[0] - 1
++            iter = self.store.get_iter((nrow,))
++            if self.store.iter_has_child(iter):
++                self.view.expand_to_path((nrow,))
++                n = store.iter_n_children(iter) -1
++                piter = store.iter_nth_child(iter, n)
++            else:
++                piter = iter
++        else:
++            if row[1] == 0:
++                piter = self.store.iter_parent(iter)
++            else:
++                r0 = row[0]
++                r1 = row[1] - 1
++                piter = self.store.get_iter((r0,r1))
++        if piter != None:
++            selection.select_iter(piter)
++            store, rows = selection.get_selected_rows()
++            self.view.scroll_to_cell(rows[0])
++        else:
++            print "Finish"
++                
++    def html_cat(self, cat):
++        html = ""
++        row = td_fmt(_("<b>Boolean</b>")) + td_fmt(_("<b>Description</b>")) + td_fmt(_("<b>Status</b>"))
++        html += tr_fmt % row
++        
++        for b in self.booldict[cat]:
++            row = td_fmt(b) + td_fmt(self.booleans.get_desc(b)) + td_fmt(STATUS[self.booldict[cat][b][0]])
++            html += tr_fmt % row
++        return html
++
++    def html_table(self, title, body):
++        html = self.html_head(title)
++        html += '<table width="100%" cellspacing="1" cellpadding="2">\n'
++        html += body
++        html += '</table>'
++        return html
++
++    def html_head(self, val):
++        # Wrap entire alert in one table
++        # 1st table: primary Information
++
++        html = '<b>%s</b>\n\n\n' % val
++        return html
++ 
++    def html_all(self):
++        html = ""
++        cats = self.booldict.keys()
++        cats.sort()
++        for cat in  cats:
++            html += self.html_table((_("Category: %s <br>") % cat), self.html_cat(cat))
++        return html
++
++    def itemSelected(self, selection):
++        store, iter = selection.get_selected()
++        if iter == None:
++            return
++
++        piter = self.store.iter_parent(iter)
++        if piter != None:
++            self.cat =  store.get_value(piter, BOOLEAN)
++        else:
++            self.cat =  None
++
++        self.name =  store.get_value(iter, BOOLEAN)
++
++        html = ''
++
++        self.radiobox.hide()
++        self.savebox.hide()
++
++        if self.name == _("Begin"):
++            html += self.html_head(_("Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to lockdown SELinux booleans.The tool will generate a configuration file which can be used to lockdown this system or other SELinux systems.<br>"))
++            html += self.html_all()
++        else:
++            if self.name == _("Finish"):
++                if self.cat != None:
++                    html += self.html_head(_("Category %s booleans completed <br><br>") % self.cat)
++                    html += self.html_table(_("Current settings:<br><br>"), self.html_cat(self.cat))
++                else:
++                    html += self.html_head(_("Finish: <br><br>"))
++                    html += self.html_all()
++                    self.savebox.show()
++            else:
++                if self.store.iter_has_child(iter):
++                    html += self.html_table(_("Category: %s<br><br>Current Settings<br><br>") % self.name, self.html_cat(self.name))
++                else:
++                    self.radiobox.show()
++                    html += self.html_table(_("Boolean:   %s<br><br>") % self.name, tr_fmt % td_fmt(self.booleans.get_desc(self.name)))
++                    if self.booldict[self.cat][self.name][0] == ENABLE:
++                        self.enable_radiobutton.set_active(True)
++                    if self.booldict[self.cat][self.name][0] == DISABLE:
++                        self.disable_radiobutton.set_active(True)
++                    if self.booldict[self.cat][self.name][0] == DEFAULT:
++                        self.default_radiobutton.set_active(True)
++        html_doc= html_document(html)
++
++        self.html_view.load_html_string(html, "")
++
++    def stand_alone(self):
++        desktopName = _("Lockdown SELinux Booleans")
++
++        self.mainWindow.connect("destroy", self.cancel)
++
++        self.mainWindow.show_all()
++        self.radiobox.hide()
++        self.savebox.hide()
++        gtk.main()
++
++if __name__ == "__main__":
++    signal.signal (signal.SIGINT, signal.SIG_DFL)
++
++    app = booleanWindow()
++    app.stand_alone()
+diff --git a/policycoreutils/gui/loginsPage.py b/policycoreutils/gui/loginsPage.py
+new file mode 100644
+index 0000000..b41fc1c
+--- /dev/null
++++ b/policycoreutils/gui/loginsPage.py
+@@ -0,0 +1,185 @@
++## loginsPage.py - show selinux mappings
++## Copyright (C) 2006 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import commands
++import seobject
++from semanagePage import *;
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class loginsPage(semanagePage):
++    def __init__(self, xml):
++        self.firstTime = False
++        semanagePage.__init__(self, xml, "logins", _("User Mapping"))
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Login\nName"), gtk.CellRendererText(), text = 0)
++        col.set_sort_column_id(0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text = 1)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text = 2)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.load()
++        self.loginsNameEntry = xml.get_widget("loginsNameEntry")
++        self.loginsSelinuxUserCombo = xml.get_widget("loginsSelinuxUserCombo")
++        self.loginsMLSEntry = xml.get_widget("loginsMLSEntry")
++        
++    def load(self, filter = ""):
++        self.filter=filter            
++        self.login = seobject.loginRecords()
++        dict = self.login.get_all(0)
++        keys = dict.keys()
++        keys.sort()
++        self.store.clear()
++        for k in keys:
++            range = seobject.translate(dict[k][1])
++            if not (self.match(k, filter) or self.match(dict[k][0], filter) or self.match(range, filter)):
++                continue
++            iter = self.store.append()
++            self.store.set_value(iter, 0, k)
++            self.store.set_value(iter, 1, dict[k][0])
++            self.store.set_value(iter, 2, range)
++        self.view.get_selection().select_path ((0,))
++
++    def __dialogSetup(self):
++        if self.firstTime == True:
++            return
++        self.firstTime = True
++        liststore = gtk.ListStore(gobject.TYPE_STRING)
++        self.loginsSelinuxUserCombo.set_model(liststore)
++        cell = gtk.CellRendererText()
++        self.loginsSelinuxUserCombo.pack_start(cell, True)
++        self.loginsSelinuxUserCombo.add_attribute(cell, 'text', 0)
++        
++        selusers = seobject.seluserRecords().get_all(0)
++        keys = selusers.keys()
++        keys.sort()
++        for k in keys:
++            if k != "system_u":
++                self.loginsSelinuxUserCombo.append_text(k)
++
++        iter = liststore.get_iter_first()
++        while liststore.get_value(iter,0) != "user_u":
++            iter = liststore.iter_next(iter)
++        self.loginsSelinuxUserCombo.set_active_iter(iter)
++        
++    def dialogInit(self):
++        self.__dialogSetup()
++        store, iter = self.view.get_selection().get_selected()
++        self.loginsNameEntry.set_text(store.get_value(iter, 0))
++        self.loginsNameEntry.set_sensitive(False)
++        
++        self.loginsMLSEntry.set_text(store.get_value(iter, 2))
++        seuser = store.get_value(iter, 1)
++        liststore = self.loginsSelinuxUserCombo.get_model()
++        iter = liststore.get_iter_first()
++        while iter != None and liststore.get_value(iter,0) != seuser:
++            iter = liststore.iter_next(iter)
++        if iter != None:
++            self.loginsSelinuxUserCombo.set_active_iter(iter)
++        
++        
++    def dialogClear(self):
++        self.__dialogSetup()
++        self.loginsNameEntry.set_text("")
++        self.loginsNameEntry.set_sensitive(True)
++        self.loginsMLSEntry.set_text("s0")
++        
++    def delete(self):
++        store, iter = self.view.get_selection().get_selected()
++        try:
++            login=store.get_value(iter, 0)
++            if login == "root" or login == "__default__":
++                raise ValueError(_("Login '%s' is required") % login)
++                
++            self.wait()
++            (rc, out) = commands.getstatusoutput("semanage login -d %s" % login)
++            self.ready()
++            if rc != 0:
++                self.error(out)
++                return False
++            store.remove(iter)
++            self.view.get_selection().select_path ((0,))
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def add(self):
++        target=self.loginsNameEntry.get_text().strip()
++        serange=self.loginsMLSEntry.get_text().strip()
++        if serange == "":
++            serange="s0"
++        list_model=self.loginsSelinuxUserCombo.get_model()
++        iter = self.loginsSelinuxUserCombo.get_active_iter()
++        seuser = list_model.get_value(iter,0)
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage login -a -s %s -r %s %s" % (seuser, serange, target))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        
++        iter = self.store.append()
++        self.store.set_value(iter, 0, target)
++        self.store.set_value(iter, 1, seuser)
++        self.store.set_value(iter, 2, seobject.translate(serange))
++        
++    def modify(self):
++        target=self.loginsNameEntry.get_text().strip()
++        serange=self.loginsMLSEntry.get_text().strip()
++        if serange == "":
++            serange = "s0"
++        list_model = self.loginsSelinuxUserCombo.get_model()
++        iter = self.loginsSelinuxUserCombo.get_active_iter()
++        seuser=list_model.get_value(iter,0)
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage login -m -s %s -r %s %s" % (seuser, serange, target))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        
++        store, iter = self.view.get_selection().get_selected()
++        self.store.set_value(iter, 0, target)
++        self.store.set_value(iter, 1, seuser)
++        self.store.set_value(iter, 2, seobject.translate(serange))
++
+diff --git a/policycoreutils/gui/mappingsPage.py b/policycoreutils/gui/mappingsPage.py
+new file mode 100644
+index 0000000..3e4c2a2
+--- /dev/null
++++ b/policycoreutils/gui/mappingsPage.py
+@@ -0,0 +1,56 @@
++## mappingsPage.py - show selinux mappings
++## Copyright (C) 2006 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import seobject
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class loginsPage:
++    def __init__(self, xml):
++        self.xml = xml
++        self.view = xml.get_widget("mappingsView")
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        self.view.set_model(self.store)
++        self.login = loginRecords()
++        dict = self.login.get_all(0)
++        keys = dict.keys()
++        keys.sort()
++        for k in keys:
++            print "%-25s %-25s %-25s" % (k, dict[k][0], translate(dict[k][1]))
++
+diff --git a/policycoreutils/gui/modulesPage.py b/policycoreutils/gui/modulesPage.py
+new file mode 100644
+index 0000000..82f31b6
+--- /dev/null
++++ b/policycoreutils/gui/modulesPage.py
+@@ -0,0 +1,190 @@
++## modulesPage.py - show selinux mappings
++## Copyright (C) 2006-2009 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import commands
++import gobject
++import sys
++import seobject
++import selinux
++from semanagePage import *;
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class modulesPage(semanagePage):
++    def __init__(self, xml):
++        semanagePage.__init__(self, xml, "modules", _("Policy Module"))
++        self.module_filter = xml.get_widget("modulesFilterEntry")
++        self.module_filter.connect("focus_out_event", self.filter_changed)
++        self.module_filter.connect("activate", self.filter_changed)
++        self.audit_enabled = False
++
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Module Name"), gtk.CellRendererText(), text = 0)
++        col.set_sort_column_id(0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
++        col = gtk.TreeViewColumn(_("Version"), gtk.CellRendererText(), text = 1)
++        self.enable_audit_button = xml.get_widget("enableAuditButton")
++        self.enable_audit_button.connect("clicked", self.enable_audit)
++        self.new_button = xml.get_widget("newModuleButton")
++        self.new_button.connect("clicked", self.new_module)
++        col.set_sort_column_id(1)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.store.set_sort_func(1,self.sort_int, "")
++        status, self.policy_type = selinux.selinux_getpolicytype()
++
++        self.load()
++        
++    def sort_int(self, treemodel, iter1, iter2, user_data):
++        try:
++            p1 = int(treemodel.get_value(iter1,1))
++            p2 = int(treemodel.get_value(iter1,1))
++            if p1 > p2:
++                return 1
++            if p1 == p2:
++                return 0
++            return -1
++        except:
++            return 0
++
++    def load(self, filter=""):
++        self.filter=filter            
++        self.store.clear()
++        try:
++            fd=os.popen("semodule -l")
++            l = fd.readlines()
++            fd.close()
++            for i in l:
++                module, ver, newline = i.split('\t')
++                if not (self.match(module, filter) or self.match(ver, filter)):
++                    continue
++                iter = self.store.append()
++                self.store.set_value(iter, 0, module.strip())
++                self.store.set_value(iter, 1, ver.strip())
++        except:
++            pass
++        self.view.get_selection().select_path ((0,))
++    
++
++    def new_module(self, args):
++        try:
++            os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/polgengui.py")
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def delete(self):
++        store, iter = self.view.get_selection().get_selected()
++        module = store.get_value(iter, 0)
++        try:
++            self.wait()
++            status, output = commands.getstatusoutput("semodule -r %s" % module)
++            self.ready()
++            if status != 0:
++                self.error(output)
++            else:
++                store.remove(iter)
++                self.view.get_selection().select_path ((0,))
++                
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def enable_audit(self, button):
++        self.audit_enabled = not self.audit_enabled 
++        try:
++            self.wait()
++            if self.audit_enabled:
++                status, output =commands.getstatusoutput("semodule -DB")
++                button.set_label(_("Disable Audit"))
++            else:
++                status, output =commands.getstatusoutput("semodule -B")
++                button.set_label(_("Enable Audit"))
++            self.ready()
++
++            if status != 0:
++                self.error(output)
++
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def disable_audit(self, button):
++        try:
++            self.wait()
++            status, output =commands.getstatusoutput("semodule -B")
++            self.ready()
++            if status != 0:
++                self.error(output)
++
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def propertiesDialog(self):
++        # Do nothing
++        return
++    
++    def addDialog(self):
++        dialog = gtk.FileChooserDialog(_("Load Policy Module"),
++                                       None,
++                                       gtk.FILE_CHOOSER_ACTION_OPEN,
++                                       (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
++                                        gtk.STOCK_OPEN, gtk.RESPONSE_OK))
++        dialog.set_default_response(gtk.RESPONSE_OK)
++
++        filter = gtk.FileFilter()
++        filter.set_name("Policy Files")
++        filter.add_pattern("*.pp")
++        dialog.add_filter(filter)
++
++        response = dialog.run()
++        if response == gtk.RESPONSE_OK:
++            self.add(dialog.get_filename())
++        dialog.destroy()
++
++    def add(self, file):
++        try:
++            self.wait()
++            status, output =commands.getstatusoutput("semodule -i %s" % file)
++            self.ready()
++            if status != 0:
++                self.error(output)
++            else:
++                self.load()
++                
++        except ValueError, e:
++            self.error(e.args[0])
+diff --git a/policycoreutils/gui/polgen.glade b/policycoreutils/gui/polgen.glade
+new file mode 100644
+index 0000000..55bad9d
+--- /dev/null
++++ b/policycoreutils/gui/polgen.glade
+@@ -0,0 +1,3432 @@
++<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
++<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
++
++<glade-interface>
++<requires lib="gnome"/>
++
++<widget class="GtkFileChooserDialog" id="filechooserdialog">
++  <property name="border_width">5</property>
++  <property name="action">GTK_FILE_CHOOSER_ACTION_OPEN</property>
++  <property name="local_only">True</property>
++  <property name="select_multiple">True</property>
++  <property name="show_hidden">True</property>
++  <property name="do_overwrite_confirmation">False</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_MOUSE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="dialog-vbox1">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">24</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="dialog-action_area1">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="button5">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="button6">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="has_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-add</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GtkAboutDialog" id="about_dialog">
++  <property name="border_width">5</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="name" translatable="yes">Polgen</property>
++  <property name="copyright" translatable="yes">Red Hat 2007</property>
++  <property name="license" translatable="yes">GPL</property>
++  <property name="wrap_license">False</property>
++  <property name="website">www.redhat.com</property>
++  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;</property>
++  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
++</widget>
++
++<widget class="GtkWindow" id="main_window">
++  <property name="visible">True</property>
++  <property name="title" translatable="yes">SELinux Policy Generation Tool</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++
++  <child>
++    <widget class="GtkVBox" id="vbox11">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">18</property>
++
++      <child>
++      <widget class="GtkNotebook" id="notebook">
++        <property name="visible">True</property>
++        <property name="show_tabs">False</property>
++        <property name="show_border">True</property>
++        <property name="tab_pos">GTK_POS_LEFT</property>
++        <property name="scrollable">False</property>
++        <property name="enable_popup">False</property>
++
++        <child>
++          <widget class="GtkVBox" id="vbox59">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_type_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select the policy type for the application or user role you want to confine:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox58">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkVBox" id="vbox14">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkHBox" id="hbox16">
++                        <property name="visible">True</property>
++                        <property name="homogeneous">False</property>
++                        <property name="spacing">12</property>
++
++                        <child>
++                          <widget class="GtkVBox" id="vbox18">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">6</property>
++
++                            <child>
++                              <widget class="GtkLabel" id="label41">
++                                <property name="visible">True</property>
++                                <property name="label" translatable="yes">&lt;b&gt;Applications&lt;/b&gt;</property>
++                                <property name="use_underline">False</property>
++                                <property name="use_markup">True</property>
++                                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                <property name="wrap">False</property>
++                                <property name="selectable">False</property>
++                                <property name="xalign">0</property>
++                                <property name="yalign">0.5</property>
++                                <property name="xpad">0</property>
++                                <property name="ypad">0</property>
++                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                <property name="width_chars">-1</property>
++                                <property name="single_line_mode">False</property>
++                                <property name="angle">0</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox17">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">0</property>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label52">
++                                    <property name="visible">True</property>
++                                    <property name="label">    </property>
++                                    <property name="use_underline">False</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkVBox" id="vbox6">
++                                    <property name="visible">True</property>
++                                    <property name="homogeneous">False</property>
++                                    <property name="spacing">6</property>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="init_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Standard Init Daemon are daemons started on boot via init scripts.  Usually requires a script in /etc/rc.d/init.d</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Standard Init Daemon</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="dbus_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Standard Init Daemon are daemons started on boot via init scripts.  Usually requires a script in /etc/rc.d/init.d</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">DBUS System Daemon</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="inetd_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Internet Services Daemon are daemons started by xinetd</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Internet Services Daemon (inetd)</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="cgi_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Web Applications/Script (CGI) CGI scripts started by the web server (apache)</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Web Application/Script (CGI)</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">User Application are any application that you would like to confine that is started by a user</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">User Application</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="sandbox_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">User Application are any application that you would like to confine that is started by a user</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Sandbox</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">True</property>
++                                <property name="fill">True</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">False</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkVBox" id="vbox19">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">6</property>
++
++                            <child>
++                              <widget class="GtkLabel" id="label42">
++                                <property name="visible">True</property>
++                                <property name="label" translatable="yes">&lt;b&gt;Login Users&lt;/b&gt;</property>
++                                <property name="use_underline">False</property>
++                                <property name="use_markup">True</property>
++                                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                <property name="wrap">False</property>
++                                <property name="selectable">False</property>
++                                <property name="xalign">0</property>
++                                <property name="yalign">0.5</property>
++                                <property name="xpad">0</property>
++                                <property name="ypad">0</property>
++                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                <property name="width_chars">-1</property>
++                                <property name="single_line_mode">False</property>
++                                <property name="angle">0</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox18">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">0</property>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label53">
++                                    <property name="visible">True</property>
++                                    <property name="label">    </property>
++                                    <property name="use_underline">False</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkVBox" id="vbox15">
++                                    <property name="visible">True</property>
++                                    <property name="homogeneous">False</property>
++                                    <property name="spacing">6</property>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="existing_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Modify an existing login user record.</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Existing User Roles</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="terminal_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">This user will login to a machine only via a terminal or remote login.  By default this user will have  no setuid, no networking, no su, no sudo.</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Minimal Terminal User Role</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="xwindows_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">This user can login to a machine via X or terminal.  By default this user will have no setuid, no networking, no sudo, no su</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Minimal X Windows User Role</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="login_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">User with full networking, no setuid applications without transition, no sudo, no su.</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">User Role</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="admin_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">User with full networking, no setuid applications without transition, no su, can sudo to Root Administration Roles</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Admin User Role</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">True</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">True</property>
++                                <property name="fill">True</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">False</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkVBox" id="vbox20">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">6</property>
++
++                            <child>
++                              <widget class="GtkLabel" id="label50">
++                                <property name="visible">True</property>
++                                <property name="label" translatable="yes">&lt;b&gt;Root Users&lt;/b&gt;</property>
++                                <property name="use_underline">False</property>
++                                <property name="use_markup">True</property>
++                                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                <property name="wrap">False</property>
++                                <property name="selectable">False</property>
++                                <property name="xalign">0</property>
++                                <property name="yalign">0.5</property>
++                                <property name="xpad">0</property>
++                                <property name="ypad">0</property>
++                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                <property name="width_chars">-1</property>
++                                <property name="single_line_mode">False</property>
++                                <property name="angle">0</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox19">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">0</property>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label54">
++                                    <property name="visible">True</property>
++                                    <property name="label">    </property>
++                                    <property name="use_underline">False</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkVBox" id="vbox21">
++                                    <property name="visible">True</property>
++                                    <property name="homogeneous">False</property>
++                                    <property name="spacing">0</property>
++
++                                    <child>
++                                      <widget class="GtkRadioButton" id="root_user_radiobutton">
++                                        <property name="visible">True</property>
++                                        <property name="tooltip" translatable="yes">Select Root Administrator User Role, if this user will be used to administer the machine while running as root.  This user will not be able to login to the system directly.</property>
++                                        <property name="can_focus">True</property>
++                                        <property name="label" translatable="yes">Root Admin User Role</property>
++                                        <property name="use_underline">True</property>
++                                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                                        <property name="focus_on_click">True</property>
++                                        <property name="active">False</property>
++                                        <property name="inconsistent">False</property>
++                                        <property name="draw_indicator">True</property>
++                                        <property name="group">init_radiobutton</property>
++                                      </widget>
++                                      <packing>
++                                        <property name="padding">0</property>
++                                        <property name="expand">False</property>
++                                        <property name="fill">False</property>
++                                      </packing>
++                                    </child>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">True</property>
++                                <property name="fill">True</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">True</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label104">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label104</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox60">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_name_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Enter name of application or user role:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkTable" id="table5">
++                <property name="visible">True</property>
++                <property name="n_rows">3</property>
++                <property name="n_columns">3</property>
++                <property name="homogeneous">False</property>
++                <property name="row_spacing">6</property>
++                <property name="column_spacing">12</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label1">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">Name</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">False</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">0</property>
++                    <property name="right_attach">1</property>
++                    <property name="top_attach">0</property>
++                    <property name="bottom_attach">1</property>
++                    <property name="x_options">fill</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkEntry" id="exec_entry">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Enter complete path for executable to be confined.</property>
++                    <property name="can_focus">True</property>
++                    <property name="editable">True</property>
++                    <property name="visibility">True</property>
++                    <property name="max_length">0</property>
++                    <property name="text" translatable="yes"></property>
++                    <property name="has_frame">True</property>
++                    <property name="invisible_char">•</property>
++                    <property name="activates_default">False</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">1</property>
++                    <property name="right_attach">2</property>
++                    <property name="top_attach">1</property>
++                    <property name="bottom_attach">2</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkButton" id="exec_button">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">...</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <signal name="clicked" handler="on_exec_select_clicked" last_modification_time="Wed, 21 Feb 2007 18:45:26 GMT"/>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">2</property>
++                    <property name="right_attach">3</property>
++                    <property name="top_attach">1</property>
++                    <property name="bottom_attach">2</property>
++                    <property name="x_options">fill</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkEntry" id="name_entry">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Enter unique name for the confined application or user role.</property>
++                    <property name="can_focus">True</property>
++                    <property name="editable">True</property>
++                    <property name="visibility">True</property>
++                    <property name="max_length">0</property>
++                    <property name="text" translatable="yes"></property>
++                    <property name="has_frame">True</property>
++                    <property name="invisible_char">•</property>
++                    <property name="activates_default">False</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">1</property>
++                    <property name="right_attach">3</property>
++                    <property name="top_attach">0</property>
++                    <property name="bottom_attach">1</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkLabel" id="label2">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">Executable</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">False</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">0</property>
++                    <property name="right_attach">1</property>
++                    <property name="top_attach">1</property>
++                    <property name="bottom_attach">2</property>
++                    <property name="x_options">fill</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkLabel" id="label40">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">Init script</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">False</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">0</property>
++                    <property name="right_attach">1</property>
++                    <property name="top_attach">2</property>
++                    <property name="bottom_attach">3</property>
++                    <property name="x_options">fill</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkEntry" id="init_script_entry">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Enter complete path to init script used to start the confined application.</property>
++                    <property name="can_focus">True</property>
++                    <property name="editable">True</property>
++                    <property name="visibility">True</property>
++                    <property name="max_length">0</property>
++                    <property name="text" translatable="yes"></property>
++                    <property name="has_frame">True</property>
++                    <property name="invisible_char">•</property>
++                    <property name="activates_default">False</property>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">1</property>
++                    <property name="right_attach">2</property>
++                    <property name="top_attach">2</property>
++                    <property name="bottom_attach">3</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkButton" id="init_script_button">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">...</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <signal name="clicked" handler="on_init_script_select_clicked" last_modification_time="Thu, 30 Aug 2007 15:36:47 GMT"/>
++                  </widget>
++                  <packing>
++                    <property name="left_attach">2</property>
++                    <property name="right_attach">3</property>
++                    <property name="top_attach">2</property>
++                    <property name="bottom_attach">3</property>
++                    <property name="x_options">fill</property>
++                    <property name="y_options"></property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="select_name_label">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label105</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox61">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_existing_role_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select existing role to modify:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkScrolledWindow" id="scrolledwindow5">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                <property name="shadow_type">GTK_SHADOW_IN</property>
++                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="existing_user_treeview">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select the user roles that will transiton to the %s domain.</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label106">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label106</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox62">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select roles that %s will transition to:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkScrolledWindow" id="scrolledwindow12">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="shadow_type">GTK_SHADOW_NONE</property>
++                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="transition_treeview">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select applications domains that %s will transition to.</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label107">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label107</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox63">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_user_roles_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select the user_roles that will transition to %s:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkScrolledWindow" id="scrolledwindow13">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="shadow_type">GTK_SHADOW_NONE</property>
++                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="user_transition_treeview">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select the user roles that will transiton to this applications domains.</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label108">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label108</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox64">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_domain_admin_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select domains that %s will administer:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkScrolledWindow" id="scrolledwindow14">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="shadow_type">GTK_SHADOW_NONE</property>
++                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="admin_treeview">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select the domains that you would like this user administer.</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label109">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label109</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox65">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_role_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select additional roles for %s:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkScrolledWindow" id="scrolledwindow15">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                <property name="shadow_type">GTK_SHADOW_NONE</property>
++                <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="role_treeview">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select the domains that you would like this user administer.</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="in_net_page">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label111</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="in_net_page">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_in_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Enter network ports that %s binds on:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox22">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">6</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label55">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">&lt;b&gt;TCP Ports&lt;/b&gt;</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">True</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox20">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label56">
++                        <property name="visible">True</property>
++                        <property name="label">    </property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkVBox" id="vbox23">
++                        <property name="visible">True</property>
++                        <property name="homogeneous">False</property>
++                        <property name="spacing">6</property>
++
++                        <child>
++                          <widget class="GtkHBox" id="hbox21">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">12</property>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_tcp_all_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp port</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">All</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_tcp_reserved_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allow %s to call bindresvport with 0. Binding to port 600-1024</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">600-1024</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_tcp_unreserved_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s binds to. Example: 612, 650-660</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">Unreserved Ports (&gt;1024)</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkHBox" id="hbox22">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">12</property>
++
++                            <child>
++                              <widget class="GtkLabel" id="label57">
++                                <property name="visible">True</property>
++                                <property name="label" translatable="yes">Select Ports</property>
++                                <property name="use_underline">False</property>
++                                <property name="use_markup">False</property>
++                                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                <property name="wrap">False</property>
++                                <property name="selectable">False</property>
++                                <property name="xalign">0</property>
++                                <property name="yalign">0.5</property>
++                                <property name="xpad">0</property>
++                                <property name="ypad">0</property>
++                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                <property name="width_chars">-1</property>
++                                <property name="single_line_mode">False</property>
++                                <property name="angle">0</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">5</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkEntry" id="in_tcp_entry">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp ports &gt; 1024</property>
++                                <property name="can_focus">True</property>
++                                <property name="editable">True</property>
++                                <property name="visibility">True</property>
++                                <property name="max_length">0</property>
++                                <property name="text" translatable="yes"></property>
++                                <property name="has_frame">True</property>
++                                <property name="invisible_char">•</property>
++                                <property name="activates_default">False</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">True</property>
++                                <property name="fill">True</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox24">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">6</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label58">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">&lt;b&gt;UDP Ports&lt;/b&gt;</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">True</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox23">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label59">
++                        <property name="visible">True</property>
++                        <property name="label">    </property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkVBox" id="vbox25">
++                        <property name="visible">True</property>
++                        <property name="homogeneous">False</property>
++                        <property name="spacing">6</property>
++
++                        <child>
++                          <widget class="GtkHBox" id="hbox24">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">12</property>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_udp_all_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp port</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">All</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_udp_reserved_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allow %s to call bindresvport with 0. Binding to port 600-1024</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">600-1024</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkCheckButton" id="in_udp_unreserved_checkbutton">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s binds to. Example: 612, 650-660</property>
++                                <property name="can_focus">True</property>
++                                <property name="label" translatable="yes">Unreserved Ports (&gt;1024)</property>
++                                <property name="use_underline">True</property>
++                                <property name="relief">GTK_RELIEF_NORMAL</property>
++                                <property name="focus_on_click">True</property>
++                                <property name="active">False</property>
++                                <property name="inconsistent">False</property>
++                                <property name="draw_indicator">True</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">10</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkHBox" id="hbox25">
++                            <property name="visible">True</property>
++                            <property name="homogeneous">False</property>
++                            <property name="spacing">12</property>
++
++                            <child>
++                              <widget class="GtkLabel" id="label60">
++                                <property name="visible">True</property>
++                                <property name="label" translatable="yes">Select Ports</property>
++                                <property name="use_underline">False</property>
++                                <property name="use_markup">False</property>
++                                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                <property name="wrap">False</property>
++                                <property name="selectable">False</property>
++                                <property name="xalign">0</property>
++                                <property name="yalign">0.5</property>
++                                <property name="xpad">0</property>
++                                <property name="ypad">0</property>
++                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                <property name="width_chars">-1</property>
++                                <property name="single_line_mode">False</property>
++                                <property name="angle">0</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">5</property>
++                                <property name="expand">False</property>
++                                <property name="fill">False</property>
++                              </packing>
++                            </child>
++
++                            <child>
++                              <widget class="GtkEntry" id="in_udp_entry">
++                                <property name="visible">True</property>
++                                <property name="tooltip" translatable="yes">Allows %s to bind to any udp ports &gt; 1024</property>
++                                <property name="can_focus">True</property>
++                                <property name="editable">True</property>
++                                <property name="visibility">True</property>
++                                <property name="max_length">0</property>
++                                <property name="text" translatable="yes"></property>
++                                <property name="has_frame">True</property>
++                                <property name="invisible_char">•</property>
++                                <property name="activates_default">False</property>
++                              </widget>
++                              <packing>
++                                <property name="padding">0</property>
++                                <property name="expand">True</property>
++                                <property name="fill">True</property>
++                              </packing>
++                            </child>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label113">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label113</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox75">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_out_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select network ports that %s connects to:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox26">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">6</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label37">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">&lt;b&gt;TCP Ports&lt;/b&gt;</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">True</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox26">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label61">
++                        <property name="visible">True</property>
++                        <property name="label">    </property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkHBox" id="hbox15">
++                        <property name="visible">True</property>
++                        <property name="homogeneous">False</property>
++                        <property name="spacing">12</property>
++
++                        <child>
++                          <widget class="GtkCheckButton" id="out_tcp_all_checkbutton">
++                            <property name="tooltip" translatable="yes">Allows %s to connect to any tcp port</property>
++                            <property name="visible">True</property>
++                            <property name="can_focus">True</property>
++                            <property name="label" translatable="yes">All</property>
++                            <property name="use_underline">True</property>
++                            <property name="relief">GTK_RELIEF_NORMAL</property>
++                            <property name="focus_on_click">True</property>
++                            <property name="active">False</property>
++                            <property name="inconsistent">False</property>
++                            <property name="draw_indicator">True</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">10</property>
++                            <property name="expand">False</property>
++                            <property name="fill">False</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkLabel" id="label38">
++                            <property name="visible">True</property>
++                            <property name="label" translatable="yes">Select Ports</property>
++                            <property name="use_underline">False</property>
++                            <property name="use_markup">False</property>
++                            <property name="justify">GTK_JUSTIFY_LEFT</property>
++                            <property name="wrap">False</property>
++                            <property name="selectable">False</property>
++                            <property name="xalign">0</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                            <property name="width_chars">-1</property>
++                            <property name="single_line_mode">False</property>
++                            <property name="angle">0</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">5</property>
++                            <property name="expand">False</property>
++                            <property name="fill">False</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkEntry" id="out_tcp_entry">
++                            <property name="visible">True</property>
++                            <property name="tooltip" translatable="yes">Enter a comma separated list of tcp ports or ranges of ports that %s connects to. Example: 612, 650-660</property>
++                            <property name="can_focus">True</property>
++                            <property name="editable">True</property>
++                            <property name="visibility">True</property>
++                            <property name="max_length">0</property>
++                            <property name="text" translatable="yes"></property>
++                            <property name="has_frame">True</property>
++                            <property name="invisible_char">•</property>
++                            <property name="activates_default">False</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox27">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">6</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label23">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">&lt;b&gt;UDP Ports&lt;/b&gt;</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">True</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox27">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label62">
++                        <property name="visible">True</property>
++                        <property name="label">    </property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkHBox" id="hbox12">
++                        <property name="visible">True</property>
++                        <property name="homogeneous">False</property>
++                        <property name="spacing">12</property>
++
++                        <child>
++                          <widget class="GtkCheckButton" id="out_udp_all_checkbutton">
++                            <property name="tooltip" translatable="yes">Allows %s to connect to any udp port</property>
++                            <property name="visible">True</property>
++                            <property name="can_focus">True</property>
++                            <property name="label" translatable="yes">All</property>
++                            <property name="use_underline">True</property>
++                            <property name="relief">GTK_RELIEF_NORMAL</property>
++                            <property name="focus_on_click">True</property>
++                            <property name="active">False</property>
++                            <property name="inconsistent">False</property>
++                            <property name="draw_indicator">True</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">10</property>
++                            <property name="expand">False</property>
++                            <property name="fill">False</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkLabel" id="label22">
++                            <property name="visible">True</property>
++                            <property name="label" translatable="yes">Select Ports</property>
++                            <property name="use_underline">False</property>
++                            <property name="use_markup">False</property>
++                            <property name="justify">GTK_JUSTIFY_LEFT</property>
++                            <property name="wrap">False</property>
++                            <property name="selectable">False</property>
++                            <property name="xalign">0</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                            <property name="width_chars">-1</property>
++                            <property name="single_line_mode">False</property>
++                            <property name="angle">0</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">5</property>
++                            <property name="expand">False</property>
++                            <property name="fill">False</property>
++                          </packing>
++                        </child>
++
++                        <child>
++                          <widget class="GtkEntry" id="out_udp_entry">
++                            <property name="visible">True</property>
++                            <property name="tooltip" translatable="yes">Enter a comma separated list of udp ports or ranges of ports that %s connects to. Example: 612, 650-660</property>
++                            <property name="can_focus">True</property>
++                            <property name="editable">True</property>
++                            <property name="visibility">True</property>
++                            <property name="max_length">0</property>
++                            <property name="text" translatable="yes"></property>
++                            <property name="has_frame">True</property>
++                            <property name="invisible_char">•</property>
++                            <property name="activates_default">False</property>
++                          </widget>
++                          <packing>
++                            <property name="padding">0</property>
++                            <property name="expand">True</property>
++                            <property name="fill">True</property>
++                          </packing>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label114">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label114</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox68">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_common_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select common application traits for %s:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox4">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">6</property>
++
++                <child>
++                  <widget class="GtkCheckButton" id="syslog_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Writes syslog messages  </property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="tmp_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Create/Manipulate temporary files in /tmp</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="pam_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Uses Pam for authentication</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="uid_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Uses nsswitch or getpw* calls</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="dbus_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Uses dbus</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="audit_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Sends audit messages</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="terminal_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Interacts with the terminal</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkCheckButton" id="mail_checkbutton">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">Sends email</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                    <property name="active">False</property>
++                    <property name="inconsistent">False</property>
++                    <property name="draw_indicator">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label115">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label115</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox69">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_manages_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Add files/directories that %s manages&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkHBox" id="hbox1">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">12</property>
++
++                <child>
++                  <widget class="GtkVBox" id="vbox3">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">6</property>
++
++                    <child>
++                      <widget class="GtkButton" id="button2">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Wed, 21 Feb 2007 18:47:51 GMT"/>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment6">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox4">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image3">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-add</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label17">
++                                    <property name="visible">True</property>
++                                    <property name="label">Add File</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="button9">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_add_dir_clicked" last_modification_time="Wed, 21 Feb 2007 22:15:43 GMT"/>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment5">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox3">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image2">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-add</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label16">
++                                    <property name="visible">True</property>
++                                    <property name="label">Add Directory</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="button4">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-delete</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Wed, 21 Feb 2007 18:48:10 GMT"/>
++                        <accelerator key="Delete" modifiers="0" signal="clicked"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">4</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow2">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                    <property name="shadow_type">GTK_SHADOW_IN</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="write_treeview">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Files/Directories which the %s &quot;manages&quot;. Pid Files, Log Files, /var/lib Files ...</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">False</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label116">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">label116</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox70">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_booleans_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Add booleans from the %s policy:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">5</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkHBox" id="hbox1">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">12</property>
++
++                <child>
++                  <widget class="GtkVBox" id="vbox3">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">6</property>
++
++                    <child>
++                      <widget class="GtkButton" id="button2">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_add_boolean_clicked" last_modification_time="Wed, 17 Oct 2007 00:02:27 GMT"/>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment6">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox4">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image3">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-add</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label17">
++                                    <property name="visible">True</property>
++                                    <property name="label">Add Boolean</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkButton" id="button4">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="label">gtk-delete</property>
++                        <property name="use_stock">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <signal name="clicked" handler="on_delete_boolean_clicked" last_modification_time="Wed, 17 Oct 2007 00:02:39 GMT"/>
++                        <accelerator key="Delete" modifiers="0" signal="clicked"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">4</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow2">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
++                    <property name="shadow_type">GTK_SHADOW_IN</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="boolean_treeview">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Add/Remove booleans used by the %s domain</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">True</property>
++                <property name="fill">True</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="GtkLabel">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes"></property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkVBox" id="vbox71">
++            <property name="visible">True</property>
++            <property name="homogeneous">False</property>
++            <property name="spacing">0</property>
++
++            <child>
++              <widget class="GtkLabel" id="select_dir_label">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Which directory you will generate the %s policy?&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="padding">0</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkHBox" id="hbox6">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">12</property>
++
++                <child>
++                  <widget class="GtkLabel" id="label18">
++                    <property name="visible">True</property>
++                    <property name="label" translatable="yes">Policy Directory</property>
++                    <property name="use_underline">False</property>
++                    <property name="use_markup">False</property>
++                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                    <property name="wrap">False</property>
++                    <property name="selectable">False</property>
++                    <property name="xalign">0.5</property>
++                    <property name="yalign">0.5</property>
++                    <property name="xpad">0</property>
++                    <property name="ypad">0</property>
++                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                    <property name="width_chars">-1</property>
++                    <property name="single_line_mode">False</property>
++                    <property name="angle">0</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkEntry" id="output_entry">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="editable">True</property>
++                    <property name="visibility">True</property>
++                    <property name="max_length">0</property>
++                    <property name="text" translatable="yes"></property>
++                    <property name="has_frame">True</property>
++                    <property name="invisible_char">•</property>
++                    <property name="activates_default">False</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkButton" id="output_button">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="label" translatable="yes">...</property>
++                    <property name="use_underline">True</property>
++                    <property name="relief">GTK_RELIEF_NORMAL</property>
++                    <property name="focus_on_click">True</property>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="padding">12</property>
++                <property name="expand">False</property>
++                <property name="fill">False</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="tab_expand">False</property>
++            <property name="tab_fill">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="GtkLabel">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes"></property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0.5</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="type">tab</property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkHButtonBox" id="hbuttonbox2">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++        <property name="spacing">0</property>
++
++        <child>
++          <widget class="GtkButton" id="cancel_button">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <signal name="activate" handler="on_cancel_activate" last_modification_time="Wed, 02 Feb 2011 21:21:29 GMT"/>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="back_button">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-go-back</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <signal name="activate" handler="on_back_activate" last_modification_time="Wed, 02 Feb 2011 21:22:00 GMT"/>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="forward_button">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-media-forward</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <signal name="activate" handler="on_forward_activate" last_modification_time="Wed, 02 Feb 2011 21:22:32 GMT"/>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">5</property>
++        <property name="expand">False</property>
++        <property name="fill">False</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GtkDialog" id="boolean_dialog">
++  <property name="border_width">12</property>
++  <property name="title" translatable="yes">Add Booleans Dialog</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_MOUSE</property>
++  <property name="modal">False</property>
++  <property name="default_width">400</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="has_separator">False</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="dialog-vbox2">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">6</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="dialog-action_area2">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="cancelbutton1">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="okbutton1">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-add</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkTable" id="table6">
++        <property name="visible">True</property>
++        <property name="n_rows">2</property>
++        <property name="n_columns">2</property>
++        <property name="homogeneous">False</property>
++        <property name="row_spacing">6</property>
++        <property name="column_spacing">12</property>
++
++        <child>
++          <widget class="GtkLabel" id="label48">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">Boolean Name</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="left_attach">0</property>
++            <property name="right_attach">1</property>
++            <property name="top_attach">0</property>
++            <property name="bottom_attach">1</property>
++            <property name="x_options">fill</property>
++            <property name="y_options"></property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkLabel" id="label49">
++            <property name="visible">True</property>
++            <property name="label" translatable="yes">Description</property>
++            <property name="use_underline">False</property>
++            <property name="use_markup">False</property>
++            <property name="justify">GTK_JUSTIFY_LEFT</property>
++            <property name="wrap">False</property>
++            <property name="selectable">False</property>
++            <property name="xalign">0</property>
++            <property name="yalign">0.5</property>
++            <property name="xpad">0</property>
++            <property name="ypad">0</property>
++            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++            <property name="width_chars">-1</property>
++            <property name="single_line_mode">False</property>
++            <property name="angle">0</property>
++          </widget>
++          <packing>
++            <property name="left_attach">0</property>
++            <property name="right_attach">1</property>
++            <property name="top_attach">1</property>
++            <property name="bottom_attach">2</property>
++            <property name="x_options">fill</property>
++            <property name="y_options"></property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkEntry" id="boolean_name_entry">
++            <property name="visible">True</property>
++            <property name="can_focus">True</property>
++            <property name="editable">True</property>
++            <property name="visibility">True</property>
++            <property name="max_length">0</property>
++            <property name="text" translatable="yes"></property>
++            <property name="has_frame">True</property>
++            <property name="invisible_char">•</property>
++            <property name="activates_default">False</property>
++          </widget>
++          <packing>
++            <property name="left_attach">1</property>
++            <property name="right_attach">2</property>
++            <property name="top_attach">0</property>
++            <property name="bottom_attach">1</property>
++            <property name="y_options"></property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkEntry" id="boolean_description_entry">
++            <property name="visible">True</property>
++            <property name="can_focus">True</property>
++            <property name="editable">True</property>
++            <property name="visibility">True</property>
++            <property name="max_length">0</property>
++            <property name="text" translatable="yes"></property>
++            <property name="has_frame">True</property>
++            <property name="invisible_char">•</property>
++            <property name="activates_default">False</property>
++          </widget>
++          <packing>
++            <property name="left_attach">1</property>
++            <property name="right_attach">2</property>
++            <property name="top_attach">1</property>
++            <property name="bottom_attach">2</property>
++            <property name="y_options"></property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++</glade-interface>
+diff --git a/policycoreutils/gui/polgen.py b/policycoreutils/gui/polgen.py
+new file mode 100644
+index 0000000..04693e9
+--- /dev/null
++++ b/policycoreutils/gui/polgen.py
+@@ -0,0 +1,1370 @@
++#!/usr/bin/python -Es
++#
++# Copyright (C) 2007-2012 Red Hat 
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA     
++#                                        02111-1307  USA
++#
++#  
++import os, sys, stat
++import re
++import commands
++import setools
++
++from templates import executable
++from templates import boolean
++from templates import etc_rw
++from templates import unit_file
++from templates import var_cache
++from templates import var_spool
++from templates import var_lib
++from templates import var_log
++from templates import var_run
++from templates import tmp
++from templates import rw
++from templates import network
++from templates import script
++from templates import user
++import sepolgen.interfaces as interfaces
++import sepolgen.defaults as defaults
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++methods = []
++fn = defaults.interface_info()
++try:
++    fd = open(fn)
++    # List of per_role_template interfaces
++    ifs = interfaces.InterfaceSet()
++    ifs.from_file(fd)
++    methods = ifs.interfaces.keys()
++    fd.close()
++except:
++    sys.stderr.write("could not open interface info [%s]\n" % fn)
++    sys.exit(1)
++
++all_types = None
++def get_all_types():
++    global all_types
++    if all_types == None:
++        all_types = map(lambda x: x['name'], setools.seinfo(setools.TYPE))
++    return all_types
++
++def get_all_ports():
++    dict = {}
++    for p in setools.seinfo(setools.PORT):
++        if p['type'] == "reserved_port_t" or \
++                p['type'] == "port_t" or \
++                p['type'] == "hi_reserved_port_t":
++            continue
++        dict[(p['low'], p['high'], p['protocol'])]=(p['type'], p['range'])
++    return dict
++
++def get_all_roles():
++    roles = map(lambda x: x['name'], setools.seinfo(setools.ROLE))
++    roles.remove("object_r")
++    roles.sort()
++    return roles
++
++def get_all_attributes():
++    attributes = map(lambda x: x['name'], setools.seinfo(setools.ATTRIBUTE))
++    attributes.sort()
++    return attributes
++
++def get_all_domains():
++    all_domains = []
++    types=get_all_types()
++    types.sort()
++    for i in types:
++        m = re.findall("(.*)%s" % "_exec_t$", i) 
++        if len(m) > 0:
++            if len(re.findall("(.*)%s" % "_initrc$", m[0])) == 0 and m[0] not in all_domains:
++                all_domains.append(m[0])
++    return all_domains
++
++def get_all_modules():
++    try:
++        all_modules = []
++        rc, output=commands.getstatusoutput("semodule -l 2>/dev/null")
++        if rc == 0:
++            l = output.split("\n")
++            for i in l:
++                all_modules.append(i.split()[0])
++    except:
++        pass
++
++    return all_modules
++
++def get_all_users():
++    users = map(lambda x: x['name'], setools.seinfo(setools.USER))
++    users.remove("system_u")
++    users.remove("root")
++    users.sort()
++    return users
++
++ALL = 0
++RESERVED = 1
++UNRESERVED = 2
++PORTS = 3
++ADMIN_TRANSITION_INTERFACE = "_admin$"
++USER_TRANSITION_INTERFACE = "_role$"
++
++DAEMON = 0
++DBUS = 1
++INETD = 2
++USER = 3
++CGI = 4
++XUSER = 5
++TUSER = 6
++LUSER = 7
++AUSER = 8
++EUSER = 9
++RUSER = 10
++SANDBOX = 11
++
++poltype={} 
++poltype[DAEMON] = _("Standard Init Daemon")
++poltype[DBUS] = _("DBUS System Daemon")
++poltype[INETD] = _("Internet Services Daemon") 
++poltype[CGI] = _("Web Application/Script (CGI)")
++poltype[USER] = _("User Application")
++poltype[TUSER] = _("Minimal Terminal User Role")
++poltype[XUSER] = _("Minimal X Windows User Role")
++poltype[LUSER] = _("User Role")
++poltype[AUSER] = _("Admin User Role")
++poltype[RUSER] = _("Root Admin User Role")
++poltype[SANDBOX] = _("Sandbox")
++
++APPLICATIONS = [ DAEMON, DBUS, INETD, USER, CGI ]
++USERS = [ XUSER, TUSER, LUSER, AUSER, EUSER, RUSER]
++
++def verify_ports(ports):
++    if ports == "":
++        return []
++    max_port=2**16
++    try:
++        temp = []
++        for a in ports.split(","):
++            r =  a.split("-")
++            if len(r) > 2:
++                raise  ValueError
++            if len(r) == 1:
++                begin = int (r[0])
++                end = int (r[0])
++            else:
++                begin = int (r[0])
++                end = int (r[1])
++                
++                if begin > end:
++                    raise  ValueError
++                
++            for p in range(begin, end + 1):
++                if p < 1 or p > max_port:
++                    raise  ValueError
++                temp.append(p)
++        return temp
++    except ValueError:
++        raise  ValueError(_("Ports must be numbers or ranges of numbers from 1 to %d " % max_port ))
++
++class policy:
++    
++      def __init__(self, name, type):
++                self.ports = []
++                try:
++                    self.ports = get_all_ports()
++                except ValueError, e:
++                    print "Can not get port types, must be root for this information"
++                except RuntimeError, e:
++                    print "Can not get port types", e
++
++                self.symbols = {} 
++                self.symbols["openlog"] = "set_use_kerberos(True)"
++                self.symbols["openlog"] = "set_use_kerb_rcache(True)"
++                self.symbols["openlog"] = "set_use_syslog(True)"
++                self.symbols["gethostby"] = "set_use_resolve(True)"
++                self.symbols["getaddrinfo"] = "set_use_resolve(True)"
++                self.symbols["getnameinfo"] = "set_use_resolve(True)"
++                self.symbols["krb"] = "set_use_kerberos(True)"
++                self.symbols["gss_accept_sec_context"] = "set_manage_krb5_rcache(True)"
++                self.symbols["krb5_verify_init_creds"] = "set_manage_krb5_rcache(True)"
++                self.symbols["krb5_rd_req"] = "set_manage_krb5_rcache(True)"
++                self.symbols["__syslog_chk"] = "set_use_syslog(True)"
++                self.symbols["getpwnam"] = "set_use_uid(True)"
++                self.symbols["getpwuid"] = "set_use_uid(True)"
++                self.symbols["dbus_"] = "set_use_dbus(True)"
++                self.symbols["pam_"] = "set_use_pam(True)"
++                self.symbols["pam_"] = "set_use_audit(True)"
++                self.symbols["fork"] = "add_process('fork')"
++                self.symbols["transition"] = "add_process('transition')"
++                self.symbols["sigchld"] = "add_process('sigchld')"
++                self.symbols["sigkill"] = "add_process('sigkill')"
++                self.symbols["sigstop"] = "add_process('sigstop')"
++                self.symbols["signull"] = "add_process('signull')"
++                self.symbols["signal"] = "add_process('signal')"
++                self.symbols["ptrace"] = "add_process('ptrace')"
++                self.symbols["getsched"] = "add_process('getsched')"
++                self.symbols["setsched"] = "add_process('setsched')"
++                self.symbols["getsession"] = "add_process('getsession')"
++                self.symbols["getpgid"] = "add_process('getpgid')"
++                self.symbols["setpgid"] = "add_process('setpgid')"
++                self.symbols["getcap"] = "add_process('getcap')"
++                self.symbols["setcap"] = "add_process('setcap')"
++                self.symbols["share"] = "add_process('share')"
++                self.symbols["getattr"] = "add_process('getattr')"
++                self.symbols["setexec"] = "add_process('setexec')"
++                self.symbols["setfscreate"] = "add_process('setfscreate')"
++                self.symbols["noatsecure"] = "add_process('noatsecure')"
++                self.symbols["siginh"] = "add_process('siginh')"
++                self.symbols["setrlimit"] = "add_process('setrlimit')"
++                self.symbols["rlimitinh"] = "add_process('rlimitinh')"
++                self.symbols["dyntransition"] = "add_process('dyntransition')"
++                self.symbols["setcurrent"] = "add_process('setcurrent')"
++                self.symbols["execmem"] = "add_process('execmem')"
++                self.symbols["execstack"] = "add_process('execstack')"
++                self.symbols["execheap"] = "add_process('execheap')"
++                self.symbols["setkeycreate"] = "add_process('setkeycreate')"
++                self.symbols["setsockcreate"] = "add_process('setsockcreate')"
++
++                self.symbols["chown"] = "add_capability('chown')"
++                self.symbols["dac_override"] = "add_capability('dac_override')"
++                self.symbols["dac_read_search"] = "add_capability('dac_read_search')"
++                self.symbols["fowner"] = "add_capability('fowner')"
++                self.symbols["fsetid"] = "add_capability('fsetid')"
++                self.symbols["kill"] = "add_capability('kill')"
++                self.symbols["setgid"] = "add_capability('setgid')"
++                self.symbols["setresuid"] = "add_capability('setuid')"
++                self.symbols["setuid"] = "add_capability('setuid')"
++                self.symbols["setpcap"] = "add_capability('setpcap')"
++                self.symbols["linux_immutable"] = "add_capability('linux_immutable')"
++                self.symbols["net_bind_service"] = "add_capability('net_bind_service')"
++                self.symbols["net_broadcast"] = "add_capability('net_broadcast')"
++                self.symbols["net_admin"] = "add_capability('net_admin')"
++                self.symbols["net_raw"] = "add_capability('net_raw')"
++                self.symbols["ipc_lock"] = "add_capability('ipc_lock')"
++                self.symbols["ipc_owner"] = "add_capability('ipc_owner')"
++                self.symbols["sys_module"] = "add_capability('sys_module')"
++                self.symbols["sys_rawio"] = "add_capability('sys_rawio')"
++                self.symbols["chroot"] = "add_capability('sys_chroot')"
++                self.symbols["sys_chroot"] = "add_capability('sys_chroot')"
++                self.symbols["sys_ptrace"] = "add_capability('sys_ptrace')"
++                self.symbols["sys_pacct"] = "add_capability('sys_pacct')"
++                self.symbols["mount"] = "add_capability('sys_admin')"
++                self.symbols["unshare"] = "add_capability('sys_admin')"
++                self.symbols["sys_admin"] = "add_capability('sys_admin')"
++                self.symbols["sys_boot"] = "add_capability('sys_boot')"
++                self.symbols["sys_nice"] = "add_capability('sys_nice')"
++                self.symbols["sys_resource"] = "add_capability('sys_resource')"
++                self.symbols["sys_time"] = "add_capability('sys_time')"
++                self.symbols["sys_tty_config"] = "add_capability('sys_tty_config')"
++                self.symbols["mknod"] = "add_capability('mknod')"
++                self.symbols["lease"] = "add_capability('lease')"
++                self.symbols["audit_write"] = "add_capability('audit_write')"
++                self.symbols["audit_control"] = "add_capability('audit_control')"
++                self.symbols["setfcap"] = "add_capability('setfcap')"
++                
++              self.DEFAULT_DIRS = {}
++              self.DEFAULT_DIRS["/etc"] = ["etc_rw", [], etc_rw];
++              self.DEFAULT_DIRS["/tmp"] = ["tmp", [], tmp];
++              self.DEFAULT_DIRS["rw"] = ["rw", [], rw];
++              self.DEFAULT_DIRS["/usr/lib/systemd/system"] = ["unit_file", [], unit_file];
++              self.DEFAULT_DIRS["/lib/systemd/system"] = ["unit_file", [], unit_file];
++              self.DEFAULT_DIRS["/etc/systemd/system"] = ["unit_file", [], unit_file];
++              self.DEFAULT_DIRS["/var/cache"] = ["var_cache", [], var_cache];
++              self.DEFAULT_DIRS["/var/lib"] = ["var_lib", [], var_lib];
++              self.DEFAULT_DIRS["/var/log"] = ["var_log", [], var_log];
++              self.DEFAULT_DIRS["/var/run"] = ["var_run", [], var_run];
++              self.DEFAULT_DIRS["/var/spool"] = ["var_spool", [], var_spool];
++
++                self.DEFAULT_KEYS=["/etc", "/var/cache", "/var/log", "/tmp", "rw", "/var/lib", "/var/run", "/var/spool", "/etc/systemd/system", "/usr/lib/systemd/system", "/lib/systemd/system" ]
++
++              self.DEFAULT_TYPES = (\
++( self.generate_daemon_types, self.generate_daemon_rules), \
++( self.generate_dbusd_types, self.generate_dbusd_rules), \
++( self.generate_inetd_types, self.generate_inetd_rules), \
++( self.generate_userapp_types, self.generate_userapp_rules), \
++( self.generate_cgi_types, self.generate_cgi_rules), \
++( self.generate_x_login_user_types, self.generate_x_login_user_rules), \
++( self.generate_min_login_user_types, self.generate_login_user_rules), \
++( self.generate_login_user_types, self.generate_login_user_rules), \
++( self.generate_admin_user_types, self.generate_login_user_rules), \
++( self.generate_existing_user_types, self.generate_existing_user_rules), \
++( self.generate_root_user_types, self.generate_root_user_rules), \
++( self.generate_sandbox_types, self.generate_sandbox_rules))
++              if name == "":
++                      raise ValueError(_("You must enter a name for your confined process/user"))
++                if not name.isalnum():
++                    raise ValueError(_("Name must be alpha numberic with no spaces. Consider using option \"-n MODULENAME\""))
++
++              if type == CGI:
++                      self.name = "httpd_%s_script" % name
++              else:
++                      self.name = name
++
++                self.file_name = name
++
++                self.capabilities = []
++                self.processes = []
++              self.type = type
++              self.initscript = ""
++                self.program = ""
++              self.in_tcp = [False, False, False, []]
++              self.in_udp = [False, False, False, []]
++              self.out_tcp = [False, False, False, []]
++              self.out_udp = [False, False, False, []]
++              self.use_resolve = False
++              self.use_tmp = False
++              self.use_uid = False
++              self.use_syslog = False
++              self.use_kerberos = False
++              self.manage_krb5_rcache = False
++              self.use_pam = False
++              self.use_dbus = False
++              self.use_audit = False
++              self.use_etc = True
++              self.use_localization = True
++              self.use_fd = True
++              self.use_terminal = False
++              self.use_mail = False
++              self.booleans = {}
++              self.files = {}
++              self.dirs = {}
++                self.found_tcp_ports=[]
++                self.found_udp_ports=[]
++                self.need_tcp_type=False
++                self.need_udp_type=False
++              self.admin_domains = []
++              self.transition_domains = []
++              self.transition_users = []
++                self.roles = []
++
++        def __isnetset(self, l):
++            return l[ALL] or l[RESERVED] or l[UNRESERVED] or len(l[PORTS]) > 0
++
++        def set_admin_domains(self, admin_domains):
++            self.admin_domains = admin_domains
++
++        def set_admin_roles(self, roles):
++            self.roles = roles
++
++        def set_transition_domains(self, transition_domains):
++            self.transition_domains = transition_domains
++
++        def set_transition_users(self, transition_users):
++            self.transition_users = transition_users
++
++        def use_in_udp(self):
++            return self.__isnetset(self.in_udp)
++            
++        def use_out_udp(self):
++            return self.__isnetset(self.out_udp)
++            
++        def use_udp(self):
++            return self.use_in_udp() or self.use_out_udp()
++
++        def use_in_tcp(self):
++            return self.__isnetset(self.in_tcp)
++            
++        def use_out_tcp(self):
++            return self.__isnetset(self.out_tcp)
++        
++        def use_tcp(self):
++            return self.use_in_tcp() or self.use_out_tcp()
++
++        def use_network(self):
++            return self.use_tcp() or self.use_udp()
++        
++        def find_port(self, port, protocol="tcp"):
++            for begin,end,p in self.ports.keys():
++                if port >= begin and port <= end and protocol == p:
++                    return self.ports[begin, end, protocol]
++            return  None
++
++      def set_program(self, program):
++                if self.type not in APPLICATIONS:
++                    raise ValueError(_("User Role types can not be assigned executables."))
++
++              self.program = program
++
++      def set_init_script(self, initscript):
++                if self.type != DAEMON:
++                    raise ValueError(_("Only Daemon apps can use an init script.."))
++
++              self.initscript = initscript
++
++      def set_in_tcp(self, all, reserved, unreserved, ports):
++              self.in_tcp = [ all, reserved, unreserved, verify_ports(ports)]
++
++      def set_in_udp(self, all, reserved, unreserved, ports):
++              self.in_udp = [ all, reserved, unreserved, verify_ports(ports)]
++
++      def set_out_tcp(self, all, ports):
++              self.out_tcp = [ all , False, False, verify_ports(ports) ]
++
++      def set_out_udp(self, all, ports):
++              self.out_udp = [ all , False, False, verify_ports(ports) ]
++
++      def set_use_resolve(self, val):
++              if val != True and val != False:
++                      raise  ValueError(_("use_resolve must be a boolean value "))
++            
++              self.use_resolve = val
++              
++      def set_use_syslog(self, val):
++              if val != True and val != False:
++                      raise  ValueError(_("use_syslog must be a boolean value "))
++            
++              self.use_syslog = val
++              
++      def set_use_kerberos(self, val):
++              if val != True and val != False:
++                      raise  ValueError(_("use_kerberos must be a boolean value "))
++            
++              self.use_kerberos = val
++              
++      def set_manage_krb5_rcache(self, val):
++              if val != True and val != False:
++                      raise  ValueError(_("manage_krb5_rcache must be a boolean value "))
++            
++              self.manage_krb5_rcache = val
++              
++      def set_use_pam(self, val):
++              self.use_pam = val == True
++              
++      def set_use_dbus(self, val):
++              self.use_dbus = val == True
++              
++      def set_use_audit(self, val):
++              self.use_audit = val == True
++              
++      def set_use_etc(self, val):
++              self.use_etc = val == True
++              
++      def set_use_localization(self, val):
++              self.use_localization = val == True
++              
++      def set_use_fd(self, val):
++              self.use_fd = val == True
++              
++      def set_use_terminal(self, val):
++              self.use_terminal = val == True
++              
++      def set_use_mail(self, val):
++              self.use_mail = val == True
++              
++      def set_use_tmp(self, val):
++            if self.type in USERS:
++                raise ValueError(_("USER Types automatically get a tmp type"))
++
++            if val:
++              self.DEFAULT_DIRS["/tmp"][1].append("/tmp");
++            else:
++              self.DEFAULT_DIRS["/tmp"][1]=[]
++              
++      def set_use_uid(self, val):
++              self.use_uid = val == True
++
++      def generate_uid_rules(self):
++                if self.use_uid:
++                    return re.sub("TEMPLATETYPE", self.name, executable.te_uid_rules)
++                else:
++                    return ""
++
++      def generate_syslog_rules(self):
++                if self.use_syslog:
++                    return re.sub("TEMPLATETYPE", self.name, executable.te_syslog_rules)
++                else:
++                    return ""
++
++      def generate_resolve_rules(self):
++                if self.use_resolve:
++                    return re.sub("TEMPLATETYPE", self.name, executable.te_resolve_rules)
++                else:
++                    return ""
++
++      def generate_kerberos_rules(self):
++                if self.use_kerberos:
++                    return re.sub("TEMPLATETYPE", self.name, executable.te_kerberos_rules)
++                else:
++                    return ""
++
++      def generate_manage_krb5_rcache_rules(self):
++                if self.manage_krb5_rcache:
++                    return re.sub("TEMPLATETYPE", self.name, executable.te_manage_krb5_rcache_rules)
++                else:
++                    return ""
++
++      def generate_pam_rules(self):
++                newte =""
++                if self.use_pam:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_pam_rules)
++                return newte
++
++      def generate_audit_rules(self):
++                newte =""
++                if self.use_audit:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_audit_rules)
++                return newte
++
++      def generate_etc_rules(self):
++                newte =""
++                if self.use_etc:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_etc_rules)
++                return newte
++
++      def generate_fd_rules(self):
++                newte =""
++                if self.use_fd:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_fd_rules)
++                return newte
++
++      def generate_localization_rules(self):
++                newte =""
++                if self.use_localization:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_localization_rules)
++                return newte
++
++      def generate_dbus_rules(self):
++                newte =""
++                if self.type != DBUS and self.use_dbus:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_dbus_rules)
++                return newte
++
++      def generate_mail_rules(self):
++                newte =""
++                if self.use_mail:
++                    newte = re.sub("TEMPLATETYPE", self.name, executable.te_mail_rules)
++                return newte
++
++        def generate_network_action(self, protocol, action, port_name):
++            line = ""
++            method = "corenet_%s_%s_%s" % (protocol, action, port_name)
++            if method in methods:
++                line = "%s(%s_t)\n" % (method, self.name)
++            else:
++                line = """
++gen_require(`
++    type %s_t;
++')
++allow %s_t %s_t:%s_socket name_%s;
++""" % (port_name, self.name, port_name, protocol, action)
++            return line
++                
++      def generate_network_types(self):
++            for i in self.in_tcp[PORTS]:
++                rec = self.find_port(int(i), "tcp")
++                if rec == None:
++                    self.need_tcp_type = True;
++                else:
++                    port_name = rec[0][:-2]
++                    line = self.generate_network_action("tcp", "bind", port_name)
++#                   line = "corenet_tcp_bind_%s(%s_t)\n" % (port_name, self.name)
++                    if line not in self.found_tcp_ports:
++                        self.found_tcp_ports.append(line)
++
++            for i in self.out_tcp[PORTS]:
++                rec = self.find_port(int(i), "tcp")
++                if rec == None:
++                    self.need_tcp_type = True;
++                else:
++                    port_name = rec[0][:-2]
++                    line = self.generate_network_action("tcp", "connect", port_name)
++#                   line = "corenet_tcp_connect_%s(%s_t)\n" % (port_name, self.name)
++                    if line not in self.found_tcp_ports:
++                        self.found_tcp_ports.append(line)
++                        
++            for i in self.in_udp[PORTS]:
++                rec = self.find_port(int(i),"udp")
++                if rec == None:
++                    self.need_udp_type = True;
++                else:
++                    port_name = rec[0][:-2]
++                    line = self.generate_network_action("udp", "bind", port_name)
++#                   line = "corenet_udp_bind_%s(%s_t)\n" % (port_name, self.name)
++                    if line not in self.found_udp_ports:
++                        self.found_udp_ports.append(line)
++                
++            if self.need_udp_type == True or self.need_tcp_type == True:
++                return re.sub("TEMPLATETYPE", self.name, network.te_port_types)
++            return ""
++      
++      def __find_path(self, file):
++            for d in self.DEFAULT_DIRS:
++                if file.find(d) == 0:
++                    self.DEFAULT_DIRS[d][1].append(file)
++                    return self.DEFAULT_DIRS[d]
++            self.DEFAULT_DIRS["rw"][1].append(file)
++            return self.DEFAULT_DIRS["rw"]
++      
++      def add_capability(self, capability):
++            if capability not in self.capabilities:
++                self.capabilities.append(capability)
++
++      def add_process(self, process):
++            if process not in self.processes:
++                self.processes.append(process)
++
++      def add_boolean(self, name, description):
++                self.booleans[name] = description
++
++      def add_file(self, file):
++              self.files[file] = self.__find_path(file)
++
++      def add_dir(self, file):
++              self.dirs[file] = self.__find_path(file)
++              
++      def generate_capabilities(self):
++            newte = ""
++            self.capabilities.sort()
++            if len(self.capabilities) > 0:
++                newte = "allow %s_t self:capability { %s };\n" % (self.name, " ".join(self.capabilities))
++            return newte
++
++      def generate_process(self):
++            newte = ""
++            self.processes.sort()
++            if len(self.processes) > 0:
++                newte = "allow %s_t self:process { %s };\n" % (self.name, " ".join(self.processes))
++            return newte
++
++
++      def generate_network_rules(self):
++              newte = ""
++              if self.use_network():
++                    newte = "\n"
++
++                    newte += re.sub("TEMPLATETYPE", self.name, network.te_network)
++                    
++                    if self.use_tcp():
++                        newte += "\n"
++                        newte += re.sub("TEMPLATETYPE", self.name, network.te_tcp)
++
++                        if self.use_in_tcp():
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_tcp)
++
++                            if self.need_tcp_type and len(self.in_tcp[PORTS]) > 0:
++                                newte += re.sub("TEMPLATETYPE", self.name, network.te_in_need_port_tcp)
++
++                        if self.need_tcp_type and len(self.out_tcp[PORTS]) > 0:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_need_port_tcp)
++
++
++                        if self.in_tcp[ALL]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_all_ports_tcp)
++                        if self.in_tcp[RESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_reserved_ports_tcp)
++                        if self.in_tcp[UNRESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_unreserved_ports_tcp)
++                            
++                        if self.out_tcp[ALL]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_all_ports_tcp)
++                        if self.out_tcp[RESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_reserved_ports_tcp)
++                        if self.out_tcp[UNRESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_out_unreserved_ports_tcp)
++
++                        for i in self.found_tcp_ports:
++                            newte += i
++
++                    if self.use_udp():
++                        newte += "\n"
++                        newte += re.sub("TEMPLATETYPE", self.name, network.te_udp)
++
++                        if self.need_udp_type:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_need_port_udp)
++                        if self.use_in_udp():
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_udp)
++                        if self.in_udp[ALL]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_all_ports_udp)
++                        if self.in_udp[RESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_reserved_ports_udp)
++                        if self.in_udp[UNRESERVED]:
++                            newte += re.sub("TEMPLATETYPE", self.name, network.te_in_unreserved_ports_udp)
++
++                        for i in self.found_udp_ports:
++                            newte += i
++              return newte
++      
++        def generate_transition_rules(self):
++            newte = ""
++            for app in self.transition_domains:
++                tmp = re.sub("TEMPLATETYPE", self.name, user.te_transition_rules)
++                newte += re.sub("APPLICATION", app, tmp)
++
++            if self.type == USER:
++                for u in self.transition_users:
++                    temp =  re.sub("TEMPLATETYPE", self.name, executable.te_run_rules)
++                    newte += re.sub("USER", u.split("_u")[0], temp)
++
++            return newte
++
++        def generate_admin_rules(self):
++            newte = ""
++            if self.type == RUSER:
++                newte += re.sub("TEMPLATETYPE", self.name, user.te_admin_rules)
++            
++                for app in self.admin_domains:
++                    tmp = re.sub("TEMPLATETYPE", self.name, user.te_admin_domain_rules)
++                    newte += re.sub("APPLICATION", app, tmp)
++
++                all_roles = []
++                try:
++                    all_roles = get_all_roles()
++                except ValueError, e:
++                    print "Can not get all roles, must be root for this information"
++                except RuntimeError, e:
++                    print "Can not get all roles", e
++
++                for u in self.transition_users:
++                    role = u.split("_u")[0]
++                    
++                    if (role + "_r") in all_roles:
++                        tmp =  re.sub("TEMPLATETYPE", self.name, user.te_admin_trans_rules)
++                        newte += re.sub("USER", role, tmp)
++
++            return newte
++
++      def generate_dbus_if(self):
++                newif = ""
++                if self.use_dbus:
++                    newif = re.sub("TEMPLATETYPE", self.name, executable.if_dbus_rules)
++                return newif
++
++        def generate_sandbox_if(self):
++            newif = ""
++            if self.type != SANDBOX:
++                return newif
++            newif = re.sub("TEMPLATETYPE", self.name, executable.if_sandbox_rules)
++            return newif
++            
++            
++        def generate_admin_if(self):
++            newif = ""
++            newtypes = ""
++            if self.initscript != "":
++                newtypes += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_admin_types)
++                newif += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_admin)
++            for d in self.DEFAULT_KEYS:
++                if len(self.DEFAULT_DIRS[d][1]) > 0:
++                    newtypes += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_admin_types)
++                    newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_admin_rules)
++
++            if newif != "":
++                ret = re.sub("TEMPLATETYPE", self.name, executable.if_begin_admin)
++                ret += newtypes
++
++                ret += re.sub("TEMPLATETYPE", self.name, executable.if_middle_admin)
++                ret += newif
++                ret += re.sub("TEMPLATETYPE", self.name, executable.if_end_admin)
++                return ret
++                
++            return ""
++                
++      def generate_cgi_types(self):
++              return re.sub("TEMPLATETYPE", self.file_name, executable.te_cgi_types)
++      
++      def generate_sandbox_types(self):
++              return re.sub("TEMPLATETYPE", self.file_name, executable.te_sandbox_types)
++      
++      def generate_userapp_types(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_userapp_types)
++      
++      def generate_inetd_types(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_inetd_types)
++      
++      def generate_dbusd_types(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_dbusd_types)
++      
++      def generate_min_login_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_min_login_user_types)
++      
++      def generate_login_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_login_user_types)
++      
++      def generate_admin_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_admin_user_types)
++
++      def generate_existing_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_existing_user_types)
++      
++      def generate_x_login_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_x_login_user_types)
++      
++      def generate_root_user_types(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_root_user_types)
++      
++      def generate_daemon_types(self):
++                newte = re.sub("TEMPLATETYPE", self.name, executable.te_daemon_types)
++                if self.initscript != "":
++                    newte += re.sub("TEMPLATETYPE", self.name, executable.te_initscript_types)
++              return newte
++      
++      def generate_tmp_types(self):
++              if self.use_tmp:
++                    return re.sub("TEMPLATETYPE", self.name, tmp.te_types)
++                else:
++                    return ""
++      
++      def generate_booleans(self):
++            newte = ""
++            for b in self.booleans:
++                tmp = re.sub("BOOLEAN", b, boolean.te_boolean)
++                newte += re.sub("DESCRIPTION", self.booleans[b], tmp)
++            return newte
++
++      def generate_boolean_rules(self):
++            newte = ""
++            for b in self.booleans:
++                newte += re.sub("BOOLEAN", b, boolean.te_rules)
++            return newte
++
++      def generate_sandbox_te(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_sandbox_types)
++
++      def generate_cgi_te(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_cgi_types)
++
++      def generate_daemon_rules(self):
++                newif =  re.sub("TEMPLATETYPE", self.name, executable.te_daemon_rules)
++
++                return  newif
++      
++      def generate_login_user_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_login_user_rules)
++      
++      def generate_existing_user_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_existing_user_rules)
++      
++      def generate_x_login_user_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, user.te_x_login_user_rules)
++      
++      def generate_root_user_rules(self):
++                newte =re.sub("TEMPLATETYPE", self.name, user.te_root_user_rules)
++              return newte
++      
++      def generate_userapp_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_userapp_rules)
++      
++      def generate_inetd_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_inetd_rules)
++      
++      def generate_dbusd_rules(self):
++              return re.sub("TEMPLATETYPE", self.name, executable.te_dbusd_rules)
++      
++      def generate_tmp_rules(self):
++              if self.use_tmp:
++                    return re.sub("TEMPLATETYPE", self.name, tmp.te_rules)
++                else:
++                    return ""
++      
++      def generate_cgi_rules(self):
++              newte = ""
++              newte += re.sub("TEMPLATETYPE", self.name, executable.te_cgi_rules)
++              return newte
++      
++      def generate_sandbox_rules(self):
++              newte = ""
++              newte += re.sub("TEMPLATETYPE", self.name, executable.te_sandbox_rules)
++              return newte
++      
++      def generate_user_if(self):
++                newif =""
++                if self.use_terminal or self.type == USER:
++                    newif = re.sub("TEMPLATETYPE", self.name, executable.if_user_program_rules)
++
++                if self.type in ( TUSER, XUSER, AUSER, LUSER):
++                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_role_change_rules)
++                return newif
++                
++      def generate_if(self):
++                newif = ""
++                newif += re.sub("TEMPLATETYPE", self.name, executable.if_heading_rules)
++                if self.program != "":
++                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_program_rules)
++                if self.initscript != "":
++                    newif += re.sub("TEMPLATETYPE", self.name, executable.if_initscript_rules)
++              
++                for d in self.DEFAULT_KEYS:
++                      if len(self.DEFAULT_DIRS[d][1]) > 0:
++                              newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_rules)
++                                for i in self.DEFAULT_DIRS[d][1]:
++                                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
++                                            newif += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].if_stream_rules)
++                                            break
++                newif += self.generate_user_if()
++                newif += self.generate_dbus_if()
++                newif += self.generate_admin_if()
++                newif += self.generate_sandbox_if()
++    
++              return newif
++
++      def generate_default_types(self):
++              return self.DEFAULT_TYPES[self.type][0]()
++              
++      def generate_default_rules(self):
++              return self.DEFAULT_TYPES[self.type][1]()
++              
++      def generate_roles_rules(self):
++            newte = ""
++            if self.type in ( TUSER, XUSER, AUSER, LUSER, EUSER):
++                roles = ""
++                if len(self.roles) > 0:
++                    newte += re.sub("TEMPLATETYPE", self.name, user.te_sudo_rules)
++                    newte += re.sub("TEMPLATETYPE", self.name, user.te_newrole_rules)
++                    for role in self.roles:
++                        tmp = re.sub("TEMPLATETYPE", self.name, user.te_roles_rules)
++                        newte += re.sub("ROLE", role, tmp)
++            return newte
++        
++      def generate_te(self):
++              newte = self.generate_default_types()
++                for d in self.DEFAULT_KEYS:
++                      if len(self.DEFAULT_DIRS[d][1]) > 0:
++                              # CGI scripts already have a rw_t 
++                              if self.type != CGI or d != "rw":
++                                      newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_types)
++
++                newte +="""
++########################################
++#
++# %s local policy
++#
++""" % self.name
++                newte += self.generate_capabilities()
++                newte += self.generate_process()
++              newte += self.generate_network_types()
++              newte += self.generate_tmp_types()
++              newte += self.generate_booleans()
++              newte += self.generate_default_rules()
++              newte += self.generate_boolean_rules()
++
++                for d in self.DEFAULT_KEYS:
++                      if len(self.DEFAULT_DIRS[d][1]) > 0:
++                              newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_rules)
++                                for i in self.DEFAULT_DIRS[d][1]:
++                                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
++                                            newte += re.sub("TEMPLATETYPE", self.name, self.DEFAULT_DIRS[d][2].te_stream_rules)
++                                            break
++
++              newte += self.generate_tmp_rules()
++              newte += self.generate_network_rules()
++              newte += self.generate_fd_rules()
++              newte += self.generate_etc_rules()
++              newte += self.generate_pam_rules()
++              newte += self.generate_uid_rules()              
++              newte += self.generate_audit_rules()    
++              newte += self.generate_syslog_rules()           
++              newte += self.generate_localization_rules()
++              newte += self.generate_resolve_rules()          
++              newte += self.generate_roles_rules()
++              newte += self.generate_mail_rules()             
++              newte += self.generate_transition_rules()
++              newte += self.generate_admin_rules()
++              newte += self.generate_dbus_rules()
++              newte += self.generate_kerberos_rules()
++              newte += self.generate_manage_krb5_rcache_rules()               
++
++              return newte
++              
++      def generate_fc(self):
++              newfc = ""
++                fclist = []
++                if self.type in USERS +  [ SANDBOX ]:
++                    return re.sub("EXECUTABLE", self.program, executable.fc_user)
++                if self.program == "":
++                    raise ValueError(_("You must enter the executable path for your confined process"))
++
++              t1 = re.sub("EXECUTABLE", self.program, executable.fc_program)
++              fclist.append(re.sub("TEMPLATETYPE", self.name, t1))
++
++                if self.initscript != "":
++                    t1 = re.sub("EXECUTABLE", self.initscript, executable.fc_initscript)
++                    fclist.append(re.sub("TEMPLATETYPE", self.name, t1))
++
++              for i in self.files.keys():
++                        if os.path.exists(i) and stat.S_ISSOCK(os.stat(i)[stat.ST_MODE]):
++                            t1 = re.sub("TEMPLATETYPE", self.name, self.files[i][2].fc_sock_file)
++                        else:
++                            t1 = re.sub("TEMPLATETYPE", self.name, self.files[i][2].fc_file)
++                      t2 = re.sub("FILENAME", i, t1)
++                        fclist.append(re.sub("FILETYPE", self.files[i][0], t2))
++
++              for i in self.dirs.keys():
++                      t1 = re.sub("TEMPLATETYPE", self.name, self.dirs[i][2].fc_dir)
++                      t2 = re.sub("FILENAME", i, t1)
++                        fclist.append(re.sub("FILETYPE", self.dirs[i][0], t2))
++
++                fclist.sort()
++                newfc="\n".join(fclist)
++              return newfc
++      
++      def generate_user_sh(self):
++            newsh = ""
++            if self.type not in ( TUSER, XUSER, AUSER, LUSER, EUSER):
++                return newsh
++
++            roles = ""
++            for role in self.roles:
++                roles += " %s_r" % role
++            if roles != "":
++                roles += " system_r"
++            if self.type == EUSER:
++                tmp = re.sub("TEMPLATETYPE", self.name, script.eusers)
++            else:
++                tmp = re.sub("TEMPLATETYPE", self.name, script.users)
++            newsh += re.sub("ROLES", roles, tmp)
++
++            if self.type == RUSER:
++                for u in self.transition_users:
++                    tmp =  re.sub("TEMPLATETYPE", self.name, script.admin_trans)
++                    newsh += re.sub("USER", u, tmp)
++
++            if self.type == LUSER:
++                    newsh +=  re.sub("TEMPLATETYPE", self.name, script.min_login_user_default_context)
++            else:
++                    newsh +=  re.sub("TEMPLATETYPE", self.name, script.x_login_user_default_context)
++
++                
++            return newsh
++        
++      def generate_sh(self):
++                temp  = re.sub("TEMPLATETYPE", self.file_name, script.compile)
++                if self.type == EUSER:
++                    newsh  = re.sub("TEMPLATEFILE", "my%s" % self.file_name, temp)
++                else:
++                    newsh  = re.sub("TEMPLATEFILE", self.file_name, temp)
++                if self.program != "":
++                    newsh += re.sub("FILENAME", self.program, script.restorecon)
++                if self.initscript != "":
++                    newsh += re.sub("FILENAME", self.initscript, script.restorecon)
++
++              for i in self.files.keys():
++                      newsh += re.sub("FILENAME", i, script.restorecon)
++
++              for i in self.dirs.keys():
++                      newsh += re.sub("FILENAME", i, script.restorecon)
++
++                for i in self.in_tcp[PORTS] + self.out_tcp[PORTS]:
++                    if self.find_port(i,"tcp") == None:
++                        t1 = re.sub("PORTNUM", "%d" % i, script.tcp_ports)
++                        newsh += re.sub("TEMPLATETYPE", self.name, t1)
++
++                for i in self.in_udp[PORTS]:
++                    if self.find_port(i,"udp") == None:
++                      t1 = re.sub("PORTNUM", "%d" % i, script.udp_ports)
++                      newsh += re.sub("TEMPLATETYPE", self.name, t1)
++
++                newsh += self.generate_user_sh()
++                      
++              return newsh
++      
++      def write_te(self, out_dir):
++                if self.type == EUSER:
++                    tefile = "%s/my%s.te" % (out_dir, self.file_name)
++                else:
++                    tefile = "%s/%s.te" % (out_dir, self.file_name)
++              fd = open(tefile, "w")
++              fd.write(self.generate_te())
++              fd.close()
++              return tefile
++
++      def write_sh(self, out_dir):
++                if self.type == EUSER:
++                    shfile = "%s/my%s.sh" % (out_dir, self.file_name)
++                else:
++                    shfile = "%s/%s.sh" % (out_dir, self.file_name)
++              fd = open(shfile, "w")
++              fd.write(self.generate_sh())
++              fd.close()
++                os.chmod(shfile, 0750)
++              return shfile
++
++      def write_if(self, out_dir):
++                if self.type == EUSER:
++                    iffile = "%s/my%s.if" % (out_dir, self.file_name)
++                else:
++                    iffile = "%s/%s.if" % (out_dir, self.file_name)
++              fd = open(iffile, "w")
++              fd.write(self.generate_if())
++              fd.close()
++              return iffile
++
++      def write_fc(self,out_dir):
++                if self.type == EUSER:
++                    fcfile = "%s/my%s.fc" % (out_dir, self.file_name)
++                else:
++                    fcfile = "%s/%s.fc" % (out_dir, self.file_name)
++                fd = open(fcfile, "w")
++                fd.write(self.generate_fc())
++                fd.close()
++              return fcfile
++
++        def gen_writeable(self):
++            fd = os.popen("rpm -qlf %s" % self.program)
++            for f in fd.read().split():
++                for b in self.DEFAULT_DIRS:
++                    if b == "/etc":
++                        continue
++                    if f.startswith(b):
++                        if os.path.isfile(f):
++                            self.add_file(f)
++                        else:
++                            self.add_dir(f)
++            fd.close()
++
++            # some packages have own systemd subpackage
++            # tor-systemd for example
++            binary_name = self.program.split("/")[-1]
++            rc, output = commands.getstatusoutput("rpm -q %s-systemd" % binary_name)
++            if rc == 0:
++                fd = os.popen("rpm -ql %s-systemd" % binary_name)
++                for f in fd.read().split():
++                    for b in self.DEFAULT_DIRS:
++                        if f.startswith(b):
++                            if os.path.isfile(f):
++                                self.add_file(f)
++                            else:
++                                self.add_dir(f)
++                fd.close()
++
++            if os.path.isfile("/var/run/%s.pid"  % self.name):
++                self.add_file("/var/run/%s.pid"  % self.name)
++
++            if os.path.isfile("/etc/rc.d/init.d/%s"  % self.name):
++                self.set_init_script("/etc/rc\.d/init\.d/%s"  % self.name)
++
++        def gen_symbols(self):
++            if self.type not in APPLICATIONS:
++                return
++
++            fd = os.popen("nm -D %s | grep U" % self.program)
++            for s in fd.read().split():
++                for b in self.symbols:
++                    if s.startswith(b):
++                        exec "self.%s" %  self.symbols[b]
++            fd.close()
++
++      def generate(self, out_dir = "."):
++            self.write_te(out_dir)
++            self.write_if(out_dir)
++            self.write_fc(out_dir)
++            self.write_sh(out_dir)
++            out = "Created the following files in:\n%s/\n" %  out_dir
++            out += "%s.te # %s\n" % (self.file_name, _("Type Enforcement file"))
++            out += "%s.if # %s\n" % (self.file_name, _("Interface file"))
++            out += "%s.fc # %s\n" % (self.file_name, _("File Contexts file"))
++            out += "%s.sh # %s\n" % (self.file_name, _("Setup Script"))
++            return out
++
++def errorExit(error):
++      sys.stderr.write("%s: " % sys.argv[0])
++      sys.stderr.write("%s\n" % error)
++      sys.stderr.flush()
++      sys.exit(1)
++
++def test():
++    import tempfile
++
++    tmpdir = tempfile.mkdtemp(prefix="polgen_")
++
++    mypolicy = policy("myrwho", DAEMON)
++    mypolicy.set_program("/usr/sbin/myrwhod")
++    mypolicy.set_init_script("/etc/init.d/myrwhod")
++    mypolicy.add_dir("/etc/nasd")
++    mypolicy.set_in_tcp(1, 0, 0, "513")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_tmp(True)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    mypolicy.add_dir("/var/run/myrwho")
++    mypolicy.add_dir("/var/lib/myrwho")
++    print mypolicy.generate(tmpdir)
++
++    mypolicy = policy("mywhois", USER)
++    mypolicy.set_program("/usr/bin/jwhois")
++    mypolicy.set_out_tcp(0, "43,63,4321")
++    mypolicy.set_out_udp(0, "43,63,4321")
++    mypolicy.add_dir("/var/cache/jwhois")
++    mypolicy.set_transition_users(["staff_u"])
++    print mypolicy.generate(tmpdir)
++
++    mypolicy = policy("mytuser", TUSER)
++    mypolicy.set_admin_roles(["mydbadm"])
++    mypolicy.add_boolean("allow_mytuser_setuid", "Allow mytuser users to run setuid applications")
++    print mypolicy.generate(tmpdir)
++    
++    mypolicy = policy("mycgi", CGI)
++    mypolicy.set_program("/var/www/cgi-bin/cgi")
++    mypolicy.set_in_tcp(1, 0, 0, "512, 55000-55000")
++    mypolicy.set_in_udp(1, 0, 0, "1513")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_tmp(False)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    mypolicy.set_out_tcp(0,"8000")
++    print mypolicy.generate(tmpdir)
++
++    mypolicy = policy("myinetd", INETD)
++    mypolicy.set_program("/usr/bin/mytest")
++    mypolicy.set_in_tcp(1, 0, 0, "513")
++    mypolicy.set_in_udp(1, 0, 0, "1513")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_tmp(True)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    mypolicy.add_file("/var/lib/mysql/mysql.sock")
++    mypolicy.add_file("/var/run/rpcbind.sock")
++    mypolicy.add_file("/var/run/daemon.pub")
++    mypolicy.add_file("/var/log/daemon.log")
++    mypolicy.add_dir("/var/lib/daemon")
++    mypolicy.add_dir("/etc/daemon")
++    mypolicy.add_dir("/etc/daemon/special")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    mypolicy.set_use_audit(True)
++    mypolicy.set_use_dbus(True)
++    mypolicy.set_use_terminal(True)
++    mypolicy.set_use_mail(True)
++    mypolicy.set_out_tcp(0,"8000")
++    print mypolicy.generate(tmpdir)
++
++
++    mypolicy = policy("mydbus", DBUS)
++    mypolicy.set_program("/usr/libexec/mydbus")
++    mypolicy.set_in_tcp(1, 0, 0, "513")
++    mypolicy.set_in_udp(1, 0, 0, "1513")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_tmp(True)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    print mypolicy.generate(tmpdir)
++
++    mypolicy = policy("myxuser", XUSER)
++    mypolicy.set_in_tcp(1, 1, 1, "28920")
++    mypolicy.set_in_udp(0, 0, 1, "1513")
++    mypolicy.set_transition_domains(["mozilla"])
++    print mypolicy.generate(tmpdir)
++    
++    mypolicy = policy("myuser", USER)
++    mypolicy.set_program("/usr/bin/myuser")
++    mypolicy.set_in_tcp(1, 0, 0, "513")
++    mypolicy.set_in_udp(1, 0, 0, "1513")
++    mypolicy.set_use_uid(True)
++    mypolicy.set_use_tmp(True)
++    mypolicy.set_use_syslog(True)
++    mypolicy.set_use_pam(True)
++    mypolicy.add_file("/var/lib/myuser/myuser.sock")
++    mypolicy.set_out_tcp(0,"8000")
++    mypolicy.set_transition_users(["unconfined_u", "staff_u"])
++    print mypolicy.generate(tmpdir)
++    
++    mypolicy = policy("mysandbox", SANDBOX)
++    mypolicy.set_out_udp(0, "993")
++    print mypolicy.generate("/tmp")
++
++    mypolicy = policy("mydbadm", RUSER)
++    mypolicy.set_admin_domains(["postgresql", "mysql"])
++    print mypolicy.generate(tmpdir)
++    os.chdir(tmpdir)
++    rc, output=commands.getstatusoutput("make -f /usr/share/selinux/devel/Makefile")
++    print output
++    sys.exit(os.WEXITSTATUS(rc))
++
++import os, sys, getopt, socket, random, fcntl
++    
++def usage(msg):
++    print _("""
++%s
++
++sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]
++valid Types:
++""") % msg
++    keys=poltype.keys()
++    for i in keys:
++        print "\t%s\t%s" % (i, poltype[i])
++    sys.exit(-1)
++        
++if __name__ == '__main__':
++    setype = DAEMON
++    name = None
++    try:
++        gopts, cmds = getopt.getopt(sys.argv[1:], "ht:mn:", 
++                                    ["type=", 
++                                     "mount",
++                                     "test",
++                                     "name=",
++                                     "help"])
++        for o, a in gopts:
++            if o == "-t" or o == "--type":
++                try:
++                    if int(a) not in poltype:
++                        usage ("invalid type %s" % a )
++                except:
++                    usage ("invalid type %s" % a )
++
++                setype = int(a)
++
++            if o == "-m" or o == "--mount":
++                mount_ind = True
++                
++            if o == "-n" or o == "--name":
++                name = a
++                
++            if o == "-h" or o == "--help":
++                usage("")
++
++            if o == "--test":
++                test()
++                sys.exit(0)
++            
++    except getopt.error, error:
++        usage(_("Options Error %s ") % error.msg)
++
++    if len(cmds) == 0:
++           usage(_("Executable or Name required"))
++
++    try:
++        if not name:
++            name = os.path.basename(cmds[0]).replace("-","_")
++        cmd = cmds[0]
++        mypolicy = policy(name, setype)
++        if setype not in USERS +  [ SANDBOX ]:
++            mypolicy.set_program(cmd)
++
++        if setype in APPLICATIONS:
++            mypolicy.gen_writeable()
++            mypolicy.gen_symbols()
++        print mypolicy.generate()
++        sys.exit(0)
++    except ValueError, e:
++        usage(e)
+diff --git a/policycoreutils/gui/polgengui.py b/policycoreutils/gui/polgengui.py
+new file mode 100644
+index 0000000..cba0611
+--- /dev/null
++++ b/policycoreutils/gui/polgengui.py
+@@ -0,0 +1,750 @@
++#!/usr/bin/python -Es
++#
++# polgengui.py - GUI for SELinux Config tool in system-config-selinux
++#
++# Dan Walsh <dwalsh@redhat.com>
++#
++# Copyright (C) 2007-2011 Red Hat 
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
++import signal
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import gnome
++import sys
++import polgen
++import re
++
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++gnome.program_init("SELinux Policy Generation Tool", "5")
++
++version = "1.0"
++
++sys.path.append('/usr/share/system-config-selinux')
++sys.path.append('.')
++
++# From John Hunter http://www.daa.com.au/pipermail/pygtk/2003-February/004454.html
++def foreach(model, path, iter, selected):
++    selected.append(model.get_value(iter, 0))
++
++##
++## Pull in the Glade file
++##
++if os.access("polgen.glade", os.F_OK):
++    xml = gtk.glade.XML ("polgen.glade", domain=PROGNAME)
++else:
++    xml = gtk.glade.XML ("/usr/share/system-config-selinux/polgen.glade", domain=PROGNAME)
++
++FILE = 1
++DIR = 2
++
++class childWindow:
++    START_PAGE = 0
++    SELECT_TYPE_PAGE = 0
++    APP_PAGE = 1
++    EXISTING_USER_PAGE = 2
++    TRANSITION_PAGE = 3
++    USER_TRANSITION_PAGE = 4
++    ADMIN_PAGE = 5
++    ROLE_PAGE = 6
++    IN_NET_PAGE = 7
++    OUT_NET_PAGE = 8
++    COMMON_APPS_PAGE = 9
++    FILES_PAGE = 10
++    BOOLEAN_PAGE = 11
++    SELECT_DIR_PAGE = 12
++    FINISH_PAGE = 12
++
++    def __init__(self):
++        self.xml = xml
++        self.notebook = xml.get_widget ("notebook")
++        self.label_dict = {}
++        self.tooltip_dict = {}
++        label = xml.get_widget ("select_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_user_roles_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_dir_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_domain_admin_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_in_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_out_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_common_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_manages_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("select_booleans_label")
++        self.label_dict[label] = label.get_text()
++
++        label = xml.get_widget ("existing_user_treeview")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("transition_treeview")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_tcp_all_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_tcp_reserved_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_tcp_unreserved_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_tcp_entry")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_udp_all_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_udp_reserved_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_udp_unreserved_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("in_udp_entry")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("out_tcp_entry")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("out_udp_entry")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("out_tcp_all_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("out_udp_all_checkbutton")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("boolean_treeview")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        label = xml.get_widget ("write_treeview")
++        self.tooltip_dict[label] = label.get_tooltip_text()
++
++        try:
++            self.all_types = polgen.get_all_types()
++            self.all_modules = polgen.get_all_modules()
++            self.all_roles = polgen.get_all_roles()
++            self.all_users = polgen.get_all_users()
++        except RuntimeError, e:
++            self.all_types = []
++            self.all_modules = []
++            self.all_roles = []
++            self.all_users = []
++            self.error(str(e))
++
++        self.name=""
++        xml.signal_connect("on_delete_clicked", self.delete)
++        xml.signal_connect("on_delete_boolean_clicked", self.delete_boolean)
++        xml.signal_connect("on_exec_select_clicked", self.exec_select)
++        xml.signal_connect("on_init_script_select_clicked", self.init_script_select)
++        xml.signal_connect("on_add_clicked", self.add)
++        xml.signal_connect("on_add_boolean_clicked", self.add_boolean)
++        xml.signal_connect("on_add_dir_clicked", self.add_dir)
++        xml.signal_connect("on_about_clicked", self.on_about_clicked)
++        xml.get_widget ("cancel_button").connect("clicked",self.quit)
++        self.forward_button = xml.get_widget ("forward_button")
++        self.forward_button.connect("clicked",self.forward)
++        self.back_button = xml.get_widget ("back_button")
++        self.back_button.connect("clicked",self.back)
++
++        self.boolean_dialog = xml.get_widget ("boolean_dialog")
++        self.boolean_name_entry = xml.get_widget ("boolean_name_entry")
++        self.boolean_description_entry = xml.get_widget ("boolean_description_entry")
++
++        self.pages={}
++        for i in polgen.USERS:
++            self.pages[i] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.TRANSITION_PAGE, self.ROLE_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
++        self.pages[polgen.RUSER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE,  self.ADMIN_PAGE, self.USER_TRANSITION_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
++        self.pages[polgen.LUSER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.TRANSITION_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
++        self.pages[polgen.SANDBOX] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE]
++        self.pages[polgen.EUSER] = [ self.SELECT_TYPE_PAGE, self.EXISTING_USER_PAGE, self.TRANSITION_PAGE, self.ROLE_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
++
++        for i in polgen.APPLICATIONS:
++            self.pages[i] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.COMMON_APPS_PAGE, self.FILES_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE]
++        self.pages[polgen.USER] = [ self.SELECT_TYPE_PAGE, self.APP_PAGE, self.USER_TRANSITION_PAGE, self.IN_NET_PAGE, self.OUT_NET_PAGE, self.COMMON_APPS_PAGE, self.FILES_PAGE, self.BOOLEAN_PAGE, self.SELECT_DIR_PAGE ]
++        
++        self.current_page = 0
++        self.back_button.set_sensitive(0)
++
++        self.network_buttons = {}
++
++        self.in_tcp_all_checkbutton = xml.get_widget ("in_tcp_all_checkbutton")
++        self.in_tcp_reserved_checkbutton = xml.get_widget ("in_tcp_reserved_checkbutton")
++        self.in_tcp_unreserved_checkbutton = xml.get_widget ("in_tcp_unreserved_checkbutton")
++        self.in_tcp_entry = self.xml.get_widget("in_tcp_entry")
++        self.network_buttons[self.in_tcp_all_checkbutton] = [ self.in_tcp_reserved_checkbutton, self.in_tcp_unreserved_checkbutton, self.in_tcp_entry ]
++
++
++        self.out_tcp_all_checkbutton = xml.get_widget ("out_tcp_all_checkbutton")
++        self.out_tcp_reserved_checkbutton = xml.get_widget ("out_tcp_reserved_checkbutton")
++        self.out_tcp_unreserved_checkbutton = xml.get_widget ("out_tcp_unreserved_checkbutton")
++        self.out_tcp_entry = self.xml.get_widget("out_tcp_entry")
++
++        self.network_buttons[self.out_tcp_all_checkbutton] = [ self.out_tcp_entry ]
++
++        self.in_udp_all_checkbutton = xml.get_widget ("in_udp_all_checkbutton")
++        self.in_udp_reserved_checkbutton = xml.get_widget ("in_udp_reserved_checkbutton")
++        self.in_udp_unreserved_checkbutton = xml.get_widget ("in_udp_unreserved_checkbutton")
++        self.in_udp_entry = self.xml.get_widget("in_udp_entry")
++
++        self.network_buttons[self.in_udp_all_checkbutton] = [ self.in_udp_reserved_checkbutton, self.in_udp_unreserved_checkbutton, self.in_udp_entry ]
++
++        self.out_udp_all_checkbutton = xml.get_widget ("out_udp_all_checkbutton")
++        self.out_udp_entry = self.xml.get_widget("out_udp_entry")
++        self.network_buttons[self.out_udp_all_checkbutton] = [ self.out_udp_entry ]
++
++        for b in self.network_buttons.keys():
++            b.connect("clicked",self.network_all_clicked)
++
++        self.boolean_treeview = self.xml.get_widget("boolean_treeview")
++        self.boolean_store = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_STRING)
++        self.boolean_treeview.set_model(self.boolean_store)
++        self.boolean_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Name"), gtk.CellRendererText(), text = 0)
++        self.boolean_treeview.append_column(col)
++        col = gtk.TreeViewColumn(_("Description"), gtk.CellRendererText(), text = 1)
++        self.boolean_treeview.append_column(col)
++
++        self.role_treeview = self.xml.get_widget("role_treeview")
++        self.role_store = gtk.ListStore(gobject.TYPE_STRING)
++        self.role_treeview.set_model(self.role_store)
++        self.role_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
++        self.role_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Role"), gtk.CellRendererText(), text = 0)
++        self.role_treeview.append_column(col)
++
++        self.existing_user_treeview = self.xml.get_widget("existing_user_treeview")
++        self.existing_user_store = gtk.ListStore(gobject.TYPE_STRING)
++        self.existing_user_treeview.set_model(self.existing_user_store)
++        self.existing_user_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Existing_User"), gtk.CellRendererText(), text = 0)
++        self.existing_user_treeview.append_column(col)
++
++        for i in self.all_roles:
++            iter = self.role_store.append()
++            self.role_store.set_value(iter, 0, i[:-2])
++
++        self.in_tcp_reserved_checkbutton = xml.get_widget ("in_tcp_reserved_checkbutton")
++
++        self.transition_treeview = self.xml.get_widget("transition_treeview")
++        self.transition_store = gtk.ListStore(gobject.TYPE_STRING)
++        self.transition_treeview.set_model(self.transition_store)
++        self.transition_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
++        self.transition_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
++        self.transition_treeview.append_column(col)
++
++        self.user_transition_treeview = self.xml.get_widget("user_transition_treeview")
++        self.user_transition_store = gtk.ListStore(gobject.TYPE_STRING)
++        self.user_transition_treeview.set_model(self.user_transition_store)
++        self.user_transition_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
++        self.user_transition_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
++        self.user_transition_treeview.append_column(col)
++
++        for i in self.all_users:
++            iter = self.user_transition_store.append()
++            self.user_transition_store.set_value(iter, 0, i[:-2])
++            iter = self.existing_user_store.append()
++            self.existing_user_store.set_value(iter, 0, i[:-2])
++
++        self.admin_treeview = self.xml.get_widget("admin_treeview")
++        self.admin_store = gtk.ListStore(gobject.TYPE_STRING)
++        self.admin_treeview.set_model(self.admin_store)
++        self.admin_treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE)
++        self.admin_store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++        col = gtk.TreeViewColumn(_("Application"), gtk.CellRendererText(), text = 0)
++        self.admin_treeview.append_column(col)
++
++        for i in polgen.methods:
++            m = re.findall("(.*)%s" % polgen.USER_TRANSITION_INTERFACE, i) 
++            if len(m) > 0:
++                if "%s_exec_t" % m[0] in self.all_types:
++                    iter = self.transition_store.append()
++                    self.transition_store.set_value(iter, 0, m[0])
++                continue
++
++            m = re.findall("(.*)%s" % polgen.ADMIN_TRANSITION_INTERFACE, i) 
++            if len(m) > 0:
++                iter = self.admin_store.append()
++                self.admin_store.set_value(iter, 0, m[0])
++                continue
++        
++    def confine_application(self):
++        return self.get_type() in polgen.APPLICATIONS
++
++    def forward(self, arg):
++        type = self.get_type()
++        if self.current_page == self.START_PAGE:
++            self.back_button.set_sensitive(1)
++
++        if self.pages[type][self.current_page] == self.SELECT_TYPE_PAGE:
++            if self.on_select_type_page_next():
++                return
++
++        if self.pages[type][self.current_page] == self.IN_NET_PAGE:
++            if self.on_in_net_page_next():
++                return
++
++        if self.pages[type][self.current_page] == self.OUT_NET_PAGE:
++            if self.on_out_net_page_next():
++                return
++
++        if self.pages[type][self.current_page] == self.APP_PAGE:
++            if self.on_name_page_next():
++                return
++
++        if self.pages[type][self.current_page] == self.EXISTING_USER_PAGE:
++            if self.on_existing_user_page_next():
++                return
++
++        if self.pages[type][self.current_page] == self.SELECT_DIR_PAGE:
++            outputdir = self.output_entry.get_text()
++            if not os.path.isdir(outputdir):
++                self.error(_("%s must be a directory") % outputdir )
++                return False
++
++        if self.pages[type][self.current_page] == self.FINISH_PAGE:
++            self.generate_policy()
++            self.xml.get_widget ("cancel_button").set_label(gtk.STOCK_CLOSE)
++        else:
++            self.current_page = self.current_page + 1
++            self.notebook.set_current_page(self.pages[type][self.current_page])
++            if self.pages[type][self.current_page] == self.FINISH_PAGE:
++                self.forward_button.set_label(gtk.STOCK_APPLY)
++        
++    def back(self,arg):
++        type = self.get_type()
++        if self.pages[type][self.current_page] == self.FINISH_PAGE:
++            self.forward_button.set_label(gtk.STOCK_GO_FORWARD)
++
++        self.current_page = self.current_page - 1 
++        self.notebook.set_current_page(self.pages[type][self.current_page])
++        if self.pages[type][self.current_page] == self.START_PAGE:
++            self.back_button.set_sensitive(0)
++        
++    def network_all_clicked(self, button):
++        active = button.get_active()
++        for b in self.network_buttons[button]:
++            b.set_sensitive(not active)
++        
++    def verify(self, message, title="" ):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
++                                gtk.BUTTONS_YES_NO,
++                                message)
++        dlg.set_title(title)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        rc = dlg.run()
++        dlg.destroy()
++        return rc
++
++    def info(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
++                                gtk.BUTTONS_OK,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        dlg.run()
++        dlg.destroy()
++
++    def error(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
++                                gtk.BUTTONS_CLOSE,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        dlg.run()
++        dlg.destroy()
++
++    def get_name(self):
++        if self.existing_user_radiobutton.get_active():
++            store, iter = self.existing_user_treeview.get_selection().get_selected()
++            if iter == None:
++                raise ValueError(_("You must select a user"))
++            return store.get_value(iter, 0)
++        else:
++            return self.name_entry.get_text()
++
++    def get_type(self):
++        if self.sandbox_radiobutton.get_active():
++            return polgen.SANDBOX
++        if self.cgi_radiobutton.get_active():
++            return polgen.CGI
++        if self.user_radiobutton.get_active():
++            return polgen.USER
++        if self.init_radiobutton.get_active():
++            return polgen.DAEMON
++        if self.dbus_radiobutton.get_active():
++            return polgen.DBUS
++        if self.inetd_radiobutton.get_active():
++            return polgen.INETD
++        if self.login_user_radiobutton.get_active():
++            return polgen.LUSER
++        if self.admin_user_radiobutton.get_active():
++            return polgen.AUSER
++        if self.xwindows_user_radiobutton.get_active():
++            return polgen.XUSER
++        if self.terminal_user_radiobutton.get_active():
++            return polgen.TUSER
++        if self.root_user_radiobutton.get_active():
++            return polgen.RUSER
++        if self.existing_user_radiobutton.get_active():
++            return polgen.EUSER
++
++    def generate_policy(self, *args):
++        outputdir = self.output_entry.get_text()
++        try:
++            my_policy=polgen.policy(self.get_name(), self.get_type())
++
++            iter= self.boolean_store.get_iter_first()
++            while(iter):
++                my_policy.add_boolean(self.boolean_store.get_value(iter, 0), self.boolean_store.get_value(iter, 1))
++                iter= self.boolean_store.iter_next(iter)
++
++            if self.get_type() in polgen.APPLICATIONS:
++                my_policy.set_program(self.exec_entry.get_text())
++                my_policy.gen_symbols()
++
++                my_policy.set_use_syslog(self.syslog_checkbutton.get_active() == 1)
++                my_policy.set_use_tmp(self.tmp_checkbutton.get_active() == 1)
++                my_policy.set_use_uid(self.uid_checkbutton.get_active() == 1)
++                my_policy.set_use_pam(self.pam_checkbutton.get_active() == 1)
++
++                my_policy.set_use_dbus(self.dbus_checkbutton.get_active() == 1)
++                my_policy.set_use_audit(self.audit_checkbutton.get_active() == 1)
++                my_policy.set_use_terminal(self.terminal_checkbutton.get_active() == 1)
++                my_policy.set_use_mail(self.mail_checkbutton.get_active() == 1)
++                if self.get_type() is polgen.DAEMON:
++                    my_policy.set_init_script(self.init_script_entry.get_text())
++                if self.get_type() == polgen.USER:
++                    selected = []
++                    self.user_transition_treeview.get_selection().selected_foreach(foreach, selected)
++                    my_policy.set_transition_users(selected)
++            else:
++                if self.get_type() == polgen.RUSER:
++                    selected = []
++                    self.admin_treeview.get_selection().selected_foreach(foreach, selected)
++                    my_policy.set_admin_domains(selected)
++                    selected = []
++                    self.user_transition_treeview.get_selection().selected_foreach(foreach, selected)
++                    my_policy.set_transition_users(selected)
++                else:
++                    selected = []
++                    self.transition_treeview.get_selection().selected_foreach(foreach, selected)
++                    my_policy.set_transition_domains(selected)
++                
++                    selected = []
++                    self.role_treeview.get_selection().selected_foreach(foreach, selected)
++                    my_policy.set_admin_roles(selected)
++
++            my_policy.set_in_tcp(self.in_tcp_all_checkbutton.get_active(), self.in_tcp_reserved_checkbutton.get_active(), self.in_tcp_unreserved_checkbutton.get_active(), self.in_tcp_entry.get_text())
++            my_policy.set_in_udp(self.in_udp_all_checkbutton.get_active(), self.in_udp_reserved_checkbutton.get_active(), self.in_udp_unreserved_checkbutton.get_active(), self.in_udp_entry.get_text())
++            my_policy.set_out_tcp(self.out_tcp_all_checkbutton.get_active(), self.out_tcp_entry.get_text())
++            my_policy.set_out_udp(self.out_udp_all_checkbutton.get_active(), self.out_udp_entry.get_text())
++                
++            iter= self.store.get_iter_first()
++            while(iter):
++                if self.store.get_value(iter, 1) == FILE:
++                    my_policy.add_file(self.store.get_value(iter, 0))
++                else:
++                    my_policy.add_dir(self.store.get_value(iter, 0))
++                iter= self.store.iter_next(iter)
++                
++            self.info(my_policy.generate(outputdir))
++            return False
++        except ValueError, e:
++            self.error(e.message)
++        
++    def delete(self, args):
++        store, iter = self.view.get_selection().get_selected()
++        if iter != None:
++            store.remove(iter)
++            self.view.get_selection().select_path ((0,))
++
++    def delete_boolean(self, args):
++        store, iter = self.boolean_treeview.get_selection().get_selected()
++        if iter != None:
++            store.remove(iter)
++            self.boolean_treeview.get_selection().select_path ((0,))
++
++    def add_boolean(self,type):
++        self.boolean_name_entry.set_text("")
++        self.boolean_description_entry.set_text("")
++        rc = self.boolean_dialog.run()
++        self.boolean_dialog.hide()
++        if rc == gtk.RESPONSE_CANCEL:
++            return
++        iter = self.boolean_store.append()
++        self.boolean_store.set_value(iter, 0, self.boolean_name_entry.get_text())
++        self.boolean_store.set_value(iter, 1, self.boolean_description_entry.get_text())
++        
++    def __add(self,type):
++        rc = self.file_dialog.run()
++        self.file_dialog.hide()
++        if rc == gtk.RESPONSE_CANCEL:
++            return
++        for i in self.file_dialog.get_filenames():
++            iter = self.store.append()
++            self.store.set_value(iter, 0, i)
++            self.store.set_value(iter, 1, type)
++        
++    def exec_select(self, args):
++        self.file_dialog.set_select_multiple(0)
++        self.file_dialog.set_title(_("Select executable file to be confined."))
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
++        self.file_dialog.set_current_folder("/usr/sbin")
++        rc = self.file_dialog.run()
++        self.file_dialog.hide()
++        if rc == gtk.RESPONSE_CANCEL:
++            return
++        self.exec_entry.set_text(self.file_dialog.get_filename())
++
++    def init_script_select(self, args):
++        self.file_dialog.set_select_multiple(0)
++        self.file_dialog.set_title(_("Select init script file to be confined."))
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
++        self.file_dialog.set_current_folder("/etc/rc.d/init.d")
++        rc = self.file_dialog.run()
++        self.file_dialog.hide()
++        if rc == gtk.RESPONSE_CANCEL:
++            return
++        self.init_script_entry.set_text(self.file_dialog.get_filename())
++
++    def add(self, args):
++        self.file_dialog.set_title(_("Select file(s) that confined application creates or writes"))
++        self.file_dialog.set_current_folder("/")
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_OPEN)
++        self.file_dialog.set_select_multiple(1)
++        self.__add(FILE)
++
++    def add_dir(self, args):
++        self.file_dialog.set_title(_("Select directory(s) that the confined application owns and writes into"))
++        self.file_dialog.set_current_folder("/")
++        self.file_dialog.set_select_multiple(1)
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER)
++        self.__add(DIR)
++        
++    def on_about_clicked(self, args):
++        dlg = xml.get_widget ("about_dialog")
++        dlg.run ()
++        dlg.hide ()
++
++    def quit(self, args):
++        gtk.main_quit()
++
++    def setupScreen(self):
++        # Bring in widgets from glade file.
++        self.mainWindow = self.xml.get_widget("main_window")
++        self.druid = self.xml.get_widget("druid")
++        self.type = 0
++        self.name_entry = self.xml.get_widget("name_entry")
++        self.name_entry.connect("insert_text",self.on_name_entry_changed)
++        self.name_entry.connect("focus_out_event",self.on_focus_out_event)
++        self.exec_entry = self.xml.get_widget("exec_entry")
++        self.exec_button = self.xml.get_widget("exec_button")
++        self.init_script_entry = self.xml.get_widget("init_script_entry")
++        self.init_script_button = self.xml.get_widget("init_script_button")
++        self.output_entry = self.xml.get_widget("output_entry")
++        self.output_entry.set_text(os.getcwd())
++        self.xml.get_widget("output_button").connect("clicked",self.output_button_clicked)
++        
++        self.xwindows_user_radiobutton = self.xml.get_widget("xwindows_user_radiobutton")
++        self.terminal_user_radiobutton = self.xml.get_widget("terminal_user_radiobutton")
++        self.root_user_radiobutton = self.xml.get_widget("root_user_radiobutton")
++        self.login_user_radiobutton = self.xml.get_widget("login_user_radiobutton")
++        self.admin_user_radiobutton = self.xml.get_widget("admin_user_radiobutton")
++        self.existing_user_radiobutton = self.xml.get_widget("existing_user_radiobutton")
++
++        self.user_radiobutton = self.xml.get_widget("user_radiobutton")
++        self.init_radiobutton = self.xml.get_widget("init_radiobutton")
++        self.inetd_radiobutton = self.xml.get_widget("inetd_radiobutton")
++        self.dbus_radiobutton = self.xml.get_widget("dbus_radiobutton")
++        self.cgi_radiobutton = self.xml.get_widget("cgi_radiobutton")
++        self.sandbox_radiobutton = self.xml.get_widget("sandbox_radiobutton")
++        self.tmp_checkbutton = self.xml.get_widget("tmp_checkbutton")
++        self.uid_checkbutton = self.xml.get_widget("uid_checkbutton")
++        self.pam_checkbutton = self.xml.get_widget("pam_checkbutton")
++        self.dbus_checkbutton = self.xml.get_widget("dbus_checkbutton")
++        self.audit_checkbutton = self.xml.get_widget("audit_checkbutton")
++        self.terminal_checkbutton = self.xml.get_widget("terminal_checkbutton")
++        self.mail_checkbutton = self.xml.get_widget("mail_checkbutton")
++        self.syslog_checkbutton = self.xml.get_widget("syslog_checkbutton")
++        self.view = self.xml.get_widget("write_treeview")
++        self.file_dialog = self.xml.get_widget("filechooserdialog")
++
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_INT)
++        self.view.set_model(self.store)
++        col = gtk.TreeViewColumn("",  gtk.CellRendererText(), text = 0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.view.get_selection().select_path ((0,))
++
++    def output_button_clicked(self, *args):
++        self.file_dialog.set_title(_("Select directory to generate policy files in"))
++        self.file_dialog.set_action(gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER)
++        self.file_dialog.set_select_multiple(0)
++        rc = self.file_dialog.run()
++        self.file_dialog.hide()
++        if rc == gtk.RESPONSE_CANCEL:
++            return
++        self.output_entry.set_text(self.file_dialog.get_filename())
++        
++    def on_name_entry_changed(self, entry, text, size, position):
++        if text.find(" ") >= 0:
++            entry.emit_stop_by_name("insert_text")
++            
++    def on_focus_out_event(self, entry, third):
++        name = entry.get_text()
++        if self.name != name:
++            if name in self.all_types:
++                if self.verify(_("Type %s_t already defined in current policy.\nDo you want to continue?") % name, _("Verify Name")) == gtk.RESPONSE_NO:
++                    entry.set_text("")
++                    return False
++            if name in self.all_modules:
++                if self.verify(_("Module %s.pp already loaded in current policy.\nDo you want to continue?") % name, _("Verify Name")) == gtk.RESPONSE_NO:
++                    entry.set_text("")
++                    return False
++
++            file = "/etc/rc.d/init.d/" + name
++            if os.path.isfile(file) and self.init_script_entry.get_text() == "":
++                self.init_script_entry.set_text(file)
++                
++            file = "/usr/sbin/" + name
++            if os.path.isfile(file) and self.exec_entry.get_text() == "":
++                self.exec_entry.set_text(file)
++
++        self.name = name
++        return False
++
++    def on_in_net_page_next(self, *args):
++        try:
++            polgen.verify_ports(self.in_tcp_entry.get_text())
++            polgen.verify_ports(self.in_udp_entry.get_text())
++        except ValueError, e:
++            self.error(e.message)
++            return True
++        
++    def on_out_net_page_next(self, *args):
++        try:
++            polgen.verify_ports(self.out_tcp_entry.get_text())
++            polgen.verify_ports(self.out_udp_entry.get_text())
++        except ValueError, e:
++            self.error(e.message)
++            return True
++        
++    def on_select_type_page_next(self, *args):
++        self.exec_entry.set_sensitive(self.confine_application())
++        self.exec_button.set_sensitive(self.confine_application())
++        self.init_script_entry.set_sensitive(self.init_radiobutton.get_active())
++        self.init_script_button.set_sensitive(self.init_radiobutton.get_active())
++
++    def on_existing_user_page_next(self, *args):
++        store, iter = self.view.get_selection().get_selected()
++        if iter != None:
++            self.error(_("You must select a user"))
++            return True
++        
++    def on_name_page_next(self, *args):
++        name=self.name_entry.get_text()
++        if not name.isalnum():
++            self.error(_("You must add a name made up of letters and numbers and containing no spaces."))
++            return True
++        
++        for i in self.label_dict:
++            text = '<b>%s</b>' % (self.label_dict[i] % ("'" + name + "'"))
++            i.set_markup(text)
++
++        for i in self.tooltip_dict:
++            text = self.tooltip_dict[i] % ("'" + name + "'")
++            i.set_tooltip_text(text)
++
++        if self.confine_application():
++            exe = self.exec_entry.get_text()
++            if exe == "":
++                self.error(_("You must enter a executable"))
++                return True
++            policy=polgen.policy(name, self.get_type())
++            policy.set_program(exe)
++            policy.gen_writeable()
++            policy.gen_symbols()
++            for f in policy.files.keys():
++                iter = self.store.append()
++                self.store.set_value(iter, 0, f)
++                self.store.set_value(iter, 1, FILE)
++                
++            for f in policy.dirs.keys():
++                iter = self.store.append()
++                self.store.set_value(iter, 0, f)
++                self.store.set_value(iter, 1, DIR)
++            self.tmp_checkbutton.set_active(policy.use_tmp)
++            self.uid_checkbutton.set_active(policy.use_uid)
++            self.pam_checkbutton.set_active(policy.use_pam)
++            self.dbus_checkbutton.set_active(policy.use_dbus)
++            self.audit_checkbutton.set_active(policy.use_audit)
++            self.terminal_checkbutton.set_active(policy.use_terminal)
++            self.mail_checkbutton.set_active(policy.use_mail)
++            self.syslog_checkbutton.set_active(policy.use_syslog)
++
++    def stand_alone(self):
++        desktopName = _("Configue SELinux")
++
++        self.setupScreen()
++        self.mainWindow.connect("destroy", self.quit)
++
++        self.mainWindow.show_all()
++        gtk.main()
++
++if __name__ == "__main__":
++    signal.signal (signal.SIGINT, signal.SIG_DFL)
++
++    app = childWindow()
++    app.stand_alone()
+diff --git a/policycoreutils/gui/portsPage.py b/policycoreutils/gui/portsPage.py
+new file mode 100644
+index 0000000..d5daffb
+--- /dev/null
++++ b/policycoreutils/gui/portsPage.py
+@@ -0,0 +1,259 @@
++## portsPage.py - show selinux mappings
++## Copyright (C) 2006 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import seobject
++import commands
++from semanagePage import *;
++
++##
++## I18N
++## 
++PROGNAME = "policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++TYPE_COL = 0
++PROTOCOL_COL = 1
++MLS_COL = 2
++PORT_COL = 3
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class portsPage(semanagePage):
++    def __init__(self, xml):
++        semanagePage.__init__(self, xml, "ports", _("Network Port"))
++        xml.signal_connect("on_group_clicked", self.on_group_clicked)
++        self.group = False
++        self.ports_filter = xml.get_widget("portsFilterEntry")
++        self.ports_filter.connect("focus_out_event", self.filter_changed)
++        self.ports_filter.connect("activate", self.filter_changed)
++        self.ports_name_entry = xml.get_widget("portsNameEntry")
++        self.ports_protocol_combo = xml.get_widget("portsProtocolCombo")
++        self.ports_number_entry = xml.get_widget("portsNumberEntry")
++        self.ports_mls_entry = xml.get_widget("portsMLSEntry")
++        self.ports_add_button = xml.get_widget("portsAddButton")
++        self.ports_properties_button = xml.get_widget("portsPropertiesButton")
++        self.ports_delete_button = xml.get_widget("portsDeleteButton")
++        liststore = self.ports_protocol_combo.get_model()
++        iter = liststore.get_iter_first()
++        self.ports_protocol_combo.set_active_iter(iter)
++        self.init_store()
++        self.edit = True
++        self.load()
++
++    def filter_changed(self, *arg):
++        filter =  arg[0].get_text()
++        if filter != self.filter:
++            if self.edit:
++                self.load(filter)
++            else:
++                self.group_load(filter)
++        
++    def init_store(self):
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING , gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++
++        self.view.set_search_equal_func(self.search)
++        col = gtk.TreeViewColumn(_("SELinux Port\nType"), gtk.CellRendererText(), text = TYPE_COL)
++        col.set_sort_column_id(TYPE_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.store.set_sort_column_id(TYPE_COL, gtk.SORT_ASCENDING)
++
++        col = gtk.TreeViewColumn(_("Protocol"), gtk.CellRendererText(), text = PROTOCOL_COL)
++        col.set_sort_column_id(PROTOCOL_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        self.mls_col = gtk.TreeViewColumn(_("MLS/MCS\nLevel"), gtk.CellRendererText(), text = MLS_COL)
++        self.mls_col.set_resizable(True)
++        self.mls_col.set_sort_column_id(MLS_COL)
++        self.view.append_column(self.mls_col)
++
++        col = gtk.TreeViewColumn(_("Port"), gtk.CellRendererText(), text = PORT_COL)
++        col.set_sort_column_id(PORT_COL)
++        col.set_resizable(True)
++        self.view.append_column(col)
++        self.store.set_sort_func(PORT_COL,self.sort_int, "")
++
++    def sort_int(self, treemodel, iter1, iter2, user_data):
++        try:
++            p1 = int(treemodel.get_value(iter1,PORT_COL).split('-')[0])
++            p2 = int(treemodel.get_value(iter2,PORT_COL).split('-')[0])
++            if p1 > p2:
++                return 1
++            if p1 == p2:
++                return 0
++            return -1
++        except:
++            return 0
++
++    def load(self,filter = ""):
++        self.filter=filter            
++        self.port = seobject.portRecords()
++        dict = self.port.get_all(self.local)
++        keys = dict.keys()
++        keys.sort()
++        self.store.clear()
++        for k in keys:
++            if not (self.match(str(k[0]), filter) or self.match(dict[k][0], filter) or self.match(k[2], filter) or self.match(dict[k][1], filter) or self.match(dict[k][1], filter)):
++                continue
++            iter = self.store.append()
++            if k[0] == k[1]:
++                self.store.set_value(iter, PORT_COL, k[0])
++            else:
++                rec = "%s-%s" % k[:2]
++                self.store.set_value(iter, PORT_COL, rec)
++            self.store.set_value(iter, TYPE_COL, dict[k][0])
++            self.store.set_value(iter, PROTOCOL_COL, k[2])
++            self.store.set_value(iter, MLS_COL, dict[k][1])
++        self.view.get_selection().select_path ((0,))
++    
++    def group_load(self, filter = ""):
++        self.filter=filter            
++        self.port = seobject.portRecords()
++        dict = self.port.get_all_by_type(self.local)
++        keys = dict.keys()
++        keys.sort()
++        self.store.clear()
++        for k in keys:
++            ports_string = ", ".join(dict[k])
++            if not (self.match(ports_string, filter) or self.match(k[0], filter) or self.match(k[1], filter) ):
++                continue
++            iter = self.store.append()
++            self.store.set_value(iter, TYPE_COL, k[0])
++            self.store.set_value(iter, PROTOCOL_COL, k[1])
++            self.store.set_value(iter, PORT_COL, ports_string)
++            self.store.set_value(iter, MLS_COL, "")
++        self.view.get_selection().select_path ((0,))
++
++    def propertiesDialog(self):
++        if self.edit:
++            semanagePage.propertiesDialog(self)
++        
++    def dialogInit(self):
++        store, iter = self.view.get_selection().get_selected()
++        self.ports_number_entry.set_text(store.get_value(iter, PORT_COL))
++        self.ports_number_entry.set_sensitive(False)
++        self.ports_protocol_combo.set_sensitive(False)
++        self.ports_name_entry.set_text(store.get_value(iter, TYPE_COL))
++        self.ports_mls_entry.set_text(store.get_value(iter, MLS_COL))
++        protocol = store.get_value(iter, PROTOCOL_COL)
++        liststore = self.ports_protocol_combo.get_model()
++        iter = liststore.get_iter_first()
++        while iter != None and liststore.get_value(iter,0) != protocol:
++            iter = liststore.iter_next(iter)
++        if iter != None:
++            self.ports_protocol_combo.set_active_iter(iter)
++        
++    def dialogClear(self):
++        self.ports_number_entry.set_text("")
++        self.ports_number_entry.set_sensitive(True)
++        self.ports_protocol_combo.set_sensitive(True)
++        self.ports_name_entry.set_text("")
++        self.ports_mls_entry.set_text("s0")
++        
++    def delete(self):
++        store, iter = self.view.get_selection().get_selected()
++        port = store.get_value(iter, PORT_COL)
++        protocol = store.get_value(iter, 1)
++        try:
++            self.wait()            
++            (rc, out) = commands.getstatusoutput("semanage port -d -p %s %s" % (protocol, port))
++            self.ready()
++            if rc != 0:
++                return self.error(out)
++            store.remove(iter)
++            self.view.get_selection().select_path ((0,))
++        except ValueError, e:
++            self.error(e.args[0])
++
++    def add(self):
++        target = self.ports_name_entry.get_text().strip()
++        mls = self.ports_mls_entry.get_text().strip()
++        port_number = self.ports_number_entry.get_text().strip()
++        if port_number == "":
++            port_number = "1"
++        for i in port_number.split("-"):
++            if not i.isdigit():
++                self.error(_("Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 ") % port_number )
++                return False
++        list_model = self.ports_protocol_combo.get_model()
++        iter = self.ports_protocol_combo.get_active_iter()
++        protocol = list_model.get_value(iter,0)
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage port -a -p %s -r %s -t %s %s" % (protocol, mls, target, port_number))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        iter = self.store.append()
++
++        self.store.set_value(iter, TYPE_COL, target)
++        self.store.set_value(iter, PORT_COL, port_number)
++        self.store.set_value(iter, PROTOCOL_COL, protocol)
++        self.store.set_value(iter, MLS_COL, mls)
++        
++    def modify(self):
++        target = self.ports_name_entry.get_text().strip()
++        mls = self.ports_mls_entry.get_text().strip()
++        port_number = self.ports_number_entry.get_text().strip()
++        list_model = self.ports_protocol_combo.get_model()
++        iter = self.ports_protocol_combo.get_active_iter()
++        protocol = list_model.get_value(iter,0)
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage port -m -p %s -r %s -t %s %s" % (protocol, mls, target, port_number))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        store, iter = self.view.get_selection().get_selected()
++        self.store.set_value(iter, TYPE_COL, target)
++        self.store.set_value(iter, PORT_COL, port_number)
++        self.store.set_value(iter, PROTOCOL_COL, protocol)
++        self.store.set_value(iter, MLS_COL, mls)
++
++    def on_group_clicked(self, button):
++        self.ports_add_button.set_sensitive(self.group)
++        self.ports_properties_button.set_sensitive(self.group)
++        self.ports_delete_button.set_sensitive(self.group)
++        self.mls_col.set_visible(self.group)
++
++        self.group = not self.group
++        if self.group:
++            button.set_label(_("List View"))
++            self.group_load(self.filter)
++        else:
++            button.set_label(_("Group View"))
++            self.load(self.filter)
++
++        return True
++        
+diff --git a/policycoreutils/gui/selinux.tbl b/policycoreutils/gui/selinux.tbl
+new file mode 100644
+index 0000000..ed5ca6a
+--- /dev/null
++++ b/policycoreutils/gui/selinux.tbl
+@@ -0,0 +1,234 @@
++acct_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for acct daemon")
++allow_daemons_dump_core _("Admin") _("Allow all daemons to write corefiles to /")
++allow_daemons_use_tty _("Admin") _("Allow all daemons the ability to use unallocated ttys")
++allow_gadmin_exec_content _("User Privs") _("Allow gadmin SELinux user account to execute files in home directory or /tmp")
++allow_guest_exec_content _("User Privs") _("Allow guest SELinux user account to execute files in home directory or /tmp")
++allow_java_execstack _("Memory Protection") _("Allow java executable stack")
++allow_mount_anyfile _("Mount") _("Allow mount to mount any file")
++allow_mounton_anydir  _("Mount") _("Allow mount to mount any directory")
++allow_mplayer_execstack _("Memory Protection") _("Allow mplayer executable stack")
++allow_ssh_keysign _("SSH") _("Allow ssh to run ssh-keysign")
++allow_staff_exec_content _("User Privs") _("Allow staff SELinux user account to execute files in home directory or /tmp")
++allow_sysadm_exec_content _("User Privs") _("Allow sysadm SELinux user account to execute files in home directory or /tmp")
++allow_unconfined_exec_content _("User Privs") _("Allow unconfined SELinux user account to execute files in home directory or /tmp")
++allow_unlabeled_packets _("Network Configuration") _("Allow unlabeled packets to flow on the network")
++allow_user_exec_content _("User Privs") _("Allow user SELinux user account to execute files in home directory or /tmp")
++allow_unconfined_execmem_dyntrans _("Memory Protection") _("Allow unconfined to dyntrans to unconfined_execmem")
++allow_user_mysql_connect _("Databases") _("Allow user to connect to mysql socket")
++allow_user_postgresql_connect _("Databases") _("Allow user to connect to postgres socket")
++allow_write_xshm _("XServer") _("Allow clients to write to X shared memory")
++allow_xguest_exec_content _("User Privs") _("Allow xguest SELinux user account to execute files in home directory or /tmp")
++allow_ypbind _("NIS") _("Allow daemons to run with NIS")
++browser_confine_staff _("Web Applications") _("Transition staff SELinux user to Web Browser Domain")
++browser_confine_sysadm _("Web Applications") _("Transition sysadm SELinux user to Web Browser Domain")
++browser_confine_user _("Web Applications") _("Transition user SELinux user to Web Browser Domain")
++browser_confine_xguest _("Web Applications") _("Transition xguest SELinux user to Web Browser Domain")
++browser_write_staff_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
++browser_write_sysadm_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
++browser_write_user_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
++browser_write_xguest_data _("Web Applications") _("Allow staff Web Browsers to write to home directories")
++amanda_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for amanda")
++amavis_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for amavis")
++apmd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for apmd daemon")
++arpwatch_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for arpwatch daemon")
++auditd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for auditd daemon")
++automount_disable_trans _("Mount") _("Disable SELinux protection for automount daemon")
++avahi_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for avahi")
++bluetooth_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for bluetooth daemon")
++canna_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for canna daemon")
++cardmgr_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cardmgr daemon")
++ccs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for Cluster Server")
++cdrecord_read_content _("User Privs") _("Allow cdrecord to read various content. nfs, samba, removable devices, user temp and untrusted content files")
++ciped_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ciped daemon")
++clamd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clamd daemon")
++clamscan_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clamscan")
++clvmd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for clvmd")
++comsat_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for comsat daemon")
++courier_authdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
++courier_pcp_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
++courier_pop_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
++courier_sqwebmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
++courier_tcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for courier daemon")
++cpucontrol_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cpucontrol daemon")
++cpuspeed_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cpuspeed daemon")
++crond_disable_trans _("Cron") _("Disable SELinux protection for crond daemon")
++cupsd_config_disable_trans _("Printing") _("Disable SELinux protection for cupsd back end server")
++cupsd_disable_trans _("Printing") _("Disable SELinux protection for cupsd daemon")
++cupsd_lpd_disable_trans _("Printing") _("Disable SELinux protection for cupsd_lpd")
++cvs_disable_trans _("CVS") _("Disable SELinux protection for cvs daemon")
++cyrus_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for cyrus daemon")
++dbskkd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dbskkd daemon")
++dbusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dbusd daemon")
++dccd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccd")
++dccifd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccifd")
++dccm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dccm")
++ddt_client_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ddt daemon")
++devfsd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for devfsd daemon")
++dhcpc_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dhcpc daemon")
++dhcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dhcpd daemon")
++dictd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dictd daemon")
++direct_sysadm_daemon _("Admin") _("Allow sysadm_t to directly start daemons")
++disable_evolution_trans _("Web Applications") _("Disable SELinux protection for Evolution")
++disable_games_trans _("Games") _("Disable SELinux protection for games")
++disable_mozilla_trans _("Web Applications") _("Disable SELinux protection for the web browsers")
++disable_thunderbird_trans _("Web Applications") _("Disable SELinux protection for Thunderbird")
++distccd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for distccd daemon")
++dmesg_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dmesg daemon")
++dnsmasq_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dnsmasq daemon")
++dovecot_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for dovecot daemon")
++entropyd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for entropyd daemon")
++fetchmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fetchmail")
++fingerd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fingerd daemon")
++freshclam_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for freshclam daemon")
++fsdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for fsdaemon daemon")
++gpm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for gpm daemon")
++gssd_disable_trans _("NFS") _("Disable SELinux protection for gss daemon")
++hald_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for Hal daemon")
++hide_broken_symptoms _("Compatibility") _("Do not audit things that we know to be broken but which are not security risks")
++hostname_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hostname daemon")
++hotplug_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hotplug daemon")
++howl_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for howl daemon")
++hplip_disable_trans _("Printing") _("Disable SELinux protection for cups hplip daemon")
++httpd_rotatelogs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for httpd rotatelogs")
++httpd_suexec_disable_trans _("HTTPD Service") _("Disable SELinux protection for http suexec")
++hwclock_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for hwclock daemon")
++i18n_input_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for i18n daemon")
++imazesrv_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for imazesrv daemon")
++inetd_child_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for inetd child daemons")
++inetd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for inetd daemon")
++innd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for innd daemon")
++iptables_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for iptables daemon")
++ircd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ircd daemon")
++irqbalance_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for irqbalance daemon")
++iscsid_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for iscsi daemon")
++jabberd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for jabberd daemon")
++kadmind_disable_trans _("Kerberos") _("Disable SELinux protection for kadmind daemon")
++klogd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for klogd daemon")
++krb5kdc_disable_trans _("Kerberos") _("Disable SELinux protection for krb5kdc daemon")
++ktalkd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ktalk daemons")
++kudzu_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for kudzu daemon")
++locate_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for locate daemon")
++lpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lpd daemon")
++lrrd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lrrd daemon")
++lvm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for lvm daemon")
++mailman_mail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mailman")
++mail_read_content _("Web Applications") _("Allow evolution and thunderbird to read user files")
++mdadm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mdadm daemon")
++monopd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for monopd daemon")
++mozilla_read_content _("Web Applications") _("Allow the mozilla browser to read user files")
++mrtg_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for mrtg daemon")
++mysqld_disable_trans _("Databases") _("Disable SELinux protection for mysqld daemon")
++nagios_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nagios daemon")
++named_disable_trans _("Name Service") _("Disable SELinux protection for named daemon")
++nessusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nessusd daemon")
++NetworkManager_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for NetworkManager")
++nfsd_disable_trans _("NFS") _("Disable SELinux protection for nfsd daemon")
++nmbd_disable_trans _("Samba") _("Disable SELinux protection for nmbd daemon")
++nrpe_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nrpe daemon")
++nscd_disable_trans _("Name Service") _("Disable SELinux protection for nscd daemon")
++nsd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for nsd daemon")
++ntpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ntpd daemon")
++oddjob_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for oddjob")
++oddjob_mkhomedir_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for oddjob_mkhomedir")
++openvpn_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for openvpn daemon")
++pam_console_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pam daemon")
++pegasus_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pegasus")
++perdition_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for perdition daemon")
++portmap_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for portmap daemon")
++portslave_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for portslave daemon")
++postfix_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for postfix")
++postgresql_disable_trans _("Databases") _("Disable SELinux protection for postgresql daemon")
++pppd_for_user _("pppd") _("Allow pppd to be run for a regular user")
++pptp_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pptp")
++prelink_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for prelink daemon")
++privoxy_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for privoxy daemon")
++ptal_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ptal daemon")
++pxe_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pxe daemon")
++pyzord_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for pyzord")
++quota_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for quota daemon")
++radiusd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for radiusd daemon")
++radvd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for radvd daemon")
++rdisc_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rdisc")
++readahead_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for readahead")
++read_default_t _("Admin") _("Allow programs to read files in non-standard locations (default_t)")
++restorecond_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for restorecond")
++rhgb_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rhgb daemon")
++ricci_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ricci")
++ricci_modclusterd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ricci_modclusterd")
++rlogind_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rlogind daemon")
++rpcd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rpcd daemon")
++rshd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for rshd")
++rsync_disable_trans _("rsync") _("Disable SELinux protection for rsync daemon")
++run_ssh_inetd _("SSH") _("Allow ssh to run from inetd instead of as a daemon")
++samba_share_nfs _("Samba") _("Allow Samba to share nfs directories")
++allow_saslauthd_read_shadow _("SASL authentication server") _("Allow sasl authentication server to read /etc/shadow")
++allow_xserver_execmem _("XServer") _("Allow X-Windows server to map a memory region as both executable and writable")
++saslauthd_disable_trans _("SASL authentication server") _("Disable SELinux protection for saslauthd daemon")
++scannerdaemon_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for scannerdaemon daemon")
++secure_mode  _("Admin") _("Do not allow transition to sysadm_t, sudo and su effected")
++secure_mode_insmod  _("Admin") _("Do not allow any processes to load kernel modules")
++secure_mode_policyload  _("Admin") _("Do not allow any processes to modify kernel SELinux policy")
++sendmail_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sendmail daemon")
++setrans_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for setrans")
++setroubleshootd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for setroubleshoot daemon")
++slapd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for slapd daemon")
++slrnpull_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for slrnpull daemon")
++smbd_disable_trans _("Samba") _("Disable SELinux protection for smbd daemon")
++snmpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for snmpd daemon")
++snort_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for snort daemon")
++soundd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for soundd daemon")
++sound_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sound daemon")
++spamd_disable_trans _("Spam Protection") _("Disable SELinux protection for spamd daemon")
++spamd_enable_home_dirs _("Spam Protection") _("Allow spamd to access home directories")
++spamassassin_can_network _("Spam Protection") _("Allow Spam Assassin daemon network access")
++speedmgmt_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for speedmgmt daemon")
++squid_connect_any _("Squid") _("Allow squid daemon to connect to the network")
++squid_disable_trans _("Squid") _("Disable SELinux protection for squid daemon")
++ssh_keygen_disable_trans _("SSH") _("Disable SELinux protection for ssh daemon")
++ssh_sysadm_login _("SSH") _("Allow ssh logins as sysadm_r:sysadm_t")
++staff_read_sysadm_file _("Admin") _("Allow staff_r users to search the sysadm home dir and read files (such as ~/.bashrc)")
++stunnel_disable_trans _("Universal SSL tunnel") _("Disable SELinux protection for stunnel daemon")
++stunnel_is_daemon _("Universal SSL tunnel") _("Allow stunnel daemon to run as standalone, outside of xinetd")
++swat_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for swat daemon")
++sxid_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for sxid daemon")
++syslogd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for syslogd daemon")
++system_crond_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for system cron jobs")
++tcpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for tcp daemon")
++telnetd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for telnet daemon")
++tftpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for tftpd daemon")
++transproxy_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for transproxy daemon")
++udev_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for udev daemon")
++uml_switch_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uml daemon")
++unlimitedInetd _("Admin") _("Allow xinetd to run unconfined, including any services it starts that do not have a domain transition explicitly defined")
++unlimitedRC _("Admin") _("Allow rc scripts to run unconfined, including any daemon started by an rc script that does not have a domain transition explicitly defined")
++unlimitedRPM _("Admin") _("Allow rpm to run unconfined")
++unlimitedUtils _("Admin") _("Allow privileged utilities like hotplug and insmod to run unconfined")
++updfstab_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for updfstab daemon")
++uptimed_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uptimed daemon")
++user_canbe_sysadm _("User Privs") _("Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only staff_r can do so")
++user_can_mount _("Mount") _("Allow users to execute the mount command")
++user_direct_mouse _("User Privs") _("Allow regular users direct mouse access (only allow the X server)")
++user_dmesg _("User Privs") _("Allow users to run the dmesg command")
++user_net_control _("User Privs") _("Allow users to control network interfaces (also needs USERCTL=true)")
++user_ping _("User Privs") _("Allow normal user to execute ping")
++user_rw_noexattrfile _("User Privs") _("Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)")
++user_rw_usb _("User Privs") _("Allow users to rw usb devices")
++user_tcp_server _("User Privs") _("Allow users to run TCP servers (bind to ports and accept connection from the same domain and outside users)  disabling this forces FTP passive mode and may change other protocols")
++user_ttyfile_stat _("User Privs") _("Allow user to stat ttyfiles")
++uucpd_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for uucpd daemon")
++vmware_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for vmware daemon")
++watchdog_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for watchdog daemon")
++winbind_disable_trans _("Samba") _("Disable SELinux protection for winbind daemon")
++xdm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xdm daemon")
++xdm_sysadm_login _("XServer") _("Allow xdm logins as sysadm_r:sysadm_t")
++xend_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xen daemon")
++xen_use_raw_disk _("XEN") _("Allow xen to read/write physical disk devices")
++xfs_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xfs daemon")
++xm_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for xen control")
++ypbind_disable_trans _("NIS") _("Disable SELinux protection for ypbind daemon")
++yppasswdd_disable_trans _("NIS") _("Disable SELinux protection for NIS Password Daemon")
++ypserv_disable_trans _("SELinux Service Protection") _("Disable SELinux protection for ypserv daemon")
++ypxfr_disable_trans _("NIS") _("Disable SELinux protection for NIS Transfer Daemon")
++webadm_manage_user_files _("HTTPD Service") _("Allow SELinux webadm user to manage unprivileged users home directories")
++webadm_read_user_files _("HTTPD Service") _("Allow SELinux webadm user to read unprivileged users home directories")
++
+diff --git a/policycoreutils/gui/semanagePage.py b/policycoreutils/gui/semanagePage.py
+new file mode 100644
+index 0000000..110c654
+--- /dev/null
++++ b/policycoreutils/gui/semanagePage.py
+@@ -0,0 +1,168 @@
++## semanagePage.py - show selinux mappings
++## Copyright (C) 2006 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import seobject
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++def idle_func():
++    while gtk.events_pending():
++        gtk.main_iteration()
++        
++class semanagePage:
++    def __init__(self, xml, name, description):
++        self.xml = xml
++        self.window = self.xml.get_widget("mainWindow").get_root_window()
++        self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
++        self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
++
++        self.local = False
++        self.view = xml.get_widget("%sView" % name)
++        self.dialog = xml.get_widget("%sDialog" % name)
++        self.filter_entry = xml.get_widget("%sFilterEntry" % name )
++        self.filter_entry.connect("focus_out_event", self.filter_changed)
++        self.filter_entry.connect("activate", self.filter_changed)
++
++        self.view.connect("row_activated", self.rowActivated)
++        self.view.get_selection().connect("changed", self.itemSelected)
++        self.description = description;
++
++    def wait(self):
++        self.window.set_cursor(self.busy_cursor)
++        idle_func()
++    
++    def ready(self):
++        self.window.set_cursor(self.ready_cursor)
++        idle_func()
++    
++    def get_description(self):
++        return self.description 
++        
++    def itemSelected(self, args):
++        return
++
++    def filter_changed(self, *arg):
++        filter =  arg[0].get_text()
++        if filter != self.filter:
++            self.load(filter)
++        
++    def search(self, model, col, key, i):
++        sort_col = self.store.get_sort_column_id()[0]
++        val = model.get_value(i,sort_col)
++        if val.lower().startswith(key.lower()):
++            return False
++        return True
++
++    def match(self, target, filter):
++        try:
++            f=filter.lower()
++            t=target.lower()
++            if t.find(f) >= 0:
++                return True
++        except:
++            pass
++        return False
++
++    def rowActivated(self, view, row, Column):
++        self.propertiesDialog()
++
++    def verify(self, message, title="" ):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
++                                gtk.BUTTONS_YES_NO,
++                                message)
++        dlg.set_title(title)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        rc = dlg.run()
++        dlg.destroy()
++        return rc
++
++    def error(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
++                                gtk.BUTTONS_CLOSE,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        dlg.run()
++        dlg.destroy()
++
++    def deleteDialog(self):
++        store, iter = self.view.get_selection().get_selected()
++        if self.verify(_("Are you sure you want to delete %s '%s'?" % (self.description, store.get_value(iter, 0))), _("Delete %s" % self.description)) == gtk.RESPONSE_YES:
++            self.delete()
++        
++    def use_menus(self):
++        return True
++    
++    def addDialog(self):
++        self.dialogClear()
++        self.dialog.set_title(_("Add %s" % self.description))
++        self.dialog.set_position(gtk.WIN_POS_MOUSE)
++
++        while self.dialog.run() ==  gtk.RESPONSE_OK:
++            try:
++                if self.add() == False:
++                    continue
++                break;
++            except ValueError, e:
++                self.error(e.args[0])
++        self.dialog.hide()
++
++    def propertiesDialog(self):
++        self.dialogInit()
++        self.dialog.set_title(_("Modify %s" % self.description))
++        self.dialog.set_position(gtk.WIN_POS_MOUSE)
++        while self.dialog.run() ==  gtk.RESPONSE_OK:
++            try:
++                if self.modify() == False:
++                    continue
++                break;
++            except ValueError, e:
++                self.error(e.args[0])
++        self.dialog.hide()
++    
++    def on_local_clicked(self, button):
++        self.local = not self.local
++        if self.local:
++            button.set_label(_("all"))
++        else:
++            button.set_label(_("Customized"))
++
++        self.load(self.filter)
++        return True
++        
+diff --git a/policycoreutils/gui/statusPage.py b/policycoreutils/gui/statusPage.py
+new file mode 100644
+index 0000000..fd6ef4f
+--- /dev/null
++++ b/policycoreutils/gui/statusPage.py
+@@ -0,0 +1,190 @@
++# statusPage.py - show selinux status
++## Copyright (C) 2006-2009 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import tempfile
++
++INSTALLPATH = '/usr/share/system-config-selinux'
++sys.path.append(INSTALLPATH)
++
++import commands
++ENFORCING = 1
++PERMISSIVE = 0
++DISABLED = -1
++modearray = ( "disabled", "permissive",  "enforcing" )
++
++SELINUXDIR = "/etc/selinux/"
++RELABELFILE = "/.autorelabel"
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++import selinux
++try:
++    gettext.install(PROGNAME, localedir="/usr/share/locale", unicode=1)
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class statusPage:
++    def __init__(self, xml):
++        self.xml = xml
++        self.needRelabel = False
++
++        self.type = selinux.selinux_getpolicytype()
++        # Bring in widgets from glade file.
++        self.typeHBox = xml.get_widget("typeHBox")
++        self.selinuxTypeOptionMenu = xml.get_widget("selinuxTypeOptionMenu")
++        self.typeLabel = xml.get_widget("typeLabel")
++        self.enabledOptionMenu = xml.get_widget("enabledOptionMenu")
++        self.currentOptionMenu = xml.get_widget("currentOptionMenu")
++        self.relabel_checkbutton = xml.get_widget("relabelCheckbutton")
++        self.relabel_checkbutton.set_active(self.is_relabel())
++        self.relabel_checkbutton.connect("toggled", self.on_relabel_toggle)
++        if self.get_current_mode() == ENFORCING or self.get_current_mode() == PERMISSIVE:
++                self.currentOptionMenu.append_text(_("Permissive"))
++                self.currentOptionMenu.append_text(_("Enforcing"))
++                self.currentOptionMenu.set_active(self.get_current_mode())
++                self.currentOptionMenu.connect("changed", self.set_current_mode)
++                self.currentOptionMenu.set_sensitive(True)
++        else:
++                self.currentOptionMenu.append_text(_("Disabled"))
++                self.currentOptionMenu.set_active(0)
++                self.currentOptionMenu.set_sensitive(False)
++
++        if self.read_selinux_config() == None:
++            self.selinuxsupport = False
++        else:
++            self.enabledOptionMenu.connect("changed", self.enabled_changed)
++        #
++        # This line must come after read_selinux_config
++        #
++        self.selinuxTypeOptionMenu.connect("changed", self.typemenu_changed)
++
++        self.typeLabel.set_mnemonic_widget(self.selinuxTypeOptionMenu)
++        
++    def use_menus(self):
++        return False
++    
++    def get_description(self):
++        return _("Status")
++
++    def get_current_mode(self):
++        if selinux.is_selinux_enabled():
++            if selinux.security_getenforce() > 0:
++                return ENFORCING
++            else:
++                return PERMISSIVE
++        else:
++            return DISABLED
++
++    def set_current_mode(self,menu):
++        selinux.security_setenforce(menu.get_active() == 1)
++
++    def is_relabel(self):
++        return os.access(RELABELFILE, os.F_OK) != 0
++
++    def on_relabel_toggle(self,button):
++        if button.get_active():
++            fd = open(RELABELFILE,"w")
++            fd.close()
++        else:
++            if os.access(RELABELFILE, os.F_OK) != 0:
++                os.unlink(RELABELFILE)
++
++    def verify(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
++                                gtk.BUTTONS_YES_NO,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        rc = dlg.run()
++        dlg.destroy()
++        return rc
++
++    def typemenu_changed(self, menu):
++        type = self.get_type()
++        enabled = self.enabledOptionMenu.get_active()
++        if self.initialtype != type:
++            if self.verify(_("Changing the policy type will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system.  Do you wish to continue?")) == gtk.RESPONSE_NO:
++                menu.set_active(self.typeHistory)
++                return None
++
++            self.relabel_checkbutton.set_active(True)
++
++        self.write_selinux_config(modearray[enabled], type )
++        self.typeHistory = menu.get_active()
++        
++    def enabled_changed(self, combo):
++        enabled = combo.get_active()
++        type = self.get_type()
++
++        if self.initEnabled != DISABLED and enabled == DISABLED:
++            if self.verify(_("Changing to SELinux disabled requires a reboot.  It is not recommended.  If you later decide to turn SELinux back on, the system will be required to relabel.  If you just want to see if SELinux is causing a problem on your system, you can go to permissive mode which will only log errors and not enforce SELinux policy.  Permissive mode does not require a reboot    Do you wish to continue?")) == gtk.RESPONSE_NO:
++                combo.set_active(self.enabled)
++                return None
++
++        if self.initEnabled == DISABLED and enabled < 2:
++            if self.verify(_("Changing to SELinux enabled will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system.  Do you wish to continue?")) == gtk.RESPONSE_NO:
++                combo.set_active(self.enabled)
++                return None
++            self.relabel_checkbutton.set_active(True)
++
++        self.write_selinux_config(modearray[enabled], type )
++        self.enabled = enabled
++
++    def write_selinux_config(self, enforcing, type):
++        import commands
++        commands.getstatusoutput("/usr/sbin/lokkit --selinuxtype=%s --selinux=%s" % (type, enforcing))
++
++    def read_selinux_config(self):
++        self.initialtype = selinux.selinux_getpolicytype()[1]
++        self.initEnabled = selinux.selinux_getenforcemode()[1]
++        self.enabled = self.initEnabled
++        self.enabledOptionMenu.set_active(self.enabled + 1 )
++
++        self.types = []
++
++        n = 0
++        current = n
++
++        for i in os.listdir(SELINUXDIR):
++            if os.path.isdir(SELINUXDIR+i) and os.path.isdir(SELINUXDIR+i+"/policy"):
++                self.types.append(i)
++                self.selinuxTypeOptionMenu.append_text(i)
++                if i == self.initialtype:
++                    current = n
++                n = n+1
++        self.selinuxTypeOptionMenu.set_active(current)
++        self.typeHistory = current
++
++        return 0
++
++    def get_type(self):
++        return self.types[self.selinuxTypeOptionMenu.get_active()]
++
++
+diff --git a/policycoreutils/gui/system-config-selinux.glade b/policycoreutils/gui/system-config-selinux.glade
+new file mode 100644
+index 0000000..05a697e
+--- /dev/null
++++ b/policycoreutils/gui/system-config-selinux.glade
+@@ -0,0 +1,3005 @@
++<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
++<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
++
++<glade-interface>
++<requires lib="gnome"/>
++<requires lib="bonobo"/>
++
++<widget class="GtkAboutDialog" id="aboutWindow">
++  <property name="border_width">5</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="name" translatable="yes">system-config-selinux</property>
++  <property name="copyright" translatable="yes">Copyright (c)2006 Red Hat, Inc.
++Copyright (c) 2006 Dan Walsh &lt;dwalsh@redhat.com&gt;</property>
++  <property name="wrap_license">False</property>
++  <property name="authors">Daniel Walsh &lt;dwalsh@redhat.com&gt;
++</property>
++  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
++  <property name="logo">system-config-selinux.png</property>
++</widget>
++
++<widget class="GtkDialog" id="loginsDialog">
++  <property name="title" translatable="yes">Add SELinux Login Mapping</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="has_separator">True</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="dialog-vbox1">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">0</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="dialog-action_area1">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="cancelbutton1">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="okbutton1">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-ok</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkVBox" id="vbox2">
++        <property name="visible">True</property>
++        <property name="homogeneous">False</property>
++        <property name="spacing">0</property>
++
++        <child>
++          <widget class="GtkTable" id="table1">
++            <property name="visible">True</property>
++            <property name="n_rows">3</property>
++            <property name="n_columns">2</property>
++            <property name="homogeneous">False</property>
++            <property name="row_spacing">4</property>
++            <property name="column_spacing">6</property>
++
++            <child>
++              <widget class="GtkLabel" id="label15">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">Login Name</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label16">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">SELinux User</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label17">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">MLS/MCS Range</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="loginsNameEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkComboBox" id="loginsSelinuxUserCombo">
++                <property name="visible">True</property>
++                <property name="add_tearoffs">False</property>
++                <property name="focus_on_click">True</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options">fill</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="loginsMLSEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="padding">5</property>
++            <property name="expand">True</property>
++            <property name="fill">True</property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GtkDialog" id="portsDialog">
++  <property name="title" translatable="yes">Add SELinux Network Ports</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="has_separator">True</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="vbox3">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">0</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="hbuttonbox1">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="button1">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="button2">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-ok</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkVBox" id="vbox4">
++        <property name="visible">True</property>
++        <property name="homogeneous">False</property>
++        <property name="spacing">0</property>
++
++        <child>
++          <widget class="GtkTable" id="table2">
++            <property name="visible">True</property>
++            <property name="n_rows">4</property>
++            <property name="n_columns">2</property>
++            <property name="homogeneous">False</property>
++            <property name="row_spacing">4</property>
++            <property name="column_spacing">6</property>
++
++            <child>
++              <widget class="GtkLabel" id="label18">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">Port Number</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label19">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">Protocol</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label20">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">SELinux Type</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="portsNumberEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkComboBox" id="portsProtocolCombo">
++                <property name="visible">True</property>
++                <property name="items">tcp
++udp</property>
++                <property name="add_tearoffs">False</property>
++                <property name="focus_on_click">True</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options">fill</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="portsNameEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label21">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">MLS/MCS
++Level</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">3</property>
++                <property name="bottom_attach">4</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="portsMLSEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">3</property>
++                <property name="bottom_attach">4</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="padding">5</property>
++            <property name="expand">True</property>
++            <property name="fill">True</property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GtkDialog" id="fcontextDialog">
++  <property name="title" translatable="yes">Add SELinux Login Mapping</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="has_separator">True</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="vbox7">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">0</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="hbuttonbox3">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="button5">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="button6">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-ok</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkVBox" id="vbox8">
++        <property name="visible">True</property>
++        <property name="homogeneous">False</property>
++        <property name="spacing">0</property>
++
++        <child>
++          <widget class="GtkTable" id="table4">
++            <property name="visible">True</property>
++            <property name="n_rows">4</property>
++            <property name="n_columns">2</property>
++            <property name="homogeneous">False</property>
++            <property name="row_spacing">4</property>
++            <property name="column_spacing">6</property>
++
++            <child>
++              <widget class="GtkLabel" id="label25">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">File Specification</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label26">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">File Type</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label27">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">SELinux Type</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="fcontextEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkComboBox" id="fcontextFileTypeCombo">
++                <property name="visible">True</property>
++                <property name="items" translatable="yes">all files
++regular file
++directory
++character device
++block device
++socket
++symbolic link
++named pipe
++</property>
++                <property name="add_tearoffs">False</property>
++                <property name="focus_on_click">True</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options">fill</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="fcontextTypeEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label31">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">MLS</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">3</property>
++                <property name="bottom_attach">4</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="fcontextMLSEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">3</property>
++                <property name="bottom_attach">4</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="padding">5</property>
++            <property name="expand">True</property>
++            <property name="fill">True</property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GtkDialog" id="usersDialog">
++  <property name="title" translatable="yes">Add SELinux User</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="has_separator">True</property>
++
++  <child internal-child="vbox">
++    <widget class="GtkVBox" id="vbox9">
++      <property name="visible">True</property>
++      <property name="homogeneous">False</property>
++      <property name="spacing">0</property>
++
++      <child internal-child="action_area">
++      <widget class="GtkHButtonBox" id="hbuttonbox4">
++        <property name="visible">True</property>
++        <property name="layout_style">GTK_BUTTONBOX_END</property>
++
++        <child>
++          <widget class="GtkButton" id="button7">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-cancel</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-6</property>
++          </widget>
++        </child>
++
++        <child>
++          <widget class="GtkButton" id="button8">
++            <property name="visible">True</property>
++            <property name="can_default">True</property>
++            <property name="can_focus">True</property>
++            <property name="label">gtk-ok</property>
++            <property name="use_stock">True</property>
++            <property name="relief">GTK_RELIEF_NORMAL</property>
++            <property name="focus_on_click">True</property>
++            <property name="response_id">-5</property>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">False</property>
++        <property name="fill">True</property>
++        <property name="pack_type">GTK_PACK_END</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkVBox" id="vbox10">
++        <property name="visible">True</property>
++        <property name="homogeneous">False</property>
++        <property name="spacing">0</property>
++
++        <child>
++          <widget class="GtkTable" id="table5">
++            <property name="visible">True</property>
++            <property name="n_rows">3</property>
++            <property name="n_columns">2</property>
++            <property name="homogeneous">False</property>
++            <property name="row_spacing">4</property>
++            <property name="column_spacing">6</property>
++
++            <child>
++              <widget class="GtkLabel" id="label32">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">SELinux User</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label34">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">MLS/MCS Range</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="mlsRangeEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">1</property>
++                <property name="bottom_attach">2</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label36">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">SELinux Roles</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="left_attach">0</property>
++                <property name="right_attach">1</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="x_options">fill</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="selinuxRolesEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">2</property>
++                <property name="bottom_attach">3</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkEntry" id="selinuxUserEntry">
++                <property name="visible">True</property>
++                <property name="can_focus">True</property>
++                <property name="editable">True</property>
++                <property name="visibility">True</property>
++                <property name="max_length">0</property>
++                <property name="text" translatable="yes"></property>
++                <property name="has_frame">True</property>
++                <property name="invisible_char">*</property>
++                <property name="activates_default">False</property>
++              </widget>
++              <packing>
++                <property name="left_attach">1</property>
++                <property name="right_attach">2</property>
++                <property name="top_attach">0</property>
++                <property name="bottom_attach">1</property>
++                <property name="y_options"></property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="padding">5</property>
++            <property name="expand">True</property>
++            <property name="fill">True</property>
++          </packing>
++        </child>
++      </widget>
++      <packing>
++        <property name="padding">0</property>
++        <property name="expand">True</property>
++        <property name="fill">True</property>
++      </packing>
++      </child>
++    </widget>
++  </child>
++</widget>
++
++<widget class="GnomeApp" id="mainWindow">
++  <property name="width_request">800</property>
++  <property name="height_request">500</property>
++  <property name="title" translatable="yes">SELinux Administration</property>
++  <property name="type">GTK_WINDOW_TOPLEVEL</property>
++  <property name="window_position">GTK_WIN_POS_NONE</property>
++  <property name="modal">False</property>
++  <property name="resizable">True</property>
++  <property name="destroy_with_parent">False</property>
++  <property name="icon">system-config-selinux.png</property>
++  <property name="decorated">True</property>
++  <property name="skip_taskbar_hint">False</property>
++  <property name="skip_pager_hint">False</property>
++  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
++  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
++  <property name="focus_on_map">True</property>
++  <property name="urgency_hint">False</property>
++  <property name="enable_layout_config">True</property>
++
++  <child internal-child="dock">
++    <widget class="BonoboDock" id="bonobodock2">
++      <property name="visible">True</property>
++      <property name="allow_floating">True</property>
++
++      <child>
++      <widget class="BonoboDockItem" id="bonobodockitem3">
++        <property name="visible">True</property>
++        <property name="shadow_type">GTK_SHADOW_NONE</property>
++
++        <child>
++          <widget class="GtkMenuBar" id="menubar1">
++            <property name="visible">True</property>
++            <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
++            <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
++
++            <child>
++              <widget class="GtkMenuItem" id="file1">
++                <property name="visible">True</property>
++                <property name="stock_item">GNOMEUIINFO_MENU_FILE_TREE</property>
++
++                <child>
++                  <widget class="GtkMenu" id="file1_menu">
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="add_menu_item">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Add</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_add_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
++                        <accelerator key="a" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image13">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-add</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="properties_menu_item">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">_Properties</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_properties_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
++                        <accelerator key="p" modifiers="GDK_CONTROL_MASK" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image14">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-properties</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="delete_menu_item">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">_Delete</property>
++                        <property name="use_underline">True</property>
++                        <signal name="activate" handler="on_delete_clicked" last_modification_time="Sat, 17 Mar 2007 12:21:12 GMT"/>
++                        <accelerator key="Delete" modifiers="0" signal="activate"/>
++
++                        <child internal-child="image">
++                          <widget class="GtkImage" id="image15">
++                            <property name="visible">True</property>
++                            <property name="stock">gtk-delete</property>
++                            <property name="icon_size">1</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xpad">0</property>
++                            <property name="ypad">0</property>
++                          </widget>
++                        </child>
++                      </widget>
++                    </child>
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="quit">
++                        <property name="visible">True</property>
++                        <property name="stock_item">GNOMEUIINFO_MENU_EXIT_ITEM</property>
++                        <signal name="activate" handler="on_quit_activate" last_modification_time="Fri, 06 Oct 2006 13:58:19 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++
++            <child>
++              <widget class="GtkMenuItem" id="help1">
++                <property name="visible">True</property>
++                <property name="stock_item">GNOMEUIINFO_MENU_HELP_TREE</property>
++
++                <child>
++                  <widget class="GtkMenu" id="help1_menu">
++
++                    <child>
++                      <widget class="GtkImageMenuItem" id="about">
++                        <property name="visible">True</property>
++                        <property name="stock_item">GNOMEUIINFO_MENU_ABOUT_ITEM</property>
++                        <signal name="activate" handler="on_about_activate" last_modification_time="Fri, 06 Oct 2006 13:58:02 GMT"/>
++                      </widget>
++                    </child>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++          </widget>
++        </child>
++      </widget>
++      <packing>
++        <property name="placement">BONOBO_DOCK_TOP</property>
++        <property name="band">0</property>
++        <property name="position">0</property>
++        <property name="offset">0</property>
++        <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_NEVER_VERTICAL|BONOBO_DOCK_ITEM_BEH_LOCKED</property>
++      </packing>
++      </child>
++
++      <child>
++      <widget class="GtkHPaned" id="hpaned1">
++        <property name="visible">True</property>
++        <property name="can_focus">True</property>
++
++        <child>
++          <widget class="GtkFrame" id="frame1">
++            <property name="border_width">5</property>
++            <property name="visible">True</property>
++            <property name="label_xalign">0</property>
++            <property name="label_yalign">0.5</property>
++            <property name="shadow_type">GTK_SHADOW_NONE</property>
++
++            <child>
++              <widget class="GtkAlignment" id="alignment1">
++                <property name="visible">True</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xscale">1</property>
++                <property name="yscale">1</property>
++                <property name="top_padding">0</property>
++                <property name="bottom_padding">0</property>
++                <property name="left_padding">12</property>
++                <property name="right_padding">0</property>
++
++                <child>
++                  <widget class="GtkTreeView" id="selectView">
++                    <property name="visible">True</property>
++                    <property name="tooltip" translatable="yes">Select Management Object</property>
++                    <property name="can_focus">True</property>
++                    <property name="headers_visible">False</property>
++                    <property name="rules_hint">False</property>
++                    <property name="reorderable">False</property>
++                    <property name="enable_search">True</property>
++                    <property name="fixed_height_mode">False</property>
++                    <property name="hover_selection">False</property>
++                    <property name="hover_expand">False</property>
++                  </widget>
++                </child>
++              </widget>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label45">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">&lt;b&gt;Select:&lt;/b&gt;</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">True</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">label_item</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="shrink">False</property>
++            <property name="resize">True</property>
++          </packing>
++        </child>
++
++        <child>
++          <widget class="GtkNotebook" id="notebook">
++            <property name="visible">True</property>
++            <property name="show_tabs">False</property>
++            <property name="show_border">True</property>
++            <property name="tab_pos">GTK_POS_TOP</property>
++            <property name="scrollable">False</property>
++            <property name="enable_popup">False</property>
++
++            <child>
++              <widget class="GtkVBox" id="vbox1">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkTable" id="table6">
++                    <property name="visible">True</property>
++                    <property name="n_rows">4</property>
++                    <property name="n_columns">2</property>
++                    <property name="homogeneous">False</property>
++                    <property name="row_spacing">5</property>
++                    <property name="column_spacing">5</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label29">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">System Default Enforcing Mode</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">0</property>
++                        <property name="right_attach">1</property>
++                        <property name="top_attach">0</property>
++                        <property name="bottom_attach">1</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options"></property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkComboBox" id="enabledOptionMenu">
++                        <property name="visible">True</property>
++                        <property name="items" translatable="yes">Disabled
++Permissive
++Enforcing
++</property>
++                        <property name="add_tearoffs">False</property>
++                        <property name="focus_on_click">True</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">1</property>
++                        <property name="right_attach">2</property>
++                        <property name="top_attach">0</property>
++                        <property name="bottom_attach">1</property>
++                        <property name="y_options">fill</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkLabel" id="label48">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Current Enforcing Mode</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">0</property>
++                        <property name="right_attach">1</property>
++                        <property name="top_attach">1</property>
++                        <property name="bottom_attach">2</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options"></property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkComboBox" id="currentOptionMenu">
++                        <property name="visible">True</property>
++                        <property name="items" translatable="yes"></property>
++                        <property name="add_tearoffs">False</property>
++                        <property name="focus_on_click">True</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">1</property>
++                        <property name="right_attach">2</property>
++                        <property name="top_attach">1</property>
++                        <property name="bottom_attach">2</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options">fill</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkLabel" id="typeLabel">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">System Default Policy Type: </property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">0</property>
++                        <property name="right_attach">1</property>
++                        <property name="top_attach">2</property>
++                        <property name="bottom_attach">3</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options"></property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkComboBox" id="selinuxTypeOptionMenu">
++                        <property name="visible">True</property>
++                        <property name="items" translatable="yes"></property>
++                        <property name="add_tearoffs">False</property>
++                        <property name="focus_on_click">True</property>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">1</property>
++                        <property name="right_attach">2</property>
++                        <property name="top_attach">2</property>
++                        <property name="bottom_attach">3</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options">fill</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkCheckButton" id="relabelCheckbutton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Select if you wish to relabel then entire file system on next reboot.  Relabeling can take a very long time, depending on the size of the system.  If you are changing policy types or going from disabled to enforcing, a relabel is required.</property>
++                        <property name="can_focus">True</property>
++                        <property name="relief">GTK_RELIEF_NORMAL</property>
++                        <property name="focus_on_click">True</property>
++                        <property name="active">False</property>
++                        <property name="inconsistent">False</property>
++                        <property name="draw_indicator">True</property>
++
++                        <child>
++                          <widget class="GtkAlignment" id="alignment4">
++                            <property name="visible">True</property>
++                            <property name="xalign">0.5</property>
++                            <property name="yalign">0.5</property>
++                            <property name="xscale">0</property>
++                            <property name="yscale">0</property>
++                            <property name="top_padding">0</property>
++                            <property name="bottom_padding">0</property>
++                            <property name="left_padding">0</property>
++                            <property name="right_padding">0</property>
++
++                            <child>
++                              <widget class="GtkHBox" id="hbox6">
++                                <property name="visible">True</property>
++                                <property name="homogeneous">False</property>
++                                <property name="spacing">2</property>
++
++                                <child>
++                                  <widget class="GtkImage" id="image2">
++                                    <property name="visible">True</property>
++                                    <property name="stock">gtk-refresh</property>
++                                    <property name="icon_size">4</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++
++                                <child>
++                                  <widget class="GtkLabel" id="label49">
++                                    <property name="visible">True</property>
++                                    <property name="label" translatable="yes">Relabel on next reboot.</property>
++                                    <property name="use_underline">True</property>
++                                    <property name="use_markup">False</property>
++                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
++                                    <property name="wrap">False</property>
++                                    <property name="selectable">False</property>
++                                    <property name="xalign">0.5</property>
++                                    <property name="yalign">0.5</property>
++                                    <property name="xpad">0</property>
++                                    <property name="ypad">0</property>
++                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                                    <property name="width_chars">-1</property>
++                                    <property name="single_line_mode">False</property>
++                                    <property name="angle">0</property>
++                                  </widget>
++                                  <packing>
++                                    <property name="padding">0</property>
++                                    <property name="expand">False</property>
++                                    <property name="fill">False</property>
++                                  </packing>
++                                </child>
++                              </widget>
++                            </child>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="left_attach">0</property>
++                        <property name="right_attach">2</property>
++                        <property name="top_attach">3</property>
++                        <property name="bottom_attach">4</property>
++                        <property name="x_options">fill</property>
++                        <property name="y_options">fill</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label37">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label37</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox18">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar9">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="booleanRevertButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Revert boolean setting to system default</property>
++                        <property name="stock_id">gtk-revert-to-saved</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton34">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Toggle between Customized and All Booleans</property>
++                        <property name="label" translatable="yes">Customized</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-find</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox7">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label51">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="booleansFilter">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">10</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow18">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="booleansView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Boolean</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label50">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label50</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox11">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar2">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton5">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Add File Context</property>
++                        <property name="stock_id">gtk-add</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton6">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Modify File Context</property>
++                        <property name="stock_id">gtk-properties</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton7">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Delete File Context</property>
++                        <property name="stock_id">gtk-delete</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="customizedButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Toggle between all and customized file context</property>
++                        <property name="label" translatable="yes">Customized</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-find</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox14">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label58">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="fcontextFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_fcontextFilter_changed" last_modification_time="Mon, 05 Nov 2007 21:22:11 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow19">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="fcontextView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">File Labeling</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label38">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label38</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox12">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar3">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton8">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Add SELinux User Mapping</property>
++                        <property name="stock_id">gtk-add</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton29">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Modify SELinux User Mapping</property>
++                        <property name="stock_id">gtk-properties</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Wed, 15 Nov 2006 16:38:33 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton10">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Delete SELinux User Mapping</property>
++                        <property name="stock_id">gtk-delete</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox13">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label57">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="loginsFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow16">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="loginsView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">User Mapping</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label39">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label39</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox14">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar5">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton14">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Add User</property>
++                        <property name="stock_id">gtk-add</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton15">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Modify User</property>
++                        <property name="stock_id">gtk-properties</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton16">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Delete User</property>
++                        <property name="stock_id">gtk-delete</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox12">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label56">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="usersFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow11">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="usersView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">SELinux User</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label41">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label41</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox15">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar6">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">False</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="portsAddButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Add Network Port</property>
++                        <property name="stock_id">gtk-add</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="portsPropertiesButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Edit Network Port</property>
++                        <property name="stock_id">gtk-properties</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_properties_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:51 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="portsDeleteButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Delete Network Port</property>
++                        <property name="stock_id">gtk-delete</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolItem" id="toolitem2">
++                        <property name="visible">True</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++
++                        <child>
++                          <widget class="GtkVSeparator" id="vseparator1">
++                            <property name="width_request">32</property>
++                            <property name="visible">True</property>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="listViewButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Toggle between Customized and All Ports</property>
++                        <property name="label" translatable="yes">Group View</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-indent</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_group_clicked" last_modification_time="Mon, 01 Oct 2007 21:31:19 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton35">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Toggle between Customized and All Ports</property>
++                        <property name="label" translatable="yes">Customized</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-find</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_local_clicked" last_modification_time="Wed, 19 Sep 2007 19:14:08 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox9">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label53">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="portsFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow13">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="portsView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Network Port</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label42">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label42</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox17">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar8">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="newModuleButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Generate new policy module</property>
++                        <property name="stock_id">gtk-new</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_new_clicked" last_modification_time="Sat, 17 Mar 2007 15:53:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton23">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Load policy module</property>
++                        <property name="stock_id">gtk-add</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="toolbutton25">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Remove loadable policy module</property>
++                        <property name="stock_id">gtk-remove</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolItem" id="toolitem3">
++                        <property name="visible">True</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++
++                        <child>
++                          <widget class="GtkVSeparator" id="vseparator2">
++                            <property name="width_request">10</property>
++                            <property name="visible">True</property>
++                          </widget>
++                        </child>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="enableAuditButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Enable/Disable additional audit rules, that are normally not reported in the log files.</property>
++                        <property name="label" translatable="yes">Enable Audit</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-zoom-in</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_disable_audit_clicked" last_modification_time="Wed, 15 Nov 2006 16:29:34 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox11">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label55">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="modulesFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow15">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="modulesView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Policy Module</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label44">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label44</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkVBox" id="vbox19">
++                <property name="visible">True</property>
++                <property name="homogeneous">False</property>
++                <property name="spacing">0</property>
++
++                <child>
++                  <widget class="GtkToolbar" id="toolbar10">
++                    <property name="visible">True</property>
++                    <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property>
++                    <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
++                    <property name="tooltips">True</property>
++                    <property name="show_arrow">True</property>
++
++                    <child>
++                      <widget class="GtkToolButton" id="permissiveButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Change process mode to permissive.</property>
++                        <property name="label" translatable="yes">Permissive</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-dialog-warning</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_add_clicked" last_modification_time="Mon, 16 Jan 2006 18:27:03 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkToolButton" id="enforcingButton">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Change process mode to enforcing</property>
++                        <property name="label" translatable="yes">Enforcing</property>
++                        <property name="use_underline">True</property>
++                        <property name="stock_id">gtk-dialog-error</property>
++                        <property name="visible_horizontal">True</property>
++                        <property name="visible_vertical">True</property>
++                        <property name="is_important">False</property>
++                        <signal name="clicked" handler="on_delete_clicked" last_modification_time="Mon, 16 Jan 2006 18:26:29 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="expand">False</property>
++                        <property name="homogeneous">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">False</property>
++                    <property name="fill">False</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkHBox" id="hbox15">
++                    <property name="visible">True</property>
++                    <property name="homogeneous">False</property>
++                    <property name="spacing">0</property>
++
++                    <child>
++                      <widget class="GtkLabel" id="label60">
++                        <property name="visible">True</property>
++                        <property name="label" translatable="yes">Filter</property>
++                        <property name="use_underline">False</property>
++                        <property name="use_markup">False</property>
++                        <property name="justify">GTK_JUSTIFY_LEFT</property>
++                        <property name="wrap">False</property>
++                        <property name="selectable">False</property>
++                        <property name="xalign">0.5</property>
++                        <property name="yalign">0.5</property>
++                        <property name="xpad">0</property>
++                        <property name="ypad">0</property>
++                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                        <property name="width_chars">-1</property>
++                        <property name="single_line_mode">False</property>
++                        <property name="angle">0</property>
++                      </widget>
++                      <packing>
++                        <property name="padding">10</property>
++                        <property name="expand">False</property>
++                        <property name="fill">False</property>
++                      </packing>
++                    </child>
++
++                    <child>
++                      <widget class="GtkEntry" id="domainsFilterEntry">
++                        <property name="visible">True</property>
++                        <property name="can_focus">True</property>
++                        <property name="editable">True</property>
++                        <property name="visibility">True</property>
++                        <property name="max_length">0</property>
++                        <property name="text" translatable="yes"></property>
++                        <property name="has_frame">True</property>
++                        <property name="invisible_char">•</property>
++                        <property name="activates_default">False</property>
++                        <signal name="changed" handler="on_booleansFilter_changed" last_modification_time="Fri, 06 Apr 2007 12:39:26 GMT"/>
++                      </widget>
++                      <packing>
++                        <property name="padding">0</property>
++                        <property name="expand">True</property>
++                        <property name="fill">True</property>
++                      </packing>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">5</property>
++                    <property name="expand">False</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++
++                <child>
++                  <widget class="GtkScrolledWindow" id="scrolledwindow20">
++                    <property name="visible">True</property>
++                    <property name="can_focus">True</property>
++                    <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
++                    <property name="shadow_type">GTK_SHADOW_NONE</property>
++                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
++
++                    <child>
++                      <widget class="GtkTreeView" id="domainsView">
++                        <property name="visible">True</property>
++                        <property name="tooltip" translatable="yes">Process Domain</property>
++                        <property name="can_focus">True</property>
++                        <property name="headers_visible">True</property>
++                        <property name="rules_hint">False</property>
++                        <property name="reorderable">False</property>
++                        <property name="enable_search">True</property>
++                        <property name="fixed_height_mode">False</property>
++                        <property name="hover_selection">False</property>
++                        <property name="hover_expand">False</property>
++                      </widget>
++                    </child>
++                  </widget>
++                  <packing>
++                    <property name="padding">0</property>
++                    <property name="expand">True</property>
++                    <property name="fill">True</property>
++                  </packing>
++                </child>
++              </widget>
++              <packing>
++                <property name="tab_expand">False</property>
++                <property name="tab_fill">True</property>
++              </packing>
++            </child>
++
++            <child>
++              <widget class="GtkLabel" id="label59">
++                <property name="visible">True</property>
++                <property name="label" translatable="yes">label59</property>
++                <property name="use_underline">False</property>
++                <property name="use_markup">False</property>
++                <property name="justify">GTK_JUSTIFY_LEFT</property>
++                <property name="wrap">False</property>
++                <property name="selectable">False</property>
++                <property name="xalign">0.5</property>
++                <property name="yalign">0.5</property>
++                <property name="xpad">0</property>
++                <property name="ypad">0</property>
++                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
++                <property name="width_chars">-1</property>
++                <property name="single_line_mode">False</property>
++                <property name="angle">0</property>
++              </widget>
++              <packing>
++                <property name="type">tab</property>
++              </packing>
++            </child>
++          </widget>
++          <packing>
++            <property name="shrink">True</property>
++            <property name="resize">True</property>
++          </packing>
++        </child>
++      </widget>
++      </child>
++    </widget>
++    <packing>
++      <property name="padding">0</property>
++      <property name="expand">True</property>
++      <property name="fill">True</property>
++    </packing>
++  </child>
++
++  <child internal-child="appbar">
++    <widget class="GnomeAppBar" id="appbar2">
++      <property name="visible">True</property>
++      <property name="has_progress">True</property>
++      <property name="has_status">True</property>
++    </widget>
++    <packing>
++      <property name="padding">0</property>
++      <property name="expand">True</property>
++      <property name="fill">True</property>
++    </packing>
++  </child>
++</widget>
++
++</glade-interface>
+diff --git a/policycoreutils/gui/system-config-selinux.py b/policycoreutils/gui/system-config-selinux.py
+new file mode 100644
+index 0000000..f080dd9
+--- /dev/null
++++ b/policycoreutils/gui/system-config-selinux.py
+@@ -0,0 +1,187 @@
++#!/usr/bin/python -Es
++#
++# system-config-selinux.py - GUI for SELinux Config tool in system-config-selinux
++#
++# Dan Walsh <dwalsh@redhat.com>
++#
++# Copyright 2006-2009 Red Hat, Inc.
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
++import signal
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import gnome
++import sys
++import statusPage
++import booleansPage
++import loginsPage
++import usersPage
++import portsPage
++import modulesPage
++import domainsPage
++import fcontextPage
++import selinux
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME,
++                    localedir="/usr/share/locale",
++                    unicode=False,
++                    codeset = 'utf-8')
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++gnome.program_init("SELinux Management Tool", "5")
++
++version = "1.0"
++
++sys.path.append('/usr/share/system-config-selinux')
++
++
++
++##
++## Pull in the Glade file
++##
++if os.access("system-config-selinux.glade", os.F_OK):
++    xml = gtk.glade.XML ("system-config-selinux.glade", domain=PROGNAME)
++else:
++    xml = gtk.glade.XML ("/usr/share/system-config-selinux/system-config-selinux.glade", domain=PROGNAME)
++
++class childWindow:
++    def __init__(self):
++        self.tabs=[]
++        self.xml = xml
++        xml.signal_connect("on_quit_activate", self.destroy)
++        xml.signal_connect("on_delete_clicked", self.delete)
++        xml.signal_connect("on_add_clicked", self.add)
++        xml.signal_connect("on_properties_clicked", self.properties)
++        xml.signal_connect("on_local_clicked", self.on_local_clicked)
++        self.add_page(statusPage.statusPage(xml))
++        if selinux.is_selinux_enabled() > 0:
++            try:
++                self.add_page(booleansPage.booleansPage(xml))
++                self.add_page(fcontextPage.fcontextPage(xml))
++                self.add_page(loginsPage.loginsPage(xml))
++                self.add_page(usersPage.usersPage(xml))
++                self.add_page(portsPage.portsPage(xml))
++                self.add_page(modulesPage.modulesPage(xml)) # modules
++                self.add_page(domainsPage.domainsPage(xml)) # domains
++            except ValueError, e:
++                self.error(e.message)
++
++        xml.signal_connect("on_quit_activate", self.destroy)
++        xml.signal_connect("on_policy_activate", self.policy)
++        xml.signal_connect("on_logging_activate", self.logging)
++        xml.signal_connect("on_about_activate", self.on_about_activate)
++
++        self.add_menu = xml.get_widget("add_menu_item")
++        self.properties_menu = xml.get_widget("properties_menu_item")
++        self.delete_menu = xml.get_widget("delete_menu_item")
++
++    def error(self, message):
++        dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
++                                gtk.BUTTONS_CLOSE,
++                                message)
++        dlg.set_position(gtk.WIN_POS_MOUSE)
++        dlg.show_all()
++        dlg.run()
++        dlg.destroy()
++
++    def add_page(self, page):
++        self.tabs.append(page)
++        
++    def policy(self, args):
++        os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/semanagegui.py")
++    def logging(self, args):
++        os.spawnl(os.P_NOWAIT, "/usr/bin/seaudit")
++    
++    def delete(self, args):
++        self.tabs[self.notebook.get_current_page()].deleteDialog()
++
++    def add(self, args):
++        self.tabs[self.notebook.get_current_page()].addDialog()
++
++    def properties(self, args):
++        self.tabs[self.notebook.get_current_page()].propertiesDialog()
++
++    def on_local_clicked(self, button):
++        self.tabs[self.notebook.get_current_page()].on_local_clicked(button)
++
++    def on_about_activate(self, args):
++        dlg = xml.get_widget ("aboutWindow")
++        dlg.run ()
++        dlg.hide ()
++
++    def destroy(self, args):
++        gtk.main_quit()
++
++    def use_menus(self, use_menus):
++        self.add_menu.set_sensitive(use_menus)
++        self.properties_menu.set_sensitive(use_menus)
++        self.delete_menu.set_sensitive(use_menus)
++
++    def itemSelected(self, selection):
++        store, rows = selection.get_selected_rows()
++        if store != None and len(rows) > 0:
++            self.notebook.set_current_page(rows[0][0])
++            self.use_menus(self.tabs[rows[0][0]].use_menus())
++        else:
++            self.notebook.set_current_page(0)
++            self.use_menus(self.tabs[0].use_menus())
++            
++
++    def setupScreen(self):
++        # Bring in widgets from glade file.
++        self.mainWindow = self.xml.get_widget("mainWindow")
++        self.notebook = self.xml.get_widget("notebook")
++        self.view = self.xml.get_widget("selectView")
++        self.view.get_selection().connect("changed", self.itemSelected)
++        self.store = gtk.ListStore(gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        col = gtk.TreeViewColumn("",  gtk.CellRendererText(), text = 0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        for page in self.tabs:
++            iter = self.store.append()
++            self.store.set_value(iter, 0, page.get_description())
++        self.view.get_selection().select_path ((0,))
++
++    def stand_alone(self):
++        desktopName = _("Configue SELinux")
++
++        self.setupScreen()
++
++        self.mainWindow.connect("destroy", self.destroy)
++
++        self.mainWindow.show_all()
++        gtk.main()
++
++if __name__ == "__main__":
++    signal.signal (signal.SIGINT, signal.SIG_DFL)
++
++    app = childWindow()
++    app.stand_alone()
+diff --git a/policycoreutils/gui/templates/__init__.py b/policycoreutils/gui/templates/__init__.py
+new file mode 100644
+index 0000000..683666f
+--- /dev/null
++++ b/policycoreutils/gui/templates/__init__.py
+@@ -0,0 +1,18 @@
++#
++# Copyright (C) 2007-2012 Red Hat
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
+diff --git a/policycoreutils/gui/templates/boolean.py b/policycoreutils/gui/templates/boolean.py
+new file mode 100644
+index 0000000..f7af4d8
+--- /dev/null
++++ b/policycoreutils/gui/templates/boolean.py
+@@ -0,0 +1,40 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### boolean Template File ###########################
++
++te_boolean="""
++## <desc>
++##    <p>
++##    DESCRIPTION
++##    </p>
++## </desc>
++gen_tunable(BOOLEAN, false)
++"""
++
++te_rules="""
++tunable_policy(`BOOLEAN',`
++#TRUE
++',`
++#FALSE
++')
++"""
++
+diff --git a/policycoreutils/gui/templates/etc_rw.py b/policycoreutils/gui/templates/etc_rw.py
+new file mode 100644
+index 0000000..0d3dbfe
+--- /dev/null
++++ b/policycoreutils/gui/templates/etc_rw.py
+@@ -0,0 +1,112 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### etc_rw Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_etc_rw_t;
++files_type(TEMPLATETYPE_etc_rw_t)
++"""
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
++files_etc_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_etc_rw_t, { dir file })
++"""
++
++########################### Interface File #############################
++if_rules="""
++########################################
++## <summary>
++##    Search TEMPLATETYPE conf directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_search_conf',`
++      gen_require(`
++              type TEMPLATETYPE_etc_rw_t;
++      ')
++
++      allow $1 TEMPLATETYPE_etc_rw_t:dir search_dir_perms;
++      files_search_etc($1)
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE conf files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_conf_files',`
++      gen_require(`
++              type TEMPLATETYPE_etc_rw_t;
++      ')
++
++      allow $1 TEMPLATETYPE_etc_rw_t:file read_file_perms;
++      allow $1 TEMPLATETYPE_etc_rw_t:dir list_dir_perms;
++      files_search_etc($1)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE conf files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_conf_files',`
++      gen_require(`
++              type TEMPLATETYPE_etc_rw_t;
++      ')
++
++      manage_files_pattern($1, TEMPLATETYPE_etc_rw_t, TEMPLATETYPE_etc_rw_t)
++      files_search_etc($1)
++')
++
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_etc_rw_t;"""
++
++if_admin_rules="""
++      files_search_etc($1)
++      admin_pattern($1, TEMPLATETYPE_etc_rw_t)
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_etc_rw_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_etc_rw_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/executable.py b/policycoreutils/gui/templates/executable.py
+new file mode 100644
+index 0000000..5b39d77
+--- /dev/null
++++ b/policycoreutils/gui/templates/executable.py
+@@ -0,0 +1,445 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### Type Enforcement File #############################
++te_daemon_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
 +
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
++########################################
++#
++# Declarations
++#
++
++type TEMPLATETYPE_t;
++type TEMPLATETYPE_exec_t;
++init_daemon_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
++
++permissive TEMPLATETYPE_t;
++"""
++
++te_initscript_types="""
++type TEMPLATETYPE_initrc_exec_t;
++init_script_file(TEMPLATETYPE_initrc_exec_t)
++"""
++
++te_dbusd_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++type TEMPLATETYPE_t;
++type TEMPLATETYPE_exec_t;
++dbus_system_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
++
++permissive TEMPLATETYPE_t;
++"""
++
++te_inetd_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++type TEMPLATETYPE_t;
++type TEMPLATETYPE_exec_t;
++inetd_service_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
++
++permissive TEMPLATETYPE_t;
++"""
++
++te_userapp_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++type TEMPLATETYPE_t;
++type TEMPLATETYPE_exec_t;
++application_domain(TEMPLATETYPE_t, TEMPLATETYPE_exec_t)
++role system_r types TEMPLATETYPE_t;
++
++permissive TEMPLATETYPE_t;
++"""
++
++te_sandbox_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++sandbox_x_domain_template(TEMPLATETYPE)
++
++permissive TEMPLATETYPE_t;
++permissive TEMPLATETYPE_client_t;
++
++"""
++
++te_cgi_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++apache_content_template(TEMPLATETYPE)
++
++permissive httpd_TEMPLATETYPE_script_t;
++"""
++
++te_daemon_rules="""\
++allow TEMPLATETYPE_t self:fifo_file rw_fifo_file_perms;
++allow TEMPLATETYPE_t self:unix_stream_socket create_stream_socket_perms;
++"""
++
++te_inetd_rules="""
++"""
++
++te_dbusd_rules="""
++"""
++
++te_userapp_rules="""
++allow TEMPLATETYPE_t self:fifo_file manage_fifo_file_perms;
++allow TEMPLATETYPE_t self:unix_stream_socket create_stream_socket_perms;
++"""
++
++te_cgi_rules="""
++"""
++
++te_sandbox_rules="""
++"""
++
++te_uid_rules="""
++auth_use_nsswitch(TEMPLATETYPE_t)
++"""
++
++te_syslog_rules="""
++logging_send_syslog_msg(TEMPLATETYPE_t)
++"""
++
++te_resolve_rules="""
++sysnet_dns_name_resolve(TEMPLATETYPE_t)
++"""
++
++te_pam_rules="""
++auth_domtrans_chk_passwd(TEMPLATETYPE_t)
++"""
++
++te_mail_rules="""
++mta_send_mail(TEMPLATETYPE_t)
++"""
++
++te_dbus_rules="""
++optional_policy(`
++      dbus_system_bus_client(TEMPLATETYPE_t)
++      dbus_connect_system_bus(TEMPLATETYPE_t)
++')
++"""
++
++te_kerberos_rules="""
++optional_policy(`
++      kerberos_use(TEMPLATETYPE_t)
++')
++"""
++
++te_manage_krb5_rcache_rules="""
++optional_policy(`
++      kerberos_keytab_template(TEMPLATETYPE, TEMPLATETYPE_t)
++      kerberos_manage_host_rcache(TEMPLATETYPE_t)
++')
++"""
++
++te_audit_rules="""
++logging_send_audit_msgs(TEMPLATETYPE_t)
++"""
++
++te_run_rules="""
++optional_policy(`
++      gen_require(`
++              type USER_t;
++              role USER_r;
++      ')
++
++      TEMPLATETYPE_run(USER_t, USER_r)
++')
++"""
++
++te_fd_rules="""
++domain_use_interactive_fds(TEMPLATETYPE_t)
++"""
++
++te_etc_rules="""
++files_read_etc_files(TEMPLATETYPE_t)
++"""
++
++te_localization_rules="""
++miscfiles_read_localization(TEMPLATETYPE_t)
++"""
++
++########################### Interface File #############################
++
++if_heading_rules="""
++## <summary>policy for TEMPLATETYPE</summary>"""
++
++if_program_rules="""
++
++########################################
++## <summary>
++##    Transition to TEMPLATETYPE.
++## </summary>
++## <param name=\"domain\">
++## <summary>
++##    Domain allowed to transition.
++## </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_domtrans',`
++      gen_require(`
++              type TEMPLATETYPE_t, TEMPLATETYPE_exec_t;
++      ')
++
++      corecmd_search_bin($1)
++      domtrans_pattern($1, TEMPLATETYPE_exec_t, TEMPLATETYPE_t)
++')
++"""
++
++if_user_program_rules="""
++########################################
++## <summary>
++##    Execute TEMPLATETYPE in the TEMPLATETYPE domain, and
++##    allow the specified role the TEMPLATETYPE domain.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed to transition
++##    </summary>
++## </param>
++## <param name="role">
++##    <summary>
++##    The role to be allowed the TEMPLATETYPE domain.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_run',`
++      gen_require(`
++              type TEMPLATETYPE_t;
++      ')
++
++      TEMPLATETYPE_domtrans($1)
++      role $2 types TEMPLATETYPE_t;
++')
++
++########################################
++## <summary>
++##    Role access for TEMPLATETYPE
++## </summary>
++## <param name="role">
++##    <summary>
++##    Role allowed access
++##    </summary>
++## </param>
++## <param name="domain">
++##    <summary>
++##    User domain for the role
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_role',`
++      gen_require(`
++              type TEMPLATETYPE_t;
++      ')
++
++      role $1 types TEMPLATETYPE_t;
++
++      TEMPLATETYPE_domtrans($2)
++
++      ps_process_pattern($2, TEMPLATETYPE_t)
++      allow $2 TEMPLATETYPE_t:process signal;
++')
++"""
++
++if_sandbox_rules="""
++########################################
++## <summary>
++##    Execute sandbox in the TEMPLATETYPE_t domain, and
++##    allow the specified role the TEMPLATETYPE_t domain.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed to transition.
++##    </summary>
++## </param>
++## <param name="role">
++##    <summary>
++##    The role to be allowed the TEMPLATETYPE_t domain.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_transition',`
++      gen_require(`
++              type TEMPLATETYPE_t;
++              type TEMPLATETYPE_client_t;
++      ')
++
++      allow $1 TEMPLATETYPE_t:process { signal_perms transition };
++      dontaudit $1 TEMPLATETYPE_t:process { noatsecure siginh rlimitinh };
++      role $2 types TEMPLATETYPE_t;
++      role $2 types TEMPLATETYPE_client_t;
++
++      allow TEMPLATETYPE_t $1:process { sigchld signull };
++      allow TEMPLATETYPE_t $1:fifo_file rw_inherited_fifo_file_perms;
++      allow TEMPLATETYPE_client_t $1:process { sigchld signull };
++      allow TEMPLATETYPE_client_t $1:fifo_file rw_inherited_fifo_file_perms;
++')
++"""
++
++if_role_change_rules="""
++########################################
++## <summary>
++##    Change to the TEMPLATETYPE role.
++## </summary>
++## <param name="role">
++##    <summary>
++##    Role allowed access.
++##    </summary>
++## </param>
++## <rolecap/>
++#
++interface(`TEMPLATETYPE_role_change',`
++      gen_require(`
++              role TEMPLATETYPE_r;
++      ')
++
++      allow $1 TEMPLATETYPE_r;
++')
++"""
++
++if_initscript_rules="""
++########################################
++## <summary>
++##    Execute TEMPLATETYPE server in the TEMPLATETYPE domain.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_initrc_domtrans',`
++      gen_require(`
++              type TEMPLATETYPE_initrc_exec_t;
++      ')
++
++      init_labeled_script_domtrans($1, TEMPLATETYPE_initrc_exec_t)
++')
++"""
++
++if_dbus_rules="""
++########################################
++## <summary>
++##    Send and receive messages from
++##    TEMPLATETYPE over dbus.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_dbus_chat',`
++      gen_require(`
++              type TEMPLATETYPE_t;
++              class dbus send_msg;
++      ')
++
++      allow $1 TEMPLATETYPE_t:dbus send_msg;
++      allow TEMPLATETYPE_t $1:dbus send_msg;
++')
++"""
++
++if_begin_admin="""
++########################################
++## <summary>
++##    All of the rules required to administrate
++##    an TEMPLATETYPE environment
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++## <param name="role">
++##    <summary>
++##    Role allowed access.
++##    </summary>
++## </param>
++## <rolecap/>
++#
++interface(`TEMPLATETYPE_admin',`
++      gen_require(`
++              type TEMPLATETYPE_t;"""
++
++if_middle_admin="""
++      ')
++
++      allow $1 TEMPLATETYPE_t:process { ptrace signal_perms };
++      ps_process_pattern($1, TEMPLATETYPE_t)
++"""
++
++if_initscript_admin_types="""
++              type TEMPLATETYPE_initrc_exec_t;"""
++
++if_initscript_admin="""
++      TEMPLATETYPE_initrc_domtrans($1)
++      domain_system_change_exemption($1)
++      role_transition $2 TEMPLATETYPE_initrc_exec_t system_r;
++      allow $2 system_r;
++"""
++
++if_end_admin="""\
++      optional_policy(`
++              systemd_passwd_agent_exec($1)
++              systemd_read_fifo_file_passwd_run($1)
++      ')
++')
++"""
++
++########################### File Context ##################################
++fc_program="""\
++EXECUTABLE            --      gen_context(system_u:object_r:TEMPLATETYPE_exec_t,s0)
++"""
++
++fc_user="""\
++# Users do not have file context, leave blank
++"""
++
++fc_initscript="""\
++EXECUTABLE    --      gen_context(system_u:object_r:TEMPLATETYPE_initrc_exec_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/network.py b/policycoreutils/gui/templates/network.py
+new file mode 100644
+index 0000000..6a3d445
+--- /dev/null
++++ b/policycoreutils/gui/templates/network.py
+@@ -0,0 +1,102 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### Type Enforcement File #############################
++te_port_types="""
++type TEMPLATETYPE_port_t;
++corenet_port(TEMPLATETYPE_port_t)
++"""
++
++te_network="""\
++sysnet_dns_name_resolve(TEMPLATETYPE_t)
++corenet_all_recvfrom_unlabeled(TEMPLATETYPE_t)
++"""
++
++te_tcp="""\
++allow TEMPLATETYPE_t self:tcp_socket create_stream_socket_perms;
++corenet_tcp_sendrecv_generic_if(TEMPLATETYPE_t)
++corenet_tcp_sendrecv_generic_node(TEMPLATETYPE_t)
++corenet_tcp_sendrecv_all_ports(TEMPLATETYPE_t)
++"""
++
++te_in_tcp="""\
++corenet_tcp_bind_generic_node(TEMPLATETYPE_t)
++"""
++
++te_in_need_port_tcp="""\
++allow TEMPLATETYPE_t TEMPLATETYPE_port_t:tcp_socket name_bind;
++"""
++
++te_out_need_port_tcp="""\
++allow TEMPLATETYPE_t TEMPLATETYPE_port_t:tcp_socket name_connect;
++"""
++
++te_udp="""\
++allow TEMPLATETYPE_t self:udp_socket { create_socket_perms listen };
++corenet_udp_sendrecv_generic_if(TEMPLATETYPE_t)
++corenet_udp_sendrecv_generic_node(TEMPLATETYPE_t)
++corenet_udp_sendrecv_all_ports(TEMPLATETYPE_t)
++"""
++
++te_in_udp="""\
++corenet_udp_bind_generic_node(TEMPLATETYPE_t)
++"""
++
++te_in_need_port_udp="""\
++allow TEMPLATETYPE_t TEMPLATETYPE_port_t:udp_socket name_bind;
++"""
++
++te_out_all_ports_tcp="""\
++corenet_tcp_connect_all_ports(TEMPLATETYPE_t)
++"""
++
++te_out_reserved_ports_tcp="""\
++corenet_tcp_connect_all_rpc_ports(TEMPLATETYPE_t)
++"""
++
++te_out_unreserved_ports_tcp="""\
++corenet_tcp_connect_all_unreserved_ports(TEMPLATETYPE_t)
++"""
++
++te_in_all_ports_tcp="""\
++corenet_tcp_bind_all_ports(TEMPLATETYPE_t)
++"""
++
++te_in_reserved_ports_tcp="""\
++corenet_tcp_bind_all_rpc_ports(TEMPLATETYPE_t)
++"""
++
++te_in_unreserved_ports_tcp="""\
++corenet_tcp_bind_all_unreserved_ports(TEMPLATETYPE_t)
++"""
++
++te_in_all_ports_udp="""\
++corenet_udp_bind_all_ports(TEMPLATETYPE_t)
++"""
++
++te_in_reserved_ports_udp="""\
++corenet_udp_bind_all_rpc_ports(TEMPLATETYPE_t)
++"""
++
++te_in_unreserved_ports_udp="""\
++corenet_udp_bind_all_unreserved_ports(TEMPLATETYPE_t)
++"""
++
+diff --git a/policycoreutils/gui/templates/rw.py b/policycoreutils/gui/templates/rw.py
+new file mode 100644
+index 0000000..5dfc42f
+--- /dev/null
++++ b/policycoreutils/gui/templates/rw.py
+@@ -0,0 +1,129 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++
++########################### tmp Template File #############################
++te_types="""
++type TEMPLATETYPE_rw_t;
++files_type(TEMPLATETYPE_rw_t)
++"""
++
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
++"""
++
++########################### Interface File #############################
++if_rules="""
++########################################
++## <summary>
++##    Search TEMPLATETYPE rw directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_search_rw_dir',`
++      gen_require(`
++              type TEMPLATETYPE_rw_t;
++      ')
++
++      allow $1 TEMPLATETYPE_rw_t:dir search_dir_perms;
++      files_search_rw($1)
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE rw files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_rw_files',`
++      gen_require(`
++              type TEMPLATETYPE_rw_t;
++      ')
++
++      allow $1 TEMPLATETYPE_rw_t:file read_file_perms;
++      allow $1 TEMPLATETYPE_rw_t:dir list_dir_perms;
++      files_search_rw($1)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE rw files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_rw_files',`
++      gen_require(`
++              type TEMPLATETYPE_rw_t;
++      ')
++
++      manage_files_pattern($1, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
++')
++
++########################################
++## <summary>
++##    Create, read, write, and delete
++##    TEMPLATETYPE rw dirs.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_rw_dirs',`
++      gen_require(`
++              type TEMPLATETYPE_rw_t;
++      ')
++
++      manage_dirs_pattern($1, TEMPLATETYPE_rw_t, TEMPLATETYPE_rw_t)
++')
++
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_rw_t;"""
++
++if_admin_rules="""
++      files_search_etc($1)
++      admin_pattern($1, TEMPLATETYPE_rw_t)
++"""
++
++########################### File Context ##################################
++fc_file="""
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_rw_t,s0)
++"""
++
++fc_dir="""
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_rw_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/script.py b/policycoreutils/gui/templates/script.py
+new file mode 100644
+index 0000000..79240ec
+--- /dev/null
++++ b/policycoreutils/gui/templates/script.py
+@@ -0,0 +1,126 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++
++########################### tmp Template File #############################
++compile="""\
++#!/bin/sh -e
++
++DIRNAME=`dirname $0`
++cd $DIRNAME
++USAGE="$0 [ --update ]"
++if [ `id -u` != 0 ]; then
++echo 'You must be root to run this script'
++exit 1
++fi
++
++if [ $# -eq 1 ]; then
++      if [ "$1" = "--update" ] ; then
++              time=`ls -l --time-style="+%x %X" TEMPLATEFILE.te | awk '{ printf "%s %s", $6, $7 }'`
++              rules=`ausearch --start $time -m avc --raw -se TEMPLATETYPE`
++              if [ x"$rules" != "x" ] ; then
++                      echo "Found avc's to update policy with"
++                      echo -e "$rules" | audit2allow -R
++                      echo "Do you want these changes added to policy [y/n]?"
++                      read ANS
++                      if [ "$ANS" = "y" -o "$ANS" = "Y" ] ; then
++                              echo "Updating policy"
++                              echo -e "$rules" | audit2allow -R >> TEMPLATEFILE.te
++                              # Fall though and rebuild policy
++                      else
++                              exit 0
++                      fi
++              else
++                      echo "No new avcs found"
++                      exit 0
++              fi
++      else
++              echo -e $USAGE
++              exit 1
++      fi
++elif [ $# -ge 2 ] ; then
++      echo -e $USAGE
++      exit 1
++fi
++
++echo "Building and Loading Policy"
++set -x
++make -f /usr/share/selinux/devel/Makefile TEMPLATEFILE.pp || exit
++/usr/sbin/semodule -i TEMPLATEFILE.pp
++
++"""
++
++restorecon="""\
++# Fixing the file context on FILENAME
++/sbin/restorecon -F -R -v FILENAME
++"""
++
++tcp_ports="""\
++# Adding SELinux tcp port to port PORTNUM
++/usr/sbin/semanage port -a -t TEMPLATETYPE_port_t -p tcp PORTNUM
++"""
++
++udp_ports="""\
++# Adding SELinux udp port to port PORTNUM
++/usr/sbin/semanage port -a -t TEMPLATETYPE_port_t -p udp PORTNUM
++"""
++
++users="""\
++# Adding SELinux user TEMPLATETYPE_u
++/usr/sbin/semanage user -a -R "TEMPLATETYPE_rROLES" TEMPLATETYPE_u
++"""
++
++eusers="""\
++# Adding roles to SELinux user TEMPLATETYPE_u
++/usr/sbin/semanage user -m -R "TEMPLATETYPE_rROLES" TEMPLATETYPE_u
++"""
++
++admin_trans="""\
++# Adding roles to SELinux user USER
++/usr/sbin/semanage user -m -R +TEMPLATETYPE_r USER
++"""
++
++min_login_user_default_context="""\
++if [ ! -f /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u ]; then
++cat > /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u << _EOF
++TEMPLATETYPE_r:TEMPLATETYPE_t:s0      TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:crond_t              TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:initrc_su_t          TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:local_login_t                TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:remote_login_t               TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:sshd_t                       TEMPLATETYPE_r:TEMPLATETYPE_t
++_EOF
++fi
++"""
++
++x_login_user_default_context="""\
++if [ ! -f /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u ]; then
++cat > /etc/selinux/targeted/contexts/users/TEMPLATETYPE_u << _EOF
++TEMPLATETYPE_r:TEMPLATETYPE_t TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:crond_t              TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:initrc_su_t          TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:local_login_t                TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:remote_login_t               TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:sshd_t                               TEMPLATETYPE_r:TEMPLATETYPE_t
++system_r:xdm_t                                TEMPLATETYPE_r:TEMPLATETYPE_t
++_EOF
++fi
++"""
+diff --git a/policycoreutils/gui/templates/semodule.py b/policycoreutils/gui/templates/semodule.py
+new file mode 100644
+index 0000000..194fb2c
+--- /dev/null
++++ b/policycoreutils/gui/templates/semodule.py
+@@ -0,0 +1,41 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA     
++#                                        02111-1307  USA
++#
++#  
++
++########################### tmp Template File #############################
++compile="""
++#!/bin/sh
++make -f /usr/share/selinux/devel/Makefile
++semodule -i TEMPLATETYPE.pp
++"""
++
++restorecon="""
++restorecon -R -v FILENAME
++"""
++
++tcp_ports="""
++semanage ports -a -t TEMPLATETYPE_port_t -p tcp PORTNUM
++"""
++
++udp_ports="""
++semanage ports -a -t TEMPLATETYPE_port_t -p udp PORTNUM
++"""
++
+diff --git a/policycoreutils/gui/templates/tmp.py b/policycoreutils/gui/templates/tmp.py
+new file mode 100644
+index 0000000..d2adaa4
+--- /dev/null
++++ b/policycoreutils/gui/templates/tmp.py
+@@ -0,0 +1,102 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### tmp Template File #############################
++
++te_types="""
++type TEMPLATETYPE_tmp_t;
++files_tmp_file(TEMPLATETYPE_tmp_t)
++"""
++
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
++files_tmp_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_tmp_t, { dir file })
++"""
++
++if_rules="""
++########################################
++## <summary>
++##    Do not audit attempts to read,
++##    TEMPLATETYPE tmp files
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain to not audit.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_dontaudit_read_tmp_files',`
++      gen_require(`
++              type TEMPLATETYPE_tmp_t;
++      ')
++
++      dontaudit $1 TEMPLATETYPE_tmp_t:file read_file_perms;
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE tmp files
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_tmp_files',`
++      gen_require(`
++              type TEMPLATETYPE_tmp_t;
++      ')
++
++      files_search_tmp($1)
++      allow $1 TEMPLATETYPE_tmp_t:file read_file_perms;
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE tmp files
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_tmp',`
++      gen_require(`
++              type TEMPLATETYPE_tmp_t;
++      ')
++
++      files_search_tmp($1)
++      manage_dirs_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
++      manage_files_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
++      manage_lnk_files_pattern($1, TEMPLATETYPE_tmp_t, TEMPLATETYPE_tmp_t)
++')
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_tmp_t;"""
++
++if_admin_rules="""
++      files_search_tmp($1)
++      admin_pattern($1, TEMPLATETYPE_tmp_t)
++"""
+diff --git a/policycoreutils/gui/templates/unit_file.py b/policycoreutils/gui/templates/unit_file.py
+new file mode 100644
+index 0000000..60e5844
+--- /dev/null
++++ b/policycoreutils/gui/templates/unit_file.py
+@@ -0,0 +1,72 @@
++# Copyright (C) 2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### unit Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_unit_file_t;
++systemd_unit_file(TEMPLATETYPE_unit_file_t)
++"""
++
++te_rules=""
++
++########################### Interface File #############################
++if_rules="""\
++########################################
++## <summary>
++##    Execute TEMPLATETYPE server in the TEMPLATETYPE domain.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed to transition.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_systemctl',`
++      gen_require(`
++              type TEMPLATETYPE_t;
++              type TEMPLATETYPE_unit_file_t;
++      ')
++
++      systemd_exec_systemctl($1)
++        systemd_read_fifo_file_password_run($1)
++      allow $1 TEMPLATETYPE_unit_file_t:file read_file_perms;
++      allow $1 TEMPLATETYPE_unit_file_t:service manage_service_perms;
++
++      ps_process_pattern($1, TEMPLATETYPE_t)
++')
++
++"""
++
++if_admin_types="""
++      type TEMPLATETYPE_unit_file_t;"""
++
++if_admin_rules="""
++      TEMPLATETYPE_systemctl($1)
++      admin_pattern($1, TEMPLATETYPE_unit_file_t)
++      allow $1 TEMPLATETYPE_unit_file_t:service all_service_perms;
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_unit_file_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/user.py b/policycoreutils/gui/templates/user.py
+new file mode 100644
+index 0000000..398c6f2
+--- /dev/null
++++ b/policycoreutils/gui/templates/user.py
+@@ -0,0 +1,204 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### Type Enforcement File #############################
++
++te_login_user_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++userdom_unpriv_user_template(TEMPLATETYPE)
++"""
++
++te_admin_user_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++userdom_admin_user_template(TEMPLATETYPE)
++"""
++
++te_min_login_user_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++userdom_restricted_user_template(TEMPLATETYPE)
++"""
++
++te_x_login_user_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++userdom_restricted_xwindows_user_template(TEMPLATETYPE)
++"""
++
++te_existing_user_types="""\
++policy_module(myTEMPLATETYPE, 1.0.0)
++
++gen_require(`
++      type TEMPLATETYPE_t, TEMPLATETYPE_devpts_t;
++      role TEMPLATETYPE_r;
++')
++
++"""
++
++te_root_user_types="""\
++policy_module(TEMPLATETYPE, 1.0.0)
++
++########################################
++#
++# Declarations
++#
++
++userdom_base_user_template(TEMPLATETYPE)
++"""
++
++te_login_user_rules="""\
++
++########################################
++#
++# TEMPLATETYPE local policy
++#
++
++"""
++
++te_existing_user_rules="""\
++
++########################################
++#
++# TEMPLATETYPE customized policy
++#
++
++"""
++
++te_x_login_user_rules="""\
++
++########################################
++#
++# TEMPLATETYPE local policy
++#
++"""
++
++te_root_user_rules="""\
++
++########################################
++#
++# TEMPLATETYPE local policy
++#
++"""
++
++te_transition_rules="""
++optional_policy(`
++      APPLICATION_role(TEMPLATETYPE_r, TEMPLATETYPE_t)
++')
++"""
++
++te_user_trans_rules="""
++optional_policy(`
++      gen_require(`
++              role USER_r;
++      ')
++
++      TEMPLATETYPE_role_change(USER_r)
++')
++"""
++
++te_admin_rules="""
++allow TEMPLATETYPE_t self:capability { dac_override dac_read_search kill sys_ptrace sys_nice };
++files_dontaudit_search_all_dirs(TEMPLATETYPE_t)
++
++selinux_get_enforce_mode(TEMPLATETYPE_t)
++seutil_domtrans_setfiles(TEMPLATETYPE_t)
++seutil_search_default_contexts(TEMPLATETYPE_t)
++
++logging_send_syslog_msg(TEMPLATETYPE_t)
++
++kernel_read_system_state(TEMPLATETYPE_t)
++
++domain_dontaudit_search_all_domains_state(TEMPLATETYPE_t)
++domain_dontaudit_ptrace_all_domains(TEMPLATETYPE_t)
++
++userdom_dontaudit_search_admin_dir(TEMPLATETYPE_t)
++userdom_dontaudit_search_user_home_dirs(TEMPLATETYPE_t)
++
++bool TEMPLATETYPE_read_user_files false;
++bool TEMPLATETYPE_manage_user_files false;
++
++if (TEMPLATETYPE_read_user_files) {
++      userdom_read_user_home_content_files(TEMPLATETYPE_t)
++      userdom_read_user_tmp_files(TEMPLATETYPE_t)
++}
++
++if (TEMPLATETYPE_manage_user_files) {
++      userdom_manage_user_home_content(TEMPLATETYPE_t)
++      userdom_manage_user_tmp_files(TEMPLATETYPE_t)
++}
++
++"""
++
++te_admin_trans_rules="""
++gen_require(`
++      role USER_r;
++')
++
++allow USER_r TEMPLATETYPE_r;
++"""
++
++te_admin_domain_rules="""
++optional_policy(`
++      APPLICATION_admin(TEMPLATETYPE_t, TEMPLATETYPE_r)
++')
++"""
++
++te_roles_rules="""
++optional_policy(`
++      gen_require(`
++              role ROLE_r;
++      ')
++
++      allow TEMPLATETYPE_r ROLE_r;
++')
++"""
++
++te_sudo_rules="""
++optional_policy(`
++      sudo_role_template(TEMPLATETYPE, TEMPLATETYPE_r, TEMPLATETYPE_t)
++')
++"""
++
++te_newrole_rules="""
++seutil_run_newrole(TEMPLATETYPE_t, TEMPLATETYPE_r)
++"""
+diff --git a/policycoreutils/gui/templates/var_cache.py b/policycoreutils/gui/templates/var_cache.py
+new file mode 100644
+index 0000000..84b342f
+--- /dev/null
++++ b/policycoreutils/gui/templates/var_cache.py
+@@ -0,0 +1,132 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### cache Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_cache_t;
++files_type(TEMPLATETYPE_cache_t)
++"""
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
++manage_lnk_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
++files_var_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_cache_t, { dir file })
++"""
++
++########################### Interface File #############################
++if_rules="""
++########################################
++## <summary>
++##    Search TEMPLATETYPE cache directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_search_cache',`
++      gen_require(`
++              type TEMPLATETYPE_cache_t;
++      ')
++
++      allow $1 TEMPLATETYPE_cache_t:dir search_dir_perms;
++      files_search_var($1)
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE cache files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_cache_files',`
++      gen_require(`
++              type TEMPLATETYPE_cache_t;
++      ')
++
++      files_search_var($1)
++      read_files_pattern($1, TEMPLATETYPE_cache_t TEMPLATETYPE_cache_t)
++')
++
++########################################
++## <summary>
++##    Create, read, write, and delete
++##    TEMPLATETYPE cache files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_cache_files',`
++      gen_require(`
++              type TEMPLATETYPE_cache_t;
++      ')
++
++      files_search_var($1)
++      manage_files_pattern($1, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE cache dirs.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_cache_dirs',`
++      gen_require(`
++              type TEMPLATETYPE_cache_t;
++      ')
++
++      files_search_var($1)
++      manage_dirs_pattern($1, TEMPLATETYPE_cache_t, TEMPLATETYPE_cache_t)
++')
++
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_cache_t;"""
++
++if_admin_rules="""
++      files_search_var($1)
++      admin_pattern($1, TEMPLATETYPE_cache_t)
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_cache_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_cache_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/var_lib.py b/policycoreutils/gui/templates/var_lib.py
+new file mode 100644
+index 0000000..8bde8c6
+--- /dev/null
++++ b/policycoreutils/gui/templates/var_lib.py
+@@ -0,0 +1,160 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### var_lib Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_var_lib_t;
++files_type(TEMPLATETYPE_var_lib_t)
++"""
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++files_var_lib_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, { dir file })
++"""
++
++te_stream_rules="""\
++allow TEMPLATETYPE_t TEMPLATETYPE_var_lib_t:sock_file manage_sock_file_perms;
++files_var_lib_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t, sock_file)
++"""
++
++
++########################### Interface File #############################
++if_rules="""
++########################################
++## <summary>
++##    Search TEMPLATETYPE lib directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_search_lib',`
++      gen_require(`
++              type TEMPLATETYPE_var_lib_t;
++      ')
++
++      allow $1 TEMPLATETYPE_var_lib_t:dir search_dir_perms;
++      files_search_var_lib($1)
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE lib files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_lib_files',`
++      gen_require(`
++              type TEMPLATETYPE_var_lib_t;
++      ')
++
++      files_search_var_lib($1)
++      read_files_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE lib files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_lib_files',`
++      gen_require(`
++              type TEMPLATETYPE_var_lib_t;
++      ')
++
++      files_search_var_lib($1)
++      manage_files_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE lib directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_lib_dirs',`
++      gen_require(`
++              type TEMPLATETYPE_var_lib_t;
++      ')
++
++      files_search_var_lib($1)
++      manage_dirs_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++')
++
++"""
++
++if_stream_rules="""
++########################################
++## <summary>
++##    Connect to TEMPLATETYPE over a unix stream socket.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_stream_connect',`
++      gen_require(`
++              type TEMPLATETYPE_t, TEMPLATETYPE_var_lib_t;
++      ')
++
++      stream_connect_pattern($1, TEMPLATETYPE_var_lib_t, TEMPLATETYPE_var_lib_t)
++')
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_var_lib_t;"""
++
++if_admin_rules="""
++      files_search_var_lib($1)
++      admin_pattern($1, TEMPLATETYPE_var_lib_t)
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
++"""
++
++fc_sock_file="""\
++FILENAME              -s      gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_var_lib_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/var_log.py b/policycoreutils/gui/templates/var_log.py
+new file mode 100644
+index 0000000..b57b93d
+--- /dev/null
++++ b/policycoreutils/gui/templates/var_log.py
+@@ -0,0 +1,114 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### var_log Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_log_t;
++logging_log_file(TEMPLATETYPE_log_t)
++"""
++
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++logging_log_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_log_t, { dir file })
++"""
++
++########################### Interface File #############################
++if_rules="""\
++########################################
++## <summary>
++##    Read TEMPLATETYPE's log files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++## <rolecap/>
++#
++interface(`TEMPLATETYPE_read_log',`
++      gen_require(`
++              type TEMPLATETYPE_log_t;
++      ')
++
++      logging_search_logs($1)
++      read_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++')
++
++########################################
++## <summary>
++##    Append to TEMPLATETYPE log files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_append_log',`
++      gen_require(`
++              type TEMPLATETYPE_log_t;
++      ')
++
++      logging_search_logs($1)
++      append_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE log files
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_log',`
++      gen_require(`
++              type TEMPLATETYPE_log_t;
++      ')
++
++      logging_search_logs($1)
++      manage_dirs_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++      manage_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++      manage_lnk_files_pattern($1, TEMPLATETYPE_log_t, TEMPLATETYPE_log_t)
++')
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_log_t;"""
++
++if_admin_rules="""
++      logging_search_logs($1)
++      admin_pattern($1, TEMPLATETYPE_log_t)
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_log_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_log_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/var_run.py b/policycoreutils/gui/templates/var_run.py
+new file mode 100644
+index 0000000..916f44c
+--- /dev/null
++++ b/policycoreutils/gui/templates/var_run.py
+@@ -0,0 +1,101 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### var_run Template File #############################
++
++te_types="""
++type TEMPLATETYPE_var_run_t;
++files_pid_file(TEMPLATETYPE_var_run_t)
++"""
++
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t)
++files_pid_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, { dir file })
++"""
++
++te_stream_rules="""
++allow TEMPLATETYPE_t TEMPLATETYPE_var_run_t:sock_file manage_sock_file_perms;
++files_pid_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_var_run_t, sock_file)
++"""
++
++if_rules="""\
++########################################
++## <summary>
++##    Read TEMPLATETYPE PID files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_pid_files',`
++      gen_require(`
++              type TEMPLATETYPE_var_run_t;
++      ')
++
++      files_search_pids($1)
++      allow $1 TEMPLATETYPE_var_run_t:file read_file_perms;
++')
++
++"""
++
++if_stream_rules="""\
++########################################
++## <summary>
++##    Connect to TEMPLATETYPE over a unix stream socket.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_stream_connect',`
++      gen_require(`
++              type TEMPLATETYPE_t, TEMPLATETYPE_var_run_t;
++      ')
++
++      files_search_pids($1)
++      stream_connect_pattern($1, TEMPLATETYPE_var_run_t, TEMPLATETYPE_var_run_t, TEMPLATETYPE_t)
++')
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_var_run_t;"""
++
++if_admin_rules="""
++      files_search_pids($1)
++      admin_pattern($1, TEMPLATETYPE_var_run_t)
++"""
++
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
++"""
++
++fc_sock_file="""\
++FILENAME              -s      gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_var_run_t,s0)
++"""
+diff --git a/policycoreutils/gui/templates/var_spool.py b/policycoreutils/gui/templates/var_spool.py
+new file mode 100644
+index 0000000..8055a9e
+--- /dev/null
++++ b/policycoreutils/gui/templates/var_spool.py
+@@ -0,0 +1,131 @@
++# Copyright (C) 2007-2012 Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# policygentool is a tool for the initial generation of SELinux policy
++#
++#    This program is free software; you can redistribute it and/or
++#    modify it under the terms of the GNU General Public License as
++#    published by the Free Software Foundation; either version 2 of
++#    the License, or (at your option) any later version.
++#
++#    This program is distributed in the hope that it will be useful,
++#    but WITHOUT ANY WARRANTY; without even the implied warranty of
++#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++#    GNU General Public License for more details.
++#
++#    You should have received a copy of the GNU General Public License
++#    along with this program; if not, write to the Free Software
++#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
++#                                        02111-1307  USA
++#
++#
++########################### var_spool Template File #############################
++
++########################### Type Enforcement File #############################
++te_types="""
++type TEMPLATETYPE_spool_t;
++files_type(TEMPLATETYPE_spool_t)
++"""
++te_rules="""
++manage_dirs_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++manage_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++manage_lnk_files_pattern(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++files_spool_filetrans(TEMPLATETYPE_t, TEMPLATETYPE_spool_t, { dir file })
++"""
++
++########################### Interface File #############################
++if_rules="""
++########################################
++## <summary>
++##    Search TEMPLATETYPE spool directories.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_search_spool',`
++      gen_require(`
++              type TEMPLATETYPE_spool_t;
++      ')
++
++      allow $1 TEMPLATETYPE_spool_t:dir search_dir_perms;
++      files_search_spool($1)
++')
++
++########################################
++## <summary>
++##    Read TEMPLATETYPE spool files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_read_spool_files',`
++      gen_require(`
++              type TEMPLATETYPE_spool_t;
++      ')
++
++      files_search_spool($1)
++      read_files_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE spool files.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_spool_files',`
++      gen_require(`
++              type TEMPLATETYPE_spool_t;
++      ')
++
++      files_search_spool($1)
++      manage_files_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++')
++
++########################################
++## <summary>
++##    Manage TEMPLATETYPE spool dirs.
++## </summary>
++## <param name="domain">
++##    <summary>
++##    Domain allowed access.
++##    </summary>
++## </param>
++#
++interface(`TEMPLATETYPE_manage_spool_dirs',`
++      gen_require(`
++              type TEMPLATETYPE_spool_t;
++      ')
++
++      files_search_spool($1)
++      manage_dirs_pattern($1, TEMPLATETYPE_spool_t, TEMPLATETYPE_spool_t)
++')
++
++"""
++
++if_admin_types="""
++              type TEMPLATETYPE_spool_t;"""
++
++if_admin_rules="""
++      files_search_spool($1)
++      admin_pattern($1, TEMPLATETYPE_spool_t)
++"""
++
++########################### File Context ##################################
++fc_file="""\
++FILENAME              --      gen_context(system_u:object_r:TEMPLATETYPE_spool_t,s0)
++"""
++
++fc_dir="""\
++FILENAME(/.*)?                gen_context(system_u:object_r:TEMPLATETYPE_spool_t,s0)
++"""
+diff --git a/policycoreutils/gui/usersPage.py b/policycoreutils/gui/usersPage.py
+new file mode 100644
+index 0000000..17c99df
+--- /dev/null
++++ b/policycoreutils/gui/usersPage.py
+@@ -0,0 +1,150 @@
++## usersPage.py - show selinux mappings
++## Copyright (C) 2006,2007,2008 Red Hat, Inc.
++
++## This program is free software; you can redistribute it and/or modify
++## it under the terms of the GNU General Public License as published by
++## the Free Software Foundation; either version 2 of the License, or
++## (at your option) any later version.
++
++## This program is distributed in the hope that it will be useful,
++## but WITHOUT ANY WARRANTY; without even the implied warranty of
++## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++## GNU General Public License for more details.
++
++## You should have received a copy of the GNU General Public License
++## along with this program; if not, write to the Free Software
++## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++
++## Author: Dan Walsh
++import string
++import gtk
++import gtk.glade
++import os
++import gobject
++import sys
++import commands
++import seobject
++from semanagePage import *;
++
++##
++## I18N
++## 
++PROGNAME="policycoreutils"
++import gettext
++gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
++gettext.textdomain(PROGNAME)
++try:
++    gettext.install(PROGNAME, localedir="/usr/share/locale", unicode=1)
++except IOError:
++    import __builtin__
++    __builtin__.__dict__['_'] = unicode
++
++class usersPage(semanagePage):
++    def __init__(self, xml):
++        semanagePage.__init__(self, xml, "users", _("SELinux User"))
++
++        self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
++        self.view.set_model(self.store)
++        self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)        
++
++        col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text = 0)
++        col.set_sort_column_id(0)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text = 1)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        col = gtk.TreeViewColumn(_("SELinux Roles"), gtk.CellRendererText(), text = 2)
++        col.set_resizable(True)
++        self.view.append_column(col)
++
++        self.load()
++        self.selinuxUserEntry = xml.get_widget("selinuxUserEntry")
++        self.mlsRangeEntry = xml.get_widget("mlsRangeEntry")
++        self.selinuxRolesEntry = xml.get_widget("selinuxRolesEntry")
++
++    def load(self, filter = ""):
++        self.filter=filter            
++        self.user = seobject.seluserRecords()
++        dict = self.user.get_all()
++        keys = dict.keys()
++        keys.sort()
++        self.store.clear()
++        for k in keys:
++            range = seobject.translate(dict[k][2])
++            if not (self.match(k, filter) or self.match(dict[k][0], filter) or self.match(range, filter) or self.match(dict[k][3], filter)):
++                continue
++            
++            iter = self.store.append()
++            self.store.set_value(iter, 0, k)
++            self.store.set_value(iter, 1, range)
++            self.store.set_value(iter, 2, dict[k][3])
++        self.view.get_selection().select_path ((0,))
++
++    def delete(self):
++        if semanagePage.delete(self) == gtk.RESPONSE_NO:
++                return None
++
++    def dialogInit(self):
++        store, iter = self.view.get_selection().get_selected()
++        self.selinuxUserEntry.set_text(store.get_value(iter, 0))
++        self.selinuxUserEntry.set_sensitive(False)
++        self.mlsRangeEntry.set_text(store.get_value(iter, 1))
++        self.selinuxRolesEntry.set_text(store.get_value(iter, 2))
++        
++    def dialogClear(self):
++        self.selinuxUserEntry.set_text("")
++        self.selinuxUserEntry.set_sensitive(True)
++        self.mlsRangeEntry.set_text("s0")
++        self.selinuxRolesEntry.set_text("")
++        
++    def add(self):
++        user = self.selinuxUserEntry.get_text()
++        range = self.mlsRangeEntry.get_text()
++        roles = self.selinuxRolesEntry.get_text()
++
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage user -a -R '%s' -r %s %s" %  (roles, range, user))
++        self.ready()
++        if rc != 0:
++            self.error(out)
++            return False
++        iter = self.store.append()
++        self.store.set_value(iter, 0, user)
++        self.store.set_value(iter, 1, range)
++        self.store.set_value(iter, 2, roles)
++        
++    def modify(self):
++        user = self.selinuxUserEntry.get_text()
++        range = self.mlsRangeEntry.get_text()
++        roles = self.selinuxRolesEntry.get_text()
++
++        self.wait()
++        (rc, out) = commands.getstatusoutput("semanage user -m -R '%s' -r %s %s" %  (roles, range, user))
++        self.ready()
++
++        if rc != 0:
++            self.error(out)
++            return False
++        self.load(self.filter)
++
++    def delete(self):
++        store, iter = self.view.get_selection().get_selected()
++        try:
++            user=store.get_value(iter, 0)
++            if user == "root" or user == "user_u":
++                raise ValueError(_("SELinux user '%s' is required") % user)
++                
++            self.wait()
++            (rc, out) = commands.getstatusoutput("semanage user -d %s" %  user)
++            self.ready()
++            if rc != 0:
++                self.error(out)
++                return False
++            store.remove(iter)
++            self.view.get_selection().select_path ((0,))
++        except ValueError, e:
++            self.error(e.args[0])
++
+diff --git a/policycoreutils/load_policy/Makefile b/policycoreutils/load_policy/Makefile
+index 5da2e0d..0e9d66f 100644
+--- a/policycoreutils/load_policy/Makefile
++++ b/policycoreutils/load_policy/Makefile
+@@ -19,7 +19,7 @@ install: all
+       test -d $(MANDIR)/man8 || install -m 755 -d $(MANDIR)/man8
+       install -m 644 load_policy.8 $(MANDIR)/man8/
+       -mkdir -p $(USRSBINDIR)
+-      -ln -sf /sbin/load_policy $(USRSBINDIR)/load_policy
++      -ln -s /sbin/load_policy $(USRSBINDIR)/load_policy
+ clean:
+       -rm -f $(TARGETS) *.o 
+diff --git a/policycoreutils/mcstrans/man/man8/mcstransd.8 b/policycoreutils/mcstrans/man/man8/mcstransd.8
+index 4c63965..718fd85 100644
+--- a/policycoreutils/mcstrans/man/man8/mcstransd.8
++++ b/policycoreutils/mcstrans/man/man8/mcstransd.8
+@@ -3,7 +3,7 @@
+ mcstransd \- MCS (Multiple Category System) daemon.  Translates SELinux MCS/MLS labels to human readable form.
+ .SH "SYNOPSIS"
+-.B mcstransd 
++.B mcstransd [-f] [-h]
+ .P
+ .SH "DESCRIPTION"
+@@ -12,6 +12,13 @@ This manual page describes the
+ program.
+ .P
+ This daemon reads /etc/selinux/{SELINUXTYPE}/setrans.conf configuration file, and communicates with libselinux via a socket in /var/run/setrans.
++.SH "OPTIONS"
++.TP
++-f
++Run mcstransd in the foreground.  Do not run as a daemon.
++.TP
++-h
++Output a short summary of available command line options\&.  
+ .SH "AUTHOR"
+ This man page was written by Dan Walsh <dwalsh@redhat.com>.
+diff --git a/policycoreutils/mcstrans/src/mcstransd.c b/policycoreutils/mcstrans/src/mcstransd.c
+index 26d9be8..a65076d 100644
+--- a/policycoreutils/mcstrans/src/mcstransd.c
++++ b/policycoreutils/mcstrans/src/mcstransd.c
+@@ -1,5 +1,4 @@
+ /* Copyright (c) 2006 Trusted Computer Solutions, Inc. */
+-
+ #include <sys/types.h>
+ #include <sys/socket.h>
+ #include <sys/poll.h>
+@@ -13,6 +12,7 @@
+ #include <signal.h>
+ #include <string.h>
+ #include <syslog.h>
++#include <unistd.h>
+ #include <selinux/selinux.h>
+ #include <sys/types.h>
+ #include <sys/capability.h>
+@@ -556,9 +556,31 @@ void dropprivs(void)
+       cap_free(new_caps);
+ }
++static void usage(char *program)
++{
++      printf("%s [-f] [-h] \n", program);
++}
++
+ int
+-main(int UNUSED(argc), char *argv[])
++main(int argc, char *argv[])
+ {
++      int opt;
++      int do_fork = 1;
++      while ((opt = getopt(argc, argv, "hf")) > 0) {
++              switch (opt) {
++              case 'f':
++                      do_fork = 0;
++                      break;
++              case 'h':
++                      usage(argv[0]);
++                      exit(0);
++                      break;
++              case '?':
++                      usage(argv[0]);
++                      exit(-1);
++              }
++      }
++
+ #ifndef DEBUG
+       /* Make sure we are root */
+       if (getuid() != 0) {
+@@ -576,7 +598,7 @@ main(int UNUSED(argc), char *argv[])
+       dropprivs();
+       /* run in the background as a daemon */
+-      if (daemon(0, 0)) {
++      if (do_fork && daemon(0, 0)) {
+               syslog(LOG_ERR, "daemon() failed: %m");
+               cleanup_exit(1);
+       }
+diff --git a/policycoreutils/newrole/newrole.c b/policycoreutils/newrole/newrole.c
+index 42f08d0..989817b 100644
+--- a/policycoreutils/newrole/newrole.c
++++ b/policycoreutils/newrole/newrole.c
+@@ -543,14 +543,14 @@ static int restore_environment(int preserve_environment,
+ #if defined(AUDIT_LOG_PRIV) && !defined(NAMESPACE_PRIV)
+ static int drop_capabilities(int full)
+ {
++      uid_t uid = getuid();
++      if (!uid) return 0;
++
+       capng_setpid(getpid());
+       capng_clear(CAPNG_SELECT_BOTH);
+       if (capng_lock() < 0) 
+               return -1;
+-      uid_t uid = getuid();
+-      if (!uid) return 0;
+-
+       /* Change uid */
+       if (setresuid(uid, uid, uid)) {
+               fprintf(stderr, _("Error changing uid, aborting.\n"));
+@@ -1032,10 +1032,11 @@ int main(int argc, char *argv[])
+        * if it makes sense to continue to run newrole, and setting up
+        * a scrubbed environment.
+        */
+-      if (drop_capabilities(FALSE)) {
++/*    if (drop_capabilities(FALSE)) {
+               perror(_("Sorry, newrole failed to drop capabilities\n"));
+               return -1;
+       }
++*/
+       if (set_signal_handles())
+               return -1;
+diff --git a/policycoreutils/po/Makefile b/policycoreutils/po/Makefile
+index a52e4b0..1b8c8c0 100644
+--- a/policycoreutils/po/Makefile
++++ b/policycoreutils/po/Makefile
+@@ -45,7 +45,34 @@ POTFILES = \
+       ../restorecond/stringslist.h \
+       ../restorecond/restorecond.c \
+       ../restorecond/utmpwatcher.c \
+-      ../secon/secon.c \
++      ../gui/booleansPage.py \
++      ../gui/fcontextPage.py \
++      ../gui/loginsPage.py \
++      ../gui/mappingsPage.py \
++      ../gui/modulesPage.py \
++      ../gui/polgen.glade \
++      ../gui/polgengui.py \
++      ../gui/polgen.py \
++      ../gui/portsPage.py \
++      ../gui/selinux.tbl \
++      ../gui/semanagePage.py \
++      ../gui/statusPage.py \
++      ../gui/system-config-selinux.glade \
++      ../gui/system-config-selinux.py \
++      ../gui/usersPage.py \
++      ../gui/templates/executable.py \
++      ../gui/templates/__init__.py \
++      ../gui/templates/network.py \
++      ../gui/templates/rw.py \
++      ../gui/templates/script.py \
++      ../gui/templates/semodule.py \
++      ../gui/templates/tmp.py \
++      ../gui/templates/user.py \
++      ../gui/templates/var_lib.py \
++      ../gui/templates/var_log.py \
++      ../gui/templates/var_run.py \
++      ../gui/templates/var_spool.py \
++      ../secon/secon.c
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ #default:: clean
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
+diff --git a/policycoreutils/po/POTFILES b/policycoreutils/po/POTFILES
+index 7d9ad7d..667e394 100644
+--- a/policycoreutils/po/POTFILES
++++ b/policycoreutils/po/POTFILES
+@@ -1,26 +1,50 @@
+-      ../run_init/open_init_pty.c \
+-      ../run_init/run_init.c \
+-      ../semodule_link/semodule_link.c \
+-      ../audit2allow/audit2allow \
+-      ../semanage/seobject.py \
+-      ../restorecon/restorecon.c \
+-      ../setsebool/setsebool.c \
+-      ../newrole/newrole.c \
+-      ../load_policy/load_policy.c \
+-      ../sestatus/sestatus.c \
+-      ../semodule/semodule.c \
+-      ../setfiles/setfiles.c \
+-      ../semodule_package/semodule_package.c \
+-      ../semodule_deps/semodule_deps.c \
+-      ../semodule_expand/semodule_expand.c \
+-      ../scripts/genhomedircon \
+-      ../scripts/chcat \
+-      ../scripts/fixfiles \
+-      ../restorecond/stringslist.c \
+-      ../restorecond/restorecond.h \
+-      ../restorecond/utmpwatcher.h \
+-      ../restorecond/stringslist.h \
+-      ../restorecond/restorecond.c \
+-      ../restorecond/utmpwatcher.c \
+-      ../secon/secon.c \
+-
++      ../run_init/open_init_pty.c
++      ../run_init/run_init.c
++      ../semodule_link/semodule_link.c
++      ../audit2allow/audit2allow
++      ../semanage/seobject.py
++      ../setsebool/setsebool.c
++      ../newrole/newrole.c
++      ../load_policy/load_policy.c
++      ../sestatus/sestatus.c
++      ../semodule/semodule.c
++      ../setfiles/setfiles.c
++      ../semodule_package/semodule_package.c
++      ../semodule_deps/semodule_deps.c
++      ../semodule_expand/semodule_expand.c
++      ../scripts/chcat
++      ../scripts/fixfiles
++      ../restorecond/stringslist.c
++      ../restorecond/restorecond.h
++      ../restorecond/utmpwatcher.h
++      ../restorecond/stringslist.h
++      ../restorecond/restorecond.c
++      ../restorecond/utmpwatcher.c
++      ../gui/booleansPage.py
++      ../gui/fcontextPage.py
++      ../gui/loginsPage.py
++      ../gui/mappingsPage.py
++      ../gui/modulesPage.py
++      ../gui/polgen.glade
++      ../gui/polgengui.py
++      ../gui/polgen.py
++      ../gui/portsPage.py
++      ../gui/selinux.tbl
++      ../gui/semanagePage.py
++      ../gui/statusPage.py
++      ../gui/system-config-selinux.glade
++      ../gui/system-config-selinux.py
++      ../gui/usersPage.py
++      ../gui/templates/executable.py
++      ../gui/templates/__init__.py
++      ../gui/templates/network.py
++      ../gui/templates/rw.py
++      ../gui/templates/script.py
++      ../gui/templates/semodule.py
++      ../gui/templates/tmp.py
++      ../gui/templates/user.py
++      ../gui/templates/var_lib.py
++      ../gui/templates/var_log.py
++      ../gui/templates/var_run.py
++      ../gui/templates/var_spool.py
++      ../secon/secon.c
+diff --git a/policycoreutils/po/POTFILES.in b/policycoreutils/po/POTFILES.in
+index 0cbf0a9..aab1a4e 100644
+--- a/policycoreutils/po/POTFILES.in
++++ b/policycoreutils/po/POTFILES.in
+@@ -34,7 +34,6 @@ gui/semanagePage.py
+ gui/statusPage.py
+ gui/system-config-selinux.glade
+ gui/system-config-selinux.py
+-gui/translationsPage.py
+ gui/usersPage.py
+ gui/templates/executable.py
+ gui/templates/__init__.py
+diff --git a/policycoreutils/po/af.po b/policycoreutils/po/af.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/af.po
++++ b/policycoreutils/po/af.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -978,13 +14800,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -1006,7 +14828,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -1033,7 +14855,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -1041,15 +14863,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -1074,481 +14892,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -1581,7 +15459,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -2709,18 +16587,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -2761,7 +16635,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -2770,25 +16643,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -2800,58 +16667,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -2859,169 +16726,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -3029,978 +16879,94 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils-2.0.85/po/am.po
---- nsapolicycoreutils/po/am.po        2011-02-17 15:11:25.659726051 -0500
-+++ policycoreutils-2.0.85/po/am.po    2011-02-18 16:03:41.332975492 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/am.po b/policycoreutils/po/am.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/am.po
++++ b/policycoreutils/po/am.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -4009,13 +16975,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -4037,7 +17003,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -4064,7 +17030,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -4072,15 +17038,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -4105,481 +17067,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -4612,7 +17634,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -5740,18 +18762,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -5792,7 +18810,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -5801,25 +18818,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -5831,58 +18842,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -5890,169 +18901,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -6060,63 +19054,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils-2.0.85/po/ar.po
---- nsapolicycoreutils/po/ar.po        2011-02-17 15:11:25.688725570 -0500
-+++ policycoreutils-2.0.85/po/ar.po    2011-02-18 16:03:41.336975520 -0500
-@@ -1,20 +1,44 @@
--# SOME DESCRIPTIVE TITLE.
+diff --git a/policycoreutils/po/ar.po b/policycoreutils/po/ar.po
+index afeaa9f..30906fe 100644
+--- a/policycoreutils/po/ar.po
++++ b/policycoreutils/po/ar.po
+@@ -1,21 +1,27 @@
+ # 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.
  #
 -#, fuzzy
++# Translators:
++# Ali Al-Ammari <ali.a.alammari@gmail.com>, 2010.
 +# Amjad Al-Obaili <moltaheb@hotmail.com>, 2010.
 +# Majed Abdullah <majed1ksu@hotmail.com>, 2010.
++# Munzir Taha <munzirtaha@gmail.com>, 2012.
 +# Saud Al-Otaibi <ss08ss08@hotmail.com>, 2010.
-+# Ali Al-Ammari <ali.a.alammari@gmail.com>, 2010.
  msgid ""
  msgstr ""
 -"Project-Id-Version: PACKAGE VERSION\n"
-+"Project-Id-Version: \n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-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: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-14 13:36+0300\n"
-+"Last-Translator: Ali Al-Ammari <ali.a.alammari@gmail.com>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
 +"Language-Team: Arabic <trans-ar@lists.fedoraproject.org>\n"
 +"Language: ar\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-+"X-Generator: Lokalize 1.0\n"
 +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "إنشاء وحدة سياسة جديدة"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux أداة توليد السياسة"
++"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -22,1251 +46,3455 @@
+@@ -23,128 +29,131 @@ msgid ""
  "  where: <script> is the name of the init script to run,\n"
  "         <args ...> are the arguments to that script."
  msgstr ""
@@ -6124,7 +19102,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"  عند: <script> هو اسم برنامج init النصي الذي سيعمل,\n"
 +"         <args ...> هي المدخلات لهذا البرنامج النصي."
  
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
  #, c-format
  msgid "failed to initialize PAM\n"
 -msgstr ""
@@ -6136,18 +19114,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 -msgstr ""
 +msgstr "خطأ في الحصول على معلومات الحساب\n"
  
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
  msgid "Password:"
 -msgstr ""
 +msgstr "كلمة المرور:"
  
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
  #, c-format
  msgid "Cannot find your entry in the shadow passwd file.\n"
 -msgstr ""
 +msgstr "لم يتم العثور على حسابك في ملف كلمات السر المظللة (passwd).\n"
  
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
  #, c-format
  msgid "getpass cannot open /dev/tty\n"
 -msgstr ""
@@ -6183,1508 +19161,1254 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 -msgstr ""
 +msgstr "فشل في التوثيق.\n"
  
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
  #, c-format
  msgid "Could not set exec context to %s.\n"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق exec لـ %s.\n"
  
- #: ../audit2allow/audit2allow:217
+ #: ../audit2allow/audit2allow:230
  msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
 +msgstr "******************** مهم ***********************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
 -msgstr ""
 +msgstr "لتفعيل حزمة السياسات هذه، نفذ:"
  
- #: ../semanage/seobject.py:48
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "شامل"
+ #: ../semanage/seobject.py:222
  msgid "Could not create semanage handle"
 -msgstr ""
 +msgstr "لا يمكن إنشاء معالج semanage"
  
- #: ../semanage/seobject.py:55
+ #: ../semanage/seobject.py:230
  msgid "SELinux policy is not managed or store cannot be accessed."
 -msgstr ""
 +msgstr "سياسة SELinux غير مُدارة أو لا يمكن الوصول إلى المخزن."
  
- #: ../semanage/seobject.py:60
+ #: ../semanage/seobject.py:235
  msgid "Cannot read policy store."
 -msgstr ""
 +msgstr "لا يمكن قراءة مخزن السياسات."
  
- #: ../semanage/seobject.py:65
+ #: ../semanage/seobject.py:240
  msgid "Could not establish semanage connection"
 -msgstr ""
 +msgstr "لا يمكن  إنشاء اتصال semanage"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
  msgid "Could not test MLS enabled status"
 -msgstr ""
 +msgstr "لا يمكن اختبار حالة تفعيل MLS"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "شامل"
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr ""
-+msgstr "لا يمكن فتح %s: الترجمات غير مدعومة على غير أجهزة MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "مستوى"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "ترجمة"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr ""
-+msgstr "لا يمكن للترجمة أن تحتوي على فراغات '%s'"
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr ""
-+msgstr "مستوى خاطئ '%s'"
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr ""
-+msgstr "%s معرفة مسبقا في الترجمات"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr ""
-+msgstr "%s غير معرفة في الترجمات"
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
 +msgstr "غير مطبقة بعد"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "عملية semanage تحت التنفيذ"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
 -msgstr ""
 +msgstr "لا يمكن بدء عملية semanage"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
  msgid "Could not commit semanage transaction"
 -msgstr ""
 +msgstr "لا يمكن تنفيذ عملية semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "عملية semanage ليست تحت التنفيذ"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة وحدات SELinux"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
 -msgstr ""
-+msgstr "الأنواع المتساهلة"
++msgstr "اسم الوحدة"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "إصدار"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "معطّل"
+ #: ../semanage/seobject.py:322
+ #, python-format
+@@ -176,12 +185,12 @@ msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
 -msgstr ""
 +msgstr "لا يمكن ضبط النطاق المتساهل %s (خطأ في تثبيت الوحدة)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
 +msgstr "لا يمكن إزالة النطاق المتساهل %s (فشل في الإزالة)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -192,212 +201,218 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء مفتاح لـ %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق في إذا ما كان مخطط الدخول لـ %s معرفا"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr ""
-+msgstr "مخطط الدخول لـ %s معرف سابقا"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
+ #: ../semanage/seobject.py:492
  #, python-format
  msgid "Linux Group %s does not exist"
 -msgstr ""
 +msgstr "مجموعة لينكس %s غير موجودة"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
  msgid "Linux User %s does not exist"
 -msgstr ""
 +msgstr "مستخدم لينكس %s غير موجود"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء مخطط الدخول لـ %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط اسم لـ %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مدى MLS لـ %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستخدم SELinux لـ %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة مخطط الدخول لـ %s"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr ""
-+msgstr "إضافة مخطط مستخدم SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
 -msgstr ""
 +msgstr "بحاجة إلى seuser أو serange"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
 -msgstr ""
 +msgstr "مخطط الدخول لـ %s غير معرّف"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
 -msgstr ""
 +msgstr "لا يمكن استعلام seuser لـ %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
 -msgstr ""
 +msgstr "لا يمكن تغيير مخطط الدخول لـ %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "تخطيط الدخول لـ %s معرف في السياسة، لا يمكن حذفه"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
 -msgstr ""
 +msgstr "لا يمكن حذف تخطيط الدخول لـ %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة تخطيطات الدخول"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
 -msgstr ""
 +msgstr "اسم الدخول"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr ""
 +msgstr "مستخدم SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
 -msgstr ""
 +msgstr "مدى MLS/MCS"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
  #, python-format
- msgid "You must add at least one role for %s"
+ msgid "Could not check if SELinux user %s is defined"
 -msgstr ""
-+msgstr "Ù\8aجب Ø¥Ø¶Ø§Ù\81Ø© Ø¯Ù\88ر Ù\88احد Ø¹Ù\84Ù\89 Ø§Ù\84Ø£Ù\82Ù\84 Ù\84Ù\80 %s"
++msgstr "Ù\84ا Ù\8aÙ\85Ù\83Ù\86 Ø§Ù\84تحÙ\82Ù\82 Ù\85Ù\86 Ø¥Ø°Ø§ Ù\83اÙ\86 Ù\85ستخدÙ\85 SELinux %s Ù\85عرÙ\81ا"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
+ msgid "Could not query user for %s"
 -msgstr ""
-+msgstr "لا يمكن التحقق من إذا كان مستخدم SELinux %s معرفا"
++msgstr "لا يمكن استعلام المستخدم عن %s"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:722
  #, python-format
- msgid "SELinux user %s is already defined"
+ msgid "You must add at least one role for %s"
 -msgstr ""
-+msgstr "Ù\85ستخدÙ\85 SELinux %s Ù\85عرÙ\81 Ù\85سبÙ\82ا"
++msgstr "Ù\8aجب Ø¥Ø¶Ø§Ù\81Ø© Ø¯Ù\88ر Ù\88احد Ø¹Ù\84Ù\89 Ø§Ù\84Ø£Ù\82Ù\84 Ù\84Ù\80 %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء مستخدم SELinux لـ %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة دور %s لـ %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستوى MLS لـ %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة البادئة %s لـ %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
 -msgstr ""
 +msgstr "لا يمكن استخراج مفتاح لـ %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة مستخدم SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
 -msgstr ""
 +msgstr "يحتاج إلى بادئة، أدوار، مستويات أو مدى"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
 -msgstr ""
 +msgstr "يحتاج إلى بادئة أو أدوار"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
 -msgstr ""
 +msgstr "مستخدم SELinux %s غير معرف"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr ""
-+msgstr "لا يمكن استعلام المستخدم عن %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
 -msgstr ""
 +msgstr "لا يمكن تعديل مستخدم SELinux %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "مستخدم SELinux لـ %s معرف في السياسة، لا يمكن حذفه"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
 -msgstr ""
 +msgstr "لا يمكن حذف مستخدم SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة مستخدمي SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة أدوار المستخدم %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
 -msgstr ""
 +msgstr "عنونة"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
 -msgstr ""
 +msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
 -msgstr ""
 +msgstr "بادئة"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
 -msgstr ""
 +msgstr "مستوى MSC"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
 -msgstr ""
 +msgstr "مدى MSC"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
 -msgstr ""
 +msgstr "أدوار SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
 -msgstr ""
 +msgstr "بروتوكول udp أو tcp مطلوب"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
 -msgstr ""
 +msgstr "المنفذ مطلوب"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:975
+ msgid "Invalid Port"
+@@ -406,134 +421,134 @@ msgstr ""
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء مفتاح لـ %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
 -msgstr ""
 +msgstr "النوع مطلوب"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق من إذا كان المنفذ %s/%s معرفا"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
  msgid "Port %s/%s already defined"
 -msgstr ""
 +msgstr "المنفذ %s/%s معرف مسبقا"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء منفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء سياق لـ %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستخدم في سياق المنفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن ضبط دور في سياق المنفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن ضبط نوع في سياق المنفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن ضبط حقل mls في سياق المنفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق المنفذ لـ %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
 -msgstr ""
 +msgstr "لا يمكن إضافة المنفذ %s/%s"
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
  msgid "Requires setype or serange"
 -msgstr ""
 +msgstr "يتطلب setype أو serange"
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
+ #: ../semanage/seobject.py:1049
  msgid "Requires setype"
 -msgstr ""
 +msgstr "يتطلب setype"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
  #, python-format
  msgid "Port %s/%s is not defined"
 -msgstr ""
 +msgstr "المنفذ %s/%s غير معرفة"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
 -msgstr ""
 +msgstr "لا يمكن استعلام المنفذ %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
 -msgstr ""
 +msgstr "لا يمكن تعديل المنفذ %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
  msgid "Could not list the ports"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة المنافذ"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
+ #: ../semanage/seobject.py:1101
  #, python-format
  msgid "Could not delete the port %s"
 -msgstr ""
 +msgstr "لا يمكن حذف المنفذ %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "المنفذ %s/%s معرف في السياسة، لا يمكن حذفه"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
 -msgstr ""
 +msgstr "لا يمكن حذف المنفذ %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة المنافذ"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
 -msgstr ""
 +msgstr "نوع منفذ SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
 -msgstr ""
 +msgstr "الأول"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
 -msgstr ""
 +msgstr "رقم المنفذ"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
  msgid "Node Address is required"
 -msgstr ""
 +msgstr "عنوان العقدة مطلوب"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr ""
-+msgstr "قناع شبكة العقدة مطلوب"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "البروتوكول غير معروف أو مفقود"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
 -msgstr ""
 +msgstr "نوع SELinux مطلوب"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -541,84 +556,84 @@ msgstr ""
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء مفتاح لـ %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
  #, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق من إذا كان العنوان %s معرفا"
  
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
--msgstr ""
-+msgstr "العنوان %s معرف مسبقا"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
+ #: ../semanage/seobject.py:1262
  #, python-format
  msgid "Could not create addr for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء العنوان لـ %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء سياق لـ %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
+ #: ../semanage/seobject.py:1272
  #, python-format
  msgid "Could not set mask for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط قناع لـ %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
+ #: ../semanage/seobject.py:1276
  #, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستخدم في سياق العنوان لـ %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1280
  #, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط دور في سياق العنوان لـ %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1284
  #, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط نوع في سياق العنوان لـ %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
+ #: ../semanage/seobject.py:1289
  #, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط حقل mls في سياق العنوان لـ %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1293
  #, python-format
  msgid "Could not set addr context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق العنوان لـ %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1297
  #, python-format
  msgid "Could not add addr %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة العنوان %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
  #, python-format
  msgid "Addr %s is not defined"
 -msgstr ""
 +msgstr "العنوان %s غير معرف"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
+ #: ../semanage/seobject.py:1326
  #, python-format
  msgid "Could not query addr %s"
 -msgstr ""
 +msgstr "لا يمكن استعلام العنوان %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
+ #: ../semanage/seobject.py:1336
  #, python-format
  msgid "Could not modify addr %s"
 -msgstr ""
 +msgstr "لا يمكن تعديل العنوان %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
+ #: ../semanage/seobject.py:1364
  #, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "العنوان %s معرف في السياسة، لا يمكن حذفه"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1368
  #, python-format
  msgid "Could not delete addr %s"
 -msgstr ""
 +msgstr "لا يمكن حذف العنوان %s"
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
+ #: ../semanage/seobject.py:1380
+ msgid "Could not deleteall node mappings"
+@@ -626,78 +641,78 @@ msgstr ""
+ #: ../semanage/seobject.py:1394
  msgid "Could not list addrs"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة العناوين"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق من إذا كانت الواجهة %s معرفة"
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr ""
-+msgstr "الواجهة %s معرفة مسبقا"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء واجهة لـ %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستخدم في سياق الواجهة لـ %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط دور في سياق الواجهة لـ %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط نوع في سياق الواجهة لـ %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط حقل mls في سياق الواجهة لـ %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق المنفذ لـ %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق الرسالة ل%s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة الواجهة %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
 -msgstr ""
 +msgstr "الواجهة %s غير معرفة"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
 -msgstr ""
 +msgstr "لا يمكن استعلام الواجهة %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
 -msgstr ""
 +msgstr "لا يمكن تعديل الواجهة %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "الواجهة %s معرفة في السياسة، لا يمكن حذفها"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
 -msgstr ""
 +msgstr "لا يمكن حذف الواجهة %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+ msgid "Could not delete all interface  mappings"
+@@ -705,15 +720,15 @@ msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة الواجهات"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr ""
 +msgstr "واجهة SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
 -msgstr ""
 +msgstr "سياق"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1663
+ #, python-format
+@@ -733,21 +748,21 @@ msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط مستخدم في سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط دور في سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط حقل mls في سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
 -msgstr ""
 +msgstr "مواصفات ملف خاطئة"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -764,82 +779,82 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق من إذا كان سياق الملف لـ %s معرفا"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr ""
-+msgstr "سياق الملف لـ %s معرف مسبقا"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
 -msgstr ""
 +msgstr "لا يمكن إنشاء سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط نوع في سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط سياق ملف لـ %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
 -msgstr ""
 +msgstr "لا يمكن إضافة سياق ملف لـ %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
 -msgstr ""
 +msgstr "يتطلب setype، serange أو seuser"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
 -msgstr ""
 +msgstr "سياق الملف لـ %s غير معرف"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
 -msgstr ""
 +msgstr "لا يمكن استعلام سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
 -msgstr ""
 +msgstr "لا يمكن تعديل سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة سياقات الملفات"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
 -msgstr ""
 +msgstr "لا يمكن حذف سياق الملف %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "سياق الملف لـ %s معرف في السياسة، لا يمكن حذفه"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
 -msgstr ""
 +msgstr "لا يمكن حذف سياق الملف لـ %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة سياقات الملفات"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة سياقات الملفات المحلية"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
 -msgstr ""
 +msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
 -msgstr ""
 +msgstr "نوع"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -857,67 +872,67 @@ msgstr ""
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
 -msgstr ""
 +msgstr "لا يمكن التحقق من إذا كانت القيمة المنطقية %s معرفة"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
 -msgstr ""
 +msgstr "القيمة المنطقية %s غير معرفة"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
 -msgstr ""
 +msgstr "لا يمكن استعلام سياق الملف %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
+ #: ../semanage/seobject.py:1999
  #, python-format
  msgid "You must specify one of the following values: %s"
 -msgstr ""
 +msgstr "يجب أن تحدد أحد القيم التالية: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:2004
  #, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr ""
 +msgstr "لا يمكن ضبط القيمة المنطقية النشطة %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
 -msgstr ""
 +msgstr "لا يمكن تعديل القيمة المنطقية %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
 +msgstr "بنية خاطئة %s: سجّل %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
 -msgstr ""
 +msgstr "القيمة المنطقية %s معرفة في السياسة، لا يمكن حذفها"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
 -msgstr ""
 +msgstr "لا يمكن حذف القيمة المنطقية %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
 -msgstr ""
 +msgstr "لا يمكن عرض قائمة القيم المنطقية"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "غير معروف"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
 +msgstr "إلغاء التشغيل"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
 -msgstr ""
 +msgstr "تشغيل"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr ""
 +msgstr "قيمة منطقية لـSELinux"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+@@ -927,344 +942,2434 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "وصف"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
  msgid "failed to set PAM_TTY\n"
 -msgstr ""
 +msgstr "خطأ في ضبط PAM_TTY\n"
  
- #: ../newrole/newrole.c:287
+ #: ../newrole/newrole.c:290
  #, c-format
  msgid "newrole: service name configuration hashtable overflow\n"
 -msgstr ""
 +msgstr "دور جديد: جدول مختصرات إعدادات أسماء الخدمات فائضة\n"
  
- #: ../newrole/newrole.c:297
+ #: ../newrole/newrole.c:300
  #, c-format
  msgid "newrole:  %s:  error on line %lu.\n"
 -msgstr ""
 +msgstr "دور جديد: %s: خطأ في سطر %lu.\n"
  
- #: ../newrole/newrole.c:436
+ #: ../newrole/newrole.c:439
  #, c-format
  msgid "cannot find valid entry in the passwd file.\n"
 -msgstr ""
 +msgstr "لم يتم الوجود على قيد صالح في ملف كلمات السر (passwd).\n"
  
- #: ../newrole/newrole.c:447
+ #: ../newrole/newrole.c:450
  #, c-format
  msgid "Out of memory!\n"
 -msgstr ""
 +msgstr "نفذت الذاكرة!\n"
  
- #: ../newrole/newrole.c:452
+ #: ../newrole/newrole.c:455
  #, c-format
  msgid "Error!  Shell is not valid.\n"
 -msgstr ""
 +msgstr "خطأ! القشرة (Shell) غير صالحة.\n"
  
- #: ../newrole/newrole.c:509
+ #: ../newrole/newrole.c:512
  #, c-format
  msgid "Unable to clear environment\n"
 -msgstr ""
 +msgstr "لا يمكن في إخلاء البيئة\n"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
- #, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr ""
-+msgstr "خطأ في ابتداء القدرات، سيتم الإلغاء.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr ""
-+msgstr "خطأ في إعداد القدرات، سيتم الإلغاء.\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr ""
-+msgstr "خطأ في إعداد KEEPCAPS، سيتم الإلغاء.\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr ""
-+msgstr "خطأ في إسقاط القدرات، سيتم الإلغاء.\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
  #, c-format
  msgid "Error changing uid, aborting.\n"
 -msgstr ""
 +msgstr "خطأ في تغيير uid، سيتم الإلغاء.\n"
  
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
+ #: ../newrole/newrole.c:612
  #, c-format
  msgid "Error resetting KEEPCAPS, aborting\n"
 -msgstr ""
 +msgstr "خطأ في إعادة KEEPCAPS، سيتم الإلغاء.\n"
  
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr ""
-+msgstr "خطأ في إسقاط قدرات SETUID، سيتم الإلغاء.\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
- msgid "Error freeing caps\n"
--msgstr ""
-+msgstr "خطأ في إلغاء الحروف الكبيرة\n"
- #: ../newrole/newrole.c:701
+ #: ../newrole/newrole.c:635
  #, c-format
  msgid "Error connecting to audit system.\n"
 -msgstr ""
 +msgstr "خطأ في الاتصال بنظام التدوين.\n"
  
- #: ../newrole/newrole.c:707
+ #: ../newrole/newrole.c:641
  #, c-format
  msgid "Error allocating memory.\n"
 -msgstr ""
 +msgstr "خطأ في تعيين الذاكرة.\n"
  
- #: ../newrole/newrole.c:714
+ #: ../newrole/newrole.c:648
  #, c-format
  msgid "Error sending audit message.\n"
 -msgstr ""
 +msgstr "خطأ في إرسال رسالة التدوين.\n"
  
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
  #, c-format
  msgid "Could not determine enforcing mode.\n"
 -msgstr ""
 +msgstr "لا يمكن تحديد ضبط الإلزام.\n"
  
- #: ../newrole/newrole.c:765
+ #: ../newrole/newrole.c:699
  #, c-format
  msgid "Error!  Could not open %s.\n"
 -msgstr ""
 +msgstr "خطأ! لا يمكن فتح %s.\n"
  
- #: ../newrole/newrole.c:771
+ #: ../newrole/newrole.c:705
  #, c-format
  msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
 -msgstr ""
 +msgstr "%s! لا يمكن الحصول على السياق الحالي لـ %s، لن تعاد عنونة tty.\n"
  
- #: ../newrole/newrole.c:781
+ #: ../newrole/newrole.c:715
  #, c-format
  msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
 -msgstr ""
 +msgstr "%s! لا يمكن الحصول على السياق الجديد لـ %s، لن تعاد عنونة tty.\n"
  
- #: ../newrole/newrole.c:791
+ #: ../newrole/newrole.c:725
  #, c-format
  msgid "%s!  Could not set new context for %s\n"
 -msgstr ""
 +msgstr "%s! لا يمكن ضبط السياق الجديد لـ %s.\n"
  
- #: ../newrole/newrole.c:838
+ #: ../newrole/newrole.c:772
  #, c-format
  msgid "%s changed labels.\n"
 -msgstr ""
 +msgstr "تغيرت عناوين %s.\n"
  
- #: ../newrole/newrole.c:844
+ #: ../newrole/newrole.c:778
  #, c-format
  msgid "Warning! Could not restore context for %s\n"
 -msgstr ""
 +msgstr "تحذير! لا يمكن استعادة السياق لـ %s\n"
  
- #: ../newrole/newrole.c:901
+ #: ../newrole/newrole.c:835
  #, c-format
  msgid "Error: multiple roles specified\n"
 -msgstr ""
 +msgstr "خطأ: تم تعريف أكثر من دور\n"
  
- #: ../newrole/newrole.c:909
+ #: ../newrole/newrole.c:843
  #, c-format
  msgid "Error: multiple types specified\n"
 -msgstr ""
 +msgstr "خطأ: تم تعريف أكثر من نوع\n"
  
- #: ../newrole/newrole.c:916
+ #: ../newrole/newrole.c:850
  #, c-format
  msgid "Sorry, -l may be used with SELinux MLS support.\n"
 -msgstr ""
 +msgstr "عفوا، -l يمكن استعمالها مع دعم SELinux MLS.\n"
  
- #: ../newrole/newrole.c:921
+ #: ../newrole/newrole.c:855
  #, c-format
  msgid "Error: multiple levels specified\n"
 -msgstr ""
 +msgstr "خطأ: تم تعريف أكثر من مستوى\n"
  
- #: ../newrole/newrole.c:931
+ #: ../newrole/newrole.c:865
  #, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
 -msgstr ""
 +msgstr "خطأ: لا يسمح لك بتغيير المستويات من خلال وحدة طرفية غير آمنة \n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
  msgid "Couldn't get default type.\n"
 -msgstr ""
 +msgstr "لا يمكن الحصول على النوع الافتراضي.\n"
  
- #: ../newrole/newrole.c:967
+ #: ../newrole/newrole.c:901
  #, c-format
  msgid "failed to get new context.\n"
 -msgstr ""
 +msgstr "فشل في الحصول على سياق جديد.\n"
  
- #: ../newrole/newrole.c:974
+ #: ../newrole/newrole.c:908
  #, c-format
  msgid "failed to set new role %s\n"
 -msgstr ""
 +msgstr "فشل في ضبط دور جديد %s\n"
  
- #: ../newrole/newrole.c:981
+ #: ../newrole/newrole.c:915
  #, c-format
  msgid "failed to set new type %s\n"
 -msgstr ""
 +msgstr "فشل في ضبط نوع جديد %s\n"
  
- #: ../newrole/newrole.c:991
+ #: ../newrole/newrole.c:925
  #, c-format
  msgid "failed to build new range with level %s\n"
 -msgstr ""
 +msgstr "فشل في بناء مدى جديد مع مستوى %s\n"
  
- #: ../newrole/newrole.c:996
+ #: ../newrole/newrole.c:930
  #, c-format
  msgid "failed to set new range %s\n"
 -msgstr ""
 +msgstr "فشل في ضبط مدى جديد %s\n"
  
- #: ../newrole/newrole.c:1004
+ #: ../newrole/newrole.c:938
  #, c-format
  msgid "failed to convert new context to string\n"
 -msgstr ""
 +msgstr "فشل في في تحويل السياق الجديد إلى نص\n"
  
- #: ../newrole/newrole.c:1009
+ #: ../newrole/newrole.c:943
  #, c-format
  msgid "%s is not a valid context\n"
 -msgstr ""
 +msgstr "%s ليس سياقا صالحا\n"
  
- #: ../newrole/newrole.c:1016
+ #: ../newrole/newrole.c:950
  #, c-format
  msgid "Unable to allocate memory for new_context"
 -msgstr ""
 +msgstr "غير قادر على تعيين ذاكرة لـnew_context"
  
- #: ../newrole/newrole.c:1042
+ #: ../newrole/newrole.c:976
  #, c-format
  msgid "Unable to obtain empty signal set\n"
 -msgstr ""
 +msgstr "غير قادر على الحصول على مجموعة الإشارات الفارغة\n"
  
- #: ../newrole/newrole.c:1050
+ #: ../newrole/newrole.c:984
  #, c-format
  msgid "Unable to set SIGHUP handler\n"
 -msgstr ""
 +msgstr "غير قادر على ضبط معالج SIGHUP\n"
  
- #: ../newrole/newrole.c:1116
+ #: ../newrole/newrole.c:1053
  #, c-format
  msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
 -msgstr ""
 +msgstr "عفوا، لا يمكن استعمال newrole إلا على نواة SELinux.\n"
  
- #: ../newrole/newrole.c:1133
+ #: ../newrole/newrole.c:1070
  #, c-format
  msgid "failed to get old_context.\n"
 -msgstr ""
 +msgstr "فشل في الحصول على old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
  #, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
 -msgstr ""
 +msgstr "تحذير! استعادة معلومات tty غير ممكنة.\n"
  
- #: ../newrole/newrole.c:1161
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr ""
 +msgstr "خطأ في قراءة إعدادات خدمة PAM.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
  msgid "newrole: incorrect password for %s\n"
 -msgstr ""
 +msgstr "newrole: كلمة المرور خاطئة لـ %s\n"
  
- #: ../newrole/newrole.c:1223
+ #: ../newrole/newrole.c:1160
  #, c-format
  msgid "newrole: failure forking: %s"
 -msgstr ""
 +msgstr "newrole: فشل في التفرع: %s"
  
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
  #, c-format
  msgid "Unable to restore tty label...\n"
 -msgstr ""
 +msgstr "غير قادر لاستعادة عنوان tty...\n"
  
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
  #, c-format
  msgid "Failed to close tty properly\n"
 -msgstr ""
 +msgstr "فشل في إغلاق tty بصورة صحيحة\n"
  
- #: ../newrole/newrole.c:1287
+ #: ../newrole/newrole.c:1224
  #, c-format
  msgid "Could not close descriptors.\n"
 -msgstr ""
 +msgstr "لا يمكن إغلاق الواصفات.\n"
  
- #: ../newrole/newrole.c:1314
+ #: ../newrole/newrole.c:1251
  #, c-format
  msgid "Error allocating shell's argv0.\n"
 -msgstr ""
 +msgstr "خطأ في تعيين argv0 الخاص بالقشرة (shell).\n"
  
- #: ../newrole/newrole.c:1346
+ #: ../newrole/newrole.c:1287
  #, c-format
  msgid "Unable to restore the environment, aborting\n"
 -msgstr ""
 +msgstr "غير قادر على استعادة البيئة، سيتم الإلغاء\n"
  
- #: ../newrole/newrole.c:1357
+ #: ../newrole/newrole.c:1298
  msgid "failed to exec shell\n"
 -msgstr ""
 +msgstr "فشل في تنفيذ القشرة (shell)\n"
@@ -7809,697 +20533,684 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 -msgstr ""
 +msgstr "chcat -l +CompanyConfidential juser"
  
- #: ../scripts/chcat:399
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
 +msgstr "خطأ في الخيارات %s "
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "قيمة منطقية"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "كل"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "مخصص"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "عنونة الملف"
++msgstr ""
 +
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"ملف\n"
-+"المواصفات"
 +
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
- msgstr ""
-+"Selinux\n"
-+"نوع الملف"
++msgstr ""
 +
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"ملف\n"
-+"النوع"
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "تخطيط المستخدم"
++msgstr ""
 +
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"تسجيل دخول\n"
-+"الاسم"
 +
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"مستخدم"
 +
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"نطاق MCS"
 +
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "تسجيل الدخول '%s' مطلوب"
++msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "وحدة السياسة"
++msgstr ""
 +
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "اسم الوحدة"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "إصدار"
++msgstr ""
 +
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "تعطيل التدوين"
++msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "تمكين التدوين"
++msgstr ""
 +
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "وحدة سياسة التحميل"
++msgstr ""
 +
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
++msgstr ""
 +
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "رد هات (Red Hat) 2007"
++msgstr ""
 +
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
++msgstr ""
 +
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "translator-credits"
++msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"هذه الأداة يمكن أن تستخدم لإنشاء إطار عمل السياسة، لحصرالتطبيقات أو "
-+"المستخدمين المستعملين لـ SELinux.   \n"
-+"\n"
-+"الأداة تولد:\n"
-+"ملف إلزام النوع (te)\n"
-+"ملف الواجهة (if)\n"
-+"ملف سياق الملف (fc)\n"
-+"برنامج القشرة (shell) النصي (sh) - يستخدم لتجميع وتثبيت السياسة."
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "اختر نوع التطبيقات/دور المستخدم الذي تريد حصره"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>التطبيقات</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"خادم Init القياسي هو خادم يبدأ مع بداية التشغيل بواسطة برامج init النصية. "
-+"عادة يتطلب برنامج نصي في /etc/rc.d/init.d"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "خادم Init القياسي"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "خادم نظام DBUS"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "خادم خدمات الإنترنت هو خادم بُدِأ بواسطة xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "خادم خدمات الإنترنت (inetd)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"تطبيق الإنترنت/البرنامج النصي (CGI) البرنامج النصي CGI بُدِأ بواسطة خادم "
-+"الأنترنت (apache)"
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "تطبيق الإنترنت/البرنامج النصي (CGI)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"تطبيقات المستخدم هي أي تطبيقات تريد حصرها وقد تم تشغيلها من قبل المستخدم"
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "تطبيقات المستخدم"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>تسجيل دخول المستخدمين</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "تعديل أحد سجلات تسجيل الدخول الموجودة."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "أدوار المستخدم الموجودة"
++msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"هذا المستخدم سيسجل الدخول للجهاز فقط عن طريق الوحدة الطرفية أو الدخول عن "
-+"بُعد. افتراضياً هذا المستخدم لن يكون لديه setuid، ولا شبكة، ولا su، ولا sudo."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "دور مستخدم الوحدة الطرفية الصغرى"
++msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"هذا المستخدم يمكن أن يسجل الدخول عن طريق X أو الوحدة الطرفية. افتراضياً هذا "
-+"المستخدم لن يكون لديه setuid، ولا شبكة، ولا sudo، ولا su"
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "دور مستخدم X Windows الأدنى"
++msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"المستخدم مع شبكة كاملة، لا يوجد تطبيقات setuid بدون الانتقال، ولا sudo، ولا "
-+"su."
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "دور المستخدم"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"المستخدم مع شبكة كاملة، لا يوجد تطبيقات setuid بدون الانتقال، ولا su، يمكن "
-+"أن يستخدم sudo لأدوار مدير النظام"
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "دور المستخدم المشرف"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>مستخدمو مدير النظام</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"اختر دور مستخدم مدير النظام, إذا كان سيتم استعمال المستخدم لإدارة الجهاز "
-+"أثناء التشغيل كمدير النظام. هذا المستخدم لن يكون قادر على تسجيل الدخول "
-+"للنظام مباشرةً."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "دور مستخدم مدير النظام"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "أدخل اسم التطبيق أو دور المستخدم المراد حصره"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "الاسم"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "أدخل المسار الكامل للملف القابل للتنفيذ المراد حصره"
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "أدخل اسماً مميزاً للتطبيقات المحصورة أو دور المستخدم المحصور"
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "قابل للتنفيذ"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "برنامج Init النصي"
++msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "أدخل المسار الكامل لبرنامج init النصي المستخدم لبدء التطبيق المحصور"
++msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "اختر أدوار المستخدم التي تريد تخصيصها"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "اختر أدوار المستخدم التي ستنتقل لمجالات التطبيقات هذه"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "اختر النطاقات الإضافية التي سينتقل لها دور المستخدم هذا"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "اختر نطاقات البرامج التي تريد نقل دور المستخدم هذا لها."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "اختر أدوار المستخدم التي ستنتقل لهذا النطاق"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "اختر النطاقات الإضافية التي سيديرها دور المستخدم هذا"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "اختر النطاقات التي ترغب في أن يديرها هذا المستخدم"
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "اختر أدوار إضافية لهذا المستخدم"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "أدخل منافذ الشبكة التي ستستمع لها التطبيقات/دور المستخدم"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>منافذ TCP</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "يسمح لتطبيق/دور المستخدم بالارتباط بأي منفذ udp"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "كل"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"سماح للتطبيق/دور المستخدم باستدعاء bindresvport مع 0. الربط مع منفذ 600-1024"
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"أدخل قائمة مفرقة بفواصل من منافذ أو نطاقات منافذ udp التي يرتبط بها التطبيق/"
-+"دور المستخدم. مثال: 612, 650-660"
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "منافذ غير محجوزة (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "اختر المنافذ"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "يسمح للتطبيق/دور المستخدم بالارتباط مع من أي منافذ udp > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>منافذ UDP</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "أدخل منافذ الشبكة التي يتصل بها التطبيق/دور المستخدم"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"أدخل قائمة مفرقة بفواصل من منافذ أو نطاقات منافذ tcp التي يتصل بها التطبيق/"
-+"دور المستخدم. مثال: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"أدخل قائمة مفصولة بفواصل من منافذ أو نطاقات منافذ udp التي يتصل بها التطبيق/"
-+"دور المستخدم. مثال: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "اختر سمات التطبيق المشتركة"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "يكتب رسائل syslog\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "إنشاء/استعمال الملفات المؤقتة في /tmp"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "يستخدم Pam للتوثيق"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "يستخدم استدعاءات nsswitch أو getpw*"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "يستخدم dbus"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "يرسل رسائل التدوين"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "يتفاعل مع الوحدة الطرفية"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "يرسل بريد إلكتروني"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "اختر الملفات/المجلدات التي يديرها التطبيق"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"أضف الملفات/المجلدات التي سوف يحتاج التطبيق الـ\"كتابة\" فيها. ملفات Pid، "
-+"ملفات Log، ملفات /var/lib ..."
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "اختر القيم المنطقية التي يستخدمها التطبيق"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "أضف/أزل القيم المنطقية المستخدمة للتطبيق/المستخدم المحصور"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "اختر المجلد الذي تريد توليد السياسة فيه"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "مجلد السياسة"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "ملفات السياسة المولدة"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"هذه الأداة ستولد التالي:  \n"
-+"كتابة التطبيق(te), سياق الملف(fc), الواجهة(if), برنامج القشرة (shell) النصي"
-+"(sh)\n"
-+"لتنفيذ البرنامج النصي للقشرة كمدير للنظام للتثبيت والترجمة وإعادة عنونة "
-+"الملفات/المجلدات.  \n"
-+"استخدم semanage أو useradd لترتيب دخول مستخدمي لينكس أدوار المستخدم.\n"
-+"ضع الجهاز  في وضع متساهل(setenforce 0). \n"
-+"سجل دخول كمستخدم واختبر دور المستخدم.\n"
-+"استخدم audit2allow -R لتوليد قوانين إضافية لملف te.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"هذه الأداة ستولد التالي  \n"
-+"كتابة التطبيق(te), سياق الملف(fc), الواجهة(if), برنامج القشرة (shell) النصي"
-+"(sh)\n"
-+"\n"
-+"لتنفيذ البرنامج النصي للقشرة كمدير للنظام للتثبيت والترجمة وإعادة عنونة "
-+"الملفات/المجلدات.  \n"
-+"ضع الجهاز  في وضع متساهل(setenforce 0). \n"
-+"تشغيل/إعادة التشغيل التطبيق لتوليد رسائل avc.\n"
-+"استخدم audit2allow -R لتوليد أدوار إضافية لملف te.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "إضافة مربع حوار القيم المنطقية"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "اسم القيم المنطقية"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "دور"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Existing_User"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "التطبيق"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s يجب أن يكون مجلد"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "يجب أن تختار مستخدماً"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "اختر ملف قابل للتنفيذ ليتم حصره."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "اختر برنامج init النصي المراد حجزه."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr " اختر الملفات التي ينشئها ويكتبها البرنامج المقيد "
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr " اختر المجلدات التي يملكها ويكتب فيها البرنامج المقيد "
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "اختر المجلد الذي تريد توليد ملفات السياسة فيه"
++msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"النوع %s_t معرف مسبقاً في السياسة الحالية.\n"
-+"هل تريد الاستمرار؟"
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "تحقق من الاسم"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"وحدة %s.pp تم تحميلها في السياسة الحالية مسبقا.\n"
-+"هل تريد الاستمرار؟"
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "يجب إدخال اسم"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "يجب إدخال ملف قابل للتنفيذ"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "أعِد SELinux"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "المنافذ يجب أن تكون أرقاماً أو مجالات من الأرقام تبدأ من 1 إلى %d"
++msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "يجب إدخال اسم من أجل العملية/المستخدم المحصور الخاص بك"
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "نوع المستخدم USER غير مسموح له ملفات قابلة للتنفيذ"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "فقط برامج الخادم تستطيع استخدام برنامج init النصي"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog يجب أن تكون قيمة منطقية"
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "نوع المستخدم USER يحصل آليا على نوع tmp"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "يجب أن تدخل المسار القابل للتنفيذ من أجل عمليتك المحصورة"
++msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "ملف إلزام النوع"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ملف الواجهة"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ملف سياقات الملف"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "إعداد البرنامج النصي"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "منفذ الشبكة"
++msgstr ""
 +
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"منفذ SELinux\n"
-+"نوع"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "بروتوكول"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"مستوى"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "منفذ"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "رقم المنفذ \"%s\" غير مسموح .  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "رؤية القائمة"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "رؤية المجموعة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -8547,26 +21258,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "حماية خدمة SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "منع حماية SELinux لخادم acct"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "المشرف"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "السماح لجميع الخادمات لكتابة corefiles في /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "إعطاء القدرة لجميع الخوادم لاستخدام ttys غير المخصصة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -8575,131 +21286,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "صلاحيات المستخدم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux gadmin بتنفيذ الملفات في المجلد الرئيسي أو /tmp"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux guest (ضيف) بتنفيذ الملفات في المجلد الرئيسي أو /"
-+"tmp"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "حماية الذاكرة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "السماح لكومة java القابلة للتنفيذ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "ضم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "السماح لـ mount بضم أي ملف"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "السماح بضم أي مجلد"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "السماح لكومة mplayer القابلة للتنفيذ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "السماح لـ ssh بتشغيل ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux staff (طاقم) بتنفيذ الملفات في المجلد الرئيسي "
-+"أو /tmp"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux sysadm (مدير النظام) بتنفيذ الملفات في المجلد "
-+"الرئيسي أو /tmp"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux unconfined (غير المقيد) بتنفيذ الملفات في المجلد "
-+"الرئيسي أو /tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "إعدادات الشبكة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "السماح للحزمة غير المعنونة بالسير داخل الشبكة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب مستخدم SELinux user (مستخدم) بتنفيذ الملفات في المجلد الرئيسي "
-+"أو /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "السماح لغير المقيد بـ dyntrans إلى unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "قواعد بيانات"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "السماح للمستخدم بالاتصال بمقبس mysql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "السماح للمستخدم بالاتصال بمقبس postgress"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "السماح للعميل بالكتابة على الذاكرة المشتركة X"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"السماح لحساب الزائر xguest SELinux لتنفيذ الملفات في المجلد الرئيسي أو /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "السماح للخادم بالعمل مع NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -8707,849 +21406,836 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "تطبيقات الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "نقل مستخدم SELinux staff (طاقم)  إلى مجال متصفح الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "نقل مستخدم sysadm SELinux  إلى مجال متصفح الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "نقل مستخدم SELinux إلى مجال متصفح الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "نقل مستخدم xguest SELinux  إلى مجال متصفح الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "السماح طاقم متصفحو الأنترنت للكتابة في المجلد الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "منع حماية SELinux  من أجل amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "منع حماية SELinux  من أجل amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "منع حماية SELinux  من أجل خادم apmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "منع حماية SELinux  من أجل خادم arpwatch"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "منع حماية SELinux  من أجل خادم auditd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "منع حماية SELinux  من أجل خادم automount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "منع حماية SELinux  من أجل avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "منع حماية SELinux  من أجل خادم البلوتوث"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "منع حماية SELinux  من أجل خادم canna"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "تعطيل حماية SELinux  لخادم cardmgr"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "منع حماية SELinux  من أجل خادم Cluster"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"السماح cdrecord لقراءة محتوى مختلف .نظام ملف الشبكة و  سامبا و جهاز قابل "
-+"للإزالة و المستخدم المؤقت و ومحتوى الملفات الغير موثوقة"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "تعطيل حماية SELnux لخادم ciped"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "تعطيل حماية SELnux لخادم clamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "تعطيل حماية SELnux لـ ciamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "تعطيل حماية SELnux لـ clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "تعطيل حماية SELnux لخادم comsat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "تعطيل حماية SELnux لـ courier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "تعطيل حماية SELnux لخادم cpucontrol"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "تعطيل حماية SELnux لخادم cpuspeed"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Corn"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "تعطيل حماية SELnux لخادم crond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "الطباعة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "تعطيل حماية SELnux لـ cupsd back  و الخادم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "تعطيل حماية SELnux لخادم cupsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "تعطيل حماية SELnux cupsd lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "تعطيل حماية SELnux لخادم cvs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "تعطيل حماية SELnux لخادم cyrus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "تعطيل حماية SELnux لخادم dbskkd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "تعطيل حماية SELnux لخادم dbusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "تعطيل حماية SELnux لـ dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "تعطيل حماية SELnux لـ dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "تعطيل حماية SELnux لـ dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "تعطيل حماية SELnux لخادم  ddt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "تعطيل حماية SELnux لخادم devfsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "تعطيل حماية SELnux لخادم dhcpc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "تعطيل حماية SELnux لخادم dhcpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "تعطيل حماية SELnux لخادم dictd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "السماح لـ sysadm_t لبدء الخادم مباشرة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "تعطيل حماية SELnux للتقييم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "الألعاب"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "تعطيل حماية SELnux لـ الألعاب"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "تعطيل حماية SELnux لتطبيقات الأنترنت"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "تعطيل حماية SELnux لـ Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "تعطيل حماية SELnux لخادم distccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "تعطيل حماية SELnux لخادم dmesg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "تعطيل حماية SELnux لخادم dnsmasq"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "تعطيل حماية SELnux لخادم dovecot"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "تعطيل حماية SELnux لخادم entropyd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "تعطيل حماية SELnux لخادم fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "تعطيل حماية SELnux لخادم fingerd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "تعطيل حماية SELnux لخادم freshclam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "تعطيل حماية SELnux لخادم fsdeamon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "تعطيل حماية SELnux لخادم gpm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "تعطيل حماية SELnux لخادم gss"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "تعطيل حماية SELnux لخادم Hal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "توافق"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "عدم تدوين الأمور المعطوبة  ولكن ليست ذات مخاطر أمنية"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "تعطيل حماية SELnux لخادم hostname"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "تعطيل حماية SELnux لخادم hotplug"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "تعطيل حماية SELnux لخادم howl"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "تعطيل حماية SELnux لخادم hplip"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "تعطيل حماية SELnux لـ httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "خدمات HTTPD"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "تعطيل حماية SELnux لـ http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "تعطيل حماية SELinux لخادم hwclock"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "تعطيل حماية SELinux لخادم i18n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "تعطيل حماية SELinux لخادم imazesrv"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "تعطيل حماية SELinux لأبناء خوادم inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "تعطيل حماية SELinux لخادم inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "تعطيل حماية SELinux لخادم innd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "تعطيل حماية SELinux لخادم iptables"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "تعطيل حماية SELinux لخادم ircd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "تعطيل حماية SELinux لخادم irqbalance"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "تعطيل حماية SELinux لخادم iscsi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "تعطيل حماية SELinux لخادم jabberd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "تعطيل حماية SELinux لخادم kadmind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "تعطيل حماية SELinux لخادم klogd "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "تعطيل حماية SELinux لخادم krb5kdc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "تعطيل حماية SELinux لخادم ktalk"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "تعطيل حماية SELinux لخادم kudzu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "تعطيل حماية SELinux لخادم locate"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "تعطيل حماية SELinux لخادم lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "تعطيل حماية SELinux لخادم lrrd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "تعطيل حماية SELinux لخادم lvm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "تعطيل حماية SELinux لـ mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "السماح لـ evolution و thunderbird بقراءة ملفات المستخدم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "تعطيل حماية SELinux لخادم mdadm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "تعطيل حماية SELinux لخادم monopd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "السماح للمستعرض mozilla بقراءة ملفات المستخدم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "تعطيل حماية SELinux لخادم mrtg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "تعطيل حماية SELinux لخادم mysqld"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "تعطيل حماية SELinux لخادم nagios"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "خادم الأسماء"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "تعطيل حماية SELinux لخادم named"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "تعطيل حماية SELinux لخادم nessusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "تعطيل حماية SELinux لـ NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "تعطيل حماية SELinux لخادم nfsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "تعطيل حماية SELinux لخادم nmbd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "تعطيل حماية SELinux لخادم nrpe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "تعطيل حماية SELinux لخادم nscd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "تعطيل حماية SELinux لخادم nsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "تعطيل حماية SELinux لخادم ntpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "تعطيل حماية SELinux لـ oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "تعطيل حماية SELinux لـ oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "تعطيل حماية SELinux لخادم openvpn"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "تعطيل حماية SELinux لخادم pam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "تعطيل حماية SELinux لـ pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "تعطيل حماية SELinux لخادم perdition"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "تعطيل حماية SELinux لخادم portmap"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "تعطيل حماية SELinux لخادم portslave"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "تعطيل حماية SELinux لـ postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "تعطيل حماية SELinux لخادم postgresql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "السماح لـ pppd ليتم تشغيله للمستخدم العادي"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "تعطيل حماية SELinux لـ pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "تعطيل حماية SELinux لخادم prelink"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "تعطيل حماية SELinux لخادم privoxy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "تعطيل حماية SELinux لخادم ptal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "تعطيل حماية SELinux لخادم pxe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "تعطيل حماية SELinux لـ pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "تعطيل حماية SELinux لخادم quota"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "تعطيل حماية SELinux لخادم radiusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "تعطيل حماية SELinux لخادم radvd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "تعطيل حماية SELinux لـ rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "تعطيل حماية SELinux لـ readahead"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "السماح للبرامج بقراءة ملفات في أماكن غير قياسية (default_t)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "تعطيل حماية SELinux لـ restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "تعطيل حماية SELinux لخادم rhgb"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "تعطيل حماية SELinux لـ ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "تعطيل حماية SELinux لـ ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "تعطيل حماية SELinux لخادم rlogind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "تعطيل حماية SELinux لخادم rpcd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "تعطيل حماية SELinux لـ rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "تعطيل حماية SELinux لخادم rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "السماح لـ ssh ليشتغل من inetd بدلاً منه كخادم"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "السماح لسامبا لمشاركة مجلدات nfs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "خادم التوثيق SASL"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "السماح لخادم التوثيق sasl بقراءة /etc/shadow"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"السماح لخادم X-Windows لعمل توافق بين أجزاء الذاكرة كـ قابلة للتنفيذ "
-+"والكتابة معاً"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "تعطيل حماية SELinux لخادم saslauthd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "تعطيل حماية SELinux لخادم scannerdaemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "لا تسمح بالانتقال إلى sysadm_t، sudo، و su يؤثر"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "لا تسمح لأي عمليات بتحميل وحدات نواة النظام"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "لا تسمح لأي عمليات بتعديل سياسة نواة النظام SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "تعطيل حماية SELinux لخادم sendmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "تعطيل حماية SELinux لـ setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "تعطيل حماية SELinux لخادم setroubleshoot"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "تعطيل حماية SELinux لخادم slapd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "تعطيل حماية SELinux لخادم slrnpull"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "تعطيل حماية SELinux لخادم smbd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "تعطيل حماية SELinux لخادم snmpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "تعطيل حماية SELinux لخادم snort"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "تعطيل حماية SELinux لخادم soundd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "تعطيل حماية SELinux لخادم sound"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "الحماية ضد البريد المزعج"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "تعطيل حماية SELinux لخادم spamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "السماح لـ spamd للوصول إلى المجلدات الرئيسية"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "السماح لخادم Spam Assassin الوصول للشبكة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "تعطيل حماية SELinux لخادم speedmgmt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "السماح لخادم squid بالاتصال بالشبكة"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "تعطيل حماية SELinux لخادم squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "تعطيل حماية SELinux لخادم ssh"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "السماح لـتسجيل الدخول ssh كـ sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"السماح لمستخدمي staff_r بالبحث في المجلدات الرئيسية وقراءة الملفات في sysadm "
-+"(مثل ~/.bashrc)"
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "نفق SSL الشامل"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "تعطيل حماية SELinux لخادم stunnel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "السماح لخادم stunnel ليشتغل كـ مستقل، خارج xinetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "تعطيل حماية SELinux لخادم swat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "تعطيل حماية SELinux لخادم sxid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "تعطيل حماية SELinux لخادم syslogd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "تعطيل حماية SELinux لوظائف نظام cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "تعطيل حماية SELinux لخادم tcp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "تعطيل حماية SELinux لخادم telnet"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "تعطيل حماية SELinux لخادم tftpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "تعطيل حماية SELinux لخادم transproxy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "تعطيل حماية SELinux لخادم udev"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "تعطيل حماية SELinux لخادم uml"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"السماح لـ xinetd ليشتغل بدون قيود، بما في ذلك أي خدمات تبدأ وليس لديها نطاق "
-+"انتقال معرّف"
 +
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"السماح لبرامج rc النصية للعمل بدون قيود، بما في ذلك أي خادم بدأ ببرنامج rc "
-+"النصي الذي ليس لديه نطاق انتقال معرّف"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "السماح لـ rpm للعمل بدون قيود"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "السماح للأدوات ذات الامتياز مثل hotplug و insmod للعمل بدون قيود"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "تعطيل حماية SELinux لخادم updfstab"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "تعطيل حماية SELinux لخادم uptimed"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"السماح لـ user_r بالوصول إلى sysadm_r بواسطة su، sudo، أو userhelper. وإلا، "
-+"فقط staff_r يقوم بذلك"
 +
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "السماح للمستخدمين لتنفيذ الأمر mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "السماح للمستخدمين العاديين الوصول المباشر للفأرة (فقط يسمح بخادم X)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "السماح للمستخدمين بتنفيذ الأمر dmesg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"السماح للمستخدمين بتحكم واجهات شبكة الاتصال ( أيضا يحتاج USERCTL=صحيح )"
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "السماح للمستخدم العادي لتنفيذ ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "السماح للمستخدمين قراءة وكتابة noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "السماح للمستخدمين قراءة وكتابة أجهزة usb"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
@@ -9557,116 +22243,110 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"السماح للمستخدمين تشغيل خوادم TCP (ربط المنافذ وقبول الاتصال من نفس المجال "
-+"والمستخدمين الخارجيين) تعطيل هذه يجعل FTP وضع سلبي وقد تتغير بروتوكولات أخرى"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "السماح للمستخدم بتنفيذ الأمر stat ttyfiles"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "تعطيل حماية SELinux لخادم uucpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "تعطيل حماية SELinux لخادم vmware"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "تعطيل حماية SELinux لخادم watchdog"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "تعطيل حماية SELinux لخادم winbind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "تعطيل حماية SELinux لخادم xdm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "تسمح xdm بتسجيل دخول كـ sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "تعطيل حماية SELinux لخادم xen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "تسمح xen لقراءة وكتابة أجهزة القرص الفعلي"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "تعطيل حماية SELinux لخادم xfs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "تعطيل حماية SELinux لتحكم xen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "تعطيل حماية SELinux لخادم ypbind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "تعطيل حماية SELinux لخادم NIS Password"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "تعطيل حماية SELinux لخادم ypserv"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "تعطيل حماية SELinux لخادم NIS Transfer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr "السماح لمستخدم SELinux webadm لإدارة المجلد الرئيسي لمستخدمين الامتياز"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "السماح لمستخدم SELinux webadm لقراءة المجلد الرئيسي لمستخدمين الامتياز"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "هل انت متأكد أنك تريد حذف %s '%s'؟"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "حذف %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "إضافة %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "تعديل %s"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "متساهل"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "إلزامي"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "معطّل"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "الحالة"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -9674,9 +22354,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"تغيير نوع السياسة سيسبب إعادة عنونة ملفات النظام الكلي عند إعادة التشغيل. "
-+"إعادة العنونة يمكن أن تستغرق وقتاً طويلاً، اعتماداً على حجم النظام. هل ترغب في "
-+"الاستمرار؟"
 +
 +#: ../gui/statusPage.py:147
 +msgid ""
@@ -9687,11 +22364,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"تغيير لتعطيل SELinux يتطلب إعادة التشغيل. وهو غير مستحسن. إذا قررت في وقت "
-+"لاحق لقيام SELinux بدوره مرة أخرى، النظام سيتطلب إعادة عنونة. إذا كنت ترغب "
-+"لمعرفة ما إذا كان SELinux يسبب مشكلة في نظامك، يمكنك الذهاب لوضع التساهل "
-+"الذي سيسجل فقط الأخطاء ولا يفرض سياسة SELinux. وضع التساهل لا يتطلب إعادة "
-+"تشغيل، هل ترغب في الاستمرار؟"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -9699,54 +22371,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"تغيير لتمكين SELinux سوف يسبب إعادة عنونة نظام الملفات الكلي عند إعادة "
-+"التشغيل. إعادة العنونة يمكن أن تستغرق وقتاً طويلاً، اعتماداً على حجم النظام. هل "
-+"ترغب في الاستمرار؟"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"الحقوق محفوظة (c) 2006 Red Hat, Inc.\n"
-+"الحقوق محفوظة (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "إضافة مخطط دخول SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "إضافة منافذ شبكة SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "نوع SELinux"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"مستوى"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "مواصفات الملف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "نوع الملف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -9757,1408 +22415,796 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"جميع الملفات\n"
-+"ملف عادي\n"
-+"دليل\n"
-+"جهاز حرفي\n"
-+"جهاز كتلي\n"
-+"مقبس\n"
-+"اختصار\n"
-+"named pipe\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "إضافة مستخدم SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "إدارة SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "إضافة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_خصائص"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_حذف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "اختيار كائن الإدارة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>اختيار:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "وضع النظام الافتراضي إلزامي"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"تعطيل\n"
-+"تساهل\n"
-+"إلزامي\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "الوضع الحالي الإلزامي"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "نوع نظام السياسة الافتراضي:"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"حدد إذا كنت ترغب في إعادة عنونة نظام الملفات الكلي عند إعادة التشغيل.إعادة "
-+"العنونة يمكن أن تستغرق وقتاً طويلاً، اعتماداً على حجم النظام.إذا كنت تقوم "
-+"بتغيير أنواع السياسة أو الانتقال من تعطيل إلى إلزامي، إعادة العنونة تكون "
-+"مطلوبة."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "إعادة العنونة عند إعادة التشغيل"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "إعادة ضبط الإعداد المنطقي إلى النظام الافتراضي"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "تبديل بين القيم المنطقية الكلية والمخصصة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "تشغيل تأمين المعالج المنطقي"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "تأمين..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "مرشح"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "إضافة سياق الملف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "تعديل سياق الملف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "حذف سياق الملف"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "تبديل بين سياق الملف الكلي والمخصص"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "إضافة مخطط مستخدم SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "تغيير مخطط مستخدم SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "حذف مخطط مستخدم SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "إضافة مستخدم"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "تعديل مستخدم"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "حذف مستخدم"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "إضافة ترجمة"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "تعديل الترجمة"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "حذف الترجمة"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "إضافة منفذ الشبكة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "تغيير منفذ الشبكة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "حذف منفذ الشبكة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "تبديل المنافذ بين الكل والمخصصة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "إنشاء وحدة سياسة جديدة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "تحميل وحدة السياسة"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "إزالة وحدة السياسة القابلة للتحميل (ديناميكياً)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
-+msgstr "تمكين/تعطيل قواعد تدوين إضافية، التي لم يبلغ عنها عادة في ملفات السجل."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "تغيير حالة العملية لمتساهل"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "تغيير حالة العملية لإلزامي"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "نطاق العملية"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "مستخدم SELinux '%s' مطلوب"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "مستوى الحساسية"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils-2.0.85/po/as.po
---- nsapolicycoreutils/po/as.po        2011-02-17 15:11:25.843723011 -0500
-+++ policycoreutils-2.0.85/po/as.po    2011-02-18 16:03:41.339975541 -0500
-@@ -1,23 +1,43 @@
+ msgstr ""
+diff --git a/policycoreutils/po/as.po b/policycoreutils/po/as.po
+index ca9950d..0c67b35 100644
+--- a/policycoreutils/po/as.po
++++ b/policycoreutils/po/as.po
+@@ -1,24 +1,25 @@
 -# translation of as.po to Assamese
-+# translation of policycoreutils.HEAD.po to Assamese
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
  #
++# Translators:
  # Amitakhya Phukan <amitakhya.phukan@gmail.com>, 2006.
++# Amitakhya Phukan <aphukan@fedoraproject.org>, 2008, 2009.
  # Amitakhya Phukan <aphukan@redhat.com>, 2008.
 -# Amitakhya Phukan <aphukan@fedoraproject.org>, 2008.
-+# Amitakhya Phukan <aphukan@fedoraproject.org>, 2008, 2009.
  msgid ""
  msgstr ""
 -"Project-Id-Version: as\n"
-+"Project-Id-Version: policycoreutils.HEAD\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2008-01-31 12:04+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2009-06-03 15:55+0530\n"
- "Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
- "Language-Team: Assamese\n"
-+"Language: \n"
+-"Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
+-"Language-Team: Assamese\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Assamese (http://www.transifex.net/projects/p/fedora/language/"
++"as/)\n"
++"Language: as\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
+-"X-Generator: KBabel 1.11.4\n"
 -"Plural-Forms: nplurals=2; plural=(n!=1)\n"
-+"Plural-Forms: nplurals=2; plural=n != 1\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "নতুন নিয়মনীতিৰ মডিউল নিৰ্মাণ কৰক"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux Policy নিৰ্মাণৰ সামগ্ৰী"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -109,24 +129,24 @@
- msgstr "semanage সংযোগ স্থাপন কৰা নাযায়"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s'ৰ ক্ষেত্ৰত MLS ৰেঞ্জ নিৰ্ধাৰণ কৰা নাযায়"
-+msgstr "MLS-ৰ সক্ৰিয় অৱস্থা পৰীক্ষা কৰা নাযায়"
+@@ -94,7 +95,7 @@ msgstr "চিহ্নিত পলিচি সৰঞ্জাম সক্ৰ
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
  msgid "global"
 -msgstr ""
 +msgstr "আন্তৰ্জাতিক"
  
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s খোলোঁতে ব্যৰ্থ: MLS-বিহীন যন্ত্ৰত অনুবাদ সমৰ্থন কৰা নহয়"
-+msgstr "%s খোলোঁতে ব্যৰ্থ: MLS-বিহীন যন্ত্ৰত অনুবাদ সমৰ্থন কৰা নহয়: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "স্তৰ"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "অনুবাদ"
-@@ -143,16 +163,16 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "অনুবাদত %s বৰ্তমানে ব্যাখ্যা কৰা হৈছে"
-+msgstr "অনুবাদত %s বৰ্তমানে বেখ্যা কৰা হৈছে"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+@@ -114,13 +115,12 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage সংযোগ স্থাপন কৰা নাযায়"
  
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "অনুবাদত %s'ৰ ব্যাখ্যা কৰা নহয়"
-+msgstr "অনুবাদত %s'ৰ বেখ্যা কৰা নহয়"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s'ৰ ক্ষেত্ৰত MLS ৰেঞ্জ নিৰ্ধাৰণ কৰা নাযায়"
++msgstr "MLS-ৰ সক্ৰিয় অৱস্থা পৰীক্ষা কৰা নাযায়"
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
 +msgstr "বাস্তবায়িত নহয়"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
-@@ -163,768 +183,764 @@
+@@ -131,29 +131,26 @@ msgid "Could not start semanage transaction"
  msgstr "semanage আদান-প্ৰদান আৰম্ভ কৰা নাযায়"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
 -msgstr "semanage আদান-প্ৰদান আৰম্ভ কৰা নাযায়"
 +msgstr "semanage আদান-প্ৰদান সমাপ্ত কৰা নাযায়"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
  msgstr ""
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
 -msgstr "SELinux ব্যৱহাৰকৰোঁতাসকলৰ তালিকা নিৰ্মাণ কৰা নাযায়"
 +msgstr "SELinux অংশৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
--msgstr ""
-+msgstr "Permissive (সতৰ্কতামূলক) ধৰন"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "অংশেৰ নাম"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "ভাৰ্সান"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Disabled"
+@@ -163,9 +160,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s ভূমিকাটি, %s'ৰ বাবে নিৰ্ধাৰণ কৰা নাযায়"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -187,12 +184,12 @@ msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
 -msgstr ""
 +msgstr "permissive ডোমেইন %s নিৰ্ধাৰণ কৰা নাযায় (মডিউল সংস্থাপন কৰিবলৈ ব্যৰ্থ)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
 +msgstr "permissive ডোমেইন %s সৰিয়ে ফেলা নাযায় (অপসাৰণ কৰিবলৈ ব্যৰ্থ)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s'ৰ বাবে চাবি নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -212,9 +209,9 @@ msgid "Could not check if login mapping for %s is defined"
  msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা বৰ্তমানে নিৰ্ধাৰিত হৈছে"
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
 -msgstr "Linux ব্যৱহাৰকৰোঁতা %s বৰ্তমানে উপস্থিত নাই"
 +msgstr "Linux সমষ্টি %s উপস্থিত নাই"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux ব্যৱহাৰকৰোঁতা %s বৰ্তমানে উপস্থিত নাই"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not set name for %s"
- msgstr "%s'ৰ নাম নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত MLS ৰেঞ্জ নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত SELinux ব্যৱহাৰকৰোঁতা নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা মেপিং যোগ কৰা হ'ব"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser অথবা serange আৱশ্যক"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা নিৰ্ধাৰিত নহয়"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত seuser সন্ধান কৰা নাযায়"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা পৰিবৰ্তন কৰা নাযায়"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "%s'ৰ বাবে প্ৰৱেশ মেপিং ব্যৱস্থা নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত আঁতৰুৱা সম্ভৱ নহয়"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং আঁতৰুৱা নাযায়"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -282,15 +279,20 @@ msgid "Could not list login mappings"
  msgstr "প্ৰৱেশ মেপিং তালিকাভুক্ত কৰা নাযায়"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr "প্ৰৱেশ নাম"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr "SELinux ব্যৱহাৰকৰোঁতা"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr "MLS/MCS সীমা"
  
--#: ../semanage/seobject.py:594
+@@ -308,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "%s'ৰ বাবে ব্যৱহাৰকৰোঁতা সন্ধান কৰা নাযায়"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰ context যোগ কৰা নাযায়"
 +msgstr "%s'ৰ অন্তত এটা ভূমিকা যোগ কৰা আৱশ্যক"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য নিৰ্ধাৰিত নে নাই পৰীক্ষা কৰা নাযায়"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য বৰ্তমানে নিৰ্ধাৰিত হৈছে"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s'ৰ বাবে SELinux ব্যৱহাৰকৰোঁতা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s ভূমিকাটি, %s'ৰ বাবে নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত MLS স্তৰ নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s প্ৰেফিক্সটি %s'ৰ ক্ষেত্ৰত যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s'ৰ বাবে চাবি প্ৰাপ্ত কৰা নাযায়"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "প্ৰেফিক্স, ভূমিকা, স্তৰ অথবা ৰেঞ্জ উল্লেখ কৰা আৱশ্যক"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "প্ৰেফিক্স অথবা ভূমিকা উল্লেখ কৰা আৱশ্যক"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য নিৰ্ধাৰিত নহয়"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s'ৰ বাবে ব্যৱহাৰকৰোঁতা সন্ধান কৰা নাযায়"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য পৰিবৰ্তন কৰা নাযায়"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য নিয়মনীতিত নিৰ্ধাৰিত হৈছে যাৰ ফলত অপসাৰণযোগ্য "
- "নহয়"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ব্যৱহাৰকৰোঁতা %s আঁতৰুৱা নাযায়"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ব্যৱহাৰকৰোঁতাসকলৰ তালিকা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "ব্যৱহাৰকৰোঁতা %s'ৰ ভূমিকাৰ তালিকা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "লেবেল ব্যৱস্থা"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "প্ৰেফিক্স"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS স্তৰ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -402,6 +404,7 @@ msgid "MCS Range"
  msgstr "MCS সীমা"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr "SELinux ৰোল"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "udp অথবা tcp প্ৰোটোকল আৱশ্যক"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -414,9 +417,8 @@ msgid "Port is required"
  msgstr "পোৰ্ট উল্লেখ কৰা আৱশ্যক"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s'ৰ বাবে চাবি নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ধৰন উল্লেখ কৰা আৱশ্যক"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "পোৰ্ট %s/%s নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "পোৰ্ট %s/%s বৰ্তমানে নিৰ্ধাৰিত আছে"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s'ৰ বাবে পোৰ্ট নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s'ৰ বাবে context নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s'ৰ ক্ষেত্ৰত পোৰ্ট context'ত ব্যৱহাৰকৰোঁতা নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s'ৰ ক্ষেত্ৰত পোৰ্ট context'ত ভূমিকা নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s'ৰ ক্ষেত্ৰত পোৰ্ট context'ত ধৰন নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s'ৰ ক্ষেত্ৰত পোৰ্ট context'ত mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s'ৰ ক্ষেত্ৰত পোৰ্ট context নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s পোৰ্ট যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype অথবা serange আৱশ্যক"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype আৱশ্যক"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "%s/%s পোৰ্ট নিৰ্ধাৰিত নহয়"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "%s/%s পোৰ্ট সন্ধান কৰা নাযায়"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "প্ৰেফিক্স বৈধ নহয় %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
+@@ -503,14 +505,13 @@ msgid "Could not modify port %s/%s"
  msgstr "%s/%s পোৰ্ট পৰিবৰ্তন কৰা নাযায়"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
 -msgstr "পোৰ্টেৰ তালিকা নিৰ্মাণ কৰা নাযায়"
 +msgstr "প'ৰ্টৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
 -msgstr "%s/%s পোৰ্ট আঁতৰুৱা নাযায়"
 +msgstr "%s পোৰ্ট আঁতৰুৱা নাযায়"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "%s/%s পোৰ্টটি নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত অপসাৰণযোগ্য নহয়"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "%s/%s পোৰ্ট আঁতৰুৱা নাযায়"
+@@ -524,7 +525,7 @@ msgstr "%s/%s পোৰ্ট আঁতৰুৱা নাযায়"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
 -msgstr "পোৰ্টেৰ তালিকা নিৰ্মাণ কৰা নাযায়"
 +msgstr "প'ৰ্টৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "SELinux পোৰ্টৰ ধৰন"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -534,18 +535,17 @@ msgstr "SELinux পোৰ্টৰ ধৰন"
  msgid "Proto"
  msgstr "প্ৰোটো"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr "পোৰ্ট সংখ্যা"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
 -msgstr "পোৰ্ট উল্লেখ কৰা আৱশ্যক"
 +msgstr "নোডৰ ঠিকনা উল্লেখ কৰা আৱশ্যক"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "পোৰ্ট উল্লেখ কৰা আৱশ্যক"
-+msgstr "নোডৰ নেটমাস্ক উল্লেখ কৰা আৱশ্যক"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "অজ্ঞাত বা হেৰুৱা আচাৰবিধি"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux Type আৱশ্যক"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s'ৰ চাবি নিৰ্মাণ কৰা নাযায়"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -562,14 +562,14 @@ msgstr "%s'ৰ চাবি নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr "পোৰ্ট %s/%s নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
 +msgstr "addr %s নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
  
--#: ../semanage/seobject.py:1064
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "পোৰ্ট %s/%s বৰ্তমানে নিৰ্ধাৰিত আছে"
-+msgstr "addr %s বৰ্তমানে নিৰ্ধাৰিত আছে"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
 -msgstr "%s'ৰ বাবে চাবি নিৰ্মাণ কৰা নাযায়"
 +msgstr "%s-ৰ বাবে addr নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -578,74 +578,72 @@ msgid "Could not create context for %s"
  msgstr "%s'ৰ বাবে context নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
 -msgstr "%s'ৰ নাম নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s-ৰ মাস্ক নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ব্যৱহাৰকৰোঁতা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত addr context লৈ ব্যৱহাৰকৰ্তা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ভূমিকা নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত addr context লৈ ভূমিকা নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত addr context লৈ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত addr context লৈ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত addr context নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
 -msgstr "%s/%s পোৰ্ট যোগ কৰা নাযায়"
 +msgstr "%s addr যোগ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
 -msgstr "%s/%s পোৰ্ট নিৰ্ধাৰিত নহয়"
 +msgstr "%s addr নিৰ্ধাৰিত নহয়"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
 -msgstr "%s/%s পোৰ্ট সন্ধান কৰা নাযায়"
 +msgstr "%s addr প্ৰশ্ন কৰা নাযায়"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
 -msgstr "%s/%s পোৰ্ট পৰিবৰ্তন কৰা নাযায়"
 +msgstr "%s addr পৰিবৰ্তন কৰা নাযায়"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr "%s/%s পোৰ্টটি নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত অপসাৰণযোগ্য নহয়"
 +msgstr "%s addr নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত অপসাৰণযোগ্য নহয়"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
 -msgstr "%s প্ৰেক্ষাপট আঁতৰুৱা নাযায়"
 +msgstr "%s addr আঁতৰুৱা নাযায়"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং আঁতৰুৱা নাযায়"
++msgstr ""
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
 -msgstr "পোৰ্টেৰ তালিকা নিৰ্মাণ কৰা নাযায়"
 +msgstr "addr-ৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "%s প্ৰেক্ষাপটৰ বৈশিষ্ট্য নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s প্ৰেক্ষাপট বৰ্তমানে নিৰ্ধাৰিত আছে"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s'ৰ প্ৰেক্ষাপট নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -661,22 +659,22 @@ msgstr "%s'ৰ প্ৰেক্ষাপট নিৰ্মাণ কৰা 
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context'এ ব্যৱহাৰকৰোঁতা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context লৈ ব্যৱহাৰকৰোঁতা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context'এ ভূমিকাৰ বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context লৈ ভূমিকাৰ বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context'এ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context লৈ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context'এ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context লৈ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত প্ৰেক্ষাপটৰ context'ৰ বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত বাৰ্তাৰ context নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s প্ৰেক্ষাপট যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1487
  #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s প্ৰেক্ষাপটৰ বৈশিষ্ট্য নিৰ্ধাৰিত নহয়"
+@@ -719,9 +717,8 @@ msgid "Could not delete interface %s"
+ msgstr "%s প্ৰেক্ষাপট আঁতৰুৱা নাযায়"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "%s প্ৰেক্ষাপট সন্ধান কৰা নাযায়"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s প্ৰেক্ষাপট আঁতৰুৱা নাযায়"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "%s প্ৰেক্ষাপট পৰিবৰ্তন কৰা নাযায়"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -736,9 +733,9 @@ msgid "Context"
+ msgstr "কনটেক্সট"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "%s প্ৰেক্ষাপটটি নিয়মনীতিত নিৰ্ধাৰিত হৈছে আৰু অপসাৰণযোগ্য নহয়"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s'ৰ নথিপত্ৰ context বৰ্তমানে নিৰ্ধাৰিত আছে"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete interface %s"
- msgstr "%s প্ৰেক্ষাপট আঁতৰুৱা নাযায়"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "প্ৰেক্ষাপটৰ তালিকা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux সংযোগমাধ্যম"
+@@ -746,31 +743,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "কনটেক্সট"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux ব্যৱহাৰকৰোঁতা %s বৰ্তমানে উপস্থিত নাই"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ব্যৱহাৰকৰোঁতা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context লৈ ব্যৱহাৰকৰোঁতা বৈশিষ্ট্য নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ভূমিকা নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context লৈ ভূমিকা নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context লৈ mls ক্ষেত্ৰ নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1436
+ #: ../semanage/seobject.py:1707
 -#, fuzzy
-+#: ../semanage/seobject.py:1432
  msgid "Invalid file specification"
 -msgstr ""
 -"নথিপত্ৰ\n"
 -"গুণ"
 +msgstr "নথিপত্ৰৰ বৈশিষ্ট্য বৈধ নহয়"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s'ৰ নথিপত্ৰ context নিৰ্ধাৰিত হৈছে নে নাই পৰীক্ষা কৰা নাযায়"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s'ৰ নথিপত্ৰ context বৰ্তমানে নিৰ্ধাৰিত আছে"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s'ৰ নথিপত্ৰ contex নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -797,7 +791,7 @@ msgstr "%s'ৰ নথিপত্ৰ contex নিৰ্মাণ কৰা ন
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
 -msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context'এ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
 +msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context লৈ ধৰন নিৰ্ধাৰণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰৰ context নিৰ্ধাৰণ কৰা নাযায়"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s'ৰ ক্ষেত্ৰত নথিপত্ৰ context যোগ কৰা নাযায়"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange অথবা seuser আৱশ্যক"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s'ৰ নথিপত্ৰ context আৱশ্যক"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s'ৰ বাবে নথিপত্ৰ context সন্ধান কৰা নাযায়"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
+@@ -830,14 +824,13 @@ msgid "Could not modify file context for %s"
  msgstr "%s'ৰ বাবে নথিপত্ৰ context পৰিবৰ্তন কৰা নাযায়"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1839
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
  msgid "Could not list the file contexts"
  msgstr "নথিপত্ৰ context'ৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1853
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
  msgid "Could not delete the file context %s"
 -msgstr "%s'ৰ নথিপত্ৰ context আঁতৰুৱা নাযায়"
 +msgstr "নথিপত্ৰ context %s  আঁতৰুৱা নাযায়"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
+@@ -873,11 +866,10 @@ msgid ""
  msgstr ""
- "%s'ৰ নথিপত্ৰ context নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত তাক অপসাৰণ কৰা সম্ভৱ নহয়"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s'ৰ নথিপত্ৰ context আঁতৰুৱা নাযায়"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "নথিপত্ৰ context'ৰ তালিকা নিৰ্মাণ কৰা নাযায়"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "স্থানীয় নথিপত্ৰৰ context'ৰ তালিকা নিৰ্মাণ কৰা নাযায়"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ধৰন"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "বুলিয়েন %s'ৰ বৈশিষ্ট্য নিৰ্ধাৰিত হৈছে নে নাই তাক পৰীক্ষা কৰা নাযায়"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "বুলিয়েন %s'ৰ মান বৰ্তমানে নিৰ্ধাৰিত আছে"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -896,14 +888,14 @@ msgid "Could not query file context %s"
  msgstr "%s'ৰ নথিপত্ৰ context সন্ধান কৰা নাযায়"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
 -msgstr "নাম উল্লেখ কৰা আৱশ্যক"
 +msgstr "নিম্নলিখিত এটা মান উল্লেখ কৰা আৱশ্যক: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr "বুলিয়েন %s আঁতৰুৱা নাযায়"
 +msgstr "%s বুলিয়েনৰ সক্ৰিয় মান নিৰ্ধাৰণ কৰিবলৈ ব্যৰ্থ"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "%s বুলিয়েনৰ মান পৰিবৰ্তন কৰা নাযায়"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -913,7 +905,7 @@ msgstr "%s বুলিয়েনৰ মান পৰিবৰ্তন কৰা
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
 +msgstr "ভুল বিন্যাস %s: ৰেকৰ্ড %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "বুলিয়েন %s'ৰ মান নিয়মনীতিত নিৰ্ধাৰিত হোৱাৰ ফলত অপসাৰণযোগ্য নহয়"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "বুলিয়েন %s আঁতৰুৱা নাযায়"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "বুলিয়েনৰ তালিকা নিৰ্মাণ কৰা নাযায়"
+@@ -931,33 +923,32 @@ msgstr "বুলিয়েনৰ তালিকা নিৰ্মাণ কৰ
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "অজানা"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
 +msgstr "বন্ধ"
  
--#: ../semanage/seobject.py:1780
+ #: ../semanage/seobject.py:2117
 -#, fuzzy
-+#: ../semanage/seobject.py:1776
  msgid "on"
 -msgstr "Cron"
 +msgstr "আৰম্ভ"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
  msgstr "SELinux বুলিয়েন"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "অবস্থা"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "বিৱৰণ"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
-@@ -954,7 +970,7 @@
- #: ../newrole/newrole.c:452
+@@ -987,7 +978,7 @@ msgstr "স্মৃতিশক্তি অবশিষ্ট নাই!\n"
+ #: ../newrole/newrole.c:455
  #, c-format
  msgid "Error!  Shell is not valid.\n"
 -msgstr "ত্ৰুটি!  বৈধ শেল ব্যৱহাৰ কৰা নহয় ।\n"
 +msgstr "ত্ৰুটি!  বৈধ শ্বেল ব্যৱহাৰ কৰা নহয় ।\n"
  
- #: ../newrole/newrole.c:509
- #, c-format
-@@ -962,9 +978,9 @@
- msgstr "পৰিবেশ পৰিশ্ৰুত কৰোঁতে ব্যৰ্থ\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "কৰ্ম init কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে ।\n"
-+msgstr "ক্ষমতাৰ বৈশিষ্ট্যসমূহ আৰম্ভ ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে ।\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
+ #: ../newrole/newrole.c:512
  #, c-format
-@@ -1004,7 +1020,7 @@
- #: ../newrole/newrole.c:701
+@@ -1007,7 +998,7 @@ msgstr "KEEPCAPS'ৰ মান পুনৰায় নিৰ্ধাৰণ ক
+ #: ../newrole/newrole.c:635
  #, c-format
  msgid "Error connecting to audit system.\n"
 -msgstr "অডিট সিস্টেমেৰ সৈতে সংযোগ কৰোঁতে ব্যৰ্থ ।\n"
 +msgstr "অডিট প্ৰণালীতৰ সৈতে সংযোগ কৰোঁতে ব্যৰ্থ ।\n"
  
- #: ../newrole/newrole.c:707
+ #: ../newrole/newrole.c:641
  #, c-format
-@@ -1037,7 +1053,7 @@
+@@ -1040,7 +1031,7 @@ msgstr ""
  #, c-format
  msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
  msgstr ""
@@ -11166,70 +23212,70 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 +"%s!  %s'ৰ ক্ষেত্ৰত নতুন context প্ৰাপ্ত কৰা নাযায়, tty'ৰ লেবেল পৰিবৰ্তন কৰা ন'হ'ব  "
  "।\n"
  
- #: ../newrole/newrole.c:791
-@@ -1063,12 +1079,12 @@
- #: ../newrole/newrole.c:909
+ #: ../newrole/newrole.c:725
+@@ -1066,12 +1057,12 @@ msgstr "ত্ৰুটি: একাধিক ভূমিকা উল্ল
+ #: ../newrole/newrole.c:843
  #, c-format
  msgid "Error: multiple types specified\n"
 -msgstr "ত্ৰুটি: একাধিক ধৰনেৰ নথিপত্ৰ নিৰ্ধাৰিত হৈছে\n"
 +msgstr "ত্ৰুটি: একাধিক ধৰনৰ নথিপত্ৰ নিৰ্ধাৰিত হৈছে\n"
  
- #: ../newrole/newrole.c:916
+ #: ../newrole/newrole.c:850
  #, c-format
  msgid "Sorry, -l may be used with SELinux MLS support.\n"
 -msgstr "দূঃক্ষিত, -l অকল SELinux MLS সমৰ্থনেৰ সৈতে ব্যৱহাৰ কৰা যাবে\n"
 +msgstr "দূঃক্ষিত, -l অকল SELinux MLS সমৰ্থনৰ সৈতে ব্যৱহাৰ কৰা যাবে\n"
  
- #: ../newrole/newrole.c:921
+ #: ../newrole/newrole.c:855
  #, c-format
-@@ -1076,9 +1092,9 @@
+@@ -1079,9 +1070,9 @@ msgid "Error: multiple levels specified\n"
  msgstr "ত্ৰুটি: একাধিক স্তৰ নিৰ্ধাৰিত হৈছে\n"
  
- #: ../newrole/newrole.c:931
+ #: ../newrole/newrole.c:865
 -#, fuzzy, c-format
 +#, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
 -msgstr "ত্ৰুটি: কম নিৰাপত্তাসম্পন্ন টাৰ্মিনালে স্তৰ পৰিবৰ্তনেৰ অনুমতি অনুপস্থিত\n"
 +msgstr "ত্ৰুটি: নিম্ন নিৰাপত্তাসম্পন্ন টাৰ্মিনেলত মাত্ৰা পৰিবৰ্তনৰ অনুমতি উপলব্ধ নহয় \n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
-@@ -1138,7 +1154,7 @@
- #: ../newrole/newrole.c:1116
+@@ -1141,7 +1132,7 @@ msgstr "SIGHUP হেন্ডলাৰ নিৰ্ধাৰণ কৰোঁত
+ #: ../newrole/newrole.c:1053
  #, c-format
  msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
 -msgstr "দুঃক্ষিত, newrole অকল একটি SELinux কাৰ্ণেলে ব্যৱহাৰ কৰা যাবে ।\n"
 +msgstr "দুঃক্ষিত, newrole অকল এটা SELinux কাৰ্ণেলে ব্যৱহাৰ কৰা যাবে ।\n"
  
- #: ../newrole/newrole.c:1133
+ #: ../newrole/newrole.c:1070
  #, c-format
-@@ -1146,7 +1162,7 @@
+@@ -1149,7 +1140,7 @@ msgid "failed to get old_context.\n"
  msgstr "old_context প্ৰাপ্ত কৰোঁতে ব্যৰ্থ ।\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
  msgstr "ত্ৰুটি!  tty সংক্ৰান্ত তথ্য প্ৰাপ্ত কৰা নাযায় ।\n"
  
-@@ -1178,12 +1194,12 @@
- #: ../newrole/newrole.c:1287
+@@ -1181,12 +1172,12 @@ msgstr "tty সঠিকৰূপে বন্ধ কৰোঁতে ব্য
+ #: ../newrole/newrole.c:1224
  #, c-format
  msgid "Could not close descriptors.\n"
 -msgstr "বিবৰণ প্ৰদৰ্শন বন্ধ কৰা নাযায় ।\n"
 +msgstr "বিৱৰণ প্ৰদৰ্শন বন্ধ কৰা নাযায় ।\n"
  
- #: ../newrole/newrole.c:1314
+ #: ../newrole/newrole.c:1251
  #, c-format
  msgid "Error allocating shell's argv0.\n"
 -msgstr "শেল'ৰ argv0 বৰাদ্দ কৰোঁতে ব্যৰ্থ ।\n"
 +msgstr "শ্বেল'ৰ argv0 বৰাদ্দ কৰোঁতে ব্যৰ্থ ।\n"
  
- #: ../newrole/newrole.c:1346
+ #: ../newrole/newrole.c:1287
  #, c-format
-@@ -1192,31 +1208,31 @@
+@@ -1195,31 +1186,31 @@ msgstr "পৰিবেশ পুনৰুদ্ধাৰ কৰোঁতে ব
  
- #: ../newrole/newrole.c:1357
+ #: ../newrole/newrole.c:1298
  msgid "failed to exec shell\n"
 -msgstr "শেল exec কৰোঁতে ব্যৰ্থ\n"
 +msgstr "শ্বেল exec কৰোঁতে ব্যৰ্থ\n"
@@ -11267,7 +23313,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
  
  #: ../scripts/chcat:106 ../scripts/chcat:183
  #, c-format
-@@ -1239,7 +1255,7 @@
+@@ -1242,7 +1233,7 @@ msgstr "অন্যান্য শ্ৰেণী বিভাগেৰ সৈ
  
  #: ../scripts/chcat:319
  msgid "Can not have multiple sensitivities"
@@ -11276,10 +23322,143 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
  
  #: ../scripts/chcat:325
  #, c-format
-@@ -1298,1483 +1314,2196 @@
+@@ -1296,1535 +1287,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "বিকল্প সংক্ৰান্ত ত্ৰুটি %s "
  
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s খোলোঁতে ব্যৰ্থ: MLS-বিহীন যন্ত্ৰত অনুবাদ সমৰ্থন কৰা নহয়"
+-
+-#~ msgid "Level"
+-#~ msgstr "স্তৰ"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "অনুবাদ"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "অনুবাদত শূণ্যস্থান ব্যৱহাৰ কৰা নাযাব '%s' "
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "স্তৰ বৈধ নহয় '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "অনুবাদত %s বৰ্তমানে ব্যাখ্যা কৰা হৈছে"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "অনুবাদত %s'ৰ ব্যাখ্যা কৰা নহয়"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s'ৰ ক্ষেত্ৰত প্ৰৱেশ মেপিং ব্যৱস্থা বৰ্তমানে নিৰ্ধাৰিত হৈছে"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ব্যৱহাৰকৰোঁতা মেপিং যোগ কৰা হ'ব"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ব্যৱহাৰকৰোঁতা %s'ৰ বৈশিষ্ট্য বৰ্তমানে নিৰ্ধাৰিত হৈছে"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "পোৰ্ট উল্লেখ কৰা আৱশ্যক"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "পোৰ্ট %s/%s বৰ্তমানে নিৰ্ধাৰিত আছে"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s প্ৰেক্ষাপট বৰ্তমানে নিৰ্ধাৰিত আছে"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "কৰ্ম init কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে ।\n"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ক্ষমতা নিৰ্ধাৰণ কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে ।\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS'ৰ মান নিৰ্ধাৰণ কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ক্ষমতা drop কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে ।\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID বৈশিষ্ট্য drop কৰোঁতে ব্যৰ্থ, পৰিত্যাগ কৰা হৈছে\n"
+-
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps মুক্ত কৰোঁতে ব্যৰ্থ\n"
+-
 -#~ msgid "translations not supported on non-MLS machines"
 -#~ msgstr "MLS-বিহীন যন্ত্ৰত অনুবাদ সমৰ্থন কৰা নহয়"
 -
@@ -11345,12 +23524,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#~ msgid "Policy Module"
 -#~ msgstr "পলিচি অংশ"
 -
--#~ msgid "Module Name"
--#~ msgstr "অংশেৰ নাম"
--
--#~ msgid "Version"
--#~ msgstr "ভাৰ্সান"
--
 -#~ msgid "Load Policy Module"
 -#~ msgstr "পলিচি অংশ লোড কৰক"
 -
@@ -11391,25 +23564,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#, fuzzy
 -#~ msgid "Select type of the application/user role to be confined"
 -#~ msgstr "আৱদ্ধ কৰাৰ বাবে অ্যাপ্লিকেশন অথবা ব্যৱহাৰকৰোঁতাৰ ভূমিকা নিৰ্বাচন কৰক ।"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "বুলিয়েন"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "সকলো"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "স্বনিৰ্ধাৰিত"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "নথিপত্ৰ লেবেল ব্যৱস্থা"
+-
 -#~ msgid "<b>Applications</b>"
 -#~ msgstr "<b>অ্যাপ্লিকেশন</b>"
 -
@@ -11548,7 +23703,10 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#~ "Allow application/user role to call bindresvport with 0. Binding to port "
 -#~ "600-1024"
 -#~ msgstr "১০২৪"
--
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
 -
@@ -11557,227 +23715,303 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr "তালিকা সৰ্বমোট."
--
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
 -#~ msgid "Unreserved Ports (>1024)"
 -#~ msgstr "অসংৰক্ষিত পোৰ্ট (>1024)"
--
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
 -#~ msgid "Select Ports"
 -#~ msgstr "নিৰ্বাচিত পোৰ্ট"
--
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr "১০২৪"
--
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
 -#~ msgid "<b>UDP Ports</b>"
 -#~ msgstr "<b>UDP পোৰ্ট</b>"
--
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr "তালিকা সৰ্বমোট."
--
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#, fuzzy
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr "তালিকা সৰ্বমোট."
--
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 -#, fuzzy
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr "তালিকা সৰ্বমোট."
--
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Select common application traits"
 -#~ msgstr "অ্যাপ্লিকেশন"
--
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Writes syslog messages\t"
 -#~ msgstr "অ্যাপ্লিকেশন"
--
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Create/Manipulate temporary files in /tmp"
 -#~ msgstr "অ্যাপ্লিকেশন তৈৰি কৰক"
--
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Uses Pam for authentication"
 -#~ msgstr "অ্যাপ্লিকেশন উল্লিখিত সময় অবধি"
--
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Sends audit messages"
 -#~ msgstr "অডিট সংক্ৰান্ত বাৰ্তা পাঠাতে ব্যৰ্থ ।\n"
--
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Select files/directories that the application manages"
 -#~ msgstr "পঞ্জিকা"
--
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 -#, fuzzy
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr "নথিপত্ৰ নথিপত্ৰ নথিপত্ৰ নথিপত্ৰ."
--
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Select booleans that the application uses"
 -#~ msgstr "নথিপত্ৰ"
--
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr "confine কৰা অ্যাপ্লিকেশন আৰম্ভেৰ বাবে init স্ক্ৰিপ্টৰ সম্পূৰ্ণ পাথ লিখুন ।"
--
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Select directory to generate policy in"
 -#~ msgstr "পঞ্জিকা"
--
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
 -#~ msgid "Policy Directory"
 -#~ msgstr "পলিচি পঞ্জিকা"
--
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
 -#~ msgid "Generated Policy Files"
 -#~ msgstr "নথিপত্ৰ"
--
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
 -#, fuzzy
 -#~ msgid "Boolean Name"
 -#~ msgstr "বুলিয়েন"
--
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
 -#~ msgid "Role"
 -#~ msgstr "ভূমিকা"
--
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
 -#~ msgid "Application"
 -#~ msgstr "অ্যাপ্লিকেশন"
--
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
 -#, fuzzy
 -#~ msgid "%s must be a directory"
 -#~ msgstr "পঞ্জিকা"
--
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
 -#, fuzzy
 -#~ msgid "You must select a user"
 -#~ msgstr "নাম উল্লেখ কৰা আৱশ্যক"
--
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
 -#~ msgid "Select executable file to be confined."
 -#~ msgstr "confine কৰাৰ উদ্দেশ্যে এক্সিকিউটেবিল নথিপত্ৰ নিৰ্বাচন কৰক"
--
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
 -#~ msgid "Select init script file to be confined."
 -#~ msgstr "confine কৰাৰ উদ্দেশ্যে init script নথিপত্ৰ নিৰ্বাচন কৰক ।"
--
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
 -#~ msgid "Select file(s) that confined application creates or writes"
 -#~ msgstr "নথিপত্ৰ"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
 +msgstr ""
-+"নথিপত্ৰ\n"
-+"গুণ"
  
 -#~ msgid ""
 -#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
 +msgstr ""
-+"Selinux\n"
-+"নথিপত্ৰৰ ধৰন"
  
 -#~ msgid "Select directory to generate policy files in"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/fcontextPage.py:88
++#: ../gui/polgen.glade:647
 +msgid ""
-+"File\n"
-+"Type"
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
 +msgstr ""
-+"নথিপত্ৰ\n"
-+"ধৰন"
  
 -#~ msgid "You must enter a name"
 -#~ msgstr "নাম উল্লেখ কৰা আৱশ্যক"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "ব্যৱহাৰকৰোঁতা মেপিং"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
  
 -#~ msgid "You must enter a executable"
 -#~ msgstr "এক্সেকিউটেবল উল্লেখ কৰা আৱশ্যক"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+"প্ৰৱেশ\n"
-+"নাম"
  
 -#~ msgid "Configue SELinux"
 -#~ msgstr "SELinux কনফিগাৰ কৰক"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
-+"SELinux\n"
-+"ব্যৱহাৰকৰোঁতা"
  
 -#, fuzzy
 -#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 -#~ msgstr "পোৰ্ট সংখ্যা 1 থেকে %d-ত হওয়া আৱশ্যক "
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
 +msgstr ""
-+"MLS/\n"
-+"MCS সীমা"
  
 -#, fuzzy
 -#~ msgid "You must enter a name for your confined process/user"
 -#~ msgstr "উল্লিখিত সময় অবধি"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "প্ৰৱেশ '%s' আৱশ্যক"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
 -#~ msgid "use_syslog must be a boolean value "
 -#~ msgstr "বুলিয়েন মান "
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "পলিচি অংশ"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
 -#, fuzzy
 -#~ msgid "USER Types automatically get a tmp type"
 -#~ msgstr "ধৰন"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "অংশেৰ নাম"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
 -#~ msgid "You must enter the executable path for your confined process"
 -#~ msgstr "উল্লিখিত সময় অবধি"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "ভাৰ্সান"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid "Type Enforcement file"
 -#~ msgstr "ধৰন নথিপত্ৰ"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "অডিট নিষ্ক্ৰিয় কৰা হ'ব"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
 -#~ msgid "Interface file"
 -#~ msgstr "সংযোগমাধ্যম সংক্ৰান্ত নথিপত্ৰ"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "অডিট সক্ৰিয় কৰা হ'ব"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
 -#~ msgid "File Contexts file"
 -#~ msgstr "নথিপত্ৰ কনটেক্সটেৰ নথিপত্ৰ"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "পলিচি অংশ লোড কৰক"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
 -#~ msgid "Setup Script"
 -#~ msgstr "বৈশিষ্ট্য"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
 -#~ msgid ""
 -#~ "SELinux Port\n"
@@ -11785,15 +24019,15 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#~ msgstr ""
 -#~ "SELinux পোৰ্ট\n"
 -#~ "ধৰন"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat ২০০৭"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
 -#~ msgid "Protocol"
 -#~ msgstr "প্ৰোটোকল"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
 -#~ msgid ""
 -#~ "MLS/MCS\n"
@@ -11801,760 +24035,600 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 -#~ msgstr ""
 -#~ "MLS/MCS\n"
 -#~ "স্তৰ"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "অমিতাক্ষ ফুকন (aphukan@fedoraproject.org)"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
 -#~ msgid "Port"
 -#~ msgstr "পোৰ্ট"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+" SELinux প্ৰয়োগকাৰী অনুপ্ৰয়োগ অথবা ব্যৱহাৰকৰোঁতাসকলৰ confine কৰোঁতে ব্যৱহৃত পলিচিৰ "
-+"পৰিকাঠামো নিৰ্মাণৰ বাবে এই সামগ্ৰী ব্যৱহাৰ কৰা যাবে ।\n"
-+"\n"
-+"এই সামগ্ৰী প্ৰয়োগ কৰে নিৰ্মাণ কৰা যাবে:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - পলিচি কম্পাইল আৰু সংস্থাপন কৰোঁতে ব্যৱহৃত ।"
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "আৱদ্ধ কৰাৰ বাবে অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তাৰ ভূমিকা নিৰ্বাচন কৰক ।"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>অনুপ্ৰয়োগ</b>"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
 -#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 -#~ msgstr "প'ৰ্ট সংখ্যা \"%s\" বৈধ নহয় ।  0 < PORT_NUMBER < 65536 "
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+"বুট কৰাৰ সময় init স্ক্ৰিপ্টৰ মাধ্যমে আৰম্ভ হোৱা ডেমনসমূহ প্ৰমিত Init ডেমন নামে "
-+"পৰিচিত । সাধাৰণতে /etc/rc.d/init.d-ত এটা স্ক্ৰিপ্ট উপস্থিত থকা আৱশ্যক ।"
  
 -#~ msgid "Group View"
 -#~ msgstr "দল ভিউ"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "প্ৰমিত Init ডেমন"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
 -#~ msgid "SELinux Service Protection"
 -#~ msgstr "সেৱা"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS প্ৰণালী ডেমন"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for acct daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon-ৰ ডেমনসমূহ xinetd দ্বাৰা আৰম্ভ কৰা হয় ।"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
 -#~ msgid "Admin"
 -#~ msgstr "প্ৰশাসক"
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "ওয়েব সেৱক (apache) দ্বাৰা আৰম্ভ কৰা ওয়েব অনুপ্ৰয়োগ/স্ক্ৰিপ্ট (CGI) CGI স্ক্ৰিপ্ট"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "ওয়েব অনুপ্ৰয়োগ/স্ক্ৰিপ্ট (CGI)"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
 -#~ msgid "Memory Protection"
 -#~ msgstr "স্মৃতিশক্তি সংৰক্ষণ"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+"ব্যৱহাৰকৰোঁতা দ্বাৰা আৰম্ভ কৰা কোনো অনুপ্ৰয়োগ যা আৱদ্ধ কৰাৰ বাবে চিহ্নিত তাক "
-+"ব্যৱহাৰকৰোঁতাসকলৰ অনুপ্ৰয়োগ নামে পৰিচিত"
  
 -#~ msgid "Mount"
 -#~ msgstr "মাউন্ট কৰক"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "ব্যৱহাৰকৰোঁতাসকলৰ অনুপ্ৰয়োগ"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any file"
 -#~ msgstr "নথিপত্ৰ"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>ব্যৱহাৰকৰ্তাৰ লগ-ইন</b>"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any directory"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "বৰ্তমানে উপস্থিত লগ-ইন ব্যৱহাৰকৰ্তাৰ তথ্য পৰিবৰ্তন কৰক ।"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "বৰ্তমানে উপস্থিত ব্যৱহাৰকৰ্তা ভূমিকা"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr "পঞ্জিকা"
--
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"চিহ্নিত ব্যৱহাৰকৰ্তা টাৰ্মিন্যাল অথবা দূৰবৰ্তী লগ-ইনৰ মাধ্যমে যন্ত্ৰে লগ-ইন কৰিবলৈ "
-+"পাৰিবন ।  ডিফল্টৰূপে, এই যন্ত্ৰে কোনো setuid, নে'টৱৰ্ক, sudo অথবা su উপস্থিত থাকবে "
-+"না"
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "সৰ্বনিম্ন টাৰ্মিন্যাল ব্যৱহাৰকৰ্তাৰ ভূমিকা"
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
 -#~ "or /tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
 +msgstr ""
-+"চিহ্নিত ব্যৱহাৰকৰ্তা X অথবা টাৰ্মিন্যালৰ মাধ্যমে যন্ত্ৰে লগ-ইন কৰিবলৈ পাৰিবন ।  "
-+"ডিফল্টৰূপে, এই যন্ত্ৰে কোনো setuid, নে'টৱৰ্ক, sudo অথবা su উপস্থিত থাকবে না"
  
 -#~ msgid "Network Configuration"
 -#~ msgstr "নে'টৱৰ্ক বিন্যাস"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "সৰ্বনিম্ন X Windows ব্যৱহাৰকৰ্তাৰ ভূমিকা"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
 -#~ msgstr "উপৰ নে'টৱৰ্ক"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+"সম্পূৰ্ণ নে'টৱৰ্ক, ৰূপান্তৰবিহীন setuid অনুপ্ৰয়োগ বিনা, su বিনা আৰু sudo বিনা "
-+"ব্যৱহাৰকৰ্তা ভূমিকা ।"
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "ব্যৱহাৰকৰ্তাৰ ভূমিকা"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
  
 -#~ msgid "Databases"
 -#~ msgstr "তথ্যভঁৰাল"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"সম্পূৰ্ণ নে'টৱৰ্ক, ৰূপান্তৰবিহীন setuid অনুপ্ৰয়োগ বিনা আৰু su বিনা ব্যৱহাৰকৰ্তা ভূমিকা । "
-+"sudo সহযোগে root ব্যৱহাৰকৰ্তাৰ প্ৰশাসনিক ভূমিকা প্ৰয়োগ কৰা যাবে ।"
  
 -#~ msgid "XServer"
 -#~ msgstr "XServer"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "অ্যাডমিন ব্যৱহাৰকৰ্তাৰ ভূমিকা"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
  
 -#~ msgid "Allow clients to write to X shared memory"
 -#~ msgstr "এক্স স্থানাঙ্ক"
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>root ব্যৱহাৰকৰ্তা</b>"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr "পঞ্জিকা"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+"এই ব্যৱহাৰকৰ্তা দ্বাৰা root পৰিচয়ে যন্ত্ৰ পৰিচালনা কৰা হলে 'Root প্ৰশাসনিক "
-+"ব্যৱহাৰকৰ্তাৰ ভূমিকা' নিৰ্বাচন কৰক । প্ৰণালীত, এই ব্যৱহাৰকৰ্তাই পোনেপোনে লগ-ইন "
-+"কৰিবলৈ সক্ষম ন'হ'ব ।"
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root প্ৰশাসনিক ব্যৱহাৰকৰ্তাৰ ভূমিকা"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "confine কৰাৰ বাবে অনুপ্ৰয়োগ অথবা ব্যৱহাৰকৰ্তাৰ নাম নিৰ্বাচন কৰক ।"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "নাম"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "confine কৰাৰ বাবে এক্সেকিউটেবিলৰ সম্পূৰ্ণ পাথ লিখক ।"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "confine কৰা ব্যৱহাৰকৰ্তা অথবা অনুপ্ৰয়োগ ভূমিকাৰ স্বতন্ত্ৰ নাম লিখক ।"
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "এক্সেকিউটেবল"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init স্ক্ৰিপ্ট"
  
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr "confine কৰা অনুপ্ৰয়োগ আৰম্ভেৰ বাবে init স্ক্ৰিপ্টৰ সম্পূৰ্ণ পাথ লিখক ।"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
 -#~ msgid "Allow daemons to run with NIS"
 -#~ msgstr "NIS"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "স্বনিৰ্ধাৰণৰ বাবে প্ৰযোজ্য ব্যৱহাৰকৰ্তাৰ ভূমিকা চিহ্নিত কৰক"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "চিহ্নিত অনুপ্ৰয়োগ ডোমেইনেত ৰূপান্তৰযোগ্য ব্যৱহাৰকৰ্তাৰ ভূমিকা নিৰ্বাচন কৰক"
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "এই ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা ৰূপান্তৰৰ বাবে অতিৰিক্ত ডোমেইন নিৰ্বাচন কৰক"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Web Applications"
 -#~ msgstr "ওয়েব অ্যাপ্লিকেশন"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"চিহ্নিত ব্যৱহাৰকৰ্তাৰ ভূমিকা দ্বাৰা যি সকলো অনুপ্ৰয়োগ ডোমেইনলৈ ৰূপান্তৰ কৰা সম্ভৱ হ'ব "
-+"সেইটো নিৰ্বাচন কৰক ।"
  
 -#~ msgid "Disable SELinux protection for amanda"
 -#~ msgstr "amanda-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "চিহ্নিত ডোমেইনেত ৰূপান্তৰযোগ্য ব্যৱহাৰকৰ্তাৰ ভূমিকা নিৰ্বাচন কৰক"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amavis"
 -#~ msgstr "amavis-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"ব্যৱহাৰকৰ্তা দ্বাৰা যি সকলো অতিৰিক্ত ডোমেইন পৰিচালিত হ'ব সেইসমূহ নিৰ্বাচন কৰক"
  
 -#~ msgid "Disable SELinux protection for apmd daemon"
 -#~ msgstr "apmd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "চিহ্নিত ব্যৱহাৰকৰোঁতা দ্বাৰা পৰিচালনাৰ উদ্দেশ্যে ডোমেইন নিৰ্বাচন কৰক ।"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for arpwatch daemon"
 -#~ msgstr "arpwatch ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "চিহ্নিত ব্যৱহাৰকৰ্তাৰ বাবে অতিৰিক্ত ভূমিকা নিৰ্বাচন কৰক"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for auditd daemon"
 -#~ msgstr "auditd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা যি সকলো নে'টৱৰ্ক পোৰ্টত অপেক্ষা কৰা হ'ব"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for automount daemon"
 -#~ msgstr "automount ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP পোৰ্ট</b>"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for avahi"
 -#~ msgstr "avahi-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+"confine কৰা অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তাৰ যি কোনো udp পোৰ্টৰ সৈতে bind কৰাৰ সুযোগ দিয়ে ।"
  
 -#~ msgid "Disable SELinux protection for bluetooth daemon"
 -#~ msgstr "bluetooth ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "সকল"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for canna daemon"
 -#~ msgstr "canna ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তাৰ 0 প্ৰয়োগ কৰি bindresvport কল কৰাৰ সুযোগ দিয়া হ'ব । পোৰ্ট "
-+"সংখ্যা ৬০০-১০২৪-ৰ সৈতে bind কৰা হ'ব ।"
  
 -#~ msgid "Disable SELinux protection for cardmgr daemon"
 -#~ msgstr "cardmgr ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Cluster Server"
 -#~ msgstr "Cluster Server-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা যি সকলো udp পোৰ্ট অথবা পোৰ্ট সীমাত উপস্থিত পোৰ্টৰ "
-+"সৈতে বাইন্ড কৰিবলৈ সক্ষম হ'ব সেইসমূহৰ তালিকা নিৰ্মাণ কৰক আৰু কমা চিহ্ন দ্বাৰা "
-+"বিভাজন কৰক । উদাহৰণস্বৰূপ: 612, 650-660"
  
 -#~ msgid "Disable SELinux protection for ciped daemon"
 -#~ msgstr "ciped ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "অসংৰক্ষিত পোৰ্ট (>1024)"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for clamd daemon"
 -#~ msgstr "clamd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "নিৰ্বাচিত পোৰ্ট"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for clamscan"
 -#~ msgstr "clamscan-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তাৰ 1024-ৰ অধিক যি কোনো udp পোৰ্টৰ সৈতে bind কৰাৰ সুযোগ দিয়া "
-+"হয় ।"
  
 -#~ msgid "Disable SELinux protection for clvmd"
 -#~ msgstr "clvmd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP পোৰ্ট</b>"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for comsat daemon"
 -#~ msgstr "comsat ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা যি সকলো নে'টৱৰ্ক পোৰ্টৰ সৈতে সংযোগ স্থাপন কৰা হ'ব"
  
 -#~ msgid "Disable SELinux protection for courier daemon"
 -#~ msgstr "courier ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা যি সকলো tcp পোৰ্ট অথবা পোৰ্ট সীমাত উপস্থিত পোৰ্টৰ "
-+"সৈতে সংযোগ কৰিবলৈ সক্ষম হ'ব সেইসমূহৰ তালিকা নিৰ্মাণ কৰক আৰু কমা চিহ্ন দ্বাৰা "
-+"বিভাজন কৰক । উদাহৰণস্বৰূপ: 612, 650-660"
  
 -#~ msgid "Disable SELinux protection for cpucontrol daemon"
 -#~ msgstr "cpucontrol ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+"অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তা ভূমিকা দ্বাৰা যি সকলো udp পোৰ্ট অথবা পোৰ্ট সীমাত উপস্থিত পোৰ্টৰ "
-+"সৈতে সংযোগ কৰিবলৈ সক্ষম হ'ব সেইসমূহৰ তালিকা নিৰ্মাণ কৰক আৰু কমা চিহ্ন দ্বাৰা "
-+"বিভাজন কৰক । উদাহৰণস্বৰূপ: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "সাধাৰণ অনুপ্ৰয়োগৰ বৈশিষ্ট্য নিৰ্বাচন কৰক"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog বাৰ্তা লিখা হয়\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp-ত উপস্থিত অস্থায়ী নথিপত্ৰ নিৰ্মাণ/পৰিবৰ্তন কৰক"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "অনুমোদনৰ বাবে Pam ব্যৱহাৰ কৰক"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch অথবা getpw* কল ব্যৱহাৰ কৰা হয়"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus ব্যৱহাৰ কৰা হয়"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "অডিট সংক্ৰান্ত বাৰ্তা পঠিওৱা হয়"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "টাৰ্মিন্যালৰ সৈতে যোগাযোগ"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "ই-মেইল বাৰ্তা পঠিওৱা হয়"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "অনুপ্ৰয়োগ দ্বাৰা পৰিচালিত নথিপত্ৰ/পঞ্জিকা নিৰ্বাচন কৰক"
  
 -#~ msgid "Disable SELinux protection for cpuspeed daemon"
 -#~ msgstr "cpuspeed ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+"অনুপ্ৰয়োগ যি সকলো নথিপত্ৰ/পঞ্জিকাত \"Write\" লিখিবলৈ পাৰিব সেইসমূহৰ নাম যোগ কৰক । "
-+"Pid নথিপত্ৰ, লগ নথিপত্ৰ, /var/lib নথিপত্ৰ ..."
  
 -#~ msgid "Cron"
 -#~ msgstr "Cron"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "অনুপ্ৰয়োগ দ্বাৰা ব্যৱহৃত বুলিয়েন নিৰ্বাচন কৰক"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for crond daemon"
 -#~ msgstr "crond ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "কনফাইন কৰা অনুপ্ৰয়োগ/ব্যৱহাৰকৰ্তাৰ বাবে প্ৰয়োগ হোৱা বুলিয়েন যোগ কৰক/আঁতৰাওক"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
 -#~ msgid "Printing"
 -#~ msgstr "প্ৰিন্ট ব্যৱস্থা"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "নিয়মনীতি নিৰ্মাণৰ বাবে ব্যৱহাৰযোগ্য পঞ্জিকা নিৰ্বাচন কৰক"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid "Disable SELinux protection for cupsd back end server"
 -#~ msgstr "cupsd ব্যাক-এন্ড সাৰ্ভাৰেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "পলিচি পঞ্জিকা"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd daemon"
 -#~ msgstr "cupsd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "নথিপত্ৰ"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd_lpd"
 -#~ msgstr "cupsd_lpd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"এই সৰঞ্জাম দ্বাৰা নিম্নলিখিত সামগ্ৰী নিৰ্মিত হ'ব: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"নথিপত্ৰ/পঞ্জিকা কম্পাইল/সংস্থাপন আৰু পুনৰায় লেবেল কৰাৰ বাবে root পৰিচয়ে শ্বেল "
-+"স্ক্ৰিপ্ট সঞ্চালন কৰক ।  \n"
-+"Linux লগ-ইন ব্যৱহাৰকৰ্তাৰ সৈতে ব্যৱহাৰকৰ্তাৰ ভূমিকাৰ যোগসূত্ৰ স্থাপন কৰাৰ বাবে "
-+"semange অথবা useradd প্ৰয়োগ কৰক ।\n"
-+"যন্ত্ৰ permissive (সতৰ্কতামূলক) মোডত স্থাপন কৰক (setenforce 0) । \n"
-+"ব্যৱহাৰকৰ্তা ৰূপে লগ-ইন কৰক আৰু ব্যৱহাৰকৰ্তাৰ ভূমিকা পৰীক্ষা কৰক ।\n"
-+"te নথিপত্ৰৰ বাবে অতিৰিক্ত নিয়ম নিৰ্ধাৰণ কৰাৰ বাবে audit2allow -R প্ৰয়োগ কৰক ।\n"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
  
 -#~ msgid "CVS"
 -#~ msgstr "CVS"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"এই সৰঞ্জাম দ্বাৰা নিম্নলিখিত সামগ্ৰী নিৰ্মিত হ'ব: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"নথিপত্ৰ/পঞ্জিকা কম্পাইল/সংস্থাপন আৰু পুনৰায় লেবেল কৰাৰ বাবে root পৰিচয়ে শ্বেল "
-+"স্ক্ৰিপ্ট সঞ্চালন কৰক ।  \n"
-+"যন্ত্ৰটি permissive (সতৰ্কতামূলক) মোডে স্থাপন কৰক (setenforce 0) । \n"
-+"ব্যৱহাৰকৰ্তা ৰূপে লগ-ইন কৰক আৰু ব্যৱহাৰকৰ্তাৰ ভূমিকা পৰীক্ষা কৰক ।\n"
-+"te নথিপত্ৰৰ বাবে অতিৰিক্ত নিয়ম নিৰ্ধাৰণ কৰাৰ বাবে audit2allow -R প্ৰয়োগ কৰক ।\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "বুলিয়েন ডায়লগ যোগ কৰক"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "বুলিয়েন নাম"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "ভূমিকা"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "উপস্থিত_ব্যৱহাৰকৰ্তা"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "অনুপ্ৰয়োগ"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s পঞ্জিকা হোৱা আৱশ্যক"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "এটা ব্যৱহাৰকৰ্তা নিৰ্বাচন কৰা আৱশ্যক"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "confine কৰাৰ উদ্দেশ্যে এক্সিকিউটেবিল নথিপত্ৰ নিৰ্বাচন কৰক"
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "confine কৰাৰ উদ্দেশ্যে init script নথিপত্ৰ নিৰ্বাচন কৰক ।"
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "নথিপত্ৰ"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "পঞ্জিকা"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "পঞ্জিকা"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cvs daemon"
 -#~ msgstr "cvs ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
 +msgstr ""
-+"বৰ্তমান নিয়মনীতিত %s_t ধৰন বৰ্তমানে বেখ্যা কৰা হৈছে ।\n"
-+"আগবাঢ়িব'লৈ ইচ্ছুক নেকি?"
  
 -#~ msgid "Disable SELinux protection for cyrus daemon"
 -#~ msgstr "cyrus ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "নাম পৰীক্ষণ"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dbskkd daemon"
 -#~ msgstr "dbskkd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"বৰ্তমান নিয়মনীতিত %s.pp মডিউল বৰ্তমানে বেখ্যা কৰা হৈছে ।\n"
-+"আগবাঢ়িব'লৈ ইচ্ছুক নেকি?"
  
 -#~ msgid "Disable SELinux protection for dbusd daemon"
 -#~ msgstr "dbusd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "নাম উল্লেখ কৰা আৱশ্যক"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccd"
 -#~ msgstr "dccd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "এক্সেকিউটেবল উল্লেখ কৰা আৱশ্যক"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccifd"
 -#~ msgstr "dccifd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux কনফিগাৰ কৰক"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccm"
 -#~ msgstr "dccm-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "পোৰ্ট সংখ্যাৰ ক্ষেত্ৰত 1 ৰ পৰা %d-ত সংখ্যা অথবা সংখ্যামালা ব্যৱহাৰ কৰা আৱশ্যক "
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for ddt daemon"
 -#~ msgstr "ddt ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "কনফাইন কৰা প্ৰক্ৰিয়া/ব্যৱহাৰকৰ্তাৰ বাবে নাম লিখা আৱশ্যক"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for devfsd daemon"
 -#~ msgstr "devfsd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER ধৰনটি অনুমোদিত এক্সেকিউটেবল নহয়"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dhcpc daemon"
 -#~ msgstr "dhcpc ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "শুধুমাত্ৰ DAEMON অনুপ্ৰয়োগ দ্বাৰা init স্ক্ৰিপ্ট ব্যৱহাৰ কৰা যাবে"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dhcpd daemon"
 -#~ msgstr "dhcpd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "বুলিয়েন মান "
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dictd daemon"
 -#~ msgstr "dictd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER ধৰনৰ ক্ষেত্ৰত স্বয়ংক্ৰিয়ৰূপে tmp ধৰন নিৰ্ধাৰিত হ'ব"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Evolution"
 -#~ msgstr "Evolution-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "উল্লিখিত সময় অবধি"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
  
 -#~ msgid "Games"
 -#~ msgstr "খেলা"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "ধৰন প্ৰয়োগকাৰী নথিপত্ৰ"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for games"
 -#~ msgstr "উল্লিখিত সময় অবধি"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "সংযোগমাধ্যম সংক্ৰান্ত নথিপত্ৰ"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for the web browsers"
 -#~ msgstr "উল্লিখিত সময় অবধি"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "নথিপত্ৰ কনটেক্সটেৰ নথিপত্ৰ"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Thunderbird"
 -#~ msgstr "Thunderbird-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "বৈশিষ্ট্য"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for distccd daemon"
 -#~ msgstr "distccd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "নে'টৱৰ্ক পোৰ্ট"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dmesg daemon"
 -#~ msgstr "dmesg ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "hal ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux পোৰ্ট\n"
-+"ধৰন"
  
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "প্ৰোটোকল"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"স্তৰ"
  
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "hplip ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "পোৰ্ট"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "প'ৰ্ট সংখ্যা \"%s\" বৈধ নহয় ।  0 < PORT_NUMBER < 65536 "
-+
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD সেৱা"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "তালিকা অনুসাৰে প্ৰদৰ্শন"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "দল ভিউ"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -12601,27 +24675,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "সেৱা"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "প্ৰশাসক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd চাইল্ড ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "সৰ্বধৰনৰ ডেমন দ্বাৰা /-ত corefile লিখাৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "সৰ্বধৰনৰ ডেমনকে অব্যৱহৃত ttys ব্যৱহাৰৰ ক্ষমতা প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -12629,1479 +24713,1561 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "ব্যৱহাৰকৰ্তাৰ অধিকাৰ"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"guest SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "স্মৃতিশক্তি সংৰক্ষণ"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java এক্সেকিউটেবল স্ট্যাকেৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "মাউন্ট কৰক"
-+
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "নথিপত্ৰ"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "পঞ্জিকা"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer এক্সেকিউটেবল স্ট্যাকেৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh দ্বাৰা ssh-keysign সঞ্চালনৰ অনুমতি দিয়া হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"staff SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "NFS"
--#~ msgstr "NFS"
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"আন-কনফাইন কৰা SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা "
-+"(home) অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "নে'টৱৰ্ক বিন্যাস"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "hal ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "উপৰ নে'টৱৰ্ক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"user SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"আন-কনফাইন কৰা সামগ্ৰী unconfined_execmem-এ dyntrans কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "তথ্যভঁৰাল"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "hplip ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "ব্যৱহাৰকৰ্তাৰ mysql সকেটেৰ সৈতে সংযোগ কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "ব্যৱহাৰকৰ্তাৰ postgres সকেটেৰ সৈতে সংযোগ কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
++msgstr ""
  
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD সেৱা"
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Name Service"
+-#~ msgstr "নাম সেৱা"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "এক্স স্থানাঙ্ক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux ব্যৱহাৰকৰ্তা হিচাপৰ ক্ষেত্ৰত ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত পঞ্জিকা (home) "
-+"অথবা /tmp পঞ্জিকাত নথিপত্ৰ সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
  
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "ওয়েব অনুপ্ৰয়োগ"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "staff SELinux ব্যৱহাৰকৰ্তাকে ওয়েব ব্ৰাউজাৰ ডোমেইনেত ৰূপান্তৰ কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ব্যৱহাৰকৰ্তাকে ওয়েব ব্ৰাউজাৰ ডোমেইনেত ৰূপান্তৰ কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "user SELinux ব্যৱহাৰকৰ্তাকে ওয়েব ব্ৰাউজাৰ ডোমেইনেত ৰূপান্তৰ কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ব্যৱহাৰকৰ্তাকে ওয়েব ব্ৰাউজাৰ ডোমেইনেত ৰূপান্তৰ কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+"staff ওয়েব ব্ৰাউজাৰ দ্বাৰা ব্যক্তিগত (home) পঞ্জিকাত লিখাৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster Server-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord দ্বাৰা বিবিধ বস্তু পাঠেৰ অনুমতি প্ৰদান কৰা হ'ব । nfs, samba, অপসাৰণযোগ্য "
-+"ডিভাইস, user temp আৰু অবিশ্বস্ত তথ্য সহ নথিপত্ৰ"
  
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd চাইল্ড ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "প্ৰিন্ট ব্যৱস্থা"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd বেক-এন্ড সেৱকৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি rsync"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "সৰ্বমোট"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr "এক্স স্থানাঙ্ক মেপ"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t দ্বাৰা পোনেপোনে ডেমন আৰম্ভেৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "খেলা"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "স্মৃতিশক্তি সংৰক্ষণ"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "নে'টৱৰ্ক"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "নে'টৱৰ্ক"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "সৰ্বমোট"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "সুসংগতি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "বিপদেৰ আশঙ্কাবিহীন জ্ঞাত সমস্যাসহ সামগ্ৰীৰ বাবে অডিট কৰা ন'হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgid "Disable SELinux protection for tcp daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgid "Disable SELinux protection for telnet daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgid "Disable SELinux protection for transproxy daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgid "Disable SELinux protection for uml daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD সেৱা"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr "ডোমেইম"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec-ৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr "ডোমেইম"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgid "Disable SELinux protection for updfstab daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgid "Disable SELinux protection for uptimed daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr "à¦\8fà¦\95à§\8dস à¦¸à§\8dথানাà¦\99à§\8dà¦\95"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd চাইল্ড ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr "নà§\87'à¦\9fৱৰà§\8dà¦\95"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr "ডোমেইম FTP"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgid "Disable SELinux protection for uucpd daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mailman"
+-#~ msgid "Disable SELinux protection for vmware daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgid "Disable SELinux protection for watchdog daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgid "Disable SELinux protection for winbind daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgid "Disable SELinux protection for xdm daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgid "Disable SELinux protection for xen daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgid "Disable SELinux protection for xfs daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Name Service"
--#~ msgstr "নাম সেৱা"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgid "Disable SELinux protection for ypbind daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি NIS"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgid "Disable SELinux protection for ypserv daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি NIS"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Samba"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
 -#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr "ধৰন সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr "হলো উপৰ হলো উপৰ?"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr "সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+"evolution আৰু thunderbird দ্বাৰা ব্যৱহাৰকৰ্তাৰ নথিপত্ৰ পাঠ কৰাৰ অনুমতি প্ৰদান কৰা "
-+"হ'ব"
  
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr "লাল<dwalsh@redhat.com>"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "পà§\8dৰৱà§\87শ"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux Type"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "mozilla ব্ৰাউজাৰ দ্বাৰা ব্যৱহাৰকৰ্তাৰ নথিপত্ৰ পড়াৰ অনুমতি প্ৰদান কৰা হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "File Type"
+-#~ msgstr "ধৰন"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ব্যৱহাৰকৰোঁতা যোগ কৰক"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "_Properties"
+-#~ msgstr "বà§\88শিষà§\8dà¦\9fà§\8dযাবলà§\80 (_P)"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "_Delete"
+-#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন (_D)"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "নাম সেৱা"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "বà§\8dযৱসà§\8dথাপà§\8dৰণালà§\80 à¦¡à¦¿à¦«à¦²à§\8dà¦\9f"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "বà§\8dযৱসà§\8dথাপà§\8dৰণালà§\80 à¦¡à¦¿à¦«à¦²à§\8dà¦\9f à¦§à§°à¦¨ "
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr "নথিপত্ৰ উপৰ উপৰ সৰ্বমোট হলো."
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "à¦\89পৰ."
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Add File Context"
+-#~ msgstr "à¦\95নà¦\9fà§\87à¦\95à§\8dসà¦\9f"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Modify File Context"
+-#~ msgstr "পৰিবৰà§\8dতন à¦\95ৰà¦\95 à¦\95নà¦\9fà§\87à¦\95à§\8dসà¦\9f"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Delete File Context"
+-#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন à¦\95নà¦\9fà§\87à¦\95à§\8dসà¦\9f"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "পৰিবৰà§\8dতন à¦\95ৰà¦\95"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Add Translation"
+-#~ msgstr "à¦\85নà§\81বাদ"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Modify Translation"
+-#~ msgstr "পৰিবৰà§\8dতন à¦\95ৰà¦\95 à¦\85নà§\81বাদ"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Delete Translation"
+-#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন à¦\85নà§\81বাদ"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "পৰিবৰà§\8dতন à¦\95ৰà¦\95"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Add Network Port"
+-#~ msgstr "পà§\8bৰà§\8dà¦\9f"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Edit Network Port"
+-#~ msgstr "সমà§\8dপাদন à¦ªà§\8bৰà§\8dà¦\9f"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Delete Network Port"
+-#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন à¦ªà§\8bৰà§\8dà¦\9f"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "সà§\8dতৰ"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Requires value"
+-#~ msgstr "মান à¦\86ৱশà§\8dযà¦\95"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux পলিচি নিৰ্মাণেৰ Druid"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label25"
+-#~ msgstr "label25"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label26"
+-#~ msgstr "label26"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label28"
+-#~ msgstr "label28"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label30"
+-#~ msgstr "label30"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "rsync"
--#~ msgstr "rsync"
+-#~ msgid "label31"
+-#~ msgstr "label31"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "উল্লিখিত সময় অবধি rsync"
+-#~ msgid "label32"
+-#~ msgstr "label32"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "সৰ্বমোট"
+-#~ msgid "label33"
+-#~ msgstr "label33"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba"
+-#, fuzzy
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "confine কৰা অ্যাপ্লিকেশন/ব্যৱহাৰকৰোঁতাসকলৰ যে কোনো tcp পোৰ্টেৰ সৈতে bind কৰাৰ "
+-#~ "সুযোগ দেয় ।"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr "এক্স স্থানাঙ্ক মেপ"
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "আপোনাৰ অ্যাপ্লিকেশন দ্বাৰা 0 মান সহ bindresvport কল কৰা হলে এই চেক-বাটনটি "
+-#~ "ব্যৱহাৰ কৰক ।"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#, fuzzy
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "অ্যাপ্লিকেশন/ব্যৱহাৰকৰোঁতাসকলৰ 1024-ৰ অধিক যে কোনো tcp পোৰ্টেৰ সৈতে bind কৰাৰা "
+-#~ "সুযোগ দেয়"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "à¦\85সà¦\82ৰà¦\95à§\8dষিত à¦ªà§\8bৰà§\8dà¦\9f  (> 1024)"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr "তালিকা সৰ্বমোট "
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label34"
+-#~ msgstr "label34"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "label35"
+-#~ msgstr "label35"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"প্ৰমিত অৱস্থান ভিন্ন অন্য অৱস্থানত উপস্থিত নথিপত্ৰসমূহ বিভিন্ন প্ৰোগ্ৰাম দ্বাৰা পাঠ কৰাৰ "
-+"অনুমতি প্ৰদান কৰা হ'ব (default_t)"
  
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "value"
+-#~ msgstr "মান"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "%s সঞ্চালনেৰ বাবে root পৰিচয় ধাৰণ কৰা আৱশ্যক ।"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Other"
+-#~ msgstr "à¦\85নà§\8dযানà§\8dয"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Select XWindows login user, if this is a user who will login to a machine "
+-#~ "via X"
+-#~ msgstr ""
+-#~ "ব্যৱহাৰকৰোঁতা যদি X-ৰ মাধ্যমে যন্ত্ৰত প্ৰৱেশ কৰেন তাহলে XWindows প্ৰৱেশ "
+-#~ "ব্যৱহাৰকৰোঁতা নিৰ্বাচন কৰক"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "XWindows Login User"
+-#~ msgstr "XWindows প্ৰৱেশ ব্যৱহাৰকৰোঁতা"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid ""
+-#~ "Select Terminal Login User, if this user will login to a machine only via "
+-#~ "a terminal or remote login"
+-#~ msgstr ""
+-#~ "ব্যৱহাৰকৰোঁতা দ্বাৰা অকল টাৰ্মিনাল অথবা দূৰবৰ্তী প্ৰৱেশেৰ সাহায্যে যন্ত্ৰত প্ৰৱেশ "
+-#~ "কৰা হলে টাৰ্মিনাল প্ৰৱেশ ব্যৱহাৰকৰোঁতা নিৰ্বাচন কৰক"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "স্মৃতিশক্তি সংৰক্ষণ"
+-#~ msgid "Terminal Login User"
+-#~ msgstr "টাৰ্মিনাল প্ৰৱেশ ব্যৱহাৰকৰোঁতা"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
+-#~ msgid "Name of application to be confined"
+-#~ msgstr "confine কৰাৰ বাবে চিহ্নিত অ্যাপ্লিকেশন"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "নে'টৱৰ্ক"
+-#~ msgid "Incoming Network Port Connections"
+-#~ msgstr "আগমনকাৰী নে'টৱৰ্ক পোৰ্ট সংযোগ"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "উল্লিখিত সময় অবধি rsync"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Outgoing Network Port Connections"
+-#~ msgstr "বাহিৰমà§\81à¦\96à§\80 à¦¨à§\87'à¦\9fৱৰà§\8dà¦\95 à¦ªà§\8bৰà§\8dà¦\9f à¦¸à¦\82যà§\8bà¦\97"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "সৰ্বমোট"
++msgstr ""
  
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "নে'টৱৰ্ক"
+-#~ msgid ""
+-#~ "Application uses nsswitch or translates UID's (daemons that run as non "
+-#~ "root)"
+-#~ msgstr "অ্যাপ্লিকেশন UID"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Files and Directories"
+-#~ msgstr "নথিপতà§\8dৰ à¦\93 à¦ªà¦\9eà§\8dà¦\9cিà¦\95া"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL অনুমোদনৰ সেৱক"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Generate policy in this directory"
+-#~ msgstr "পà¦\9eà§\8dà¦\9cিà¦\95া"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl অনুমোদন সেৱক দ্বাৰা /etc/shadow নথিপত্ৰ পাঠ কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Login"
+-#~ msgstr "পà§\8dৰৱà§\87শ"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr "এক্স স্থানাঙ্ক মেপ"
++msgstr ""
  
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "সৰà§\8dবমà§\8bà¦\9f"
+-#~ msgid "Allow direct login to the console device. Requiered for System 390"
+-#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি à¦¬à§\8dযৱসà§\8dথাপà§\8dৰণালà§\80"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their heap memory executable.  Doing "
+-#~ "this is a really bad idea. Probably indicates a badly coded executable, "
+-#~ "but could indicate an attack. This executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr "হলো"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow unconfined executables to map a memory region as both executable "
+-#~ "and writable, this is dangerous and the executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr "মেপ হলো"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t-এ ৰূপান্তৰৰ অনুমতি প্ৰদান কৰা ন'হ'ব, sudo আৰু su প্ৰভাবিত হ'ব"
-+
++msgstr ""
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "কোনো প্ৰক্ৰিয়া দ্বাৰা কাৰ্নেল মডিউল তুলি লোৱাৰ অনুমতি প্ৰদান কৰা ন'হ'ব"
-+
++msgstr ""
+-#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
+-#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "কোনো প্ৰক্ৰিয়া দ্বাৰা SELinux নিয়মনীতি পৰিবৰ্তনৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
+-#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Allow gssd to read temp directory"
+-#~ msgstr "পঞ্জিকা"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow nfs servers to modify public files used for public file transfer "
+-#~ "services"
+-#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
-+
++msgstr ""
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Polyinstatiation"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Enable polyinstantiated directory support"
+-#~ msgstr "পঞ্জিকা"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow rsync to write files in directories labeled public_content_rw_t"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow Samba to write files in directories labeled public_content_rw_t"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Zebra"
+-#~ msgstr "জেবৰা"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
+-#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Enable extra rules in the cron domain to support fcron"
+-#~ msgstr "ডোমেইম"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "ftpd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "স্পেমৰ পৰা সুৰক্ষা"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
+-#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
+-#~ "urandom"
+-#~ msgstr "সকল"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
+-#~ msgstr "নে'টৱৰ্ক"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd দ্বাৰা ব্যক্তিগত (home) পঞ্জিকা ব্যৱহাৰৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Allow HTTPD scripts and modules to connect to the network"
+-#~ msgstr "নে'টৱৰ্ক"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assassin ডেমনৰ ক্ষেত্ৰত নে'টৱৰ্ক ব্যৱহাৰৰ অনুমতি প্ৰদান কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "httpd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
+-#~ "scripts"
+-#~ msgstr "ডোমেইম"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
+-#~ "certificates"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "নে'টৱৰ্ক"
-+
++msgstr ""
+-#~ msgid "Unify HTTPD handling of all content files"
+-#~ msgstr "সৰ্বমোট"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Allow NFS to share any file/directory read only"
+-#~ msgstr "NFS নথিপত্ৰ পঞ্জিকা"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "উল্লিখিত সময় অবধি"
-+
++msgstr ""
+-#~ msgid "Allow NFS to share any file/directory read/write"
+-#~ msgstr "NFS নথিপত্ৰ পঞ্জিকা"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t ৰূপে ssh লগ-ইনৰ অনুমতি প্ৰদান কৰা হ'ব"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgid "Disable SELinux protection for pppd daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r ব্যৱহাৰকৰ্তাৰ দ্বাৰা sysadm-ৰ ব্যক্তিগত (home) পঞ্জিকাত অনুসন্ধান আৰু নথিপত্ৰ "
-+"(যেমন ~/.bashrc) পাঠেৰ অনুমতি প্ৰদান কৰা হ'ব "
  
--#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
 -#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "সাৰ্বজনীন SSL টানেল"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "à¦\89লà§\8dলিà¦\96িত à¦¸à¦®à§\9f à¦\85বধি"
+-#~ msgid "Allow spammassasin to access the network"
+-#~ msgstr "নà§\87'à¦\9fৱৰà§\8dà¦\95"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "সৰ্বমোট"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr "ডোমেইম"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr "ডোমেইম"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "এক্স স্থানাঙ্ক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
-+msgstr "ডোমেইম"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr "নে'টৱৰ্ক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
-+msgstr "ডোমেইম"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr "ডোমেইম FTP"
++msgstr ""
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm আন-কননথিপত্ৰ অৱস্থায় সঞ্চালনৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"বিশেষ অধিকাৰপ্ৰাপ্ত সামগ্ৰী যেম hotplug আৰু insmod-কে আন-কনফাইন ৰূপে সঞ্চালনৰ "
-+"অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r-কে su, sudo অথবা userhelper-ৰ সাহায্যে sysadm_r প্ৰাপ্ত কৰাৰ অনুমতি প্ৰদান "
-+"কৰা হ'ব । অন্যথা, শুধুমাত্ৰ staff_r দ্বাৰা এটি কৰা সম্ভৱ হ'ব"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা mount কমান্ড প্ৰয়োগ কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "এক্স স্থানাঙ্ক"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "ব্যৱহাৰকৰ্তাৰ dmesg কমান্ড প্ৰয়োগেৰ অনুমতি প্ৰদান কৰা হ'ব"
--#, fuzzy
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr "নে'টৱৰ্ক"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++msgstr ""
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "সাধাৰণ ব্যৱহাৰকৰ্তাৰকে ping প্ৰয়োগ কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "উল্লিখিত সময় অবধি NIS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"ব্যৱহাৰকৰ্তাৰ noextattrfile পড়তে/লিখিবলৈ (r/w) অনুমতি প্ৰদান কৰা হ'ব (FAT, "
-+"CDROM, FLOPPY)"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "ব্যৱহাৰকৰ্তাৰ usb পড়তে আৰু লিখিবলৈ (rw) অনুমোদন কৰা হ'ব"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "উল্লিখিত সময় অবধি NIS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
-+msgstr "ডোমেইম FTP"
--#, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ব্যৱহাৰকৰ্তাৰ ttyfiles stat কৰাৰ অনুমতি প্ৰদান কৰা হ'ব"
--#, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Disabled"
--#~ msgstr "Disabled"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Status"
--#~ msgstr "অবস্থা"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr "ধৰন সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr "হলো উপৰ হলো উপৰ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr "সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t ৰূপে xdm লগ-ইনৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr "লাল<dwalsh@redhat.com>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "প্ৰৱেশ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux Type"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen-কে প্ৰকৃত ডিস্ক ডিভাইস পড়তে/লিখিবলৈ অনুমদোন প্ৰদান কৰা হ'ব"
--#~ msgid "File Type"
--#~ msgstr "ধৰন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ব্যৱহাৰকৰোঁতা যোগ কৰক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen নিয়ন্ত্ৰণৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
--#~ msgid "_Properties"
--#~ msgstr "বৈশিষ্ট্যাবলী (_P)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "_Delete"
--#~ msgstr "মুছে ফেলুন (_D)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "উল্লিখিত সময় অবধি NIS"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "ব্যৱস্থাপ্ৰণালী ডিফল্ট"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "উল্লিখিত সময় অবধি"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "ব্যৱস্থাপ্ৰণালী ডিফল্ট ধৰন "
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "উল্লিখিত সময় অবধি NIS"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr "নথিপত্ৰ উপৰ উপৰ সৰ্বমোট হলো."
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ব্যৱহাৰকৰ্তাকে অধিকাৰবিহীন ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত (home) পঞ্জিকা "
-+"পৰিচালনাৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "উপৰ."
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ব্যৱহাৰকৰ্তাকে অধিকাৰবিহীন ব্যৱহাৰকৰ্তাৰ ব্যক্তিগত (home) পঞ্জিকা "
-+"পড়াৰ অনুমতি প্ৰদান কৰা হ'ব"
--#~ msgid "Add File Context"
--#~ msgstr "কনটেক্সট"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "আপনি কি নিশ্চিতৰূপে %s '%s' মুছে ফেলতে ইচ্ছুক?"
--#~ msgid "Modify File Context"
--#~ msgstr "পৰিবৰ্তন কৰক কনটেক্সট"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s আঁতৰাওক"
--#~ msgid "Delete File Context"
--#~ msgstr "মুছে ফেলুন কনটেক্সট"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s যোগ কৰক"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "পৰিবৰ্তন কৰক"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s পৰিবৰ্তন কৰক"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "মুছে ফেলুন"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissive (সতৰ্কতামূলক)"
--#~ msgid "Add Translation"
--#~ msgstr "অনুবাদ"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Enforcing (সক্ৰিয়)"
--#~ msgid "Modify Translation"
--#~ msgstr "পৰিবৰ্তন কৰক অনুবাদ"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Disabled"
--#~ msgid "Delete Translation"
--#~ msgstr "মুছে ফেলুন অনুবাদ"
++msgstr ""
++
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "অৱস্থা"
--#~ msgid "Modify SELinux User"
--#~ msgstr "পৰিবৰ্তন কৰক"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
-+msgstr "ধৰন সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
++msgstr ""
  
--#~ msgid "Add Network Port"
--#~ msgstr "পà§\8bৰà§\8dট"
+-#~ msgid "Use lpd server instead of cups"
+-#~ msgstr "সৰà§\8dবমà§\8bট"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -14110,69 +26276,69 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 +"system, you can go to permissive mode which will only log errors and not "
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
-+msgstr "হলো উপৰ হলো উপৰ?"
++msgstr ""
  
--#~ msgid "Edit Network Port"
--#~ msgstr "সম্পাদন পোৰ্ট"
+-#~ msgid "Support NFS home directories"
+-#~ msgstr "NFS"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
-+msgstr "সৰ্বমোট নথিপত্ৰ উপৰ উপৰ সৰ্বমোট নথিপত্ৰ?"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "উল্লিখিত সময় অবধি"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
  
--#~ msgid "Delete Network Port"
--#~ msgstr "মà§\81à¦\9bà§\87 à¦«à§\87লà§\81ন à¦ªà§\8bৰà§\8dà¦\9f"
+-#~ msgid "Allow httpd to access samba/cifs file systems"
+-#~ msgstr "নথিপতà§\8dৰ"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr "লাল<dwalsh@redhat.com>"
-+
++msgstr ""
+-#~ msgid "Allow httpd to access nfs file systems"
+-#~ msgstr "নথিপত্ৰ"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "প্ৰৱেশ"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow samba to act as the domain controller, add users, groups and change "
+-#~ "passwords"
+-#~ msgstr "ডোমেইম"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux নে'টৱৰ্ক পোৰ্ট যোগ কৰা হ'ব"
-+
++msgstr ""
+-#~ msgid "Allow Samba to share any file/directory read only"
+-#~ msgstr "Samba নথিপত্ৰ পঞ্জিকা"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux Type"
--#~ msgid "Sensitvity Level"
--#~ msgstr "স্তৰ"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"মাত্ৰা"
  
--#~ msgid "Requires value"
--#~ msgstr "মান আৱশ্যক"
-+#: ../gui/system-config-selinux.glade:814
+-#~ msgid "Allow Samba to share any file/directory read/write"
+-#~ msgstr "Samba নথিপত্ৰ পঞ্জিকা"
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "নথিপত্ৰৰ বৈশিষ্ট্য"
++msgstr ""
  
--#~ msgid "Invalid prefix %s"
--#~ msgstr "প্ৰেফিক্স বৈধ নহয় %s"
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid ""
+-#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
+-#~ msgstr "Samba পঞ্জিকা"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ধৰন"
++msgstr ""
  
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux পলিচি নিৰ্মাণেৰ Druid"
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Label Prefix"
+-#~ msgstr "লেবেল প্ৰেফিক্স"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -14183,1470 +26349,319 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/as.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"সৰ্বধৰনৰ নথিপত্ৰ\n"
-+"সাধাৰণ নথিপত্ৰ\n"
-+"পঞ্জিকা\n"
-+"ক্যাৰেক্টাৰ ডিভাইস\n"
-+"ব্লক-ডিভাইস\n"
-+"সকেট\n"
-+"সিম্বলিক লিঙ্ক\n"
-+"নেমড পাইপ\n"
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "স্তৰ"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux ব্যৱহাৰকৰোঁতা যোগ কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux পৰিচালনা"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "যোগ কৰক"
-+
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
+-#~ msgid "Group/ungroup network ports by SELinux type."
+-#~ msgstr "দল নে'টৱৰ্ক ধৰন."
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "বৈশিষ্ট্যাবলী (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "আঁতৰাওক (_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
++msgstr ""
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr "লেবেল ব্যৱস্থা"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "পৰিচালনাৰ বিষয় নিৰ্বাচন কৰক"
-+
-+#: ../gui/system-config-selinux.glade:1466
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr "স্তৰ"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>নিৰ্বাচন কৰক:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "ব্যৱস্থাপ্ৰণালী ডিফল্ট"
--#~ msgid "label25"
--#~ msgstr "label25"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Disabled (নিষ্ক্ৰিয়)\n"
-+"Permissive (সতৰ্কতামূলক)\n"
-+"Enforcing (সক্ৰিয়)\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "বৰ্তমানে প্ৰয়োগ হোৱা মোড"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "ব্যৱস্থাপ্ৰণালী ডিফল্ট ধৰন "
--#~ msgid "label26"
--#~ msgstr "label26"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
-+msgstr "নথিপত্ৰ উপৰ উপৰ সৰ্বমোট হলো."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "উপৰ."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "বুলিয়েন বৈশিষ্ট্যৰ মান প্ৰণালীৰ অবিকল্পিতলৈ প্ৰত্যাবৰ্তন কৰা হ'ব"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "স্বনিৰ্ধাৰিত আৰু সকল বুলিয়েনেত অদল-বদল কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "বুলিয়েনৰ লক-ডাউন ইউজাৰ্ড সঞ্চালন কৰা হ'ব"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "লক-ডাউন..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "ফিল্টাৰ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
--#~ msgid "label28"
--#~ msgstr "label28"
-+#: ../gui/system-config-selinux.glade:1982
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "কনটেক্সট"
--#~ msgid "label30"
--#~ msgstr "label30"
-+#: ../gui/system-config-selinux.glade:1998
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "পৰিবৰ্তন কৰক কনটেক্সট"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "আঁতৰাওক কনটেক্সট"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "স্বনিৰ্ধাৰিত নথিপত্ৰ কনটেক্সট আৰু সকলেত অদল-বদল কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux ব্যৱহাৰকৰ্তা ম্যাপ ব্যৱস্থা যোগ কৰা হ'ব"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "পৰিবৰ্তন কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "আঁতৰাওক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "ব্যৱহাৰকৰ্তা যোগ কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "ব্যৱহাৰকৰ্তা পৰিবৰ্তন কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "ব্যৱহাৰকৰ্তা আঁতৰাওক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
--#~ msgid "label31"
--#~ msgstr "label31"
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "অনুবাদ"
--#~ msgid "label32"
--#~ msgstr "label32"
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "পৰিবৰ্তন কৰক অনুবাদ"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "আঁতৰাওক অনুবাদ"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "পোৰ্ট"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "সম্পাদন পোৰ্ট"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "আঁতৰাওক পোৰ্ট"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "স্বনিৰ্ধাৰিত আৰু সকল পোৰ্টেত অদল-বদল কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "নতুন নিয়মনীতিৰ মডিউল নিৰ্মাণ কৰক"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "নিয়মনীতিৰ মডিউল তুলি লোৱা হ'ব"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "তুলি লোৱাৰ যোগ্য নিয়মনীতিৰ মডিউল আঁতৰুৱা হ'ব"
--#~ msgid "label33"
--#~ msgstr "label33"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"লগ নথিপত্ৰ দ্বাৰা সাধাৰণত উল্লেখ নোহোৱা অতিৰিক্ত অডিট নিয়ম সক্ৰিয়/নিষ্ক্ৰিয় কৰা হ'ব "
-+"।"
--#, fuzzy
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "confine কৰা অ্যাপ্লিকেশন/ব্যৱহাৰকৰোঁতাসকলৰ যে কোনো tcp পোৰ্টেৰ সৈতে bind কৰাৰ "
--#~ "সুযোগ দেয় ।"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "আপোনাৰ অ্যাপ্লিকেশন দ্বাৰা 0 মান সহ bindresvport কল কৰা হলে এই চেক-বাটনটি "
--#~ "ব্যৱহাৰ কৰক ।"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#, fuzzy
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যৱহাৰকৰোঁতাসকলৰ 1024-ৰ অধিক যে কোনো tcp পোৰ্টেৰ সৈতে bind কৰাৰা "
--#~ "সুযোগ দেয়"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "প্ৰক্ৰিয়াটি permissive (সতৰ্কতামূলক) মোডে পৰিবৰ্তন কৰক ।"
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "অসংৰক্ষিত পোৰ্ট  (> 1024)"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "প্ৰক্ৰিয়াটি enforcing (সক্ৰিয়) মোডে পৰিবৰ্তন কৰক ।"
--#, fuzzy
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr "তালিকা সৰ্বমোট "
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "প্ৰক্ৰিয়ােৰ ডোমেইন"
--#~ msgid "label34"
--#~ msgstr "label34"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "label35"
--#~ msgstr "label35"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux ব্যৱহাৰকৰ্তা '%s'-ৰ উপস্থিত আৱশ্যক"
- #, fuzzy
--#~ msgid "label51"
--#~ msgstr "label25"
--
--#~ msgid "value"
--#~ msgstr "মান"
--
--#~ msgid "You must be root to run %s."
--#~ msgstr "%s সঞ্চালনেৰ বাবে root পৰিচয় ধাৰণ কৰা আৱশ্যক ।"
--
--#~ msgid "Other"
--#~ msgstr "অন্যান্য"
--
--#~ msgid ""
--#~ "Select XWindows login user, if this is a user who will login to a machine "
--#~ "via X"
--#~ msgstr ""
--#~ "ব্যৱহাৰকৰোঁতা যদি X-ৰ মাধ্যমে যন্ত্ৰত প্ৰৱেশ কৰেন তাহলে XWindows প্ৰৱেশ "
--#~ "ব্যৱহাৰকৰোঁতা নিৰ্বাচন কৰক"
--
--#~ msgid "XWindows Login User"
--#~ msgstr "XWindows প্ৰৱেশ ব্যৱহাৰকৰোঁতা"
--
--#~ msgid ""
--#~ "Select Terminal Login User, if this user will login to a machine only via "
--#~ "a terminal or remote login"
--#~ msgstr ""
--#~ "ব্যৱহাৰকৰোঁতা দ্বাৰা অকল টাৰ্মিনাল অথবা দূৰবৰ্তী প্ৰৱেশেৰ সাহায্যে যন্ত্ৰত প্ৰৱেশ "
--#~ "কৰা হলে টাৰ্মিনাল প্ৰৱেশ ব্যৱহাৰকৰোঁতা নিৰ্বাচন কৰক"
--
--#~ msgid "Terminal Login User"
--#~ msgstr "টাৰ্মিনাল প্ৰৱেশ ব্যৱহাৰকৰোঁতা"
--
--#~ msgid "Name of application to be confined"
--#~ msgstr "confine কৰাৰ বাবে চিহ্নিত অ্যাপ্লিকেশন"
--
--#~ msgid "Incoming Network Port Connections"
--#~ msgstr "আগমনকাৰী নে'টৱৰ্ক পোৰ্ট সংযোগ"
--
--#~ msgid "Outgoing Network Port Connections"
--#~ msgstr "বাহিৰমুখী নে'টৱৰ্ক পোৰ্ট সংযোগ"
--
--#~ msgid ""
--#~ "Application uses nsswitch or translates UID's (daemons that run as non "
--#~ "root)"
--#~ msgstr "অ্যাপ্লিকেশন UID"
--
--#~ msgid "Files and Directories"
--#~ msgstr "নথিপত্ৰ ও পঞ্জিকা"
--
--#~ msgid "Generate policy in this directory"
--#~ msgstr "পঞ্জিকা"
--
--#~ msgid "Login"
--#~ msgstr "প্ৰৱেশ"
--
--#~ msgid "Allow direct login to the console device. Requiered for System 390"
--#~ msgstr "উল্লিখিত সময় অবধি ব্যৱস্থাপ্ৰণালী"
--
--#~ msgid ""
--#~ "Allow unconfined executables to make their heap memory executable.  Doing "
--#~ "this is a really bad idea. Probably indicates a badly coded executable, "
--#~ "but could indicate an attack. This executable should be reported in "
--#~ "bugzilla"
--#~ msgstr "হলো"
--
--#~ msgid ""
--#~ "Allow unconfined executables to map a memory region as both executable "
--#~ "and writable, this is dangerous and the executable should be reported in "
--#~ "bugzilla"
--#~ msgstr "মেপ হলো"
--
--#~ msgid "FTP"
--#~ msgstr "FTP"
--
--#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
--#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
--
--#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
--#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
--
--#~ msgid "Allow gssd to read temp directory"
--#~ msgstr "পঞ্জিকা"
--
--#~ msgid ""
--#~ "Allow nfs servers to modify public files used for public file transfer "
--#~ "services"
--#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
--
--#~ msgid "Polyinstatiation"
--#~ msgstr "Polyinstatiation"
--
--#~ msgid "Enable polyinstantiated directory support"
--#~ msgstr "পঞ্জিকা"
--
--#~ msgid ""
--#~ "Allow rsync to write files in directories labeled public_content_rw_t"
--#~ msgstr "rsync"
--
--#~ msgid ""
--#~ "Allow Samba to write files in directories labeled public_content_rw_t"
--#~ msgstr "Samba"
--
--#~ msgid "Zebra"
--#~ msgstr "জেবৰা"
--
--#~ msgid ""
--#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
--#~ msgstr "উল্লিখিত সময় অবধি নথিপত্ৰ"
--
--#~ msgid "Enable extra rules in the cron domain to support fcron"
--#~ msgstr "ডোমেইম"
--
--#~ msgid "Disable SELinux protection for ftpd daemon"
--#~ msgstr "ftpd ডেমনেৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
--
--#~ msgid ""
--#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
--#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
--#~ "urandom"
--#~ msgstr "সকল"
--
--#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
--#~ msgstr "নে'টৱৰ্ক"
--
--#~ msgid "Allow HTTPD scripts and modules to connect to the network"
--#~ msgstr "নে'টৱৰ্ক"
--
--#~ msgid "Disable SELinux protection for httpd daemon"
--#~ msgstr "httpd ডেমনৰ বাবে SELinux নিৰাপত্তা নিষ্ক্ৰিয় কৰক"
--
--#~ msgid ""
--#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
--#~ "scripts"
--#~ msgstr "ডোমেইম"
--
--#~ msgid ""
--#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
--#~ "certificates"
--#~ msgstr "উল্লিখিত সময় অবধি"
--
--#~ msgid "Unify HTTPD handling of all content files"
--#~ msgstr "সৰ্বমোট"
--
--#~ msgid "Allow NFS to share any file/directory read only"
--#~ msgstr "NFS নথিপত্ৰ পঞ্জিকা"
--
--#~ msgid "Allow NFS to share any file/directory read/write"
--#~ msgstr "NFS নথিপত্ৰ পঞ্জিকা"
--
--#~ msgid "Disable SELinux protection for pppd daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
--
--#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
--
--#~ msgid "Allow spammassasin to access the network"
--#~ msgstr "নে'টৱৰ্ক"
--
--#~ msgid "Use lpd server instead of cups"
--#~ msgstr "সৰ্বমোট"
--
--#~ msgid "Support NFS home directories"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for zebra daemon"
--#~ msgstr "উল্লিখিত সময় অবধি"
--
--#~ msgid "Allow httpd to access samba/cifs file systems"
--#~ msgstr "নথিপত্ৰ"
--
--#~ msgid "Allow httpd to access nfs file systems"
--#~ msgstr "নথিপত্ৰ"
--
--#~ msgid ""
--#~ "Allow samba to act as the domain controller, add users, groups and change "
--#~ "passwords"
--#~ msgstr "ডোমেইম"
--
--#~ msgid "Allow Samba to share any file/directory read only"
--#~ msgstr "Samba নথিপত্ৰ পঞ্জিকা"
--
--#~ msgid "Allow Samba to share any file/directory read/write"
--#~ msgstr "Samba নথিপত্ৰ পঞ্জিকা"
--
--#~ msgid ""
--#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
--#~ msgstr "Samba পঞ্জিকা"
--
--#~ msgid "Label Prefix"
--#~ msgstr "লেবেল প্ৰেফিক্স"
--
--#~ msgid "MLS/MCS Level"
--#~ msgstr "স্তৰ"
--
--#~ msgid "Group/ungroup network ports by SELinux type."
--#~ msgstr "দল নে'টৱৰ্ক ধৰন."
--
--#~ msgid ""
--#~ "Labeling\n"
--#~ "Prefix"
--#~ msgstr "লেবেল ব্যৱস্থা"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
-+#~ msgid "Sensitivity Level"
- #~ msgstr "স্তৰ"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils-2.0.85/po/be.po
---- nsapolicycoreutils/po/be.po        2011-02-17 15:11:25.556727752 -0500
-+++ policycoreutils-2.0.85/po/be.po    2011-02-18 16:03:41.342975562 -0500
-@@ -8,14 +8,32 @@
++msgstr ""
+diff --git a/policycoreutils/po/be.po b/policycoreutils/po/be.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/be.po
++++ b/policycoreutils/po/be.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -15655,13 +26670,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -15683,7 +26698,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -15710,7 +26725,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -15718,15 +26733,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -15751,481 +26762,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -16258,7 +27329,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -17386,18 +28457,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -17438,7 +28505,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -17447,25 +28513,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -17477,58 +28537,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -17536,169 +28596,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -17706,1011 +28749,1358 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils-2.0.85/po/bg.po
---- nsapolicycoreutils/po/bg.po        2011-02-17 15:11:25.232733103 -0500
-+++ policycoreutils-2.0.85/po/bg.po    2011-02-18 16:03:41.343975569 -0500
-@@ -8,14 +8,34 @@
+diff --git a/policycoreutils/po/bg.po b/policycoreutils/po/bg.po
+index 6d4a7cd..7d3cbe9 100644
+--- a/policycoreutils/po/bg.po
++++ b/policycoreutils/po/bg.po
+@@ -1,21 +1,24 @@
+-# translation of policycoreutils.pot to Bulgarian
+-# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ #
+-# Doncho N. Gunchev <gunchev@gmail.com>, 2007.
++# Translators:
+ # Alexander Todorov <atodorov@redhat.com>, 2008.
++# Doncho N. Gunchev <gunchev@gmail.com>, 2007.
++# Valentin Laskov <laskov@festa.bg>, 2012.
+ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2008-03-10 21:37+0100\n"
- "Last-Translator: Alexander Todorov <atodorov@redhat.com>\n"
- "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
-+"Language: bg\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-10 21:37+0100\n"
+-"Last-Translator: Alexander Todorov <atodorov@redhat.com>\n"
+-"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-19 14:28+0000\n"
++"Last-Translator: Valentin Laskov <laskov@festa.bg>\n"
++"Language-Team: Bulgarian <trans-bg@lists.fedoraproject.org>\n"
+ "Language: bg\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux ф.контекст"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Генериране на нов модул с политика"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Инструмент за генериране на SELinux политики"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -122,7 +142,8 @@
- msgid "Level"
- msgstr "Ниво"
+@@ -24,18 +27,18 @@ msgid ""
+ "         <args ...> are the arguments to that script."
+ msgstr ""
+ "УПОТРЕБА: run_init <скрипт> <аргументи ...>\n"
+-"  където: <скрипт> е името на инициализационния скрипт за изпълнение,\n"
++"  където: <скрипт> е името на инициализиращ скрипт за изпълнение,\n"
+ "         <аргументи ...> са аргументите към този скрипт."
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+ msgid "failed to initialize PAM\n"
+-msgstr "неуспешна инициализация на PAM\n"
++msgstr "инициализацията на PAM не успя\n"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "неуспешно извличане на информация за акаунта\n"
++msgstr "взимането на информация за акаунта не успя\n"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -44,12 +47,12 @@ msgstr "Парола:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "Не може да се намери вашия запис във файла shadow.\n"
++msgstr "Не може да се намери Ваш запис във файла shadow.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+ msgid "getpass cannot open /dev/tty\n"
+-msgstr "getpass не може да се отвори /dev/tty\n"
++msgstr "getpass не може да отвори /dev/tty\n"
+ #: ../run_init/run_init.c:275
+ #, c-format
+@@ -59,7 +62,7 @@ msgstr "run_init: грешна парола за %s\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr "Не може да се отвори файл %s\n"
++msgstr "Не можах да отворя файл %s\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+@@ -74,12 +77,12 @@ msgstr "Съжаляваме, run_init може да се ползва само
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr "неуспешно удостоверяване.\n"
++msgstr "удостоверяването не успя.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Неуспешно установяване контекста на изпълнение на %s.\n"
++msgstr "Не можах да задам контекст за изпълнение на %s.\n"
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+@@ -91,7 +94,7 @@ msgstr "За да активирате този пакет с политика,
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "глобален"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+@@ -107,90 +110,85 @@ msgstr "Не може да се прочете хранилището с пол
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "Не може да се направи semanage връзка"
++msgstr "Не може да се установи semanage връзка"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Не може да се зададе MLS диапазон за %s"
++msgstr "Не може да се тества статус с разрешен MLS"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "Все още не е реализирано"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage транзакцията е вече в ход"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+-msgstr "Не може да се стартира semanage транзакция"
++msgstr "Не можах да стартирам semanage транзакция"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Не може да се стартира semanage транзакция"
++msgstr "Не можах да ангажирам semanage транзакция"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage транзакцията не е в ход"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Превод"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Не могат да бъдат получени SELinux потребителите"
++msgstr "Не може да се направи списък на SELinux модулите"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Име на модула"
++msgstr "Име на модули"
  
-@@ -177,745 +198,752 @@
- msgid "Permissive Types"
- msgstr "Пасивен"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Версия"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "Изключен"
++msgstr "Забранен"
+ #: ../semanage/seobject.py:322
+ #, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr ""
++msgstr "Не можах да забраня модула %s (неуспешно премахване)"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Не може да се добави роля %s за %s"
++msgstr "Не можах да разреша модула %s (неуспешно премахване)"
+ #: ../semanage/seobject.py:348
+ #, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr ""
++msgstr "Не можах да премахна модула %s (неуспешно премахване)"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "dontaudit изисква или 'вкл' или 'изкл'"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Пасивен"
++msgstr "Вградени Permissive типове"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Пасивен"
++msgstr "Индивидуални Permissive типове"
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
++"Не можах да задам permissive domain %s (инсталирането на модул не успя)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-msgstr ""
++msgstr "Не можах да премахна permissive domain %s (премахването не успя)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -201,18 +199,18 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr "Не може да се създаде ключ за %s"
+-msgstr "Не може да се създаде ключ за %s"
++msgstr "Не можах да създам ключ за %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr "Не може да се провери дали е дефинирано съответствие за вход на %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Вече е дефинирано съответствие за вход на %s"
+-msgstr "Не може да се провери дали е дефинирано съответствие за вход на %s"
++msgstr "Не можах да проверя дали е дефинирано съответствие за вход на %s"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
  msgid "Linux Group %s does not exist"
- msgstr "Linux потребител %s не съществува"
+-msgstr "Linux потребител %s не съществува"
++msgstr "Linux група %s не съществува"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux потребител %s не съществува"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+@@ -222,27 +220,27 @@ msgstr "Linux потребител %s не съществува"
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr "Не може да се създаде съответствие за вход за %s"
+-msgstr "Не може да се създаде съответствие за вход за %s"
++msgstr "Не можах да създам съответствие за вход за %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr "Не може да се зададе името за %s"
+-msgstr "Не може да се зададе името за %s"
++msgstr "Не можах да задам името за %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr "Не може да се зададе MLS диапазон за %s"
+-msgstr "Не може да се зададе MLS диапазон за %s"
++msgstr "Не можах да задам MLS диапазон за %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr "Не може да се зададе SELinux потребител за %s"
+-msgstr "Не може да се зададе SELinux потребител за %s"
++msgstr "Не можах да задам SELinux потребител за %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr "Не може да се добави съответствие за вход за %s"
+-msgstr "Не може да се добави съответствие за вход за %s"
++msgstr "Не можах да добавя съответствие за вход за %s"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "добавяне на SELinux съответствие за потребител"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Изисква seuser или serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Не е дефинирано съответствие за вход за %s"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+@@ -256,12 +254,12 @@ msgstr "Не е дефинирано съответствие за вход за
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr "Не може да се запита seuser за %s"
+-msgstr "Не може да се запита seuser за %s"
++msgstr "Не можах да запитам seuser за %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "Не може да се промени съответствието за вход за %s"
+-msgstr "Не може да се промени съответствието за вход за %s"
++msgstr "Не можах да променя съответствието за вход за %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Съответствие за вход за %s е дефинирано в политиката, не може да бъде изтрито"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+@@ -272,23 +270,28 @@ msgstr ""
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "Не може да се изтрие съответствието за вход за %s"
+-msgstr "Не може да се изтрие съответствието за вход за %s"
++msgstr "Не можах да изтрия съответствието за вход за %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr "Грешка при получаване на съответствията за вход"
+-msgstr "Грешка при получаване на съответствията за вход"
++msgstr "Не можах да направя списък на съответствията за вход"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr "Потребителско име"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr "SELinux потребител"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr "MLS/MCS интервал"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Не може да се добави контекст на файл за %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+@@ -297,48 +300,48 @@ msgstr "MLS/MCS интервал"
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr "Не може да се провери дали SELinux потребител %s е дефиниран"
+-msgstr "Не може да се провери дали SELinux потребител %s е дефиниран"
++msgstr "Не можах да проверя дали SELinux потребител %s е дефиниран"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux потребител %s вече е дефиниран"
+ msgid "Could not query user for %s"
+-msgstr "Не може да се провери потребителя за %s"
++msgstr "Не можах да запитам потребителя за %s"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Не може да се добави контекст на файл за %s"
++msgstr "Трябва да добавите поне една роля за %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr "Не може да се създаде SELinux потребител за %s"
+-msgstr "Не може да се създаде SELinux потребител за %s"
++msgstr "Не можах да създам SELinux потребител за %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr "Не може да се добави роля %s за %s"
+-msgstr "Не може да се добави роля %s за %s"
++msgstr "Не можах да добавя роля %s за %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr "Не може да се зададе MLS ниво за %s"
+-msgstr "Не може да се зададе MLS ниво за %s"
++msgstr "Не можах да задам MLS ниво за %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr "Не може да се добави префикс %s за %s"
+-msgstr "Не може да се добави префикс %s за %s"
++msgstr "Не можах да добавя префикс %s за %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr "Не може да се извлече ключ за %s"
+-msgstr "Не може да се извлече ключ за %s"
++msgstr "Не можах да извлека ключ за %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr "Не може да се добави SELinux потребител %s"
+-msgstr "Не може да се добави SELinux потребител %s"
++msgstr "Не можах да добавя SELinux потребител %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr "Изисква префикс, роли, ниво или диапазон"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Изисква префикс или роли"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux потребител %s не е дефиниран"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Не може да се провери потребителя за %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+@@ -356,30 +359,30 @@ msgstr "SELinux потребител %s не е дефиниран"
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr "Не може да се промени SELinux потребител %s"
+-msgstr "Не може да се промени SELinux потребител %s"
++msgstr "Не можах да променя SELinux потребителя %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux потребител %s е дефиниран в политиката, не може да се изтрие"
+-msgstr "SELinux потребител %s е дефиниран в политиката, не може да се изтрие"
++msgstr "SELinux потребителя %s е дефиниран в политика, не може да се изтрие"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr "Не може да се изтрие SELinux потребител %s"
+-msgstr "Не може да се изтрие SELinux потребител %s"
++msgstr "Не можах да изтрия SELinux потребител %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr "Не могат да бъдат получени SELinux потребителите"
+-msgstr "Не могат да бъдат получени SELinux потребителите"
++msgstr "Не можах да направя списък на SELinux потребителите"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr "Не могат да бъдат получени ролите за потребител %s"
+-msgstr "Не могат да бъдат получени ролите за потребител %s"
++msgstr "Не можах да направя списък на ролите за потребител %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr "Етикиране"
+-msgstr "Етикиране"
++msgstr "Етикетиране"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Префикс"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS ниво"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -398,6 +401,7 @@ msgid "MCS Range"
  msgstr "MCS интервал"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr "SELinux роли"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Изисква се протокол udp или tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -410,14 +414,13 @@ msgid "Port is required"
  msgstr "Изисква се порт"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Невалиден префикс %s"
++msgstr "Невалиден порт"
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
- msgstr "Не може да се създаде ключ за %s/%s"
+-msgstr "Не може да се създаде ключ за %s/%s"
++msgstr "Не можах да създам ключ за %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
- msgstr "Изисква се тип"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+@@ -427,7 +430,7 @@ msgstr "Изисква се тип"
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "Не може да се провери дали порт %s/%s е дефиниран"
+-msgstr "Не може да се провери дали порт %s/%s е дефиниран"
++msgstr "Не можах да проверя дали порт %s/%s е дефиниран"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Порт %s/%s вече е дефиниран"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+@@ -437,42 +440,42 @@ msgstr "Порт %s/%s вече е дефиниран"
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr "Не може да се създаде порт за %s/%s"
+-msgstr "Не може да се създаде порт за %s/%s"
++msgstr "Не можах да създам порт за %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr "Не може да се създаде контекст за %s/%s"
+-msgstr "Не може да се създаде контекст за %s/%s"
++msgstr "Не можах да създам контекст за %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr "Не може да се приведе потребителя в контекст на порта за %s/%s"
+-msgstr "Не може да се приведе потребителя в контекст на порта за %s/%s"
++msgstr "Не можах да задам потребител в контекста на порта за %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr "Не може да се приведе ролята в контекст на порта за %s/%s"
+-msgstr "Не може да се приведе ролята в контекст на порта за %s/%s"
++msgstr "Не можах да задам роля в контекста на порта за %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr "Не може да се приведе типа в контекст на порта за %s/%s"
+-msgstr "Не може да се приведе типа в контекст на порта за %s/%s"
++msgstr "Не можах да задам тип в контекста на порта за %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Не могат да се приведат mls полетата в контекст на порта за %s/%s"
+-msgstr "Не могат да се приведат mls полетата в контекст на порта за %s/%s"
++msgstr "Не можах да задам mls полета в контекста на порта за %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr "Не може да се приведе контекста на порта за %s/%s"
+-msgstr "Не може да се приведе контекста на порта за %s/%s"
++msgstr "Не можах да задам контекста на порта за %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr "Не може да се добави порт %s/%s"
+-msgstr "Не може да се добави порт %s/%s"
++msgstr "Не можах да добавя порт %s/%s"
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Необходим е setype или serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Необходим е setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Порт %s/%s не е дефиниран"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
+@@ -491,36 +494,35 @@ msgstr "Порт %s/%s не е дефиниран"
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr "Не може да се провери порт %s/%s"
+-msgstr "Не може да се провери порт %s/%s"
++msgstr "Не можах да запитам порт %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr "Не може да се промени порт %s/%s"
+-msgstr "Не може да се промени порт %s/%s"
++msgstr "Не можах да променя порт %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "Не може да се получи списък на портовете"
+-msgstr "Не може да се получи списък на портовете"
++msgstr "Не можах да направя списък на портовете"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "Не може да се изтрие порт %s/%s"
+-msgstr "Не може да се изтрие порт %s/%s"
++msgstr "Не можах да изтрия порт %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Порт %s/%s е дефиниран в политиката, не може да се изтрие"
+-msgstr "Порт %s/%s е дефиниран в политиката, не може да се изтрие"
++msgstr "Порт %s/%s е дефиниран в политика, не може да се изтрие"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr "Не може да се изтрие порт %s/%s"
+-msgstr "Не може да се изтрие порт %s/%s"
++msgstr "Не можах да изтрия порт %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr "Не може да се получи списък на портовете"
+-msgstr "Не може да се получи списък на портовете"
++msgstr "Не можах да направя списък на портовете"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "SELinux тип порт"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -530,18 +532,17 @@ msgstr "SELinux тип порт"
  msgid "Proto"
  msgstr "Протокол"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr "Номер на порт"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "Изисква се порт"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Изисква се порт"
+-msgstr "Изисква се порт"
++msgstr "Изисква се адрес на възел"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Необходим е SELinux тип"
+-msgstr ""
++msgstr "Непознат или липсващ протокол"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -554,140 +555,138 @@ msgstr "Необходим е SELinux тип"
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr "Не може да се създаде ключ за %s"
+-msgstr "Не може да се създаде ключ за %s"
++msgstr "Не можах да създам ключ за %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "Не може да се провери дали порт %s/%s е дефиниран"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Порт %s/%s вече е дефиниран"
+-msgstr "Не може да се провери дали порт %s/%s е дефиниран"
++msgstr "Не можах да проверя дали addr %s е дефиниран"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Не може да се създаде ключ за %s"
+-msgstr "Не може да се създаде ключ за %s"
++msgstr "Не можах да създам addr за %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr "Не може да се създаде контекст за %s"
+-msgstr "Не може да се създаде контекст за %s"
++msgstr "Не можах да създам контекст за %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Не може да се зададе името за %s"
+-msgstr "Не може да се зададе името за %s"
++msgstr "Не можах да задам маска за %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Не може да се приведе потребителя в контекст на файл за %s"
+-msgstr "Не може да се приведе потребителя в контекст на файл за %s"
++msgstr "Не можах да задам потребител в addr контекст %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Не може да се приведе ролята в контекст на файл за %s"
+-msgstr "Не може да се приведе ролята в контекст на файл за %s"
++msgstr "Не можах да задам роля в addr контекст за %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Не може да се приведе типа в контекст на файл за %s"
+-msgstr "Не може да се приведе типа в контекст на файл за %s"
++msgstr "Не можах да задам тип в addr контекст за %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Не могат да се приведат mls полетата в контекст на файл за %s"
+-msgstr "Не могат да се приведат mls полетата в контекст на файл за %s"
++msgstr "Не можах да задам mls полета в addr контекст за %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Не може да се установи контекст на файл за %s"
+-msgstr "Не може да се установи контекст на файл за %s"
++msgstr "Не можах да задам addr контекст за %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Не може да се добави порт %s/%s"
+-msgstr "Не може да се добави порт %s/%s"
++msgstr "Не можах да добавя addr %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "Порт %s/%s не е дефиниран"
+-msgstr "Порт %s/%s не е дефиниран"
++msgstr "Addr %s не е дефиниран"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Не може да се провери порт %s/%s"
+-msgstr "Не може да се провери порт %s/%s"
++msgstr "Не можах да запитам addr %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Не може да се промени порт %s/%s"
+-msgstr "Не може да се промени порт %s/%s"
++msgstr "Не можах да променя addr %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Порт %s/%s е дефиниран в политиката, не може да се изтрие"
+-msgstr "Порт %s/%s е дефиниран в политиката, не може да се изтрие"
++msgstr "Addr %s е дефиниран в политика, не може да се изтрие"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Не може да се изтрие интерфейс %s"
+-msgstr "Не може да се изтрие интерфейс %s"
++msgstr "Не можах да изтрия addr %s"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Не може да се изтрие съответствието за вход за %s"
++msgstr "Не можах да изтрия всички съответствия на възли"
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "Не може да се получи списък на портовете"
+-msgstr "Не може да се получи списък на портовете"
++msgstr "Не можах да направя addr списък"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "Не може да се провери дали интерфейс %s е дефинирано"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Интерфейс %s вече е дефиниран"
+-msgstr "Не може да се провери дали интерфейс %s е дефинирано"
++msgstr "Не можах да проверя дали интерфейс %s е дефиниран"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr "Не може да се създаде интерфейс за %s"
+-msgstr "Не може да се създаде интерфейс за %s"
++msgstr "Не можах да създам интерфейс за %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr "Не може да се приведе потребителя в интерфейсен контекст за %s"
+-msgstr "Не може да се приведе потребителя в интерфейсен контекст за %s"
++msgstr "Не можах да задам потребител в контекст на интерфейс за %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr "Не може да се приведе ролята в интерфейсен контекст за %s"
+-msgstr "Не може да се приведе ролята в интерфейсен контекст за %s"
++msgstr "Не можах да задам роля в контекст на интерфейс за %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr "Не може да се приведе типа в интерфейсен контекст за %s"
+-msgstr "Не може да се приведе типа в интерфейсен контекст за %s"
++msgstr "Не можах да задам тип в контекст на интерфейс за %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr "Не могат да се приведат mls полетата в интерфейсен контекст за %s"
+-msgstr "Не могат да се приведат mls полетата в интерфейсен контекст за %s"
++msgstr "Не можах да задам mls полета в контекст на интерфейс за %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr "Не може да се установи интерфейсен контекст за %s"
+-msgstr "Не може да се установи интерфейсен контекст за %s"
++msgstr "Не можах да задам контекст на интерфейс за %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr "Не може да се установи контекста на съобщението за %s"
+-msgstr "Не може да се установи контекста на съобщението за %s"
++msgstr "Не можах да задам контекст на съобщението за %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr "Не може да се добави интерфейс %s"
+-msgstr "Не може да се добави интерфейс %s"
++msgstr "Не можах да добавя интерфейс %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
- msgid "Interface %s is not defined"
- msgstr "Интерфейс %s не е дефиниран"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+@@ -697,31 +696,30 @@ msgstr "Интерфейс %s не е дефиниран"
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr "Не може да се провери интерфейс %s"
+-msgstr "Не може да се провери интерфейс %s"
++msgstr "Не можах да запитам интерфейс %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr "Не може да се промени интерфейс %s"
+-msgstr "Не може да се промени интерфейс %s"
++msgstr "Не можах да променя интерфейс %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Интерфейс %s е дефиниран в политиката, не може да се изтрие"
+-msgstr "Интерфейс %s е дефиниран в политиката, не може да се изтрие"
++msgstr "Интерфейс %s е дефиниран в политика, не може да се изтрие"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr "Не може да се изтрие интерфейс %s"
+-msgstr "Не може да се изтрие интерфейс %s"
++msgstr "Не можах да изтрия интерфейс %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Не може да се изтрие интерфейс %s"
++msgstr "Не можах да изтрия всички съответствия   на интерфейси"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Не може да се получи списък с интерфейсите"
+-msgstr "Не може да се получи списък с интерфейсите"
++msgstr "Не можах да създам списък с интерфейсите"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr "SELinux интерфейс"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
+@@ -732,77 +730,79 @@ msgid "Context"
  msgstr "Контекст"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Файловия контекст за %s вече е дефиниран"
++msgstr "Клас за еквивалентност за %s вече съществува"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
++"Файловата спецификация %s е в конфликт с правило за еквивалентност '%s %s'"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux потребител %s не съществува"
++msgstr "Клас за еквивалентност за %s не съществува"
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr "Не може да се приведе потребителя в контекст на файл за %s"
+-msgstr "Не може да се приведе потребителя в контекст на файл за %s"
++msgstr "Не можах да задам потребител в контекст на файл за %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr "Не може да се приведе ролята в контекст на файл за %s"
+-msgstr "Не може да се приведе ролята в контекст на файл за %s"
++msgstr "Не можах да задам роля в контекст на файл за %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "Не могат да се приведат mls полетата в контекст на файл за %s"
+-msgstr "Не могат да се приведат mls полетата в контекст на файл за %s"
++msgstr "Не можах да задам mls полета в контекст на файл за %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- #, fuzzy
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
- msgstr "Файлова спецификация"
+-msgstr "Файлова спецификация"
++msgstr "Невалидна файлова спецификация"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+-msgstr ""
++msgstr "Файловата спецификация не може да съдържа интервали"
+ #: ../semanage/seobject.py:1714
  #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Не може да се провери дали файловия контекст за %s е дефиниран"
+ msgid ""
+ "File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+ msgstr ""
++"Файловата спецификация %s е в конфликт с правило за еквивалентност '%s %s'; "
++"Вместо това опитайте като добавите '%s'"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
+ #: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+ #: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+ #: ../semanage/seobject.py:1876
  #, python-format
- msgid "File context for %s already defined"
- msgstr "Файловия контекст за %s вече е дефиниран"
+ msgid "Could not check if file context for %s is defined"
+-msgstr "Не може да се провери дали файловия контекст за %s е дефиниран"
++msgstr "Не можах да проверя дали файловия контекст за %s е дефиниран"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr "Не може да се създаде файлов контекст за %s"
+-msgstr "Не може да се създаде файлов контекст за %s"
++msgstr "Не можах да създам контекст на файл за %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr "Не може да се приведе типа в контекст на файл за %s"
+-msgstr "Не може да се приведе типа в контекст на файл за %s"
++msgstr "Не можах да задам тип в контекст на файл за %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr "Не може да се установи контекст на файл за %s"
+-msgstr "Не може да се установи контекст на файл за %s"
++msgstr "Не можах да задам контекст на файл за %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr "Не може да се добави контекст на файл за %s"
+-msgstr "Не може да се добави контекст на файл за %s"
++msgstr "Не можах да добавя контекст на файл за %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr "Изисква setype, serange или seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Не е дефиниран файлов контекст за %s"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+@@ -816,41 +816,40 @@ msgstr "Не е дефиниран файлов контекст за %s"
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr "Не може да се провери файловия контекст за %s"
+-msgstr "Не може да се провери файловия контекст за %s"
++msgstr "Не можах да запитам файловия контекст за %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr "Не може да се промени файловия контекст за %s"
+-msgstr "Не може да се промени файловия контекст за %s"
++msgstr "Не можах да променя файловия контекст за %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "Не може да се получат файловите контексти"
+-msgstr "Не може да се получат файловите контексти"
++msgstr "Не можах да направя списък на файловите контексти"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr "Не може да се изтрие файловия контекст за %s"
+-msgstr "Не може да се изтрие файловия контекст за %s"
++msgstr "Не можах да изтрия файловия контекст %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
  msgstr ""
- "Файловия контекст за %s е дефиниран в политиката, не може да бъде изтрит"
+-"Файловия контекст за %s е дефиниран в политиката, не може да бъде изтрит"
++"Файловият контекст за %s е дефиниран в политика, не може да бъде изтрит"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr "Не може да се изтрие файловия контекст за %s"
+-msgstr "Не може да се изтрие файловия контекст за %s"
++msgstr "Не можах да изтрия файловия контекст за %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr "Не може да се получат файловите контексти"
+-msgstr "Не може да се получат файловите контексти"
++msgstr "Не можах да направя списък на файловите контексти"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr "Не може да се получат локалните файловите контексти"
+-msgstr "Не може да се получат локалните файловите контексти"
++msgstr "Не можах да направя списък на локалните файловите контексти"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr "SELinux ф.контекст"
+@@ -865,19 +864,22 @@ msgid ""
+ "\n"
+ "SELinux Distribution fcontext Equivalence \n"
+ msgstr ""
++"\n"
++"Дистрибуционна SELinux fcontext еквивалентност \n"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "тип"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux ф.контекст"
++msgstr ""
++"\n"
++"Локална SELinux fcontext еквивалентност \n"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr "Не може да се провери дали булевата променлива %s е дефинирана"
+-msgstr "Не може да се провери дали булевата променлива %s е дефинирана"
++msgstr "Не можах да проверя дали булевата променлива %s е дефинирана"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Булева променлива %s не е дефинирана"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+@@ -887,27 +889,27 @@ msgstr "Булева променлива %s не е дефинирана"
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr "Не може да се провери файловия контекст %s"
+-msgstr "Не може да се провери файловия контекст %s"
++msgstr "Не можах да проверя файловия контекст %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Следва да въведете име"
+-msgstr "Следва да въведете име"
++msgstr "Трябва да зададете една от следните стойности: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Не може да се изтрие булева променлива %s"
+-msgstr "Не може да се изтрие булева променлива %s"
++msgstr "Не можах да задам активна стойност на булева променлива %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr "Не може да се промени булевата променлива %s"
+-msgstr "Не може да се промени булевата променлива %s"
++msgstr "Не можах да променя булевата променлива %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr ""
++msgstr "Грешен формат %s: Запис %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Булевата променлива %s е дефинирана в политика, не може да се изтрие"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+@@ -917,46 +919,45 @@ msgstr "Булевата променлива %s е дефинирана в по
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr "Не може да се изтрие булева променлива %s"
+-msgstr "Не може да се изтрие булева променлива %s"
++msgstr "Не можах да изтрия булева променлива %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr "Не могат да се получат булевите променливи"
+-msgstr "Не могат да се получат булевите променливи"
++msgstr "Не можах да направя списък на булевите променливи"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr ""
+-msgstr ""
++msgstr "неизвестен"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr ""
+-msgstr ""
++msgstr "изкл"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- #, fuzzy
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
  msgid "on"
- msgstr "Cron"
+-msgstr "Cron"
++msgstr "вкл"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
  msgstr "SELinux булева"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+ msgstr "Състояние"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Подразбиращ се"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
+-msgstr ""
++msgstr "Описание"
+ #: ../newrole/newrole.c:201
+ #, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "неуспешна настройка на PAM_TTY\n"
++msgstr "настройката на PAM_TTY не успя\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+@@ -972,7 +973,7 @@ msgstr "newrole:  %s:  грешка на ред %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "не може да се намери валиден запис във файла passwd.\n"
++msgstr "не можах да намеря валиден запис във файла passwd.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+@@ -987,7 +988,7 @@ msgstr "Грешка!  Обвивката не е валидна.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+ msgid "Unable to clear environment\n"
+-msgstr "Не може да бъде почистена средата\n"
++msgstr "Не мога да почистя средата\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+@@ -1017,31 +1018,30 @@ msgstr "Грешка при изпращане на одит съобщение.
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Не може да се определи режима на налагане.\n"
++msgstr "Не можах да определя enforcing режима.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Грешка!  Не може да се отвори %s.\n"
++msgstr "Грешка!  Не можах да отворя %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  Не може да се определи текущия контекст за %s, tty няма да се "
+-"преетикира.\n"
++"%s!  Не можах да определя текущия контекст за %s, tty няма да се "
++"преетикетира.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
  msgstr ""
+-"%s!  Не може да се определи новия контекст за %s, tty няма да се "
+-"преетикира.\n"
++"%s!  Не можах да определя нов контекст за %s, tty няма да се преетикетира.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!  Не може да се определи новия контекст за %s\n"
++msgstr "%s!  Не можах да задам нов контекст за %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+@@ -1051,17 +1051,17 @@ msgstr "%s промяна на етикетите.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Предупреждение! Не може да се възстанови контекста на %s\n"
++msgstr "Предупреждение! Не можах да възстановя контекста за %s\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "Грешка: указани са няколко роли\n"
++msgstr "Грешка: зададени са няколко роли\n"
+ #: ../newrole/newrole.c:843
+ #, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr "Грешка: указани са няколко типа\n"
++msgstr "Грешка: зададени са няколко типа\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+@@ -1071,47 +1071,47 @@ msgstr "Съжаляваме, -l може да се ползва с поддръ
+ #: ../newrole/newrole.c:855
+ #, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr "Грешка: указани са няколко нива\n"
++msgstr "Грешка: зададени са няколко нива\n"
+ #: ../newrole/newrole.c:865
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr "Грешка: не Ви е позволено да променяте нивата на несигурен терминал\n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Не може да се определи подразбиращия се тип.\n"
++msgstr "Не можах да определя подразбиращия се тип.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "неуспешно извличане на нов контекст.\n"
++msgstr "получаването на нов контекст не успя.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "неуспешно установяване на нова роля %s\n"
++msgstr "не успя задаването на нова роля %s\n"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "неуспешно установяване на нов тип %s\n"
++msgstr "не успя задаването на нов тип %s\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "неуспешно изграждане на нов диапазон с ниво %s\n"
++msgstr "не успя изграждането на нов диапазон с ниво %s\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "неуспешно установяване на нов диапазон %s\n"
++msgstr "не успя задаването на нов диапазон %s\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "неуспешно конвертиране на новия контекст към низ\n"
++msgstr "не успя конвертирането на новия контекст към низ\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+@@ -1121,32 +1121,32 @@ msgstr "%s не е валиден контекст\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "Не може да се задели памет за нов_контекст"
++msgstr "Не мога да заделя памет за нов_контекст"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "Не може да се определи празния набор сигнали\n"
++msgstr "Не мога да се сдобия с празен сигнален набор\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "Не може да се установи обработката на SIGHUP\n"
++msgstr "Не мога да задам манипулатор на SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr "Съжаляваме, newrole може да се ползва само със SELinux ядро.\n"
++msgstr "Съжаляваме, newrole може да се ползва само на SELinux ядро.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "неуспешно извличане на стар_контекст.\n"
++msgstr "не успя извличането на стар_контекст.\n"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Грешка!  Не може да се получи информация за tty.\n"
++msgstr "Внимание!  Не можах да извлека tty информация.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1156,7 +1156,7 @@ msgstr "грешка при четене на конфигурацията на
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "newrole: грешна парола за %s\n"
++msgstr "newrole: некоректна парола за %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+@@ -1166,17 +1166,17 @@ msgstr "newrole: неуспешно изпълнение на fork: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "Не може да се възстанови етикета на tty...\n"
++msgstr "Не мога да възстановя етикета на tty...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "Не може да се затвори tty коректно\n"
++msgstr "Коректното затваряне на tty не успя\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Не могат да се затворят дескриптори.\n"
++msgstr "Не можах да затворя дескриптори.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+@@ -1186,26 +1186,26 @@ msgstr "Грешка при заделяне argv0 на обвивката.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "Не може да бъде възстановена средата, авариен изход\n"
++msgstr "Не мога да възстановя средата, авариен изход\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr "неуспешно пускане на обвивката\n"
++msgstr "стартирането на обвивката не успя\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "употреба:  %s [-q]\n"
++msgstr "употреба:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s:  Политиката е вече заредена и е изискано първоначално зареждане\n"
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  Не може да се зареди политика:  %s\n"
++msgstr "%s:  Не може да се зареди политика и искания за налагане режим:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+@@ -1219,7 +1219,7 @@ msgstr "Изисква поне една категория"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr "Не може да се промени нивото на чувствителност ползвайки '+' на %s"
++msgstr "Не може да се променят нивата на чувствителност ползвайки '+' на %s"
+ #: ../scripts/chcat:110
+ #, c-format
+@@ -1281,7 +1281,7 @@ msgstr "Употреба %s -L -l потребител"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "Ползвайте -- за кран на списъка с опции.  Например"
++msgstr "Ползвайте -- за край на списъка с опции.  Например"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1291,2144 +1291,2231 @@ msgstr "chcat -- -КонфиденциалноЗаКомпанията /доку
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +КонфиденциалноЗаКомпанията спотребител"
  
-@@ -1292,1459 +1320,2293 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "Грешка в опциите %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "не се поддържат преводи на машини без MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "Не може да се отвори %s: не се поддържат преводи на машини без MLS"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr "Булева"
-+
+-#~ msgid "Level"
+-#~ msgstr "Ниво"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+#, fuzzy
 +msgid "all"
-+msgstr "Всички"
-+
++msgstr "всички"
+-#~ msgid "Translation"
+-#~ msgstr "Превод"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr ""
++msgstr "Индивидуални"
  
--#~ msgid "Boolean"
--#~ msgstr "Ð\91Ñ\83лева"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Ð\9fÑ\80еводиÑ\82е Ð½Ðµ Ð¼Ð¾Ð³Ð°Ñ\82 Ð´Ð° Ñ\81Ñ\8aдÑ\8aÑ\80жаÑ\82 Ð¸Ð½Ñ\82еÑ\80вали '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Ð\95Ñ\82икиÑ\80ане Ð½Ð° Ñ\84айл"
++msgstr "Ð\95Ñ\82икеÑ\82иÑ\80ане Ð½Ð° Ñ\84айлове"
  
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Невалидно ниво '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
@@ -18718,59 +30108,45 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 +msgstr ""
 +"Файлова\n"
 +"спецификация"
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s вече е дефиниран в преводите"
 +#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid "all"
--#~ msgstr "Всички"
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
 +"Selinux\n"
-+"файлов контекст"
++"Тип файл"
  
--#~ msgid "File Labeling"
--#~ msgstr "Етикиране на файл"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s не е дефиниран в преводите"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Файлов\n"
++"Файл\n"
 +"Тип"
  
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Файлова\n"
--#~ "спецификация"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Вече е дефинирано съответствие за вход на %s"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Съответствия за потребител"
++msgstr "Съответствие на потребители"
  
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "файлов контекст"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "добавяне на SELinux съответствие за потребител"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Ð\9fоÑ\82Ñ\80ебиÑ\82елÑ\81ко\n"
-+"Ð\98ме"
++"Ð\98ме Ð·Ð°\n"
++"влизане"
  
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Файлов\n"
--#~ "Тип"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux потребител %s вече е дефиниран"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
@@ -18779,166 +30155,160 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 +"SELinux\n"
 +"Потребител"
  
--#~ msgid "User Mapping"
--#~ msgstr "Съответствия за потребител"
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Изисква се порт"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
 +"MLS/\n"
-+"MCS Ð¸Ð½Ñ\82еÑ\80вал"
++"MCS Ð\9eбÑ\85ваÑ\82"
  
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Потребителско\n"
--#~ "Име"
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Порт %s/%s вече е дефиниран"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Ð\98зиÑ\81ква Ñ\81е '%s' Ð·Ð° Ð²Ñ\85од"
++msgstr "Ð\98зиÑ\81ква Ñ\81е '%s' Ð²Ð»Ð¸Ð·Ð°Ð½Ðµ"
  
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "Потребител"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Интерфейс %s вече е дефиниран"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Модул с политика"
++msgstr "Модул за политики"
  
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS интервал"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Грешка при инициализиране на правата, авариен изход.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Име на модула"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Версия"
++msgstr "Име на модул"
  
--#~ msgid "Login '%s' is required"
--#~ msgstr "Ð\98зиÑ\81ква Ñ\81е '%s' Ð·Ð° Ð²Ñ\85од"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð½Ð°Ñ\81Ñ\82Ñ\80ойка Ð½Ð° Ð¿Ñ\80аваÑ\82а, Ð°Ð²Ð°Ñ\80иен Ð¸Ð·Ñ\85од.\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° Ð¾Ð´Ð¸Ñ\82а"
++msgstr "Ð\97абÑ\80ана Ð½Ð° Ð½Ð°Ð±Ð»Ñ\8eдениеÑ\82о"
  
--#~ msgid "Policy Module"
--#~ msgstr "Ð\9cодÑ\83л Ñ\81 Ð¿Ð¾Ð»Ð¸Ñ\82ика"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð½Ð°Ñ\81Ñ\82Ñ\80ойка Ð½Ð° KEEPCAPS, Ð°Ð²Ð°Ñ\80иен Ð¸Ð·Ñ\85од\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Ð\92клÑ\8eÑ\87ване Ð½Ð° Ð¾Ð´Ð¸Ñ\82а"
++msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð½Ð°Ð±Ð»Ñ\8eдениеÑ\82о"
  
--#~ msgid "Module Name"
--#~ msgstr "Ð\98ме Ð½Ð° Ð¼Ð¾Ð´Ñ\83ла"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82каз Ð¾Ñ\82 Ð¿Ñ\80аваÑ\82а, Ð°Ð²Ð°Ñ\80иен Ð¸Ð·Ñ\85од.\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Зареждане на модул с политика"
++msgstr "Зареждане на модула за политики"
  
--#~ msgid "Version"
--#~ msgstr "Ð\92еÑ\80Ñ\81иÑ\8f"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82каз Ð¾Ñ\82 SETUID Ð¿Ñ\80ава, Ð°Ð²Ð°Ñ\80иен Ð¸Ð·Ñ\85од\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr "Polgen"
  
--#~ msgid "Disable Audit"
--#~ msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° Ð¾Ð´Ð¸Ñ\82а"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\81вобождаване Ð½Ð° Ð¿Ñ\80ава\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr "Red Hat 2007"
  
--#~ msgid "Enable Audit"
--#~ msgstr "Ð\92клÑ\8eÑ\87ване Ð½Ð° Ð¾Ð´Ð¸Ñ\82а"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "не Ñ\81е Ð¿Ð¾Ð´Ð´Ñ\8aÑ\80жаÑ\82 Ð¿Ñ\80еводи Ð½Ð° Ð¼Ð°Ñ\88ини Ð±ÐµÐ· MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "ОПЛ"
++msgstr "GPL"
  
+-#~ msgid "Boolean"
+-#~ msgstr "Булева"
+-
+-#, fuzzy
+-#~ msgid "all"
+-#~ msgstr "Всички"
+-
+-#~ msgid "File Labeling"
+-#~ msgstr "Етикиране на файл"
+-
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Файлова\n"
+-#~ "спецификация"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "файлов контекст"
+-
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Файлов\n"
+-#~ "Тип"
+-
+-#~ msgid "User Mapping"
+-#~ msgstr "Съответствия за потребител"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Потребителско\n"
+-#~ "Име"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Потребител"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS интервал"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Изисква се '%s' за вход"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Модул с политика"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Изключване на одита"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Включване на одита"
+-
 -#~ msgid "Load Policy Module"
 -#~ msgstr "Зареждане на модул с политика"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Doncho N. Gunchev <gunchev@gmail.com>, 2007."
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"С този инструмент можете да генерирате политики за ограничаване на "
-+"приложения или потребители чрез SELinux.   \n"
-+"\n"
-+"Инструмента генерира:\n"
-+"Файлове за налагане на тип (te)\n"
-+"Интерфейсни файлове (if)\n"
-+"Файлове за контекст (fc)\n"
-+"Скриптове на средата (sh) - ползват се за компилиране и инсталиране на "
-+"политиката. "
-+
-+#: ../gui/polgen.glade:165
-+#, fuzzy
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Изберете приложение или потребителска роля за ограничаване."
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Приложения</b>"
+-
 -#~ msgid "Polgen"
 -#~ msgstr "Polgen"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+#, fuzzy
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Стандартен init демон са тези демони, които се стартират при зареждане от "
-+"init скриптовете.  Обикновено изисква скрипт в /etc/init.d"
+-
 -#~ msgid "Red Hat 2007"
 -#~ msgstr "Red Hat 2007"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Стандартен init демон"
+-
 -#~ msgid "GPL"
 -#~ msgstr "ОПЛ"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
+-
 -#~ msgid "translator-credits"
 -#~ msgstr "Doncho N. Gunchev <gunchev@gmail.com>, 2007."
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Демони за Интернет услуги са демони, които се стартират от xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Демони за Интернет услуги (inetd)"
+-
 -#~ msgid "SELinux Policy Generation Tool"
 -#~ msgstr "Инструмент за генериране на SELinux политики"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Уеб приложения/Скриптове (CGI) са скриптове стартирани от уеб сървъра "
-+"(apache)"
+-
 -#~ msgid ""
 -#~ "This tool can be used to generate a policy framework, to confine "
 -#~ "applications or users using SELinux.   \n"
@@ -18958,123 +30328,64 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "Файлове за контекст (fc)\n"
 -#~ "Скриптове на средата (sh) - ползват се за компилиране и инсталиране на "
 -#~ "политиката. "
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Уеб приложения/Скриптове (CGI)"
+-
 -#, fuzzy
 -#~ msgid "Select type of the application/user role to be confined"
 -#~ msgstr "Изберете приложение или потребителска роля за ограничаване."
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Потребителски приложения са всички приложения, които бихте искали да "
-+"ограничите, стартирани от потребител"
+-
 -#~ msgid "<b>Applications</b>"
 -#~ msgstr "<b>Приложения</b>"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Потребителски приложения"
-+#: ../gui/polgen.glade:389
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
 -#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
 -#~ "Стандартен init демон са тези демони, които се стартират при зареждане от "
 -#~ "init скриптовете.  Обикновено изисква скрипт в /etc/init.d"
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Потребители</b>"
+-
 -#~ msgid "Standard Init Daemon"
 -#~ msgstr "Стандартен init демон"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
+-
 -#~ msgid "Internet Services Daemon are daemons started by xinetd"
 -#~ msgstr "Демони за Интернет услуги са демони, които се стартират от xinetd"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
+-
 -#~ msgid "Internet Services Daemon (inetd)"
 -#~ msgstr "Демони за Интернет услуги (inetd)"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
+-
 -#~ msgid ""
 -#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
 -#~ "(apache)"
 -#~ msgstr ""
 -#~ "Уеб приложения/Скриптове (CGI) са скриптове стартирани от уеб сървъра "
 -#~ "(apache)"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
+-
 -#~ msgid "Web Application/Script (CGI)"
 -#~ msgstr "Уеб приложения/Скриптове (CGI)"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
+-
 -#~ msgid ""
 -#~ "User Application are any application that you would like to confine that "
 -#~ "is started by a user"
 -#~ msgstr ""
 -#~ "Потребителски приложения са всички приложения, които бихте искали да "
 -#~ "ограничите, стартирани от потребител"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
+-
 -#~ msgid "User Application"
 -#~ msgstr "Потребителски приложения"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+#: ../gui/polgen.glade:516
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "<b>Login Users</b>"
 -#~ msgstr "<b>Потребители</b>"
-+msgid "User Role"
-+msgstr "Роля"
+-
 -#, fuzzy
 -#~ msgid "User Role"
 -#~ msgstr "Роля"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+#: ../gui/polgen.glade:583
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "<b>Root Users</b>"
 -#~ msgstr "<b>Потребители</b>"
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Потребители</b>"
-+#: ../gui/polgen.glade:645
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Select Root Administrator User Role, if this user will be used to "
 -#~ "administer the machine while running as root.  This user will not be able "
@@ -19083,396 +30394,198 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "Изберете root потребител ако този потребител ще се ползва за "
 -#~ "администриране на машината работейки като root.  Този потребител няма да "
 -#~ "може да влиза в системата директно."
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Изберете root потребител ако този потребител ще се ползва за администриране "
-+"на машината работейки като root.  Този потребител няма да може да влиза в "
-+"системата директно."
-+#: ../gui/polgen.glade:647
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Root Admin User Role"
 -#~ msgstr "Root потребител"
-+msgid "Root Admin User Role"
-+msgstr "Root потребител"
-+#: ../gui/polgen.glade:732
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Enter name of application or user role to be confined"
 -#~ msgstr "Изберете приложение или потребителска роля за ограничаване."
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Изберете приложение или потребителска роля за ограничаване."
+-
 -#~ msgid "Name"
 -#~ msgstr "Име"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Име"
+-
 -#~ msgid "Enter complete path for executable to be confined."
 -#~ msgstr "Въведете пълния път за изпълнимия файл за ограничаване."
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Въведете пълния път за изпълнимия файл за ограничаване."
+-
 -#~ msgid "..."
 -#~ msgstr "..."
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+#: ../gui/polgen.glade:823
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Enter unique name for the confined application or user role."
 -#~ msgstr ""
 -#~ "Въведете уникално име на тип за конфигурирания потребител или приложение."
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+"Въведете уникално име на тип за конфигурирания потребител или приложение."
+-
 -#~ msgid "Executable"
 -#~ msgstr "Изпълним файл"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Изпълним файл"
+-
 -#~ msgid "Init script"
 -#~ msgstr "Init скрипт"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init скрипт"
+-
 -#~ msgid ""
 -#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
 -#~ "Въведете пълния път на init скрипта ползван за стартиране на "
 -#~ "ограничаваното приложение."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Въведете пълния път на init скрипта ползван за стартиране на ограничаваното "
-+"приложение."
-+#: ../gui/polgen.glade:981
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select user roles that you want to customize"
 -#~ msgstr "Изберете ролите, които този потребител ще може да приема"
-+msgid "Select user roles that you want to customize"
-+msgstr "Изберете ролите, които този потребител ще може да приема"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+#: ../gui/polgen.glade:1055
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select additional domains to which this user role will transition"
 -#~ msgstr "Изберете допълнителни потребителски домейни за преход"
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Изберете допълнителни потребителски домейни за преход"
-+#: ../gui/polgen.glade:1076
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Select the applications domains that you would like this user role to "
 -#~ "transition to."
 -#~ msgstr ""
 -#~ "Изберете домейните за приложения, към които бихте искали този потребител "
 -#~ "да преминава."
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Изберете домейните за приложения, към които бихте искали този потребител да "
-+"преминава."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+#: ../gui/polgen.glade:1203
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select additional domains that this user role will administer"
 -#~ msgstr "Изберете домейните, които този потребител ще администрира"
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Изберете домейните, които този потребител ще администрира"
+-
 -#~ msgid "Select the domains that you would like this user administer."
 -#~ msgstr ""
 -#~ "Изберете домейните, които бихте искали този потребител да администрира."
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+"Изберете домейните, които бихте искали този потребител да администрира."
-+#: ../gui/polgen.glade:1277
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select additional roles for this user"
 -#~ msgstr "Изберете допълнителни потребителски домейни за преход"
-+msgid "Select additional roles for this user"
-+msgstr "Изберете допълнителни потребителски домейни за преход"
-+#: ../gui/polgen.glade:1351
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Enter network ports that application/user role listens to"
 -#~ msgstr ""
 -#~ "Въведете разделен със запетаи списък от udp портове, към които "
 -#~ "приложението/потребителя се свързва."
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Въведете разделен със запетаи списък от udp портове, към които приложението/"
-+"потребителя се свързва."
+-
 -#~ msgid "<b>TCP Ports</b>"
 -#~ msgstr "<b>TCP портове</b>"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP портове</b>"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
 -#~ "Разрешаване на ограничаваното приложение/потребител да се слуша на всеки "
 -#~ "udp порт"
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Разрешаване на ограничаваното приложение/потребител да се слуша на всеки udp "
-+"порт"
+-
 -#~ msgid "All"
 -#~ msgstr "Всички"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Всички"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow application/user role to call bindresvport with 0. Binding to port "
 -#~ "600-1024"
 -#~ msgstr ""
 -#~ "Разрешаване на приложението/потребителя да извиква bindresvport с 0. "
 -#~ "Слушане на портове 600-1024"
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Разрешаване на приложението/потребителя да извиква bindresvport с 0. Слушане "
-+"на портове 600-1024"
+-
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Въведете разделен със запетаи списък от udp портове, към които "
 -#~ "приложението/потребителя се свързва."
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Въведете разделен със запетаи списък от udp портове, към които приложението/"
-+"потребителя се свързва."
+-
 -#~ msgid "Unreserved Ports (>1024)"
 -#~ msgstr "Нерезервирани портове (> 1024)"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Нерезервирани портове (> 1024)"
+-
 -#~ msgid "Select Ports"
 -#~ msgstr "Избор на портове"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Избор на портове"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
 -#~ "Разрешаване на приложението/потребителя да слуша на всеки udp порт > 1024"
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Разрешаване на приложението/потребителя да слуша на всеки udp порт > 1024"
+-
 -#~ msgid "<b>UDP Ports</b>"
 -#~ msgstr "<b>UDP портове</b>"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP портове</b>"
-+#: ../gui/polgen.glade:1834
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
 -#~ "Въведете разделен със запетаи списък от udp портове, към които "
 -#~ "приложението/потребителя се свързва."
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Въведете разделен със запетаи списък от udp портове, към които приложението/"
-+"потребителя се свързва."
-+#: ../gui/polgen.glade:1958
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Въведете разделен със запетаи списък от udp портове, към които "
 -#~ "приложението/потребителя се свързва."
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Въведете разделен със запетаи списък от udp портове, към които приложението/"
-+"потребителя се свързва."
-+#: ../gui/polgen.glade:2111
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Въведете разделен със запетаи списък от udp портове, към които "
 -#~ "приложението/потребителя се свързва."
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Въведете разделен със запетаи списък от udp портове, към които приложението/"
-+"потребителя се свързва."
-+#: ../gui/polgen.glade:2183
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select common application traits"
 -#~ msgstr "Общи белези на приложението"
-+msgid "Select common application traits"
-+msgstr "Общи белези на приложението"
-+#: ../gui/polgen.glade:2202
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Writes syslog messages\t"
 -#~ msgstr "Приложението ползва syslog за запис в дневник\t"
-+msgid "Writes syslog messages\t"
-+msgstr "Приложението ползва syslog за запис в дневник\t"
-+#: ../gui/polgen.glade:2221
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Create/Manipulate temporary files in /tmp"
 -#~ msgstr ""
 -#~ "Приложението ползва /tmp за създаваме/манипулиран на временни файлове"
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Приложението ползва /tmp за създаваме/манипулиран на временни файлове"
-+#: ../gui/polgen.glade:2240
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Uses Pam for authentication"
 -#~ msgstr "Приложението ползва PAM за удостоверяване"
-+msgid "Uses Pam for authentication"
-+msgstr "Приложението ползва PAM за удостоверяване"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+#: ../gui/polgen.glade:2297
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Sends audit messages"
 -#~ msgstr "Грешка при изпращане на одит съобщение.\n"
-+msgid "Sends audit messages"
-+msgstr "Грешка при изпращане на одит съобщение.\n"
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select files/directories that the application manages"
 -#~ msgstr ""
 -#~ "Изберете директориите които ограничаваното приложение притежава и в които "
 -#~ "то пише"
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+"Изберете директориите които ограничаваното приложение притежава и в които то "
-+"пише"
-+#: ../gui/polgen.glade:2607
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr ""
 -#~ "Добавяне на файлове/директории, в които това приложение ще трябва да може "
 -#~ "да пише. Pid файлове, дневници, /var/lib файлове ..."
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Добавяне на файлове/директории, в които това приложение ще трябва да може да "
-+"пише. Pid файлове, дневници, /var/lib файлове ..."
-+#: ../gui/polgen.glade:2667
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select booleans that the application uses"
 -#~ msgstr "Изберете файл(овете) които ограничаваното приложение създава/пише"
-+msgid "Select booleans that the application uses"
-+msgstr "Изберете файл(овете) които ограничаваното приложение създава/пише"
-+#: ../gui/polgen.glade:2804
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr ""
 -#~ "Въведете пълния път на init скрипта ползван за стартиране на "
 -#~ "ограничаваното приложение."
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+"Въведете пълния път на init скрипта ползван за стартиране на ограничаваното "
-+"приложение."
-+#: ../gui/polgen.glade:2864
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Select directory to generate policy in"
 -#~ msgstr "Изберете директория в която да се генерират файловете на политиката"
-+msgid "Select directory to generate policy in"
-+msgstr "Изберете директория в която да се генерират файловете на политиката"
+-
 -#~ msgid "Policy Directory"
 -#~ msgstr "Директория с политики"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Директория с политики"
+-
 -#~ msgid "Generated Policy Files"
 -#~ msgstr "Генериране на файловете на политиката"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Генериране на файловете на политиката"
-+#: ../gui/polgen.glade:2982
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -19492,27 +30605,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "(Ре)стартирайте приложението за да се генерират avc съобщения.\n"
 -#~ "Ползвайте audit2allow -R за генериране на допълнителни правила за te "
 -#~ "файла.\n"
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Този инструмент ще генерира следното: Файлове за налагане на тип (te), "
-+"файлове за контекст (fc), интерфейсни файлове (if), скриптове на средата "
-+"(sh).\n"
-+"Стартирайте скрипта за средата за компилиране/инсталиране и преетикиране на "
-+"файлове/директории.  Сега можете да превключите SELinux в пасивен режим "
-+"(setenforce 0). \n"
-+"(Ре)стартирайте приложението за да се генерират avc съобщения.\n"
-+"Ползвайте audit2allow -R за генериране на допълнителни правила за te файла.\n"
-+#: ../gui/polgen.glade:3025
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -19531,628 +30625,498 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "(Ре)стартирайте приложението за да се генерират avc съобщения.\n"
 -#~ "Ползвайте audit2allow -R за генериране на допълнителни правила за te "
 -#~ "файла.\n"
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Този инструмент ще генерира следното: Файлове за налагане на тип (te), "
-+"файлове за контекст (fc), интерфейсни файлове (if), скриптове на средата "
-+"(sh).\n"
-+"Стартирайте скрипта за средата за компилиране/инсталиране и преетикиране на "
-+"файлове/директории.  Сега можете да превключите SELinux в пасивен режим "
-+"(setenforce 0). \n"
-+"(Ре)стартирайте приложението за да се генерират avc съобщения.\n"
-+"Ползвайте audit2allow -R за генериране на допълнителни правила за te файла.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+#: ../gui/polgen.glade:3200
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Boolean Name"
 -#~ msgstr "Булева"
-+msgid "Boolean Name"
-+msgstr "Булева"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Роля"
+-
 -#~ msgid "Role"
 -#~ msgstr "Роля"
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
+-
 -#~ msgid "Application"
 -#~ msgstr "Приложение"
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Приложение"
+-
 -#, fuzzy
 -#~ msgid "%s must be a directory"
 -#~ msgstr "Разрешаване на mount да монтира всяка директория"
-+#: ../gui/polgengui.py:269
-+#, fuzzy, python-format
-+msgid "%s must be a directory"
-+msgstr "Разрешаване на mount да монтира всяка директория"
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "You must select a user"
 -#~ msgstr "Следва да въведете име"
-+msgid "You must select a user"
-+msgstr "Следва да въведете име"
+-
 -#~ msgid "Select executable file to be confined."
 -#~ msgstr "Изберете изпълнимия файл за ограничаване."
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Изберете изпълнимия файл за ограничаване."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Изберете init скрипта за ограничаване."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Изберете файл(овете) които ограничаваното приложение създава/пише"
+-
 -#~ msgid "Select init script file to be confined."
 -#~ msgstr "Изберете init скрипта за ограничаване."
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Изберете директориите които ограничаваното приложение притежава и в които то "
-+"пише"
+-
 -#~ msgid "Select file(s) that confined application creates or writes"
 -#~ msgstr "Изберете файл(овете) които ограничаваното приложение създава/пише"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Изберете директория в която да се генерират файловете на политиката"
+-
 -#~ msgid ""
 -#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr ""
 -#~ "Изберете директориите които ограничаваното приложение притежава и в които "
 -#~ "то пише"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
+-
 -#~ msgid "Select directory to generate policy files in"
 -#~ msgstr "Изберете директория в която да се генерират файловете на политиката"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
+-
 -#~ msgid "You must enter a name"
 -#~ msgstr "Следва да въведете име"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
+-
 -#~ msgid "You must enter a executable"
 -#~ msgstr "Следва да укажете изпълним файл"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Следва да въведете име"
+-
 -#~ msgid "Configue SELinux"
 -#~ msgstr "Настройка на SELinux"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Следва да укажете изпълним файл"
+-
 -#, fuzzy
 -#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 -#~ msgstr "Портовете трябва да са числа от 1 до %d "
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Настройка на SELinux"
-+#: ../gui/polgen.py:174
-+#, fuzzy, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Портовете трябва да са числа от 1 до %d "
-+
-+#: ../gui/polgen.py:204
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "You must enter a name for your confined process/user"
 -#~ msgstr "Следва да въведете име за конфигурирания от Вас процес"
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Следва да въведете име за конфигурирания от Вас процес"
+-
 -#~ msgid "USER Types are not allowed executables"
 -#~ msgstr "Типовете ПОТРЕБИТЕЛ не са позволени за програми"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Типовете ПОТРЕБИТЕЛ не са позволени за програми"
+-
 -#~ msgid "Only DAEMON apps can use an init script"
 -#~ msgstr "Само ДЕМОНИТЕ могат да ползват init скрипт"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Само ДЕМОНИТЕ могат да ползват init скрипт"
+-
 -#~ msgid "use_syslog must be a boolean value "
 -#~ msgstr "use_syslog трябва да бъде булева стойност "
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog трябва да бъде булева стойност "
-+#: ../gui/polgen.py:327
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "USER Types automatically get a tmp type"
 -#~ msgstr "Типовете ПОТРЕБИТЕЛ автоматично получават временен тип"
-+msgid "USER Types automatically get a tmp type"
-+msgstr "Типовете ПОТРЕБИТЕЛ автоматично получават временен тип"
+-
 -#~ msgid "You must enter the executable path for your confined process"
 -#~ msgstr ""
 -#~ "Трябва да въведете пътя на изпълнимия файл за вашия ограничаван процес"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Трябва да въведете пътя на изпълнимия файл за вашия ограничаван процес"
-+#: ../gui/polgen.py:848
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Type Enforcement file"
 -#~ msgstr "Файл за налагане на тип"
 -
 -#~ msgid "Interface file"
 -#~ msgstr "Интерфейсен файл"
-+msgid "Type Enforcement file"
-+msgstr "Файл за налагане на тип"
+-
 -#~ msgid "File Contexts file"
 -#~ msgstr "Файл с контексти"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Интерфейсен файл"
+-
 -#~ msgid "Setup Script"
 -#~ msgstr "Настройващ скрипт"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Файл с контексти"
+-
 -#~ msgid ""
 -#~ "SELinux Port\n"
 -#~ "Type"
 -#~ msgstr ""
 -#~ "SELinux\n"
 -#~ "тип порт"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Настройващ скрипт"
+-
 -#~ msgid "Protocol"
 -#~ msgstr "Протокол "
--
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr "Валентин Ласков, 2012, laskov@fedoraproject.org"
 -#~ msgid ""
 -#~ "MLS/MCS\n"
 -#~ "Level"
 -#~ msgstr ""
 -#~ "MLS/MCS\n"
 -#~ "Ниво"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+#, fuzzy
-+msgid "Network Port"
-+msgstr "Добавяне на мрежов порт"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr "Инструмент за генериране на SELinux политики"
  
 -#~ msgid "Port"
 -#~ msgstr "Порт"
-+#: ../gui/portsPage.py:85
++#: ../gui/polgen.glade:128
 +msgid ""
-+"SELinux Port\n"
-+"Type"
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+"SELinux\n"
-+"тип порт"
++"<b>Изберете тип политика за приложението или роля на потребителя, който "
++"искате да ограничите:</b>"
  
 -#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 -#~ msgstr "Номера на порт \"%s\" не е валиден.  0 < НОМЕР_НА_ПОРТ < 65536 "
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Протокол "
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr "<b>Приложения</b>"
  
 -#~ msgid "Group View"
 -#~ msgstr "Групов преглед"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
-+"MLS/MCS\n"
-+"Level"
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"MLS/MCS\n"
-+"Ниво"
++"Standard Init Daemon са демони, стартирани при зареждането от инициализиращи "
++"скриптове.  Обикновено изисква скрипт в /etc/rc.d/init.d"
  
 -#~ msgid "SELinux Service Protection"
 -#~ msgstr "SELinux защита на услугите"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Порт"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr "Standard Init Daemon"
  
 -#~ msgid "Disable SELinux protection for acct daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона acct"
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Номера на порт \"%s\" не е валиден.  0 < НОМЕР_НА_ПОРТ < 65536 "
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr "DBUS System Daemon"
  
 -#~ msgid "Admin"
 -#~ msgstr "Администратор"
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr "Internet Services Daemon са демони, стартирани от xinetd"
  
 -#~ msgid "Allow all daemons to write corefiles to /"
 -#~ msgstr "Разрешаване на всички демони да пишат core файлове в /"
--
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr "Internet Services Daemon (inetd)"
 -#~ msgid "Allow all daemons the ability to use unallocated ttys"
 -#~ msgstr "Разрешаване на всички демони да ползват незаделени tty конзоли"
--
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
++"Web Applications/Script (CGI) са CGI скриптове, стартирани от уеб сървъра "
++"(apache)"
 -#~ msgid "User Privs"
 -#~ msgstr "Потребителски привилегии"
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Групов преглед"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux защита на услугите"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Изключване на SELinux защитата за демона acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Администратор"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Разрешаване на всички демони да пишат core файлове в /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Разрешаване на всички демони да ползват незаделени tty конзоли"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Потребителски привилегии"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr "Web Application/Script (CGI)"
  
-+#: ../gui/selinux.tbl:4
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на gadmin SELinux потребителските акаунти да стартират "
 -#~ "файлове в домашната си директория или в /tmp"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
-+"РазÑ\80еÑ\88аване Ð½Ð° gadmin SELinux Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елÑ\81киÑ\82е Ð°ÐºÐ°Ñ\83нÑ\82и Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80аÑ\82 Ñ\84айлове Ð² "
-+"домаÑ\88наÑ\82а Ñ\81и Ð´Ð¸Ñ\80екÑ\82оÑ\80иÑ\8f Ð¸Ð»Ð¸ Ð² /tmp"
++"Ð\9fоÑ\82Ñ\80ебиÑ\82елÑ\81ко Ð¿Ñ\80иложение Ñ\81а Ð²Ñ\81Ñ\8fкакви Ð¿Ñ\80иложениÑ\8f, Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80ани Ð¾Ñ\82 Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел, "
++"коиÑ\82о Ð¸Ñ\81каÑ\82е Ð´Ð° Ð¾Ð³Ñ\80аниÑ\87иÑ\82е"
  
-+#: ../gui/selinux.tbl:5
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на SELinux гост акаунта да стартира файлове в домашната си "
 -#~ "директория или /tmp"
--
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr "Потребителско приложение"
 -#~ msgid "Memory Protection"
 -#~ msgstr "Защита на паметта"
--
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr "Sandbox"
 -#~ msgid "Allow java executable stack"
 -#~ msgstr "Разрешаване на изпълним стек за java"
--
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr "<b>Влизане на потребители</b>"
 -#~ msgid "Mount"
 -#~ msgstr "Монтиране"
--
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr "Промяна на съществуващия запис за влизане на потребител."
 -#~ msgid "Allow mount to mount any file"
 -#~ msgstr "Разрешаване на mount да монтира всеки файл"
--
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr "Съществуващи роли на потребителя"
 -#~ msgid "Allow mount to mount any directory"
 -#~ msgstr "Разрешаване на mount да монтира всяка директория"
--
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++"Този потребител ще влиза в машината само през терминал или отдалечено.  По "
++"подразбиране, този потребител няма да има  setuid, достъп до мрежа, su и "
++"sudo."
 -#~ msgid "Allow mplayer executable stack"
 -#~ msgstr "Разрешаване на изпълним стек за mplayer"
--
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr "Минимална роля на потребител в терминал"
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
++#: ../gui/polgen.glade:495
 +msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"РазÑ\80еÑ\88аване Ð½Ð° SELinux Ð³Ð¾Ñ\81Ñ\82 Ð°ÐºÐ°Ñ\83нÑ\82а Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а Ñ\84айлове Ð² Ð´Ð¾Ð¼Ð°Ñ\88наÑ\82а Ñ\81и "
-+"диÑ\80екÑ\82оÑ\80иÑ\8f Ð¸Ð»Ð¸ /tmp"
++"ТакÑ\8aв Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð²Ð»ÐµÐ·Ðµ Ð² Ð¼Ð°Ñ\88инаÑ\82а Ð¿Ñ\80ез X Ð¸Ð»Ð¸ Ñ\82еÑ\80минал.  Ð\9fо "
++"подÑ\80азбиÑ\80ане Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елÑ\8fÑ\82 Ñ\89е Ðµ Ð±ÐµÐ· setuid, Ð±ÐµÐ· Ñ\80абоÑ\82а Ð² Ð¼Ñ\80ежа, Ð±ÐµÐ· sudo Ð¸ su"
  
 -#~ msgid "Allow ssh to run ssh-keysign"
 -#~ msgstr "Разрешаване на ssh да стартира ssh-keysign"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Защита на паметта"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Разрешаване на изпълним стек за java"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Монтиране"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Разрешаване на mount да монтира всеки файл"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Разрешаване на mount да монтира всяка директория"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Разрешаване на изпълним стек за mplayer"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Разрешаване на ssh да стартира ssh-keysign"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr "Минимална X Windows роля на потребител"
  
-+#: ../gui/selinux.tbl:11
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на staff SELinux потребителските акаунти да изпълняват "
 -#~ "файлове в домашната си директория или /tmp"
++#: ../gui/polgen.glade:516
 +msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
 +msgstr ""
-+"РазÑ\80еÑ\88аване Ð½Ð° staff SELinux Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елÑ\81киÑ\82е Ð°ÐºÐ°Ñ\83нÑ\82и Ð´Ð° Ð¸Ð·Ð¿Ñ\8aлнÑ\8fваÑ\82 Ñ\84айлове Ð² "
-+"домашната си директория или /tmp"
++"Ð\9fоÑ\82Ñ\80ебиÑ\82ел Ñ\81 Ð¿Ñ\8aлноÑ\86енна Ñ\80абоÑ\82а Ð² Ð¼Ñ\80ежа, Ð±ÐµÐ· setuid Ð¿Ñ\80иложениÑ\8f Ð±ÐµÐ· "
++"transition, без sudo и su."
  
-+#: ../gui/selinux.tbl:12
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на sysadm SELinux потребителските акаунти да изпълняват "
 -#~ "файлове в домашната си директория или /tmp"
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Разрешаване на sysadm SELinux потребителските акаунти да изпълняват файлове "
-+"в домашната си директория или /tmp"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr "Роля на потребител"
  
-+#: ../gui/selinux.tbl:13
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
 -#~ "or /tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на неограничените SELinux потребителски акаунти да изпълняват "
 -#~ "файлове в домашната си директория или /tmp"
--
--#~ msgid "Network Configuration"
--#~ msgstr "Мрежова конфигурация"
++#: ../gui/polgen.glade:537
 +msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
 +msgstr ""
-+"Разрешаване на неограничените SELinux потребителски акаунти да изпълняват "
-+"файлове в домашната си директория или /tmp"
++"Потребител с пълноценна работа в мрежа, без setuid приложения без "
++"transition, без su, с възможност за sudo към Административна Root роля."
+-#~ msgid "Network Configuration"
+-#~ msgstr "Мрежова конфигурация"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr "Потребител с Административна роля"
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
 -#~ msgstr "Разрешаване на неетикирани пакети да пътуват в мрежата"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Мрежова конфигурация"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Разрешаване на неетикирани пакети да пътуват в мрежата"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr "<b>Root потребители</b>"
  
-+#: ../gui/selinux.tbl:15
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на user SELinux потребителските акаунти да изпълняват файлове "
 -#~ "в домашната си директория или /tmp"
--
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
++"Изберете роля на потребител Root Администратор, ако този потребител ще се "
++"ползва да администрира машината, докато работи като root.  Този потребител "
++"няма да е способен да влезе в системата директно."
 -#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
 -#~ msgstr ""
 -#~ "Разрешаване на unconfined (неограничените) динамично да преминава към "
 -#~ "unconfined_execmem"
--
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr "Потребител с роля Root Администратор"
 -#~ msgid "Databases"
 -#~ msgstr "Бази данни"
--
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr "label104"
 -#~ msgid "Allow user to connect to mysql socket"
 -#~ msgstr "Разрешаване на потребителите да се свързват с mysql гнездо"
--
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr "<b>Въведете име на приложение или роля на потребител:</b>"
 -#~ msgid "Allow user to connect to postgres socket"
 -#~ msgstr "Разрешаване на потребителите да се свързват с postgres гнездо"
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Разрешаване на user SELinux потребителските акаунти да изпълняват файлове в "
-+"домашната си директория или /tmp"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr "Име"
  
 -#~ msgid "XServer"
 -#~ msgstr "XServer"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+"Разрешаване на unconfined (неограничените) динамично да преминава към "
-+"unconfined_execmem"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr "Въведете пълен път на изпълним файл, който ще бъде ограничен."
  
 -#~ msgid "Allow clients to write to X shared memory"
 -#~ msgstr "Разрешаване на клиентите да пишат в споделената памет на X"
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Бази данни"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Разрешаване на потребителите да се свързват с mysql гнездо"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Разрешаване на потребителите да се свързват с postgres гнездо"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "XServer"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Разрешаване на клиентите да пишат в споделената памет на X"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr "..."
  
-+#: ../gui/selinux.tbl:20
- #, fuzzy
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "Разрешаване на xguest SELinux потребителските акаунти да изпълняват "
 -#~ "файлове в домашната си директория или /tmp"
--
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
++"Въведете уникално име за ограниченото приложение или роля на потребител."
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
--
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr "Изпълним файл"
 -#~ msgid "Allow daemons to run with NIS"
 -#~ msgstr "Разрешаване на демоните да работят с NIS"
--
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr "Инициализиращ скрипт"
 -#~ msgid "Web Applications"
 -#~ msgstr "Уеб приложения"
--
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
++"Въведете пълен път до инициализиращ скрипт, използван за стартиране на "
++"ограниченото приложение."
 -#~ msgid "Transition staff SELinux user to Web Browser Domain"
 -#~ msgstr "Преход на staff SELinux потребителите към уеб браузър домейна"
--
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr "label105"
 -#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
 -#~ msgstr "Преход на sysadm SELinux потребителите към уеб браузър домейна"
--
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr "<b>Изберете съществуваща роля за промяна:</b>"
 -#~ msgid "Transition user SELinux user to Web Browser Domain"
 -#~ msgstr "Преход на user SELinux потребителите към уеб браузър домейна"
--
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 -#~ msgid "Transition xguest SELinux user to Web Browser Domain"
 -#~ msgstr "Преход на xguest SELinux потребителите към уеб браузър домейна"
--
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr "label106"
 -#~ msgid "Allow staff Web Browsers to write to home directories"
 -#~ msgstr "Разрешаване на staff уеб браузърите да пишат в домашните директории"
--
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
 -#~ msgid "Disable SELinux protection for amanda"
 -#~ msgstr "Изключване на SELinux защитата за amanda"
--
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
 -#~ msgid "Disable SELinux protection for amavis"
 -#~ msgstr "Изключване на SELinux защитата за amavis"
--
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr "label107"
 -#~ msgid "Disable SELinux protection for apmd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона apmd"
--
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
 -#~ msgid "Disable SELinux protection for arpwatch daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона arpwatch"
--
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 -#~ msgid "Disable SELinux protection for auditd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона auditd"
--
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr "label108"
 -#~ msgid "Disable SELinux protection for automount daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона automount"
--
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr "<b>Изберете домейни, които %s ще администрира:</b>"
 -#~ msgid "Disable SELinux protection for avahi"
 -#~ msgstr "Изключване на SELinux защитата за avahi"
--
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr "Изберете домейните, които желаете този потребител да администрира."
 -#~ msgid "Disable SELinux protection for bluetooth daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона bluetooth"
--
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr "label109"
 -#~ msgid "Disable SELinux protection for canna daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона canna"
--
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr "<b>Изберете допълнителни роли за %s:</b>"
 -#~ msgid "Disable SELinux protection for cardmgr daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cardmgr"
--
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr "label111"
 -#~ msgid "Disable SELinux protection for Cluster Server"
 -#~ msgstr "Изключване на SELinux защитата за Cluster Server"
--
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr "<b>Въведете мрежови портове, към които %s ще се привързва:</b>"
 -#~ msgid ""
 -#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
 -#~ "user temp and untrusted content files"
@@ -20160,1208 +31124,1147 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "Разрешаване на cdrecord да чете разнородно съдържание. nfs, samba, "
 -#~ "преносими устройства, потребителски временни файлове и файлове с "
 -#~ "несигурно съдържание"
--
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr "<b>TCP портове</b>"
 -#~ msgid "Disable SELinux protection for ciped daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ciped"
--
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr "Позволява %s да се привързва към който и да е udp порт"
 -#~ msgid "Disable SELinux protection for clamd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона clamd"
--
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr "Всички"
 -#~ msgid "Disable SELinux protection for clamscan"
 -#~ msgstr "Изключване на SELinux защитата за clamscan"
--
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr "Позволи %s да извиква bindresvport с 0. Привързване към порт 600-1024"
 -#~ msgid "Disable SELinux protection for clvmd"
 -#~ msgstr "Изключване на SELinux защитата за clvmd"
--
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr "600-1024"
 -#~ msgid "Disable SELinux protection for comsat daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона comsat"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"РазÑ\80еÑ\88аване Ð½Ð° xguest SELinux Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елÑ\81киÑ\82е Ð°ÐºÐ°Ñ\83нÑ\82и Ð´Ð° Ð¸Ð·Ð¿Ñ\8aлнÑ\8fваÑ\82 Ñ\84айлове "
-+"в Ð´Ð¾Ð¼Ð°Ñ\88наÑ\82а Ñ\81и Ð´Ð¸Ñ\80екÑ\82оÑ\80иÑ\8f Ð¸Ð»Ð¸ /tmp"
++"Ð\92Ñ\8aведеÑ\82е Ñ\81пиÑ\81Ñ\8aк udp Ð¿Ð¾Ñ\80Ñ\82ове Ð¸Ð»Ð¸ Ð´Ð¸Ð°Ð¿Ð°Ð·Ð¾Ð½Ð¸ Ð¾Ñ\82 Ð¿Ð¾Ñ\80Ñ\82ове, Ñ\80азделени Ñ\81Ñ\8aÑ\81 Ð·Ð°Ð¿ÐµÑ\82аи, "
++"кÑ\8aм ÐºÐ¾Ð¸Ñ\82о %s Ñ\89е Ñ\81е Ð¿Ñ\80ивÑ\8aÑ\80зва. Ð\9fÑ\80имеÑ\80: 612, 650-660"
  
 -#~ msgid "Disable SELinux protection for courier daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона courier"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Разрешаване на демоните да работят с NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Уеб приложения"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Преход на staff SELinux потребителите към уеб браузър домейна"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Преход на sysadm SELinux потребителите към уеб браузър домейна"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Преход на user SELinux потребителите към уеб браузър домейна"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Преход на xguest SELinux потребителите към уеб браузър домейна"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Разрешаване на staff уеб браузърите да пишат в домашните директории"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Изключване на SELinux защитата за amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Изключване на SELinux защитата за amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Изключване на SELinux защитата за демона apmd"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Изключване на SELinux защитата за демона arpwatch"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Изключване на SELinux защитата за демона auditd"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Изключване на SELinux защитата за демона automount"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Изключване на SELinux защитата за avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Изключване на SELinux защитата за демона bluetooth"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Изключване на SELinux защитата за демона canna"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Изключване на SELinux защитата за демона cardmgr"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Изключване на SELinux защитата за Cluster Server"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr "Нерезервирани портове (>1024)"
  
 -#~ msgid "Disable SELinux protection for cpucontrol daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cpucontrol"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Разрешаване на cdrecord да чете разнородно съдържание. nfs, samba, преносими "
-+"устройства, потребителски временни файлове и файлове с несигурно съдържание"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr "Изберете портове"
  
 -#~ msgid "Disable SELinux protection for cpuspeed daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cpuspeed"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Изключване на SELinux защитата за демона ciped"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Изключване на SELinux защитата за демона clamd"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Изключване на SELinux защитата за clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Изключване на SELinux защитата за clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Изключване на SELinux защитата за демона comsat"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Изключване на SELinux защитата за демона courier"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Изключване на SELinux защитата за демона cpucontrol"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Изключване на SELinux защитата за демона cpuspeed"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr "Позволява %s да се привързва към който и да е udp порт > 1024"
  
 -#~ msgid "Cron"
 -#~ msgstr "Cron"
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr "<b>UDP портове</b>"
  
 -#~ msgid "Disable SELinux protection for crond daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона crond"
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Изключване на SELinux защитата за демона crond"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr "label113"
  
 -#~ msgid "Printing"
 -#~ msgstr "Печат"
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Печат"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr "<b>Изберете мрежовите портове, към които %s ще се свързва:</b>"
  
-+#: ../gui/selinux.tbl:55
- #, fuzzy
+-#, fuzzy
 -#~ msgid "Disable SELinux protection for cupsd back end server"
 -#~ msgstr "Изключване на SELinux защитата за сървъра на ниско ниво на cupsd"
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Изключване на SELinux защитата за сървъра на ниско ниво на cupsd"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr "Позволява %s да се свързва с който и да е tcp порт"
  
 -#~ msgid "Disable SELinux protection for cupsd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cupsd"
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Изключване на SELinux защитата за демона cupsd"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++"Въведете списък tcp портове или диапазони от портове, разделени със запетаи, "
++"към които %s ще се свързва. Пример: 612, 650-660"
  
 -#~ msgid "Disable SELinux protection for cupsd_lpd"
 -#~ msgstr "Изключване на SELinux защитата за cupsd_lpd"
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° cupsd_lpd"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr "Ð\9fозволÑ\8fва %s Ð´Ð° Ñ\81е Ñ\81вÑ\8aÑ\80зва Ñ\81 ÐºÐ¾Ð¹Ñ\82о Ð¸ Ð´Ð° Ðµ udp Ð¿Ð¾Ñ\80Ñ\82"
  
 -#~ msgid "CVS"
 -#~ msgstr "CVS"
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++"Въведете списък udp портове или диапазони от портове, разделени със запетаи, "
++"към които %s ще се свързва. Пример: 612, 650-660"
  
 -#~ msgid "Disable SELinux protection for cvs daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cvs"
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Изключване на SELinux защитата за демона cvs"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr "label114"
  
 -#~ msgid "Disable SELinux protection for cyrus daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cyrus"
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Изключване на SELinux защитата за демона cyrus"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr "<b>Изберете отличителни черти на приложението %s:</b>"
  
 -#~ msgid "Disable SELinux protection for dbskkd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dbskkd"
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dbskkd"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr "Ð\9fиÑ\88е syslog Ñ\81Ñ\8aобÑ\89ениÑ\8f\t"
  
 -#~ msgid "Disable SELinux protection for dbusd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dbusd"
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dbusd"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr "СÑ\8aздава/РабоÑ\82и Ñ\81 Ð²Ñ\80еменни Ñ\84айлове Ð² /tmp"
  
 -#~ msgid "Disable SELinux protection for dccd"
 -#~ msgstr "Изключване на SELinux защитата за dccd"
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° dccd"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr "Ð\9fолзва Pam Ð·Ð° Ñ\83доÑ\81Ñ\82овеÑ\80Ñ\8fване"
  
 -#~ msgid "Disable SELinux protection for dccifd"
 -#~ msgstr "Изключване на SELinux защитата за dccifd"
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° dccifd"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr "Ð\9fолзва Ð¸Ð·Ð²Ð¸ÐºÐ²Ð°Ð½Ð¸Ñ\8f Ð½Ð° nsswitch Ð¸Ð»Ð¸ getpw*"
  
 -#~ msgid "Disable SELinux protection for dccm"
 -#~ msgstr "Изключване на SELinux защитата за dccm"
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° dccm"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr "Ð\9fолзва dbus"
  
 -#~ msgid "Disable SELinux protection for ddt daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ddt"
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ddt"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr "Ð\9fÑ\80аÑ\89а Ñ\81Ñ\8aобÑ\89ениÑ\8f ÐºÑ\8aм Ð½Ð°Ð±Ð»Ñ\8eдениеÑ\82о"
  
 -#~ msgid "Disable SELinux protection for devfsd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона devfsd"
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° devfsd"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr "Ð\92заимодейÑ\81Ñ\82ва Ñ\81 Ñ\82еÑ\80минала"
  
 -#~ msgid "Disable SELinux protection for dhcpc daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dhcpc"
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dhcpc"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr "Ð\9fÑ\80аÑ\89а Ð¸Ð¼ÐµÐ¹Ð»"
  
 -#~ msgid "Disable SELinux protection for dhcpd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dhcpd"
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Изключване на SELinux защитата за демона dhcpd"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr "label115"
  
 -#~ msgid "Disable SELinux protection for dictd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dictd"
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Изключване на SELinux защитата за демона dictd"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr "<b>Добавете файлове/директории, които %s управлява</b>"
  
 -#~ msgid "Allow sysadm_t to directly start daemons"
 -#~ msgstr "Разрешаване на sysadm_t да стартира директно демони"
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Разрешаване на sysadm_t да стартира директно демони"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++"Файлове/директории, които %s \"управлява\". Pid файлове, Log файлове, /var/"
++"lib файлове ..."
  
 -#~ msgid "Disable SELinux protection for Evolution"
 -#~ msgstr "Изключване на SELinux защитата за Evolution"
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Изключване на SELinux защитата за Evolution"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr "label116"
  
 -#~ msgid "Games"
 -#~ msgstr "Игри"
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Игри"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr "<b>Добави булевите променливи от политиката %s:</b>"
  
 -#~ msgid "Disable SELinux protection for games"
 -#~ msgstr "Изключване на SELinux защитата за игрите"
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð¸Ð³Ñ\80иÑ\82е"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr "Ð\94обавÑ\8f\9fÑ\80емаÑ\85ва Ð±Ñ\83леви Ð¿Ñ\80оменливи, Ð¸Ð·Ð¿Ð¾Ð»Ð·Ð²Ð°Ð½Ð¸ Ð¾Ñ\82 Ð´Ð¾Ð¼ÐµÐ¹Ð½Ð° %s"
  
 -#~ msgid "Disable SELinux protection for the web browsers"
 -#~ msgstr "Изключване на SELinux защитата за уеб браузърите"
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Изключване на SELinux защитата за уеб браузърите"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr "<b>В коя директория ще генерирате политиката %s?</b>"
  
 -#~ msgid "Disable SELinux protection for Thunderbird"
 -#~ msgstr "Изключване на SELinux защитата за Thunderbird"
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Thunderbird"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr "Ð\94иÑ\80екÑ\82оÑ\80иÑ\8f Ð½Ð° Ð¿Ð¾Ð»Ð¸Ñ\82икаÑ\82а"
  
 -#~ msgid "Disable SELinux protection for distccd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона distccd"
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° distccd"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr "Ð\94обави Ð´Ð¸Ð°Ð»Ð¾Ð³ Ð·Ð° Ð±Ñ\83леви Ð¿Ñ\80оменливи"
  
 -#~ msgid "Disable SELinux protection for dmesg daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dmesg"
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dmesg"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr "Ð\98ме Ð½Ð° Ð±Ñ\83лева Ð¿Ñ\80оменлива"
  
 -#~ msgid "Disable SELinux protection for dnsmasq daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dnsmasq"
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dnsmasq"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr "РолÑ\8f"
  
 -#~ msgid "Disable SELinux protection for dovecot daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона dovecot"
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dovecot"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr "СÑ\8aÑ\89еÑ\81Ñ\82вÑ\83ваÑ\89 Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел"
  
 -#~ msgid "Disable SELinux protection for entropyd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона entropyd"
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° entropyd"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr "Ð\9fÑ\80иложение"
  
 -#~ msgid "Disable SELinux protection for fetchmail"
 -#~ msgstr "Изключване на SELinux защитата за fetchmail"
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Изключване на SELinux защитата за fetchmail"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr "%s трябва да е директория"
  
 -#~ msgid "Disable SELinux protection for fingerd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона fingerd"
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° fingerd"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr "ТÑ\80Ñ\8fбва Ð´Ð° Ð¸Ð·Ð±ÐµÑ\80еÑ\82е Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел"
  
 -#~ msgid "Disable SELinux protection for freshclam daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона freshclam"
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° freshclam"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr "Ð\9fоÑ\81оÑ\87еÑ\82е Ð¸Ð·Ð¿Ñ\8aлним Ñ\84айл, ÐºÐ¾Ð¹Ñ\82о Ð´Ð° Ð±Ñ\8aде Ð¾Ð³Ñ\80аниÑ\87ен"
  
 -#~ msgid "Disable SELinux protection for fsdaemon daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона fsdaemon"
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° fsdaemon"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr "Ð\9fоÑ\81оÑ\87еÑ\82е Ñ\84айл Ñ\81 Ð¸Ð½Ð¸Ñ\86иализиÑ\80аÑ\89 Ñ\81кÑ\80ипÑ\82, ÐºÐ¾Ð¹Ñ\82о Ð´Ð° Ð±Ñ\8aде Ð¾Ð³Ñ\80аниÑ\87ен"
  
 -#~ msgid "Disable SELinux protection for gpm daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона gpm"
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° gpm"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr "Ð\9fоÑ\81оÑ\87еÑ\82е Ñ\84айл(ове), ÐºÐ¾Ð¸Ñ\82о Ð¾Ð³Ñ\80аниÑ\87еноÑ\82о Ð¿Ñ\80иложение Ñ\81Ñ\8aздава Ð¸Ð»Ð¸ Ð¿Ð¸Ñ\88е"
  
 -#~ msgid "NFS"
 -#~ msgstr "NFS"
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
++"Посочете директория(и), които ограниченото приложение притежава и пише в тях"
  
 -#~ msgid "Disable SELinux protection for gss daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона gss"
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° gss"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr "Ð\9fоÑ\81оÑ\87еÑ\82е Ð´Ð¸Ñ\80екÑ\82оÑ\80иÑ\8f, Ð² ÐºÐ¾Ñ\8fÑ\82о Ð´Ð° Ñ\81е Ð³ÐµÐ½ÐµÑ\80иÑ\80аÑ\82 Ñ\84айловеÑ\82е Ð½Ð° Ð¿Ð¾Ð»Ð¸Ñ\82икаÑ\82а"
  
-+#: ../gui/selinux.tbl:86
- #, fuzzy
+-#, fuzzy
 -#~ msgid "Disable SELinux protection for Hal daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона hal"
--
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++"Типът %s_t е вече дефиниран в текущата политика.\n"
++"Искате ли да продължите?"
 -#~ msgid "Compatibility"
 -#~ msgstr "Съвместимост"
--
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr "Проверете името"
 -#~ msgid ""
 -#~ "Do not audit things that we know to be broken but which are not security "
 -#~ "risks"
 -#~ msgstr ""
 -#~ "Да не се прави одит на неща, които се знае че са счупени, но не "
 -#~ "представляват риск за сигурността"
--
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++"Модулът %s.pp е вече зареден в текущата политика.\n"
++"Искате ли да продължите?"
 -#~ msgid "Disable SELinux protection for hostname daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона hostname"
--
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr "Трябва да добавите име, съставено от букви и цифри, и без интервали."
 -#~ msgid "Disable SELinux protection for hotplug daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона hotplug"
--
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr "Трябва да въведете изпълним файл"
 -#~ msgid "Disable SELinux protection for howl daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона howl"
--
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr "Конфигуриране на "
 -#~ msgid "Disable SELinux protection for cups hplip daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона cups hplip"
--
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr "Internet Services демон"
 -#~ msgid "Disable SELinux protection for httpd rotatelogs"
 -#~ msgstr "Изключване на SELinux защитата за превъртане на httpd дневниците"
--
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr "Портовете трябва да са номера или интервали от номера от 1 до %d "
 -#~ msgid "HTTPD Service"
 -#~ msgstr "HTTPD услуга"
--
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr "Трябва да въведете име за Вашия ограничен процес/потребител"
 -#~ msgid "Disable SELinux protection for http suexec"
 -#~ msgstr "Изключване на SELinux защитата за http suexec"
--
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++"Името трябва да е от букви и цифри без интервали. Разгледайте ползването на "
++"опцията \"-n MODULENAME\""
 -#~ msgid "Disable SELinux protection for hwclock daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона hwclock"
--
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 -#~ msgid "Disable SELinux protection for i18n daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона i18n"
--
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr "Само Демон приложенията могат да ползват инит скрипт."
 -#~ msgid "Disable SELinux protection for imazesrv daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона imazesrv"
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Изключване на SELinux защитата за демона hal"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr "use_resolve трябва да е булева стойност "
  
 -#~ msgid "Disable SELinux protection for inetd child daemons"
 -#~ msgstr "Изключване на SELinux защитата за демоните деца на inetd"
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Съвместимост"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr "use_syslog трябва да е булева стойност "
  
 -#~ msgid "Disable SELinux protection for inetd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона inetd"
--
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr "use_kerberos трябва да е булева стойност "
 -#~ msgid "Disable SELinux protection for innd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона innd"
--
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr "manage_krb5_rcache трябва да е булева стойност "
 -#~ msgid "Disable SELinux protection for iptables daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона iptables"
--
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr "USER типовете автоматично получават tmp тип"
 -#~ msgid "Disable SELinux protection for ircd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ircd"
--
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr "Трябва да въведете изпълнимия път за Вашия ограничен процес"
 -#~ msgid "Disable SELinux protection for irqbalance daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона irqbalance"
--
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr "Тип Enforcement файл"
 -#~ msgid "Disable SELinux protection for iscsi daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона iscsi"
--
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr "Интерфейсен файл"
 -#~ msgid "Disable SELinux protection for jabberd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона jabberd"
--
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr "Файл контекстен файл"
 -#~ msgid "Kerberos"
 -#~ msgstr "Kerberos"
--
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr "Setup Script"
 -#~ msgid "Disable SELinux protection for kadmind daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона kadmind"
--
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"валидни типове:\n"
 -#~ msgid "Disable SELinux protection for klogd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона klogd"
--
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr "Изисква се Програма или Име"
 -#~ msgid "Disable SELinux protection for krb5kdc daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона krb5kdc"
--
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr "Мрежови порт"
 -#~ msgid "Disable SELinux protection for ktalk daemons"
 -#~ msgstr "Изключване на SELinux защитата за демоните ktalk"
--
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
++"SELinux Тип\n"
++"порт"
 -#~ msgid "Disable SELinux protection for kudzu daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона kudzu"
--
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr "Протокол"
 -#~ msgid "Disable SELinux protection for locate daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона locate"
-+#: ../gui/selinux.tbl:87
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
++"MLS/MCS\n"
++"Level"
 +msgstr ""
-+"Да не се прави одит на неща, които се знае че са счупени, но не "
-+"представляват риск за сигурността"
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Изключване на SELinux защитата за демона lpd"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Изключване на SELinux защитата за демона hostname"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Изключване на SELinux защитата за демона hotplug"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Изключване на SELinux защитата за демона howl"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Изключване на SELinux защитата за демона cups hplip"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Изключване на SELinux защитата за превъртане на httpd дневниците"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD услуга"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Изключване на SELinux защитата за http suexec"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Изключване на SELinux защитата за демона hwclock"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Изключване на SELinux защитата за демона i18n"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Изключване на SELinux защитата за демона imazesrv"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Изключване на SELinux защитата за демоните деца на inetd"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Изключване на SELinux защитата за демона inetd"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Изключване на SELinux защитата за демона innd"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Изключване на SELinux защитата за демона iptables"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Изключване на SELinux защитата за демона ircd"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Изключване на SELinux защитата за демона irqbalance"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Изключване на SELinux защитата за демона iscsi"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Изключване на SELinux защитата за демона jabberd"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Изключване на SELinux защитата за демона kadmind"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Изключване на SELinux защитата за демона klogd"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Изключване на SELinux защитата за демона krb5kdc"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Изключване на SELinux защитата за демоните ktalk"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Изключване на SELinux защитата за демона kudzu"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Изключване на SELinux защитата за демона locate"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Изключване на SELinux защитата за демона lpd"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Изключване на SELinux защитата за демона lrrd"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Изключване на SELinux защитата за демона lvm"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Изключване на SELinux защитата за mailman"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Разрешаване на evolution и thunderbird да четат потребителски файлове"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Изключване на SELinux защитата за демона mdadm"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Изключване на SELinux защитата за демона monopd"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Разрешаване на mozilla браузъра да чете потребителски файлове"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Изключване на SELinux защитата за демона mrtg"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Изключване на SELinux защитата за демона mysqld"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Изключване на SELinux защитата за демона nagios"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Услуга за имена"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Изключване на SELinux защитата за демона named"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Изключване на SELinux защитата за демона nessusd"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Изключване на SELinux защитата за NetworkManager"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Изключване на SELinux защитата за демона nfsd"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Изключване на SELinux защитата за демона nmbd"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Изключване на SELinux защитата за демона nrpe"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Изключване на SELinux защитата за демона nscd"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Изключване на SELinux защитата за демона nsd"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Изключване на SELinux защитата за демона ntpd"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Изключване на SELinux защитата за oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Изключване на SELinux защитата за oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Изключване на SELinux защитата за демона openvpn"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Изключване на SELinux защитата за демона pam"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Изключване на SELinux защитата за pegasus"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Изключване на SELinux защитата за демона  perdition"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Изключване на SELinux защитата за демона portmap"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Изключване на SELinux защитата за демона portslave"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Изключване на SELinux защитата за postfix"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Изключване на SELinux защитата за демона postgresql"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Разрешаване pppd да се стартира за обикновен потребител"
++"MLS/MCS\n"
++"ниво"
 +
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° pptp"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr "Ð\9fоÑ\80Ñ\82"
 +
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Изключване на SELinux защитата за демона prelink"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr "Номер \"%s\" на порт не е валиден.  0 < Порт_номер < 65536 "
 +
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° privoxy"
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr "Ð\98зглед ÐºÐ°Ñ\82о Ñ\81пиÑ\81Ñ\8aк"
 +
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ptal"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr "Ð\98зглед ÐºÐ°Ñ\82о Ð³Ñ\80Ñ\83па"
 +
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Изключване на SELinux защитата за демона pxe"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr "SELinux защита на услугите"
 +
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° pyzord"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° acct Ð´ÐµÐ¼Ð¾Ð½Ð°"
 +
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Изключване на SELinux защитата за демона quota"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr "Админ"
 +
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° radiusd"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr "Ð\9fозволи Ð²Ñ\81иÑ\87ки Ð´ÐµÐ¼Ð¾Ð½Ð¸ Ð´Ð° Ð¿Ð¸Ñ\88аÑ\82 Ð¾Ñ\81новни Ñ\84айлове Ð² /"
 +
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° radvd"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr "Ð\9fозволи Ð½Ð° Ð²Ñ\81иÑ\87ки Ð´ÐµÐ¼Ð¾Ð½Ð¸ Ð²Ñ\8aзможноÑ\81Ñ\82Ñ\82а Ð´Ð° Ð¿Ð¾Ð»Ð·Ð²Ð°Ñ\82 Ñ\80азпÑ\80еделени tty"
 +
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Изключване на SELinux защитата за rdisc"
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr "Права на потребители"
 +
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Изключване на SELinux защитата за readahead"
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи gadmin SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона lpd"
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи guest SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
  
 -#~ msgid "Disable SELinux protection for lrrd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона lrrd"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Разрешаване на програмите да четат файлове от настандартни места (default_t)"
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr "Защита на паметта"
  
 -#~ msgid "Disable SELinux protection for lvm daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона lvm"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° restorecond"
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr "Ð\9fозволи Ð¸Ð·Ð¿Ñ\8aлним Ñ\81Ñ\82ек Ð½Ð° java"
  
 -#~ msgid "Disable SELinux protection for mailman"
 -#~ msgstr "Изключване на SELinux защитата за mailman"
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Изключване на SELinux защитата за демона rhgb"
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr "Монтиране"
  
 -#~ msgid "Allow evolution and thunderbird to read user files"
 -#~ msgstr ""
 -#~ "Разрешаване на evolution и thunderbird да четат потребителски файлове"
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° ricci"
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr "Ð\9fозволи mount Ð´Ð° Ð¼Ð¾Ð½Ñ\82иÑ\80а ÐºÐ¾Ð¹Ñ\82о Ð¸ Ð´Ð° Ðµ Ñ\84айл"
  
 -#~ msgid "Disable SELinux protection for mdadm daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона mdadm"
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° ricci_modclusterd"
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr "Ð\9fозволи mount Ð´Ð° Ð¼Ð¾Ð½Ñ\82иÑ\80а ÐºÐ¾Ñ\8fÑ\82о Ð¸ Ð´Ð° Ðµ Ð´Ð¸Ñ\80екÑ\82оÑ\80иÑ\8f"
  
 -#~ msgid "Disable SELinux protection for monopd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона monopd"
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° rlogind"
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr "Ð\9fозволи Ð¸Ð·Ð¿Ñ\8aлним Ñ\81Ñ\82ек Ð½Ð° mplayer"
  
 -#~ msgid "Allow the mozilla browser to read user files"
 -#~ msgstr "Разрешаване на mozilla браузъра да чете потребителски файлове"
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Изключване на SELinux защитата за демона rpcd"
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr "SSH"
  
 -#~ msgid "Disable SELinux protection for mrtg daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона mrtg"
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° rshd"
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr "Ð\9fозволи ssh Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а ssh-keysign"
  
 -#~ msgid "Disable SELinux protection for mysqld daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона mysqld"
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи staff SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
++
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи sysadm SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
++
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
++"Позволи неограничен SELinux потребителски акаунт да стартира файлове в "
++"домашната директория или /tmp"
++
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr "Мрежова конфигурация"
++
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr "Позволи неетикетирани пакети да текат през мрежата"
++
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи user SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
++
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr "Позволи на неограничени dyntrans към unconfined_execmem"
++
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr "Бази данни"
++
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr "Позволи потребител да се свързва към mysql сокет"
++
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr "Позволи потребител да се свързва към postgres сокет"
++
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr "XServer"
++
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr "Позволи клиенти да пишат в X споделена памет"
++
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Позволи xguest SELinux потребителски акаунт да стартира файлове в домашната "
++"директория или /tmp"
++
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr "NIS"
++
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr "Позволи демони да работят с NIS"
++
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr "Уеб приложения"
++
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr "Позволи staff уеб браузъри да пишат в домашни директории"
++
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr "Забрани SELinux защитата за amanda"
++
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr "Забрани SELinux защитата за amavis"
++
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr "Забрани SELinux защитата за демона apmd"
++
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr "Забрани SELinux защитата за демона arpwatch"
  
 -#~ msgid "Disable SELinux protection for nagios daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nagios"
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° rsync"
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° auditd"
  
 -#~ msgid "Name Service"
 -#~ msgstr "Услуга за имена"
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "РазÑ\80еÑ\88аване ssh Ð´Ð° Ñ\81е Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а Ð¾Ñ\82 inetd Ð²Ð¼ÐµÑ\81Ñ\82о ÐºÐ°Ñ\82о Ð´ÐµÐ¼Ð¾Ð½"
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° automount"
  
 -#~ msgid "Disable SELinux protection for named daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона named"
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Samba Ð´Ð° Ñ\81поделÑ\8f nfs Ð´Ð¸Ñ\80екÑ\82оÑ\80ии"
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° avahi"
  
 -#~ msgid "Disable SELinux protection for nessusd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nessusd"
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL сървър за удостоверяване"
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
++msgstr "Забрани SELinux защитата за демона bluetooth"
  
 -#~ msgid "Disable SELinux protection for NetworkManager"
 -#~ msgstr "Изключване на SELinux защитата за NetworkManager"
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ñ\83доÑ\81Ñ\82овеÑ\80Ñ\8fваÑ\89иÑ\8f Ñ\81Ñ\8aÑ\80вÑ\8aÑ\80 sasl Ð´Ð° Ñ\87еÑ\82е /etc/shadow"
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° canna"
  
 -#~ msgid "Disable SELinux protection for nfsd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nfsd"
--
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
++msgstr "Забрани SELinux защитата за демона cardmgr"
 -#~ msgid "Samba"
 -#~ msgstr "Samba"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Разрешаване на сървъра X-Windows да ползва части от паметта едновременно за "
-+"писане и изпълнение"
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr "Забрани SELinux защитата за Cluster Server"
  
 -#~ msgid "Disable SELinux protection for nmbd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nmbd"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Изключване на SELinux защитата за демона saslauthd"
++#: ../gui/selinux.tbl:41
++msgid ""
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
++msgstr ""
++"Позволи cdrecord да чете различно съдържание. nfs, samba, сменяеми "
++"устройства, временни потребителски файлове и такива с несигурно съдържание"
++
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
++msgstr "Забрани SELinux защитата за демона ciped"
++
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr "Забрани SELinux защитата за демона clamd"
++
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr "Забрани SELinux защитата за clamscan"
  
 -#~ msgid "Disable SELinux protection for nrpe daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nrpe"
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° scannerdaemon"
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° clvmd"
  
 -#~ msgid "Disable SELinux protection for nscd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nscd"
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Ð\97абÑ\80ана Ð·Ð° Ð¿Ñ\80еÑ\85од ÐºÑ\8aм sysadm_t, Ð·Ð°Ñ\81Ñ\8fгаÑ\82 Ñ\81е sudo Ð¸ su"
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° comsat"
  
 -#~ msgid "Disable SELinux protection for nsd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона nsd"
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Забрана на всички процеси да зареждат модули в ядрото"
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr "Забрани SELinux защитата за демона courier"
++
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr "Забрани SELinux защитата за демона cpucontrol"
++
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr "Забрани SELinux защитата за демона cpuspeed"
++
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr "Cron"
  
 -#~ msgid "Disable SELinux protection for ntpd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ntpd"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Ð\97абÑ\80ана Ð½Ð° Ð²Ñ\81иÑ\87ки Ð¿Ñ\80оÑ\86еÑ\81и Ð´Ð° Ð¿Ñ\80оменÑ\8fÑ\82 SELinux Ð¿Ð¾Ð»Ð¸Ñ\82икаÑ\82а Ð² Ñ\8fдÑ\80оÑ\82о"
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° crond"
  
 -#~ msgid "Disable SELinux protection for oddjob"
 -#~ msgstr "Изключване на SELinux защитата за oddjob"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Изключване на SELinux защитата за демона sendmail"
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr "Печатане"
  
 -#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
 -#~ msgstr "Изключване на SELinux защитата за oddjob_mkhomedir"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° setrans"
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° cupsd back end server"
  
 -#~ msgid "Disable SELinux protection for openvpn daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона openvpn"
-+#: ../gui/selinux.tbl:173
-+#, fuzzy
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Изключване на SELinux защитата за демона setroublesoot"
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr "Забрани SELinux защитата за демона cupsd"
  
 -#~ msgid "Disable SELinux protection for pam daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона pam"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° slapd"
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° cupsd_lpd"
  
 -#~ msgid "Disable SELinux protection for pegasus"
 -#~ msgstr "Изключване на SELinux защитата за pegasus"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Изключване на SELinux защитата за демона slrnpull"
++#: ../gui/selinux.tbl:58
++msgid "CVS"
++msgstr "CVS"
  
 -#~ msgid "Disable SELinux protection for perdition daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона  perdition"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° smbd"
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° cvs"
  
 -#~ msgid "Disable SELinux protection for portmap daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона portmap"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° snmpd"
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° cyrus"
  
 -#~ msgid "Disable SELinux protection for portslave daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона portslave"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° snort"
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dbskkd"
  
 -#~ msgid "Disable SELinux protection for postfix"
 -#~ msgstr "Изключване на SELinux защитата за postfix"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° soundd"
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dbusd"
  
 -#~ msgid "Disable SELinux protection for postgresql daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона postgresql"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° sound"
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° dccd"
  
 -#~ msgid "pppd"
 -#~ msgstr "pppd"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+#, fuzzy
-+msgid "Spam Protection"
-+msgstr "Spam защита"
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
++msgstr "Забрани SELinux защитата за dccifd"
  
 -#~ msgid "Allow pppd to be run for a regular user"
 -#~ msgstr "Разрешаване pppd да се стартира за обикновен потребител"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° spamd"
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° dccm"
  
 -#~ msgid "Disable SELinux protection for pptp"
 -#~ msgstr "Изключване на SELinux защитата за pptp"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð´Ð¾Ñ\81Ñ\82Ñ\8aп Ð´Ð¾ Ð´Ð¾Ð¼Ð°Ñ\88ниÑ\82е Ð´Ð¸Ñ\80екÑ\82оÑ\80ии Ð½Ð° spamd"
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ddt"
  
 -#~ msgid "Disable SELinux protection for prelink daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона prelink"
-+#: ../gui/selinux.tbl:183
-+#, fuzzy
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Разрешаване на мрежов достъп на демона Spam Assasin"
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr "Забрани SELinux защитата за демона devfsd"
  
 -#~ msgid "Disable SELinux protection for privoxy daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона privoxy"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° speedmgmt"
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dhcpc"
  
 -#~ msgid "Disable SELinux protection for ptal daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ptal"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr "Забрани SELinux защитата за демона dhcpd"
  
 -#~ msgid "Disable SELinux protection for pxe daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона pxe"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð¼Ñ\80ежов Ð´Ð¾Ñ\81Ñ\82Ñ\8aп Ð½Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° squid"
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dictd"
  
 -#~ msgid "Disable SELinux protection for pyzord"
 -#~ msgstr "Изключване на SELinux защитата за pyzord"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° squid"
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr "Ð\9fозволи sysadm_t Ð´Ð¸Ñ\80екÑ\82но Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а Ð´ÐµÐ¼Ð¾Ð½Ð¸"
  
 -#~ msgid "Disable SELinux protection for quota daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона quota"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ssh"
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Evolution"
  
 -#~ msgid "Disable SELinux protection for radiusd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона radiusd"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° ssh Ð²Ñ\85од ÐºÐ°Ñ\82о sysadm_r:sysadm_t"
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr "Ð\98гÑ\80и"
  
 -#~ msgid "Disable SELinux protection for radvd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона radvd"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"Разрешаване на staff_r потребителите да претърсват sysadm домашната "
-+"директория и да четат файлове (като ~/.bashrc примерно)"
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr "Забрани SELinux защитата за игри"
  
 -#~ msgid "Disable SELinux protection for rdisc"
 -#~ msgstr "Изключване на SELinux защитата за rdisc"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Универсален SSL тунел"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Изключване на SELinux защитата за демона stunnel"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Разрешаване на демона stunnel да работи самостоятелно, извън xinetd"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Изключване на SELinux защитата за демона swat"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Изключване на SELinux защитата за демона sxid"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Изключване на SELinux защитата за демона syslogd"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Изключване на SELinux защитата за системните cron задачи"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Изключване на SELinux защитата за демона tcp"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Изключване на SELinux защитата за демона telnet"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Изключване на SELinux защитата за демона tftpd"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Изключване на SELinux защитата за демона transproxy"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Изключване на SELinux защитата за демона udev"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Изключване на SELinux защитата за демона uml"
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr "Забрани SELinux защитата за уеб браузърите"
  
 -#~ msgid "Disable SELinux protection for readahead"
 -#~ msgstr "Изключване на SELinux защитата за readahead"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"Разрешаване на xinetd да стартира неограничени, включително нямащи изрично "
-+"дефиниран преход към домейн услуги"
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr "Забрани SELinux защитата за Thunderbird"
  
 -#~ msgid "Allow programs to read files in non-standard locations (default_t)"
 -#~ msgstr ""
 -#~ "Разрешаване на програмите да четат файлове от настандартни места "
 -#~ "(default_t)"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"Разрешаване на rc скриптовете да стартират неограничени, включително всеки "
-+"rc скрипт, който няма изрично дефиниран преход към домейн"
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr "Забрани SELinux защитата за демона distccd"
  
 -#~ msgid "Disable SELinux protection for restorecond"
 -#~ msgstr "Изключване на SELinux защитата за restorecond"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° rpm Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а Ð½ÐµÐ¾Ð³Ñ\80аниÑ\87ен"
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° dmesg"
  
 -#~ msgid "Disable SELinux protection for rhgb daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона rhgb"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"Разрешаване на привилегировани инструменти като hotplug и insmod да работят "
-+"неограничени"
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr "Забрани SELinux защитата за демона dnsmasq"
  
 -#~ msgid "Disable SELinux protection for ricci"
 -#~ msgstr "Изключване на SELinux защитата за ricci"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Изключване на SELinux защитата за демона updfstab"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Изключване на SELinux защитата за демона uptimed"
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr "Забрани SELinux защитата за демона dovecot"
  
 -#~ msgid "Disable SELinux protection for ricci_modclusterd"
 -#~ msgstr "Изключване на SELinux защитата за ricci_modclusterd"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"Разрешаване на user_r преход към sysadm_r чрез su, sudo, или userhelper. В "
-+"противен случай, само staff_r може да го прави"
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr "Забрани SELinux защитата за демона entropyd"
  
 -#~ msgid "Disable SELinux protection for rlogind daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона rlogind"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елиÑ\82е Ð´Ð° Ð¸Ð·Ð¿Ñ\8aлнÑ\8fваÑ\82 ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°Ñ\82а mount"
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° fetchmail"
  
 -#~ msgid "Disable SELinux protection for rpcd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона rpcd"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"Разрешаване на обикновените потребители директен достъп до мишката (само на "
-+"X сървъра)"
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr "Забрани SELinux защитата за демона fingerd"
  
 -#~ msgid "Disable SELinux protection for rshd"
 -#~ msgstr "Изключване на SELinux защитата за rshd"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елиÑ\82е Ð´Ð° Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80аÑ\82 ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°Ñ\82а dmesg"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° freshclam"
  
 -#~ msgid "rsync"
 -#~ msgstr "rsync"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr "Забрани SELinux защитата за демона fsdaemon"
++
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr "Забрани SELinux защитата за демона gpm"
++
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr "NFS"
++
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr "Забрани SELinux защитата за демона gss"
++
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr "Забрани SELinux защитата за демона Hal"
++
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr "Съвместимост"
++
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
 +msgstr ""
-+"РазÑ\80еÑ\88аване Ð½Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елиÑ\82е Ð´Ð° ÐºÐ¾Ð½Ñ\82Ñ\80олиÑ\80аÑ\82 Ð¼Ñ\80ежови Ð¸Ð½Ñ\82еÑ\80Ñ\84ейÑ\81и (Ñ\82Ñ\80Ñ\8fбва Ð¸ "
-+"USERCTL=true за интерфейса)"
++"Ð\9dе Ð½Ð°Ð±Ð»Ñ\8eдавай Ð½ÐµÑ\89а, ÐºÐ¾Ð¸Ñ\82о Ð·Ð½Ð°ÐµÐ¼, Ñ\87е Ñ\81а Ñ\81Ñ\87Ñ\83пени, Ð½Ð¾ Ð½Ðµ Ñ\81а Ñ\80иÑ\81кови Ð·Ð° "
++"сигурността"
  
 -#~ msgid "Disable SELinux protection for rsync daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона rsync"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Разрешаване на нормалните потребители да стартират ping"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Разрешаване на потребителите ч/з noextattrfile (FAT, CDROM, FLOPPY)"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Разрешаване на потребителите ч/з на usb устройства"
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr "Забрани SELinux защитата за демона hostname"
  
 -#~ msgid "Allow ssh to run from inetd instead of as a daemon"
 -#~ msgstr "Разрешаване ssh да се стартира от inetd вместо като демон"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"Разрешаване на потребителите да стартират TCP услуги (се закачат на портове "
-+"и да приемат връзки от същия домейн и външни потребители).  Забраната на "
-+"това налага ползването на пасивен FTP режим и може да промени и други "
-+"протоколи"
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
++msgstr "Забрани SELinux защитата за демона hotplug"
  
 -#~ msgid "Allow Samba to share nfs directories"
 -#~ msgstr "Разрешаване на Samba да споделя nfs директории"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82елиÑ\82е stat Ð²Ñ\8aÑ\80Ñ\85Ñ\83 tty Ñ\84айлове"
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° howl"
  
 -#~ msgid "SASL authentication server"
 -#~ msgstr "SASL сървър за удостоверяване"
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° uucpd"
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° cups Ð´ÐµÐ¼Ð¾Ð½Ð° hplip"
  
 -#~ msgid "Allow sasl authentication server to read /etc/shadow"
 -#~ msgstr "Разрешаване на удостоверяващия сървър sasl да чете /etc/shadow"
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° vmware"
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° httpd rotatelog-овеÑ\82е"
  
 -#~ msgid ""
 -#~ "Allow X-Windows server to map a memory region as both executable and "
@@ -21369,141 +32272,162 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Разрешаване на сървъра X-Windows да ползва части от паметта едновременно "
 -#~ "за писане и изпълнение"
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° watchdog"
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr "УÑ\81лÑ\83гаÑ\82а HTTPD"
  
 -#~ msgid "Disable SELinux protection for saslauthd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона saslauthd"
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° winbind"
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° http suexec"
  
 -#~ msgid "Disable SELinux protection for scannerdaemon daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона scannerdaemon"
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° xdm"
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° hwclock"
  
 -#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
 -#~ msgstr "Забрана за преход към sysadm_t, засягат се sudo и su"
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° xdm Ð²Ñ\85од ÐºÐ°Ñ\82о sysadm_r:sysadm_t"
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° i18n"
  
 -#~ msgid "Do not allow any processes to load kernel modules"
 -#~ msgstr "Забрана на всички процеси да зареждат модули в ядрото"
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° xen"
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° imazesrv"
  
 -#~ msgid "Do not allow any processes to modify kernel SELinux policy"
 -#~ msgstr "Забрана на всички процеси да променят SELinux политиката в ядрото"
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr "Забрани SELinux защитата за inetd child демоните"
  
 -#~ msgid "Disable SELinux protection for sendmail daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона sendmail"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "РазÑ\80еÑ\88аване Ð½Ð° xen Ð´Ð° Ñ\87еÑ\82е/пиÑ\88е Ñ\84изиÑ\87еÑ\81ки Ð´Ð¸Ñ\81кови Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82ва"
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° inetd"
  
 -#~ msgid "Disable SELinux protection for setrans"
 -#~ msgstr "Изключване на SELinux защитата за setrans"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° xfs"
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° innd"
  
-+#: ../gui/selinux.tbl:227
- #, fuzzy
+-#, fuzzy
 -#~ msgid "Disable SELinux protection for setroubleshoot daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона setroublesoot"
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Изключване на SELinux защитата за xen constrol"
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr "Забрани SELinux защитата за демона iptables"
  
 -#~ msgid "Disable SELinux protection for slapd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона slapd"
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ypbind"
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ircd"
  
 -#~ msgid "Disable SELinux protection for slrnpull daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона slrnpull"
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° Ð·Ð° NIS Ð¿Ð°Ñ\80оли"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° irqbalance"
  
 -#~ msgid "Disable SELinux protection for smbd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона smbd"
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° ypserv"
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° iscsi"
  
 -#~ msgid "Disable SELinux protection for snmpd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона snmpd"
--
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr "Забрани SELinux защитата за демона jabberd"
 -#~ msgid "Disable SELinux protection for snort daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона snort"
--
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr "Kerberos"
 -#~ msgid "Disable SELinux protection for soundd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона soundd"
--
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr "Забрани SELinux защитата за демона kadmind"
 -#~ msgid "Disable SELinux protection for sound daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона sound"
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Ð\98зклÑ\8eÑ\87ване Ð½Ð° SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° NIS Ñ\82Ñ\80анÑ\81Ñ\84еÑ\80и"
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° klogd"
  
-+#: ../gui/selinux.tbl:232
- #, fuzzy
+-#, fuzzy
 -#~ msgid "Spam Protection"
 -#~ msgstr "Spam защита"
--
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr "Забрани SELinux защитата за демона krb5kdc"
 -#~ msgid "Disable SELinux protection for spamd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона spamd"
--
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr "Забрани SELinux защитата за демоните ktalk"
 -#~ msgid "Allow spamd to access home directories"
 -#~ msgstr "Разрешаване на достъп до домашните директории на spamd"
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Разрешаване на SELinux webadm потребителя да управлява домашните директории "
-+"на непривилегированите потребители"
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr "Забрани SELinux защитата за демона kudzu"
  
-+#: ../gui/selinux.tbl:233
- #, fuzzy
+-#, fuzzy
 -#~ msgid "Allow Spam Assassin daemon network access"
 -#~ msgstr "Разрешаване на мрежов достъп на демона Spam Assasin"
--
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr "Забрани SELinux защитата за демона locate"
 -#~ msgid "Disable SELinux protection for speedmgmt daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона speedmgmt"
--
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr "Забрани SELinux защитата за демона lpd"
 -#~ msgid "Squid"
 -#~ msgstr "Squid"
--
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr "Забрани SELinux защитата за демона lrrd"
 -#~ msgid "Allow squid daemon to connect to the network"
 -#~ msgstr "Разрешаване на мрежов достъп на демона squid"
--
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr "Забрани SELinux защитата за демона lvm"
 -#~ msgid "Disable SELinux protection for squid daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона squid"
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Разрешаване на SELinux webadm потребителя да чете домашните директории на "
-+"непривилегированите потребители"
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr "Забрани SELinux защитата за mailman"
  
 -#~ msgid "Disable SELinux protection for ssh daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ssh"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Сигурни ли сте, че искате да изтриете %s '%s'?"
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr "Позволи evolution и thunderbird да четат потребителски файлове"
  
 -#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
 -#~ msgstr "Разрешаване на ssh вход като sysadm_r:sysadm_t"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Изтриване на %s"
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr "Забрани SELinux защитата за демона mdadm"
  
 -#~ msgid ""
 -#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
@@ -21511,199 +32435,88 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Разрешаване на staff_r потребителите да претърсват sysadm домашната "
 -#~ "директория и да четат файлове (като ~/.bashrc примерно)"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Добавяне на %s"
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr "Забрани SELinux защитата за демона monopd"
  
 -#~ msgid "Universal SSL tunnel"
 -#~ msgstr "Универсален SSL тунел"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Промяна на %s"
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr "Позволи браузърът mozilla да чете потребителски файлове"
  
 -#~ msgid "Disable SELinux protection for stunnel daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона stunnel"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Ð\9fаÑ\81ивен"
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° mrtg"
  
 -#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 -#~ msgstr "Разрешаване на демона stunnel да работи самостоятелно, извън xinetd"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Активен"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Изключен"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Състояние"
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr "Забрани SELinux защитата за демона mysqld"
  
 -#~ msgid "Disable SELinux protection for swat daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона swat"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Смяната на типа на политиката ще предизвика преетикиране на цялата система "
-+"следващия рестарт. Преетикирането отнема много време в зависимост от размера "
-+"на файловата система.  Искате ли да продължите?"
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr "Забрани SELinux защитата за демона nagios"
  
 -#~ msgid "Disable SELinux protection for sxid daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона sxid"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"Изключването на SELinux изисква рестарт.  Не е препоръчително.  Ако по-късно "
-+"решите да включите отново SELinux, системата ще трябва да се преетикира.  "
-+"Ако просто искате да видите дали SELinux предизвиква проблем във Вашата "
-+"система, можете да преминете в пасивен режим, който само ще рапортува в "
-+"дневниците грешките и няма да налага SELinux политиката.  Пасивния режим не "
-+"изисква рестарт. Искате ли да продължите?"
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr "Услуга за имена"
  
 -#~ msgid "Disable SELinux protection for syslogd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона syslogd"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Включването на SELinux ще предизвика преетикиране на цялата файлова система "
-+"следващия рестарт. Преетикирането отнема много време в зависимост от размера "
-+"на файловата система.  Искате ли да продължите?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr "Забрани SELinux защитата за демона named"
  
 -#~ msgid "Disable SELinux protection for system cron jobs"
 -#~ msgstr "Изключване на SELinux защитата за системните cron задачи"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr "Забрани SELinux защитата за демона nessusd"
  
 -#~ msgid "Disable SELinux protection for tcp daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона tcp"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Добавяне на SELinux входно съответствие"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Добавяне на SELinux мрежови портове"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux тип"
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr "Забрани SELinux защитата за NetworkManager"
  
 -#~ msgid "Disable SELinux protection for telnet daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона telnet"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"ниво"
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr "Забрани SELinux защитата за демона nfsd"
  
 -#~ msgid "Disable SELinux protection for tftpd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона tftpd"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Файлова спецификация"
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr "Samba"
  
 -#~ msgid "Disable SELinux protection for transproxy daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона transproxy"
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Файлов Ñ\82ип"
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° nmbd"
  
 -#~ msgid "Disable SELinux protection for udev daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона udev"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"всички файлове\n"
-+"нормален файл\n"
-+"директория\n"
-+"знаково устройство\n"
-+"блоково устройство\n"
-+"гнездо\n"
-+"символна връзка\n"
-+"именована тръба\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Добавяне на SELinux потребител"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux администрация"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Добавяне"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Свойства"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Изтриване"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Избор на обект за менажиране"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Изберете:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Основен режим на системата: "
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr "Забрани SELinux защитата за демона nrpe"
  
 -#~ msgid "Disable SELinux protection for uml daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона uml"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr "Забрани SELinux защитата за демона nscd"
  
 -#~ msgid ""
 -#~ "Allow xinetd to run unconfined, including any services it starts that do "
@@ -21711,13 +32524,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Разрешаване на xinetd да стартира неограничени, включително нямащи "
 -#~ "изрично дефиниран преход към домейн услуги"
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Текущ активен режим"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Основен тип политика на системата: "
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr "Забрани SELinux защитата за демона nsd"
  
 -#~ msgid ""
 -#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
@@ -21725,52 +32534,35 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Разрешаване на rc скриптовете да стартират неограничени, включително "
 -#~ "всеки rc скрипт, който няма изрично дефиниран преход към домейн"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Изберете дали искате да преетикирате цялата файлова система на следващото "
-+"рестартиране. Преетикирането може да отнеме много дълго време, в зависимост "
-+"от размера на файловата система.  Ако променяте типове от политиката или "
-+"преминавате от изключена към активна политика, то преетикирането е "
-+"необходимо."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Преетикиране на следващия рестарт."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr "Забрани SELinux защитата за демона ntpd"
  
 -#~ msgid "Allow rpm to run unconfined"
 -#~ msgstr "Разрешаване на rpm да стартира неограничен"
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr "Забрани SELinux защитата за oddjob"
  
 -#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 -#~ msgstr ""
 -#~ "Разрешаване на привилегировани инструменти като hotplug и insmod да "
 -#~ "работят неограничени"
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr "Забрани SELinux защитата за oddjob_mkhomedir"
  
 -#~ msgid "Disable SELinux protection for updfstab daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона updfstab"
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr "Забрани SELinux защитата за демона openvpn"
  
 -#~ msgid "Disable SELinux protection for uptimed daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона uptimed"
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr "Забрани SELinux защитата за демона pam"
  
 -#~ msgid ""
 -#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
@@ -21778,79 +32570,55 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Разрешаване на user_r преход към sysadm_r чрез su, sudo, или userhelper. "
 -#~ "В противен случай, само staff_r може да го прави"
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Филтър"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Добавяне на файлов контекст"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Промяна на файлов контекст"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Изтриване на файлов контекст"
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr "Забрани SELinux защитата за pegasus"
  
 -#~ msgid "Allow users to execute the mount command"
 -#~ msgstr "Разрешаване на потребителите да изпълняват командата mount"
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr "Забрани SELinux защитата за демона perdition"
  
 -#~ msgid "Allow regular users direct mouse access (only allow the X server)"
 -#~ msgstr ""
 -#~ "Разрешаване на обикновените потребители директен достъп до мишката (само "
 -#~ "на X сървъра)"
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr "Забрани SELinux защитата за демона portmap"
  
 -#~ msgid "Allow users to run the dmesg command"
 -#~ msgstr "Разрешаване на потребителите да стартират командата dmesg"
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Ð\94обавÑ\8fне Ð½Ð° SELinux Ñ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82вие Ð·Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел"
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° portslave"
  
 -#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 -#~ msgstr ""
 -#~ "Разрешаване на потребителите да контролират мрежови интерфейси (трябва и "
 -#~ "USERCTL=true за интерфейса)"
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Ð\9fÑ\80омÑ\8fна Ð½Ð° SELinux Ñ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82вие Ð·Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел"
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° postfix"
  
 -#~ msgid "Allow normal user to execute ping"
 -#~ msgstr "Разрешаване на нормалните потребители да стартират ping"
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Ð\98зÑ\82Ñ\80иване Ð½Ð° SELinux Ñ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82вие Ð·Ð° Ð¿Ð¾Ñ\82Ñ\80ебиÑ\82ел"
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr "Ð\97абÑ\80ани SELinux Ð·Ð°Ñ\89иÑ\82аÑ\82а Ð·Ð° Ð´ÐµÐ¼Ð¾Ð½Ð° postgresql"
  
 -#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 -#~ msgstr "Разрешаване на потребителите ч/з noextattrfile (FAT, CDROM, FLOPPY)"
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr "pppd"
  
 -#~ msgid "Allow users to rw usb devices"
 -#~ msgstr "Разрешаване на потребителите ч/з на usb устройства"
-+#: ../gui/system-config-selinux.glade:2374
-+#, fuzzy
-+msgid "Add User"
-+msgstr "Добавяне на %s"
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr "Позволи pppd да бъде стартиран за нормален потребител"
  
 -#~ msgid ""
 -#~ "Allow users to run TCP servers (bind to ports and accept connection from "
@@ -21861,135 +32629,73 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "портове и да приемат връзки от същия домейн и външни потребители).  "
 -#~ "Забраната на това налага ползването на пасивен FTP режим и може да "
 -#~ "промени и други протоколи"
-+#: ../gui/system-config-selinux.glade:2390
-+#, fuzzy
-+msgid "Modify User"
-+msgstr "Промяна на %s"
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr "Забрани SELinux защитата за pptp"
  
 -#~ msgid "Allow user to stat ttyfiles"
 -#~ msgstr "Разрешаване на потребителите stat върху tty файлове"
-+#: ../gui/system-config-selinux.glade:2406
-+#, fuzzy
-+msgid "Delete User"
-+msgstr "Изтриване на %s"
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr "Забрани SELinux защитата за демона prelink"
  
 -#~ msgid "Disable SELinux protection for uucpd daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона uucpd"
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr "Забрани SELinux защитата за демона privoxy"
  
 -#~ msgid "Disable SELinux protection for vmware daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона vmware"
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Добавяне на превод"
+-
 -#~ msgid "Disable SELinux protection for watchdog daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона watchdog"
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Промяна на превод"
+-
 -#~ msgid "Disable SELinux protection for winbind daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона winbind"
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Изтриване на превод"
+-
 -#~ msgid "Disable SELinux protection for xdm daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона xdm"
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
+-
 -#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
 -#~ msgstr "Разрешаване на xdm вход като sysadm_r:sysadm_t"
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Добавяне на мрежов порт"
+-
 -#~ msgid "Disable SELinux protection for xen daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона xen"
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Редакция на мрежов порт"
+-
 -#~ msgid "XEN"
 -#~ msgstr "XEN"
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Изтриване на мрежов порт"
+-
 -#~ msgid "Allow xen to read/write physical disk devices"
 -#~ msgstr "Разрешаване на xen да чете/пише физически дискови устройства"
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
+-
 -#~ msgid "Disable SELinux protection for xfs daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона xfs"
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Генериране на нов модул с политика"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Зареждане на модул с политика"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Деактивиране на зареждаем модул с политика"
-+#: ../gui/system-config-selinux.glade:3059
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid "Disable SELinux protection for xen control"
 -#~ msgstr "Изключване на SELinux защитата за xen constrol"
 -
 -#~ msgid "Disable SELinux protection for ypbind daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ypbind"
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"Спиране на допълнителните одит правила, които нормално не се рапортуват във "
-+"файловете на дневника."
+-
 -#~ msgid "Disable SELinux protection for NIS Password Daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона за NIS пароли"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
+-
 -#~ msgid "Disable SELinux protection for ypserv daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона ypserv"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
+-
 -#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
 -#~ msgstr "Изключване на SELinux защитата за демона NIS трансфери"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
+-
 -#, fuzzy
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to manage unprivileged users home directories"
 -#~ msgstr ""
 -#~ "Разрешаване на SELinux webadm потребителя да управлява домашните "
 -#~ "директории на непривилегированите потребители"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+#: ../gui/system-config-selinux.glade:3354
- #, fuzzy
+-
+-#, fuzzy
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to read unprivileged users home directories"
 -#~ msgstr ""
@@ -22014,12 +32720,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgid "Enforcing"
 -#~ msgstr "Активен"
 -
--#~ msgid "Disabled"
--#~ msgstr "Изключен"
--
--#~ msgid "Status"
--#~ msgstr "Състояние"
--
 -#~ msgid ""
 -#~ "Changing the policy type will cause a relabel of the entire file system "
 -#~ "on the next boot. Relabeling takes a long time depending on the size of "
@@ -22055,42 +32755,30 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -
 -#~ msgid "system-config-selinux"
 -#~ msgstr "system-config-selinux"
-+msgid "label59"
-+msgstr "label50"
+-
 -#~ msgid ""
 -#~ "Copyright (c)2006 Red Hat, Inc.\n"
 -#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 -#~ msgstr ""
 -#~ "Copyright (c)2006 Red Hat, Inc.\n"
 -#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "Необходим е SELinux потребител '%s'"
+-
 -#~ msgid "Add SELinux Login Mapping"
 -#~ msgstr "Добавяне на SELinux входно съответствие"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Ниво на чувствителност"
+-
 -#~ msgid "Add SELinux Network Ports"
 -#~ msgstr "Добавяне на SELinux мрежови портове"
-+#~ msgid "Modify SELinux User"
-+#~ msgstr "Промяна на SELinux потребител"
+-
 -#~ msgid "SELinux Type"
 -#~ msgstr "SELinux тип"
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "не се поддържат преводи на машини без MLS"
- #~ msgid ""
- #~ "tcp\n"
-@@ -2753,175 +3615,6 @@
- #~ "tcp\n"
- #~ "udp"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
 -#~ msgid ""
 -#~ "SELinux MLS/MCS\n"
 -#~ "Level"
@@ -22152,10 +32840,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -
 -#~ msgid "Current Enforcing Mode"
 -#~ msgstr "Текущ активен режим"
--
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr "Забрани SELinux защитата за демона ptal"
 -#~ msgid "System Default Policy Type: "
 -#~ msgstr "Основен тип политика на системата: "
--
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr "Забрани SELinux защитата за демона pxe"
 -#~ msgid ""
 -#~ "Select if you wish to relabel then entire file system on next reboot.  "
 -#~ "Relabeling can take a very long time, depending on the size of the "
@@ -22167,82 +32861,165 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ "зависимост от размера на файловата система.  Ако променяте типове от "
 -#~ "политиката или преминавате от изключена към активна политика, то "
 -#~ "преетикирането е необходимо."
--
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr "Забрани SELinux защитата за pyzord"
 -#~ msgid "Relabel on next reboot."
 -#~ msgstr "Преетикиране на следващия рестарт."
--
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr "Забрани SELinux защитата за демона quota"
 -#~ msgid "label37"
 -#~ msgstr "label37"
--
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr "Забрани SELinux защитата за демона radiusd"
 -#~ msgid "Filter"
 -#~ msgstr "Филтър"
--
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr "Забрани SELinux защитата за демона radvd"
 -#~ msgid "label50"
 -#~ msgstr "label50"
--
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr "Забрани SELinux защитата за rdisc"
 -#~ msgid "Add File Context"
 -#~ msgstr "Добавяне на файлов контекст"
--
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr "Забрани SELinux защитата за readahead"
 -#~ msgid "Modify File Context"
 -#~ msgstr "Промяна на файлов контекст"
--
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
++"Позволи програми да четат файлове в нестандартни местоположения (default_t)"
 -#~ msgid "Delete File Context"
 -#~ msgstr "Изтриване на файлов контекст"
--
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr "Забрани SELinux защитата за restorecond"
 -#~ msgid "label38"
 -#~ msgstr "label38"
--
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr "Забрани SELinux защитата за демона rhgb"
 -#~ msgid "Add SELinux User Mapping"
 -#~ msgstr "Добавяне на SELinux съответствие за потребител"
--
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr "Забрани SELinux защитата за ricci"
 -#~ msgid "Modify SELinux User Mapping"
 -#~ msgstr "Промяна на SELinux съответствие за потребител"
--
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr "Забрани SELinux защитата за ricci_modclusterd"
 -#~ msgid "Delete SELinux User Mapping"
 -#~ msgstr "Изтриване на SELinux съответствие за потребител"
--
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr "Забрани SELinux защитата за демона rlogind"
 -#~ msgid "label39"
 -#~ msgstr "label39"
--
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr "Забрани SELinux защитата за демона rpcd"
 -#~ msgid "Add Translation"
 -#~ msgstr "Добавяне на превод"
--
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr "Забрани SELinux защитата за rshd"
 -#~ msgid "Modify Translation"
 -#~ msgstr "Промяна на превод"
--
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr "rsync"
 -#~ msgid "Delete Translation"
 -#~ msgstr "Изтриване на превод"
--
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr "Забрани SELinux защитата за демона rsync"
 -#~ msgid "label41"
 -#~ msgstr "label41"
--
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr "Позволи ssh да бъде стартиран от inetd вместо да работи като демон"
 -#~ msgid "Modify SELinux User"
 -#~ msgstr "Промяна на SELinux потребител"
--
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr "Позволи Samba да споделя nfs директории"
 -#~ msgid "label40"
 -#~ msgstr "label40"
--
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr "SASL удостоверяващ сървър"
 -#~ msgid "Add Network Port"
 -#~ msgstr "Добавяне на мрежов порт"
--
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr "Позволи sasl удостоверяващият сървър да чете /etc/shadow"
 -#~ msgid "Edit Network Port"
 -#~ msgstr "Редакция на мрежов порт"
--
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
++"Позволи X-Windows сървъра да назначава региони от паметта едновременно като "
++"изпълними и записваеми"
 -#~ msgid "Delete Network Port"
 -#~ msgstr "Изтриване на мрежов порт"
--
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr "Забрани SELinux защитата за демона saslauthd"
 -#~ msgid "label42"
 -#~ msgstr "label42"
--
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr "Забрани SELinux защитата за демона scannerdaemon"
 -#~ msgid "Generate new policy module"
 -#~ msgstr "Генериране на нов модул с политика"
--
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr "Не позволявай transition към sysadm_t, извършвани sudo и su"
 -#~ msgid "Load policy module"
 -#~ msgstr "Зареждане на модул с политика"
--
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr "Не позволявай на никой от процесите да зарежда модули към ядрото"
 -#~ msgid "Remove loadable policy module"
 -#~ msgstr "Деактивиране на зареждаем модул с политика"
--
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
++"Не позволявай на никой от процесите да модифицира kernel SELinux политиката"
 -#, fuzzy
 -#~ msgid ""
 -#~ "Enable/Disable additional audit rules, that are normally not reported in "
@@ -22250,2134 +33027,1841 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils
 -#~ msgstr ""
 -#~ "Спиране на допълнителните одит правила, които нормално не се рапортуват "
 -#~ "във файловете на дневника."
--
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr "Забрани SELinux защитата за демона sendmail"
 -#~ msgid "label44"
 -#~ msgstr "label44"
--
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr "Забрани SELinux защитата за setrans"
 -#~ msgid "Sensitvity Level"
 -#~ msgstr "Ниво на чувствителност"
--
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr "Забрани SELinux защитата за демона setroubleshoot"
 -#~ msgid "SELinux user '%s' is required"
 -#~ msgstr "Необходим е SELinux потребител '%s'"
--
- #~ msgid "Requires value"
- #~ msgstr "Изисква стойност"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreutils-2.0.85/po/bn_IN.po
---- nsapolicycoreutils/po/bn_IN.po     2011-02-17 15:11:24.953737714 -0500
-+++ policycoreutils-2.0.85/po/bn_IN.po 2011-02-18 16:03:41.345975583 -0500
-@@ -2,17 +2,18 @@
- # 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.
-+# Runa Bhattacharjee <runab@redhat.com>, 2006, 2010.
- # Runa Bhattacharjee <runabh@gmail.com>, 2007.
- # Runa Bhattacharjee <runab@fedoraproject.org>, 2008.
- msgid ""
- msgstr ""
- "Project-Id-Version: policycoreutils.HEAD\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-04 18:56+0530\n"
--"Last-Translator: Runa Bhattacharjee <runab@fedoraproject.org>\n"
--"Language-Team: Bengali INDIA <fedora-trans-bn_IN@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-02 17:47+0530\n"
-+"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
-+"Language-Team: Bengali INDIA <anubad@lists.ankur.org.in>\n"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-@@ -21,6 +22,23 @@
- "\n"
- "\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "গ্রাফিক্যাল পরিবেশে SELinux কনফিগার করুন"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux পরিচালনা"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux নিয়মনীতির মডিউল নির্মাণ করুন"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux Policy নির্মাণের সামগ্রী"
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -110,9 +128,8 @@
- msgstr "semanage সংযোগ স্থাপন করা যায়নি"
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr "Забрани SELinux защитата за демона slapd"
  
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s'র ক্ষেত্রে MLS রেঞ্জ নির্ধারণ করা যায়নি"
-+msgstr "MLS-র সক্রিয় অবস্থা পরীক্ষা করা যায়নি"
+-#~ msgid "Requires value"
+-#~ msgstr "Изисква стойност"
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr "Забрани SELinux защитата за демона slrnpull"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -121,35 +138,36 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s খুলতে ব্যর্থ: MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না: %s"
-+msgstr "%s খুলতে ব্যর্থ: MLS-বিহীন মেশিনের মধ্যে অনুবাদ সমর্থিত নয়: %s"
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Друид за генериране на SELinux политики"
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr "Забрани SELinux защитата за демона smbd"
  
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "স্তর"
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr "Забрани SELinux защитата за демона snmpd"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "অনুবাদ"
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr "Забрани SELinux защитата за демона snort"
  
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "অনুবাদের মধ্যে শূণ্যস্থান ব্যবহার করা যাবে না '%s' "
-+msgstr "অনুবাদের মধ্যে শূণ্যস্থান থাকা চলবে না '%s' "
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr "Забрани SELinux защитата за демона soundd"
  
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr "স্তর বৈধ নয় '%s' "
-+msgstr "অবৈধ স্তর '%s' "
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr "Забрани SELinux защитата за демона sound"
  
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "অনুবাদের মধ্যে %s বর্তমানে ব্যাখ্যা করা হয়েছে"
-+msgstr "অনুবাদের মধ্যে %s পূর্বেই ব্যাখ্যা করা হয়েছে"
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr "Spam защита"
  
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "অনুবাদের মধ্যে %s'র ব্যাখ্যা করা হয়নি"
-+msgstr "অনুবাদের মধ্যে %s ব্যাখ্যা করা হয়নি"
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr "Забрани SELinux защитата за демона spamd"
  
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
-@@ -157,769 +175,770 @@
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr "Позволи на spamd достъп до домашните директории"
  
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage ট্রানস্যাকশন বর্তমানে চলছে"
+-#, fuzzy
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Разрешаване на ограничаваното приложение/потребител да се слуша на всеки "
+-#~ "tcp порт"
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr "Позволи на Spam Assassin демона достъп до мрежата"
  
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি"
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Ползвайте този бутон отметка, ако вашето приложение извиква bindresvport "
+-#~ "с 0."
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr "Забрани SELinux защитата за демона speedmgmt"
  
- #: ../semanage/seobject.py:309
 -#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি"
-+msgstr "semanage আদান-প্রদান সমাপ্ত করা যায়নি"
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Разрешаване на приложението/потребителя да слуша на всеки tcp порт > 1024"
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr "Squid"
  
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage বর্তমানে চলছে না"
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Нерезервирани портове  (> 1024)"
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr "Позволи на squid демона да се свързва към мрежата"
  
- #: ../semanage/seobject.py:325
 -#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux ব্যবহারকারীদের তালিকা নির্মাণ করা যায়নি"
-+msgstr "SELinux মডিউলের তালিকা নির্মাণ করা যায়নি"
- #: ../semanage/seobject.py:336
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Въведете разделен с запетаи списък от tcp портове, на които това "
+-#~ "приложение слуша. "
+-
+-#~ msgid "label34"
+-#~ msgstr "label34"
+-
+-#~ msgid "label35"
+-#~ msgstr "label35"
+-
 -#, fuzzy
- msgid "Permissive Types"
--msgstr "Permissive (সতর্কতামূলক)"
-+msgstr "Permissive (সতর্কতামূলক) ধরন"
+-#~ msgid "label51"
+-#~ msgstr "label25"
+-
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Активен\n"
+-#~ "Пасивен\n"
+-#~ "Изключен\n"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule·-i·%s\n"
+-#~ "\n"
+-
+-#~ msgid "value"
+-#~ msgstr "стойност"
+-
+-#~ msgid "Other"
+-#~ msgstr "Друго"
+-
+-#~ msgid ""
+-#~ "Application uses nsswitch or translates UID's (daemons that run as non "
+-#~ "root)"
+-#~ msgstr ""
+-#~ "Приложението ползва nsswitch или превежда потребителски ID-та (UID, "
+-#~ "демони, които работят не като root)"
+-
+-#~ msgid "Files and Directories"
+-#~ msgstr "Файлове и директории"
+-
+-#~ msgid "Generate policy in this directory"
+-#~ msgstr "Генериране на политика в тази директория"
+-
+-#~ msgid "Incoming Network Port Connections"
+-#~ msgstr "Входящи портове за мрежови връзки"
+-
+-#~ msgid "Name of application to be confined"
+-#~ msgstr "Име на приложението за ограничаване"
+-
+-#~ msgid "Outgoing Network Port Connections"
+-#~ msgstr "Изходящи мрежови връзки"
+-
+-#~ msgid ""
+-#~ "Select Terminal Login User, if this user will login to a machine only via "
+-#~ "a terminal or remote login"
+-#~ msgstr ""
+-#~ "Изберете конзолен потребител ако това е потребител, който ще влиза на "
+-#~ "машина само през терминал или отдалечено"
+-
+-#~ msgid ""
+-#~ "Select XWindows login user, if this is a user who will login to a machine "
+-#~ "via X"
+-#~ msgstr ""
+-#~ "Изберете XWindows потребител ако това е потребител, който ще влиза на "
+-#~ "машината през X"
+-
+-#~ msgid "Terminal Login User"
+-#~ msgstr "Конзолен потребител"
+-
+-#~ msgid "XWindows Login User"
+-#~ msgstr "XWindows потребител"
+-
+-#~ msgid "Login"
+-#~ msgstr "Потребител"
+-
+-#~ msgid "Allow direct login to the console device. Requiered for System 390"
+-#~ msgstr ""
+-#~ "Разрешаване на директен вход на конзолното устройство. Необходимо е за "
+-#~ "System 390"
+-
+-#~ msgid "Allow cvs daemon to read shadow"
+-#~ msgstr "Разрешаване на cvs демона да чете shadow файла"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their heap memory executable.  Doing "
+-#~ "this is a really bad idea. Probably indicates a badly coded executable, "
+-#~ "but could indicate an attack. This executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Разрешаване на неконфигурирани програми да правят своята динамична памет "
+-#~ "изпълнима.  Това наистина е много лоша идея. По всяка вероятност индикира "
+-#~ "зле кодирано приложение, но може да индикира атака. Това приложение "
+-#~ "следва да се рапортува в bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to map a memory region as both executable "
+-#~ "and writable, this is dangerous and the executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Разрешаване на неограничените изпълними файлове да заделят области памет "
+-#~ "за изпълнение и писане едновременно, това е опасно и тези файлове следва "
+-#~ "да се рапортуват в bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow all unconfined executables to use libraries requiring text "
+-#~ "relocation that are not labeled textrel_shlib_t"
+-#~ msgstr ""
+-#~ "Разрешаване на всички неограничени приложения да ползват библиотеки, "
+-#~ "които изискват преместване на кода, а не са етикирани като textrel_shlib_t"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their stack executable.  This should "
+-#~ "never, ever be neessary. Probably indicates a badly coded executable, but "
+-#~ "could indicate an attack. This executable should be reported in bugzilla"
+-#~ msgstr ""
+-#~ "Разрешаване на всички неограничени програми да правят стека си изпълним.  "
+-#~ "Това абсолютно никога не би трябвало да е необходимо. По всяка вероятност "
+-#~ "индикира зле кодирано приложение, но може да показва и атака. Това "
+-#~ "приложение следва да се рапортува в bugzilla"
+-
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
+-
+-#~ msgid "Allow ftpd to full access to the system"
+-#~ msgstr "Разрешаване на ftpd пълен достъп до системата"
+-
+-#~ msgid ""
+-#~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Разрешаване на ftpd да качва файлове в директории етикирани като "
+-#~ "public_content_rw_t"
+-
+-#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Разрешаване на ftp сървърите да ползват cifs за публични услуги за "
+-#~ "споделяне на файлове"
+-
+-#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Разрешаване на ftp сървърите да ползват nfs за публични услуги за "
+-#~ "споделяне на файлове"
+-
+-#~ msgid "Allow gpg executable stack"
+-#~ msgstr "Разрешаване на gpg на изпълним стек"
+-
+-#~ msgid "Allow gssd to read temp directory"
+-#~ msgstr "Разрешаване на gssd да чете /tmp"
+-
+-#~ msgid ""
+-#~ "Allow httpd daemon to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Разрешаване на демона httpd да пише файлове в директории етикирани като "
+-#~ "public_content_rw_t"
+-
+-#~ msgid "Allow Apache to communicate with avahi service"
+-#~ msgstr "Разрешаване на Apache да комуникира с услугата avahi"
+-
+-#~ msgid "Allow Apache to use mod_auth_pam"
+-#~ msgstr "Разрешаване на Apache да ползва mod_auth_pam"
+-
+-#~ msgid ""
+-#~ "Allow httpd scripts to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Разрешаване на httpd скриптовете да пишат файлове в директориите "
+-#~ "етикирани като public_content_rw_t"
+-
+-#~ msgid "Allow daemons to use kerberos files"
+-#~ msgstr "Разрешаване на демоните да ползват kerberos файлове"
+-
+-#~ msgid ""
+-#~ "Allow nfs servers to modify public files used for public file transfer "
+-#~ "services"
+-#~ msgstr ""
+-#~ "Разрешаване на nfs сървърите да променят публични файлове ползвани за "
+-#~ "общодостъпни услуги за трансфер на файлове"
+-
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Полиинстанциране"
+-
+-#~ msgid "Enable polyinstantiated directory support"
+-#~ msgstr "Включване на поддръжката за полиинстанциране на директории"
+-
+-#~ msgid "Allow sysadm_t to debug or ptrace applications"
+-#~ msgstr ""
+-#~ "Разрешаване на sysadm_t да търси грешки в или ползва ptrace върху "
+-#~ "приложения"
+-
+-#~ msgid ""
+-#~ "Allow rsync to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Разрешаване на rsync да пише файлове в директории етикирани като "
+-#~ "public_content_rw_t"
+-
+-#~ msgid ""
+-#~ "Allow Samba to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Разрешаване на Samba да пише файлове в директории етикирани като "
+-#~ "public_content_rw_t"
+-
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
+-
+-#~ msgid "Allow zebra daemon to write it configuration files"
+-#~ msgstr "Разрешаване на zebra демона да пише в конфигурационните си файлове"
+-
+-#~ msgid ""
+-#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
+-#~ msgstr ""
+-#~ "Разрешаване на системните cron задачи да преетикират файловата система с "
+-#~ "цел възстановяване на контекста на файловете"
+-
+-#~ msgid "Enable extra rules in the cron domain to support fcron"
+-#~ msgstr ""
+-#~ "Включване на допълнителни правила в домейна на cron за поддръжка на fcron"
+-
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона ftpd"
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr "Забрани SELinux защитата за демона squid"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "permissive ডোমেইন %s নির্ধারণ করা যায়নি (মডিউল ইনস্টল করতে ব্যর্থ)"
+-#~ msgid "Allow ftpd to run directly without inetd"
+-#~ msgstr "Разрешаване на ftpd да работи директно, без inetd"
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr "Забрани SELinux защитата за демона ssh"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "permissive ডোমেইন %s সরিয়ে ফেলা যায়নি (অপসারণ করতে ব্যর্থ)"
+-#~ msgid "Allow ftp to read/write files in the user home directories"
+-#~ msgstr ""
+-#~ "Разрешаване на ftp да чете/пише файлове в домашните директории на "
+-#~ "потребителите"
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr "Позволи ssh влизания като sysadm_r:sysadm_t"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s'র জন্য কি নির্মাণ করা যায়নি"
+-#~ msgid ""
+-#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
+-#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
+-#~ "urandom"
+-#~ msgstr ""
+-#~ "Това следва да бъде включено когато всички програми са компилирани с "
+-#~ "ProPolice/SSP защита от счупване на стека.  На всички домейни ще бъде "
+-#~ "разрешено да четат от /dev/urandom"
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
++"Позволи staff_r потребители да търсят в домашната директория на sysadm и да "
++"четат файлове (като ~/.bashrc)"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
+-#~ msgid "Allow HTTPD to support built-in scripting"
+-#~ msgstr "Разрешаване на HTTPD да поддържа вградените му скриптове"
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr "Универсален SSL тунел"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা বর্তমানে নির্ধারিত হয়েছে"
+-#~ msgid "Allow HTTPD to send mail"
+-#~ msgstr "Разрешаване на HTTPD да изпраща поща"
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr "Забрани SELinux защитата за демона stunnel"
  
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux ব্যবহারকারী %s বর্তমানে উপস্থিত নেই"
-+msgstr "Linux দল %s বর্তমানে উপস্থিত নেই"
+-#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
+-#~ msgstr ""
+-#~ "Разрешаване на HTTPD скриптове и модули да се свързват мрежово с бази "
+-#~ "данни"
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr "Позволи stunnel демона да работи самостоятелно, извън xinetd"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux ব্যবহারকারী %s বর্তমানে উপস্থিত নেই"
+-#~ msgid "Allow HTTPD scripts and modules to connect to the network"
+-#~ msgstr "Разрешаване на HTTPD скриптове и модули да се свързват в мрежата"
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr "Забрани SELinux защитата за демона swat"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s'র নাম নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s'র ক্ষেত্রে MLS রেঞ্জ নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s'র ক্ষেত্রে SELinux ব্যবহারকারী নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা যোগ করা যায়নি"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ব্যবহারকারী ম্যাপার যোগ করা হবে"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser অথবা serange আবশ্যক"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা নির্ধারিত হয়নি"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s'র ক্ষেত্রে seuser কোয়েরি করা যায়নি"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা পরিবর্তন করা যায়নি"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "%s'র জন্য লগ-ইন ম্যাপিং ব্যবস্থা নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে মুছে ফেলা সম্ভব "
- "নয়"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "লগ-ইন ম্যাপিং তালিকাভুক্ত করা যায়নি"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "লগ-ইন নাম"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux ব্যবহারকারী"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS সীমা"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s'র ক্ষেত্রে ফাইল context যোগ করা যায়নি"
-+msgstr "%s'র অন্তত একটি ভূমিকা যোগ করা আবশ্যক"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য নির্ধারিত কিনা পরীক্ষা করা যায়নি"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য বর্তমানে নির্ধারিত হয়েছে"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s'র জন্য SELinux ব্যবহারকারী নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s ভূমিকাটি, %s'র জন্য নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s'র ক্ষেত্রে MLS স্তর নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s প্রেফিক্সটি %s'র ক্ষেত্রে যোগ করা যায়নি"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s'র জন্য কি প্রাপ্ত করা যায়নি"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ব্যবহারকারী %s যোগ করা যায়নি"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "প্রেফিক্স, ভূমিকা, স্তর অথবা রেঞ্জ উল্লেখ করা আবশ্যক"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "প্রেফিক্স অথবা ভূমিকা উল্লেখ করা আবশ্যক"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য নির্ধারিত হয়নি"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s'র জন্য ব্যবহারকারী কোয়েরি করা যায়নি"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য পরিবর্তন করা যায়নি"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য নিয়মনীতির মধ্যে নির্ধারিত হয়েছে যার ফলে "
- "অপসারণযোগ্য নয়"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ব্যবহারকারী %s মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ব্যবহারকারীদের তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "ব্যবহারকারী %s'র ভূমিকার তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "লেবেল ব্যবস্থা"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "প্রেফিক্স"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS স্তর"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS সীমা"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux রোল"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "udp অথবা tcp প্রোটোকল আবশ্যক"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "পোর্ট উল্লেখ করা আবশ্যক"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s'র জন্য কি নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ধরন উল্লেখ করা আবশ্যক"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "পোর্ট %s/%s নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "পোর্ট %s/%s বর্তমানে নির্ধারিত আছে"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s'র জন্য পোর্ট নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s'র জন্য context নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s'র ক্ষেত্রে পোর্ট context'র মধ্যে ব্যবহারকারী নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s'র ক্ষেত্রে পোর্ট context'র মধ্যে ভূমিকা নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s'র ক্ষেত্রে পোর্ট context'র মধ্যে ধরন নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s'র ক্ষেত্রে পোর্ট context'র মধ্যে mls ক্ষেত্র নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s'র ক্ষেত্রে পোর্ট context নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s পোর্ট যোগ করা যায়নি"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype অথবা serange আবশ্যক"
+-#~ msgid "Allow httpd to act as a relay"
+-#~ msgstr "Разрешаване на httpd да работи като ретранслатор"
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr "Забрани SELinux защитата за демона sxid"
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype আবশ্যক"
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона httpd"
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr "Забрани SELinux защитата за демона syslogd"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "%s/%s পোর্ট নির্ধারিত হয়নি"
+-#~ msgid "Allow HTTPD cgi support"
+-#~ msgstr "Разрешаване на HTTPD на cgi поддръжка"
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr "Забрани SELinux защитата за системните cron задачи"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "%s/%s পোর্ট কোয়েরি করা যায়নি"
+-#~ msgid "Allow HTTPD to run as a ftp server"
+-#~ msgstr "Разрешаване на HTTPD да работи като ftp сървър"
+-
+-#~ msgid "Allow HTTPD to read home directories"
+-#~ msgstr "Разрешаване на HTTPD да чете домашните директории"
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr "Забрани SELinux защитата за демона tcp"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "%s/%s পোর্ট পরিবর্তন করা যায়নি"
+-#~ msgid ""
+-#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
+-#~ "scripts"
+-#~ msgstr ""
+-#~ "Разрешаване на HTTPD да стартира SSI програми в същия домейн като "
+-#~ "системните CGI скриптове"
+-
+-#~ msgid ""
+-#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
+-#~ "certificates"
+-#~ msgstr ""
+-#~ "Разрешаване на HTTPD да комуникира със терминала.  Необходимо е за "
+-#~ "поддръжка на сертификати (с парола)"
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr "Забрани SELinux защитата за демона telnet"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "পোর্টের তালিকা নির্মাণ করা যায়নি"
+-#~ msgid "Unify HTTPD handling of all content files"
+-#~ msgstr "Унифициране работата на HTTPD с всички файлове със съдържание"
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr "Забрани SELinux защитата за демона tftpd"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "%s পোর্ট মুছে ফেলা যায়নি"
+-#~ msgid "Allow named to overwrite master zone files"
+-#~ msgstr "Разрешаване на named да презаписва главните зонови файлове"
+-
+-#~ msgid "Allow NFS to share any file/directory read only"
+-#~ msgstr "Разрешаване на NFS да споделя всеки файл/директория за четене"
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr "Забрани SELinux защитата за демона transproxy"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "%s/%s পোর্টটি নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
+-#~ msgid "Allow NFS to share any file/directory read/write"
+-#~ msgstr "Разрешаване на NFS да споделя всеки файл/директория за четене/запис"
+-
+-#~ msgid "Allow openvpn service access to users home directories"
+-#~ msgstr ""
+-#~ "Разрешаване на openvpn услугата достъп до потребителските домашни "
+-#~ "директории"
+-
+-#~ msgid "Allow pppd daemon to insert modules into the kernel"
+-#~ msgstr "Разрешаване на демона pppd да вмъква модули в ядрото"
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr "Забрани SELinux защитата за демона udev"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "%s/%s পোর্ট মুছে ফেলা যায়নি"
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона pppd"
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr "Забрани SELinux защитата за демона uml"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "পোর্টের তালিকা নির্মাণ করা যায়নি"
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона mozilla ppp"
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
++"Позволи xinetd да работи неограничено, включително които и да са услуги, "
++"които той стартира, които нямат изрично дефиниран domain transition"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux পোর্টের ধরন"
+-#~ msgid "Allow programs to read untrusted content without relabel"
+-#~ msgstr ""
+-#~ "Разрешаване на програмите да четат несигурно съдържание без преетикиране"
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
++"Позволи rc скриптове да работят неограничено, включително който и да е "
++"демон, стартиран от rc скрипт, който няма изрично дефиниран domain transition"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "প্রোটো"
+-#~ msgid "Allow Samba to share users home directories"
+-#~ msgstr "Разрешаване на Samba да споделя потребителски домашни директории"
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr "Позволи rpm да работи неограничено"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "পোর্ট সংখ্যা"
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
++"Позволи привилегировани инструменти като hotplug и insmod да работят "
++"неограничено"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "পোর্ট উল্লেখ করা আবশ্যক"
-+msgstr "নোডের ঠিকানা উল্লেখ করা আবশ্যক"
+-#~ msgid "Allow spammassasin to access the network"
+-#~ msgstr "Разрешаване на мрежов достъп на spammassasin"
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr "Забрани SELinux защитата за демона updfstab"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "পোর্ট উল্লেখ করা আবশ্যক"
-+msgstr "নোডের নেটমাস্ক উল্লেখ করা আবশ্যক"
+-#~ msgid "Use lpd server instead of cups"
+-#~ msgstr "Ползване на lpd сървър вместо cups"
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr "Забрани SELinux защитата за демона uptimed"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "প্রোটোকল অজানা অথবা অনুপস্থিত"
+-#~ msgid "Support NFS home directories"
+-#~ msgstr "Поддръжка на NFS домашни директории"
+-
+-#~ msgid "Allow users to login with CIFS home directories"
+-#~ msgstr "Разрешаване на потребителите да влизат с CIFS домашна директория"
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++"Позволи user_r да достига sysadm_r чрез su, sudo, или userhelper. Иначе само "
++"staff_r го може"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux Type আবশ্যক"
+-#~ msgid ""
+-#~ "Allow web applications to write untrusted content to disk (implies read)"
+-#~ msgstr ""
+-#~ "Разрешаване на уеб приложенията да пишат несигурно съдържание върху диска "
+-#~ "(включва четене)"
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr "Позволи потребители да стартират командата mount"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s'র কি নির্মাণ করা যায়নি"
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "Изключване на SELinux защитата за демона zebra"
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++"Позволи на нормални потребители директен достъп до мишката (позволи само X "
++"сървъра)"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "পোর্ট %s/%s নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
-+msgstr "addr %s নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
+-#~ msgid "Allow httpd to access samba/cifs file systems"
+-#~ msgstr "Разрешаване достъп на httpd до samba/cifs файлови системи"
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr "Позволи потребители да стартират командата dmesg"
  
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "পোর্ট %s/%s বর্তমানে নির্ধারিত আছে"
-+msgstr "addr %s বর্তমানে নির্ধারিত আছে"
+-#~ msgid "Allow httpd to access nfs file systems"
+-#~ msgstr "Разрешаване достъп на httpd до nfs файлови системи"
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++"Позволи потребителите да контролират мрежови интерфейси (нужно е също "
++"USERCTL=true)"
  
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s'র জন্য কি নির্মাণ করা যায়নি"
-+msgstr "%s-র জন্য addr নির্মাণ করা যায়নি"
+-#~ msgid ""
+-#~ "Allow samba to act as the domain controller, add users, groups and change "
+-#~ "passwords"
+-#~ msgstr ""
+-#~ "Разрешаване на samba да работи като домейн контролер, добавя потребители, "
+-#~ "групи и да променя пароли"
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr "Позволи нормален потребител да стартира ping"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s'র জন্য context নির্মাণ করা যায়নি"
+-#~ msgid "Allow Samba to share any file/directory read only"
+-#~ msgstr ""
+-#~ "Разрешаване на Samba да споделя всеки файл/директория само за четене"
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr "Позволи потребител да чете/пише noextattrfile (FAT, CDROM, FLOPPY)"
  
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s'র নাম নির্ধারণ করা যায়নি"
-+msgstr "%s-র মাস্ক নির্ধারণ করা যায়নি"
+-#~ msgid "Allow Samba to share any file/directory read/write"
+-#~ msgstr ""
+-#~ "Разрешаване на Samba да споделя всеки файл/директория за четене/запис"
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr "Позволи потребителите да четат/пишат usb устройства"
  
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
-+msgstr "%s'র ক্ষেত্রে addr context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
+-#~ msgid ""
+-#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
+-#~ msgstr ""
+-#~ "Разрешаване на Samba да стартира неконфигурирани скриптове в директория /"
+-#~ "var/lib/samba/scripts"
+-
+-#~ msgid ""
+-#~ "Enable additional audit rules, that are normally not reported in the log "
+-#~ "files."
+-#~ msgstr ""
+-#~ "Разрешаване на допълнителните одит правила, които нормално не се "
+-#~ "рапортуват във файловете на дневника."
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++"Позволи потребители да стартират TCP сървъри (привързване към портове и "
++"приемане на връзки от същата среда и външни потребители)  забраната на това "
++"налага FTP passive режим и може да промени други протоколи"
  
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ভূমিকা নির্ধারণ করা যায়নি"
-+msgstr "%s'র ক্ষেত্রে addr context'এ ভূমিকা নির্ধারণ করা যায়নি"
+-#~ msgid "Group/ungroup network ports by SELinux type."
+-#~ msgstr "Групиране/разгрупиране на мрежовите портове по SELinux тип."
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr "Позволи на потребител stat ttyfiles"
  
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ধরন নির্ধারণ করা যায়নি"
-+msgstr "%s'র ক্ষেত্রে addr context'এ ধরন নির্ধারণ করা যায়নি"
+-#~ msgid "Label Prefix"
+-#~ msgstr "Префикс на етикета"
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr "Забрани SELinux защитата за демона uucpd"
  
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s'র ক্ষেত্রে ফাইলের context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
-+msgstr "%s'র ক্ষেত্রে addr context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "MLS/MCS ниво"
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr "Забрани SELinux защитата за демона vmware"
  
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s'র ক্ষেত্রে ফাইলের context নির্ধারণ করা যায়নি"
-+msgstr "%s'র ক্ষেত্রে addr context নির্ধারণ করা যায়নি"
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr ""
+-#~ "Префикс\n"
+-#~ "на етикета"
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr "Забрани SELinux защитата за демона watchdog"
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s পোর্ট যোগ করা যায়নি"
-+msgstr "%s addr যোগ করা যায়নি"
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS ниво"
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr "Забрани SELinux защитата за демона winbind"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Следва да сте root за да стартирате %s."
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr "Забрани SELinux защитата за демона xdm"
++
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr "Позволи xdm влизания като sysadm_r:sysadm_t"
++
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr "Забрани SELinux защитата за демона xen"
++
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr "XEN"
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr "Позволи xen да чете/пише физически дискови устройства"
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr "Забрани SELinux защитата за демона xfs"
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr "Забрани SELinux защитата за xen control"
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr "Забрани SELinux защитата за демона ypbind"
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr "Забрани SELinux защитата за демона NIS Password"
++
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr "Забрани SELinux защитата за демона ypserv"
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr "Забрани SELinux защитата за демона NIS Transfer"
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++"Позволи SELinux webadm потребител да управлява домашни директории на "
++"непривилегировани потребители"
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++"Позволи SELinux webadm потребител да чете домашни директории на "
++"непривилегировани потребители"
++
++#: ../gui/semanagePage.py:126
 +#, python-format
- msgid "Addr %s is not defined"
--msgstr "%s/%s পোর্ট নির্ধারিত হয়নি"
-+msgstr "%s addr নির্ধারিত হয়নি"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr "Сигурни ли сте, че искате да изтриете %s '%s'?"
++
++#: ../gui/semanagePage.py:126
 +#, python-format
- msgid "Could not query addr %s"
--msgstr "%s/%s পোর্ট কোয়েরি করা যায়নি"
-+msgstr "%s addr কোয়েরি করা যায়নি"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
++msgid "Delete %s"
++msgstr "Изтрий %s"
++
++#: ../gui/semanagePage.py:134
 +#, python-format
- msgid "Could not modify addr %s"
--msgstr "%s/%s পোর্ট পরিবর্তন করা যায়নি"
-+msgstr "%s addr পরিবর্তন করা যায়নি"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
++msgid "Add %s"
++msgstr "Добави %s"
++
++#: ../gui/semanagePage.py:148
 +#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "%s/%s পোর্টটি নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
-+msgstr "%s addr নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
++msgid "Modify %s"
++msgstr "Промени %s"
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr "Permissive"
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr "Enforcing"
++
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr "Състояние"
++
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++"Променяйки типа политика, ще предизвикате преетикетиране на цялата файлова "
++"система при следващото зареждане. Преетикетирането отнема доста време, в "
++"зависимост от големината на файловата система.  Искате ли да продължите?"
++
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
++"Промяната към забранен SELinux изисква рестартиране.  Това не се "
++"препоръчва.  Ако по-късно решите да активирате SELinux, системата ще трябва "
++"да бъде преетикетирана.  Ако просто искате да видите дали SELinux е причина "
++"за проблем в системата Ви, може да преминете в режим permissive, който само "
++"ще регистрира грешките, без да налага SELinux политика.  Режимът Permissive "
++"не изисква рестартиране    Искате ли да продължите?"
++
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++"Промяната към разрешен SELinux ще предизвика преетикетиране на цялата "
++"файлова система при следващото зареждане. Преетикетирането отнема доста "
++"време, в зависимост от големината на файловата система.  Искате ли да "
++"продължите?"
++
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr "system-config-selinux"
++
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr "Добави SELinux съответствие за влизане"
++
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr "Добавя SELinux мрежови портове"
++
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr "SELinux тип"
++
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr "Файлова спецификация"
++
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr "Тип файл"
++
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
++"всички файлове\n"
++"нормален файл\n"
++"директория\n"
++"знаково устр.\n"
++"блоково устр.\n"
++"сокет\n"
++"символна връзка\n"
++"named pipe\n"
++
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr "MLS"
++
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr "Добавя SELinux потребител"
++
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr "SELinux администрация"
++
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr "Добави"
++
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr "_Свойства"
++
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr "_Изтрий"
++
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr "Изберете Management Object"
++
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr "<b>Изберете:</b>"
++
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr "Системен Enforcing режим по подразбиране"
++
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
++"Забранен\n"
++"Permissive\n"
++"Enforcing\n"
++
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr "Текущ Enforcing режим"
++
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr "Системен тип политика по подразбиране: "
++
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
++"Изберете, ако искате да преетикетирате тогава цялата файлова система при "
++"следващото зареждане.  Преетикетирането може да отнеме доста време, в "
++"зависимост от големината на файловата система.  Ако променяте типовете "
++"политика или преминавате от забранен към enforcing, е необходимо "
++"преетикетиране."
++
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr "Преетикетиране при следващото зареждане"
++
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr "label37"
++
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr "Върни булевите настройки към тези по подразбиране"
++
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr "Превключва между Индивидуални и Всички булеви променливи"
++
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr "Филтър"
++
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr "label50"
++
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr "Добавя файлов контекст"
++
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr "Променя файлов контекст"
++
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr "Изтрива файлов контекст"
++
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr "Превключва между всички и индивидуален файлов контекст"
++
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr "label38"
++
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr "Добави SELinux съответствие на потребител"
++
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr "Промени SELinux съответствие на потребител"
++
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr "Изтрий SELinux съответствие на потребител"
++
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr "label39"
++
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr "Добавя потребител"
++
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr "Променя потребител"
++
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr "Изтрива потребител"
++
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr "label41"
++
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr "Добавя мрежов порт"
++
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr "Редактира мрежов порт"
++
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr "Изтрива мрежов порт"
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr "Превключва между Индивидуални и Всички портове"
++
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr "label42"
++
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr "Генерира нов модул с политика"
++
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr "Зарежда модул с политика"
++
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr "Премахва зареждаем модул с политика"
++
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
++"Разрешава/Забранява допълнителни правила за наблюдение, които нормално не се "
++"докладват в журналните файлове."
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr "label44"
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr "Смени режима на процеса на permissive."
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr "Смени режима на процеса на enforcing"
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr "Домейн на процеса"
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr "label59"
++
++#: ../gui/usersPage.py:138
 +#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s মুছে ফেলা যায়নি"
-+msgstr "%s addr মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:1212
++msgid "SELinux user '%s' is required"
++msgstr "Изисква се SELinux потребител '%s'"
+diff --git a/policycoreutils/po/bn.po b/policycoreutils/po/bn.po
+index afeaa9f..c63d0f4 100644
+--- a/policycoreutils/po/bn.po
++++ b/policycoreutils/po/bn.po
+@@ -1,21 +1,21 @@
+ # 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.
+ #
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "পোর্টের তালিকা নির্মাণ করা যায়নি"
-+msgstr "addr-র তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "%s প্রেক্ষাপটের বৈশিষ্ট্য নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নিis defined"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s প্রেক্ষাপট বর্তমানে নির্ধারিত রয়েছে"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s'র প্রেক্ষাপট নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s'র ক্ষেত্রে প্রেক্ষাপটের context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s'র ক্ষেত্রে প্রেক্ষাপটের context'এ ভূমিকার বৈশিষ্ট্য নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s'র ক্ষেত্রে প্রেক্ষাপটের context'এ ধরন নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s'র ক্ষেত্রে প্রেক্ষাপটের context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s'র ক্ষেত্রে প্রেক্ষাপটের context'র বৈশিষ্ট্য নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s'র ক্ষেত্রে বার্তার context নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s প্রেক্ষাপট যোগ করা যায়নি"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s প্রেক্ষাপটের বৈশিষ্ট্য নির্ধারিত হয়নি"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "%s প্রেক্ষাপট কোয়েরি করা যায়নি"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "%s প্রেক্ষাপট পরিবর্তন করা যায়নি"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "%s প্রেক্ষাপটটি নিয়মনীতির মধ্যে নির্ধারিত হয়েছে এবং অপসারণযোগ্য নয়"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "%s প্রেক্ষাপট মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "প্রেক্ষাপটের তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux ইন্টারফেস"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "কনটেক্সট"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ভূমিকা নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইলের context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "ফাইলের বৈশিষ্ট্য বৈধ নয়"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s'র ফাইল context নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s'র ফাইল context বর্তমানে নির্ধারিত রয়েছে"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s'র ফাইল contex নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ধরন নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইলের context নির্ধারণ করা যায়নি"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s'র ক্ষেত্রে ফাইল context যোগ করা যায়নি"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange অথবা seuser আবশ্যক"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s'র ফাইল context আবশ্যক"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s'র জন্য ফাইল context কোয়েরি করা যায়নি"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s'র জন্য ফাইল context পরিবর্তন করা যায়নি"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ফাইল context'র তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "ফাইল context %s  মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
++# Translators:
+ msgid ""
  msgstr ""
- "%s'র ফাইল context নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে তা অপসারণ করা সম্ভব নয়"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s'র ফাইল context মুছে ফেলা যায়নি"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ফাইল context'র তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "স্থানীয় ফাইলের context'র তালিকা নির্মাণ করা যায়নি"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ধরন"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "বুলিয়ান %s'র বৈশিষ্ট্য নির্ধারিত হয়েছে কিনা তা পরীক্ষা করা যায়নি"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "বুলিয়ান %s'র মান বর্তমানে নির্ধারিত রয়েছে"
+-"Project-Id-Version: PACKAGE VERSION\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-03-30 18:14+0000\n"
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+-"Language-Team: LANGUAGE <LL@li.org>\n"
+-"Language: \n"
++"Language-Team: Bengali <info@ankur.org.bd>\n"
++"Language: bn\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "%s'র ফাইল context কোয়েরি করা যায়নি"
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "মান উল্লেখ করা আবশ্যক"
-+msgstr "নিম্নলিখিত একটি মান উল্লেখ করা আবশ্যক: %s"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "বুলিয়ান %s মুছে ফেলা যায়নি"
-+msgstr "%s বুলিয়েনের সক্রিয় মান নির্ধারণ করতে ব্যর্থ"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "%s বুলিয়ানের মান পরিবর্তন করা যায়নি"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "ভুল বিন্যাস %s: রেকর্ড %s"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "বুলিয়ান %s'র মান নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "বুলিয়ান %s মুছে ফেলা যায়নি"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "বুলিয়ানের তালিকা নির্মাণ করা যায়নি"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "অজানা"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "বন্ধ"
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "চালু"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux বুলিয়ান"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "বিবরণ"
-@@ -959,9 +978,9 @@
- msgstr "পরিবেশ পরিশ্রুত করতে ব্যর্থ\n"
+ msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "কর্ম init করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে।\n"
-+msgstr "ক্ষমতার বৈশিষ্ট্যগুলি আরম্ভ ব্যর্থ, পরিত্যাগ করা হচ্ছে।\n"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1295,1626 +1314,2233 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "বিকল্প সংক্রান্ত ত্রুটি %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "বুলিয়ান"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "সকল"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "স্বনির্ধারিত"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "ফাইল লেবেল ব্যবস্থা"
--#~ msgid "Boolean"
--#~ msgstr "বুলিয়ান"
--
--#~ msgid "all"
--#~ msgstr "সকল"
--
--#~ msgid "Customized"
--#~ msgstr "স্বনির্ধারিত"
--
--#~ msgid "File Labeling"
--#~ msgstr "ফাইল লেবেল ব্যবস্থা"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ফাইলের\n"
--#~ "বৈশিষ্ট্য"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"ফাইলের\n"
-+"বৈশিষ্ট্য"
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ফাইলের ধরন"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"ফাইলের ধরন"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ফাইল\n"
--#~ "ধরন"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"ফাইল\n"
-+"ধরন"
--#~ msgid "User Mapping"
--#~ msgstr "ব্যবহারকারী ম্যাপিং"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "ব্যবহারকারী ম্যাপিং"
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "লগ-ইন\n"
--#~ "নাম"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"লগ-ইন\n"
-+"নাম"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ব্যবহারকারী"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"ব্যবহারকারী"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS সীমা"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS সীমা"
--#~ msgid "Login '%s' is required"
--#~ msgstr "লগ-ইন '%s' আবশ্যক"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "লগ-ইন '%s' আবশ্যক"
--#~ msgid "Policy Module"
--#~ msgstr "পলিসি মডিউল"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "পলিসি মডিউল"
--#~ msgid "Module Name"
--#~ msgstr "মডিউলের নাম"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "মডিউলের নাম"
--#~ msgid "Version"
--#~ msgstr "সংস্করণ"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "সংস্করণ"
--#~ msgid "Disable Audit"
--#~ msgstr "অডিট নিষ্ক্রিয় করা হবে"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "অডিট নিষ্ক্রিয় করা হবে"
--#~ msgid "Enable Audit"
--#~ msgstr "অডিট সক্রিয় করা হবে"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "অডিট সক্রিয় করা হবে"
--#~ msgid "Load Policy Module"
--#~ msgstr "পলিসি মডিউল লোড করুন"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "পলিসি মডিউল লোড করুন"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat ২০০৭"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat ২০০৭"
--#~ msgid "GPL"
--#~ msgstr "GPL"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "translator-credits"
--#~ msgstr "রুণা ভট্টাচার্য (runab@redhat.com)"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "রুণা ভট্টাচার্য (runab@redhat.com)"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux Policy নির্মাণের সামগ্রী"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+" SELinux প্রয়োগকারী অ্যাপ্লিকেশন অথবা ব্যবহারকারীদের confine করতে ব্যবহৃত পলিসির "
-+"পরিকাঠামো নির্মাণের জন্য এই সামগ্রী ব্যবহার করা যাবে।\n"
-+"\n"
-+"এই সামগ্রী প্রয়োগ করে নির্মাণ করা যাবে:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - পলিসি কম্পাইল ও ইনস্টল করতে ব্যবহৃত।"
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "আবদ্ধ করার জন্য অ্যাপ্লিকেশন/ব্যবহারকারীর ভূমিকা নির্বাচন করুন।"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>অ্যাপ্লিকেশন</b>"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ " SELinux প্রয়োগকারী অ্যাপ্লিকেশন অথবা ব্যবহারকারীদের confine করতে ব্যবহৃত "
--#~ "পলিসির পরিকাঠামো নির্মাণের জন্য এই সামগ্রী ব্যবহার করা যাবে।\n"
--#~ "\n"
--#~ "এই সামগ্রী প্রয়োগ করে নির্মাণ করা যাবে:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - পলিসি কম্পাইল ও ইনস্টল করতে ব্যবহৃত।"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"বুট করার সময় init স্ক্রিপ্টের মাধ্যমে আরম্ভ হওয়া ডেমনগুলি প্রমিত Init ডেমন নামে "
-+"পরিচিত। সাধারণত /etc/rc.d/init.d-র মধ্যে একটি স্ক্রিপ্ট উপস্থিত থাকা আবশ্যক।"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "আবদ্ধ করার জন্য অ্যাপ্লিকেশন/ব্যবহারকারীর ভূমিকা নির্বাচন করুন।"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "প্রমিত Init ডেমন"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS সিস্টেম ডেমন"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon-র ডেমনগুলি xinetd দ্বারা আরম্ভ করা হয়।"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>অ্যাপ্লিকেশন</b>"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"ওয়েব সার্ভার (apache) দ্বারা আরম্ভ করা ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI) CGI স্ক্রিপ্ট"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "বুট করার সময় init স্ক্রিপ্টের মাধ্যমে আরম্ভ হওয়া ডেমনগুলি প্রমিত Init ডেমন নামে "
--#~ "পরিচিত। সাধারণত /etc/rc.d/init.d-র মধ্যে একটি স্ক্রিপ্ট উপস্থিত থাকা আবশ্যক।"
-+#: ../gui/polgen.glade:322
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI)"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "প্রমিত Init ডেমন"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"ব্যবহারকারী দ্বারা আরম্ভ করা কোনো অ্যাপ্লিকেশন যা আবদ্ধ করার জন্য চিহ্নিত তা "
-+"ব্যবহারকারীদের অ্যাপ্লিকেশন নামে পরিচিত"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Internet Services Daemon-র ডেমনগুলি xinetd দ্বারা আরম্ভ করা হয়।"
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "ব্যবহারকারীদের অ্যাপ্লিকেশন"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>ব্যবহারকারীর লগ-ইন</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "বর্তমানে উপস্থিত লগ-ইন ব্যবহারকারীর তথ্য পরিবর্তন করুন।"
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "বর্তমানে উপস্থিত ব্যবহারকারী ভূমিকা"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Internet Services Daemon (inetd)"
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"চিহ্নিত ব্যবহারকারী টার্মিন্যাল অথবা দূরবর্তী লগ-ইনের মাধ্যমে মেশিনে লগ-ইন করতে "
-+"পারবেন।  ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত "
-+"থাকবে না"
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "সর্বনিম্ন টার্মিন্যাল ব্যবহারকারীর ভূমিকা"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "ওয়েব সার্ভার (apache) দ্বারা আরম্ভ করা ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI) CGI "
--#~ "স্ক্রিপ্ট"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"চিহ্নিত ব্যবহারকারী X অথবা টার্মিন্যালের মাধ্যমে মেশিনে লগ-ইন করতে পারবেন।  "
-+"ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত থাকবে না"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI)"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "সর্বনিম্ন X Windows ব্যবহারকারীর ভূমিকা"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "ব্যবহারকারী দ্বারা আরম্ভ করা কোনো অ্যাপ্লিকেশন যা আবদ্ধ করার জন্য চিহ্নিত তা "
--#~ "ব্যবহারকারীদের অ্যাপ্লিকেশন নামে পরিচিত"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা, su বিনা ও sudo বিনা "
-+"ব্যবহারকারী ভূমিকা।"
--#~ msgid "User Application"
--#~ msgstr "ব্যবহারকারীদের অ্যাপ্লিকেশন"
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "ব্যবহারকারীর ভূমিকা"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ব্যবহারকারীর লগ-ইন</b>"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা ও su বিনা ব্যবহারকারী "
-+"ভূমিকা। sudo সহযোগে root ব্যবহারকারীর প্রশাসনিক ভূমিকা প্রয়োগ করা যাবে।"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "বর্তমানে উপস্থিত লগ-ইন ব্যবহারকারীর তথ্য পরিবর্তন করুন।"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "অ্যাডমিন ব্যবহারকারীর ভূমিকা"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>root ব্যবহারকারী</b>"
--#~ msgid "Existing User Roles"
--#~ msgstr "বর্তমানে উপস্থিত ব্যবহারকারী ভূমিকা"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"এই ব্যবহারকারী দ্বারা root পরিচয়ে মেশিন পরিচালনা করা হলে 'Root প্রশাসনিক "
-+"ব্যবহারকারীর ভূমিকা' নির্বাচন করুন। সিস্টেমে, এই ব্যবহারকারী সরাসরি লগ-ইন করতে "
-+"সক্ষম হবেন না।"
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Root প্রশাসনিক ব্যবহারকারীর ভূমিকা"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "confine করার জন্য অ্যাপ্লিকেশন অথবা ব্যবহারকারীর নাম নির্বাচন করুন।"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "নাম"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "confine করার জন্য এক্সেকিউটেবিলের সম্পূর্ণ পাথ লিখুন।"
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "confine করা ব্যবহারকারী অথবা অ্যাপ্লিকেশন ভূমিকার স্বতন্ত্র নাম লিখুন।"
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "এক্সেকিউটেবল"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init স্ক্রিপ্ট"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "চিহ্নিত ব্যবহারকারী টার্মিন্যাল অথবা দূরবর্তী লগ-ইনের মাধ্যমে মেশিনে লগ-ইন করতে "
--#~ "পারবেন।  ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত "
--#~ "থাকবে না"
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "confine করা অ্যাপ্লিকেশন আরম্ভের জন্য init স্ক্রিপ্টের সম্পূর্ণ পাথ লিখুন।"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "সর্বনিম্ন টার্মিন্যাল ব্যবহারকারীর ভূমিকা"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "স্বনির্ধারণের জন্য প্রযোজ্য ব্যবহারকারীদের ভূমিকা চিহ্নিত করুন"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "চিহ্নিত ব্যবহারকারী X অথবা টার্মিন্যালের মাধ্যমে মেশিনে লগ-ইন করতে পারবেন।  "
--#~ "ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত থাকবে না"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
++msgstr ""
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"চিহ্নিত অ্যাপ্লিকেশন ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "সর্বনিম্ন X Windows ব্যবহারকারীর ভূমিকা"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "এই ব্যবহারকারী ভূমিকা দ্বারা রূপান্তরের জন্য অতিরিক্ত ডোমেইন নির্বাচন করুন"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা, su বিনা ও sudo বিনা "
--#~ "ব্যবহারকারী ভূমিকা।"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"চিহ্নিত ব্যবহারকারীর ভূমিকা দ্বারা যে সমস্ত অ্যাপ্লিকেশন ডোমেইনে রূপান্তর করা সম্ভব "
-+"হবে তা নির্বাচন করুন।"
--#~ msgid "User Role"
--#~ msgstr "ব্যবহারকারীর ভূমিকা"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "চিহ্নিত ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ব্যবহারকারী দ্বারা যে সমস্ত অতিরিক্ত ডোমেইন পরিচালিত হবে সেগুলি নির্বাচন করুন"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "চিহ্নিত ব্যবহারকারী দ্বারা পরিচালনার উদ্দেশ্যে ডোমেইন নির্বাচন করুন।"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "চিহ্নিত ব্যবহারকারীর জন্য অতিরিক্ত ভূমিকা নির্বাচন করুন"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা ও su বিনা ব্যবহারকারী "
--#~ "ভূমিকা। sudo সহযোগে root ব্যবহারকারীর প্রশাসনিক ভূমিকা প্রয়োগ করা যাবে।"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টে অপেক্ষা করা হবে"
--#~ msgid "Admin User Role"
--#~ msgstr "অ্যাডমিন ব্যবহারকারীর ভূমিকা"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP পোর্ট</b>"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>root ব্যবহারকারী</b>"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"confine করা অ্যাপ্লিকেশন/ব্যবহারকারীদের যে কোনো udp পোর্টের সাথে bind করার সুযোগ "
-+"দেয়।"
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "এই ব্যবহারকারী দ্বারা root পরিচয়ে মেশিন পরিচালনা করা হলে 'Root প্রশাসনিক "
--#~ "ব্যবহারকারীর ভূমিকা' নির্বাচন করুন। সিস্টেমে, এই ব্যবহারকারী সরাসরি লগ-ইন করতে "
--#~ "সক্ষম হবেন না।"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "সকল"
--#~ msgid "Root Admin User Role"
--#~ msgstr "Root প্রশাসনিক ব্যবহারকারীর ভূমিকা"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারীদের 0 প্রয়োগ করে bindresvport কল করার সুযোগ দেওয়া হবে। "
-+"পোর্ট সংখ্যা ৬০০-১০২৪-র সাথে bind করা হবে।"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "confine করার জন্য অ্যাপ্লিকেশন অথবা ব্যবহারকারীর নাম নির্বাচন করুন।"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Name"
--#~ msgstr "নাম"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
-+"উপস্থিত পোর্টের সাথে বাইন্ড করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা চিহ্ন "
-+"দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "অসংরক্ষিত পোর্ট (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "নির্বাচিত পোর্ট"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "confine করার জন্য এক্সেকিউটেবিলের সম্পূর্ণ পাথ লিখুন।"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারীদের 1024-র অধিক যে কোনো udp পোর্টের সাথে bind করার সুযোগ "
-+"দেওয়া হয়।"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP পোর্ট</b>"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "confine করা ব্যবহারকারী অথবা অ্যাপ্লিকেশন ভূমিকার স্বতন্ত্র নাম লিখুন।"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টের সাথে সংযোগ স্থাপন "
-+"করা হবে"
--#~ msgid "Executable"
--#~ msgstr "এক্সেকিউটেবল"
-+#: ../gui/polgen.glade:1958
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত tcp পোর্ট অথবা পোর্ট সীমার মধ্যে "
-+"উপস্থিত পোর্টের সাথে সংযোগ করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা চিহ্ন "
-+"দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
--#~ msgid "Init script"
--#~ msgstr "Init স্ক্রিপ্ট"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
-+"উপস্থিত পোর্টের সাথে সংযোগ করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা চিহ্ন "
-+"দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "সাধারণ অ্যাপ্লিকেশনের বৈশিষ্ট্য নির্বাচন করুন"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog বার্তা লেখা হয়\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp-র মধ্যে উপস্থিত অস্থায়ী ফাইল নির্মাণ/পরিবর্তন করুন"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "অনুমোদনের জন্য Pam ব্যবহার করুন"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch অথবা getpw* কল ব্যবহার করা হয়"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus ব্যবহার করা হয়"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "অডিট সংক্রান্ত বার্তা পাঠানো হয়"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "টার্মিন্যালের সাথে যোগাযোগ"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ই-মেইল বার্তা পাঠানো হয়"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "অ্যাপ্লিকেশন দ্বারা পরিচালিত ফাইল/ডিরেক্টরি নির্বাচন করুন"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "confine করা অ্যাপ্লিকেশন আরম্ভের জন্য init স্ক্রিপ্টের সম্পূর্ণ পাথ লিখুন।"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"অ্যাপ্লিকেশন যে সমস্ত ফাইল/ডিরেক্টরিতে \"Write\" লিখতে পারবে সেগুলির নাম যোগ করুন। "
-+"Pid ফাইল, লগ ফাইল, /var/lib ফাইল ..."
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "স্বনির্ধারণের জন্য প্রযোজ্য ব্যবহারকারীদের ভূমিকা চিহ্নিত করুন"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "অ্যাপ্লিকেশন দ্বারা ব্যবহৃত বুলিয়ান নির্বাচন করুন"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "চিহ্নিত অ্যাপ্লিকেশন ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"কনফাইন করা অ্যাপ্লিকেশন/ব্যবহারকারীর জন্য প্রয়োগ হওয়া বুলিয়ান যোগ করুন/মুছে ফেলুন"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "এই ব্যবহারকারী ভূমিকা দ্বারা রূপান্তরের জন্য অতিরিক্ত ডোমেইন নির্বাচন করুন"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "নিয়মনীতি নির্মাণের জন্য ব্যবহারযোগ্য ডিরেক্টরি নির্বাচন করুন"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "চিহ্নিত ব্যবহারকারীর ভূমিকা দ্বারা যে সমস্ত অ্যাপ্লিকেশন ডোমেইনে রূপান্তর করা সম্ভব "
--#~ "হবে তা নির্বাচন করুন।"
-+#: ../gui/polgen.glade:2882
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "নিয়মনীতির ডিরেক্টরি"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "চিহ্নিত ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "উৎপন্ন নিয়মনীতির ফাইল"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr ""
--#~ "ব্যবহারকারী দ্বারা যে সমস্ত অতিরিক্ত ডোমেইন পরিচালিত হবে সেগুলি নির্বাচন করুন"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"এই সরঞ্জাম দ্বারা নিম্নলিখিত সামগ্রী নির্মিত হবে: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"ফাইল/ডিরেক্টরি কম্পাইল/ইনস্টল ও পুনরায় লেবেল করার জন্য root পরিচয়ে শেল স্ক্রিপ্ট "
-+"সঞ্চালন করুন।  \n"
-+"Linux লগ-ইন ব্যবহারকারীর সাথে ব্যবহারকারীদের ভূমিকার যোগসূত্র স্থাপন করার জন্য "
-+"semange অথবা useradd প্রয়োগ করুন।\n"
-+"মেশিনটি permissive (সতর্কতামূলক) মোডে স্থাপন করুন (setenforce 0)। \n"
-+"ব্যবহারকারী রূপে লগ-ইন করুন ও ব্যবহারকারীর ভূমিকা পরীক্ষা করুন।\n"
-+"te ফাইলের জন্য অতিরিক্ত নিয়ম নির্ধারণ করার জন্য audit2allow -R প্রয়োগ করুন।\n"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "চিহ্নিত ব্যবহারকারী দ্বারা পরিচালনার উদ্দেশ্যে ডোমেইন নির্বাচন করুন।"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"এই সরঞ্জাম দ্বারা নিম্নলিখিত সামগ্রী নির্মিত হবে: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"ফাইল/ডিরেক্টরি কম্পাইল/ইনস্টল ও পুনরায় লেবেল করার জন্য root পরিচয়ে শেল স্ক্রিপ্ট "
-+"সঞ্চালন করুন।  \n"
-+"মেশিনটি permissive (সতর্কতামূলক) মোডে স্থাপন করুন (setenforce 0)। \n"
-+"ব্যবহারকারী রূপে লগ-ইন করুন ও ব্যবহারকারীর ভূমিকা পরীক্ষা করুন।\n"
-+"te ফাইলের জন্য অতিরিক্ত নিয়ম নির্ধারণ করার জন্য audit2allow -R প্রয়োগ করুন।\n"
-+
-+#: ../gui/polgen.glade:3127
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "বুলিয়ান ডায়লগ যোগ করুন"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "বুলিয়ান নাম"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Role"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "উপস্থিত_ব্যবহারকারী"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "অ্যাপ্লিকেশন"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ডিরেক্টরি হওয়া আবশ্যক"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "একটি ব্যবহারকারী নির্বাচন করা আবশ্যক"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "confine করার উদ্দেশ্যে এক্সিকিউটেবিল ফাইল নির্বাচন করুন"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "confine করার উদ্দেশ্যে init script ফাইল নির্বাচন করুন।"
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "কনফাইন করা অ্যাপ্লিকেশন দ্বারা নির্মিত অথবা লেখা ফাইল নির্বাচন করুন"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "চিহ্নিত ব্যবহারকারীর জন্য অতিরিক্ত ভূমিকা নির্বাচন করুন"
-+#: ../gui/polgengui.py:481
++msgstr ""
++
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"কনফাইন করা অ্যাপ্লিকেশনের মালিকানাধীন অথবা অ্যাপ্লিকেশন দ্বারা লিখনযোগ্য ডিরেক্টরি "
-+"নির্বাচন করুন"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টে অপেক্ষা করা হবে"
-+#: ../gui/polgengui.py:541
++
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "নিয়মনীতি সংক্রান্ত ফাইল নির্মাণের জন্য ডিরেক্টরি নির্বাচন করুন"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP পোর্ট</b>"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"বর্তমান নিয়মনীতির মধ্যে %s_t ধরন বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
-+"এগিয়ে যেতে ইচ্ছুক কি?"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "confine করা অ্যাপ্লিকেশন/ব্যবহারকারীদের যে কোনো udp পোর্টের সাথে bind করার "
--#~ "সুযোগ দেয়।"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "নাম পরীক্ষণ"
--#~ msgid "All"
--#~ msgstr "সকল"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"বর্তমান নিয়মনীতির মধ্যে %s.pp মডিউল বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
-+"এগিয়ে যেতে ইচ্ছুক কি?"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 0 প্রয়োগ করে bindresvport কল করার সুযোগ দেওয়া হবে। "
--#~ "পোর্ট সংখ্যা ৬০০-১০২৪-র সাথে bind করা হবে।"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "নাম উল্লেখ করা আবশ্যক"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "এক্সেকিউটেবল উল্লেখ করা আবশ্যক"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
--#~ "উপস্থিত পোর্টের সাথে বাইন্ড করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
--#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux কনফিগার করুন"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "অসংরক্ষিত পোর্ট (>1024)"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+"পোর্ট সংখ্যার ক্ষেত্রে 1 থেকে %d-র মধ্যে সংখ্যা অথবা সংখ্যামালা ব্যবহার করা আবশ্যক "
--#~ msgid "Select Ports"
--#~ msgstr "নির্বাচিত পোর্ট"
-+#: ../gui/polgen.py:204
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "কনফাইন করা প্রসেস/ব্যবহারকারীর জন্য নাম লেখা আবশ্যক"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 1024-র অধিক যে কোনো udp পোর্টের সাথে bind করার "
--#~ "সুযোগ দেওয়া হয়।"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER ধরনটি অনুমোদিত এক্সেকিউটেবল নয়"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP পোর্ট</b>"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "শুধুমাত্র DAEMON অ্যাপ্লিকেশন দ্বারা init স্ক্রিপ্ট ব্যবহার করা যাবে"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টের সাথে সংযোগ "
--#~ "স্থাপন করা হবে"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog-র মান বুলিয়ান হওয়া আবশ্যক "
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত tcp পোর্ট অথবা পোর্ট সীমার মধ্যে "
--#~ "উপস্থিত পোর্টের সাথে সংযোগ করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
--#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER ধরনের ক্ষেত্রে স্বয়ংক্রিয়রূপে tmp ধরন নির্ধারিত হবে"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
--#~ "উপস্থিত পোর্টের সাথে সংযোগ করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
--#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "কনফাইন করা প্রসেসের ক্ষেত্রে এক্সেকিউটেবলের পাথ উল্লেখ করা আবশ্যক"
--#~ msgid "Select common application traits"
--#~ msgstr "সাধারণ অ্যাপ্লিকেশনের বৈশিষ্ট্য নির্বাচন করুন"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "ধরন প্রয়োগকারী ফাইল"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog বার্তা লেখা হয়\t"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ইন্টারফেস সংক্রান্ত ফাইল"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp-র মধ্যে উপস্থিত অস্থায়ী ফাইল নির্মাণ/পরিবর্তন করুন"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ফাইল কনটেক্সটের ফাইল"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "অনুমোদনের জন্য Pam ব্যবহার করুন"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "প্রস্তুতির স্ক্রিপ্ট"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch অথবা getpw* কল ব্যবহার করা হয়"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "নেটওয়ার্ক পোর্ট"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ব্যবহার করা হয়"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux পোর্ট\n"
-+"ধরন"
--#~ msgid "Sends audit messages"
--#~ msgstr "অডিট সংক্রান্ত বার্তা পাঠানো হয়"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "প্রোটোকল"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "টার্মিন্যালের সাথে যোগাযোগ"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"স্তর"
--#~ msgid "Sends email"
--#~ msgstr "ই-মেইল বার্তা পাঠানো হয়"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "পোর্ট"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "\"%s\" পোর্ট সংখ্যা বৈধ নয়।  0 < পোর্ট_সংখ্যা < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "তালিকা অনুসারে প্রদর্শন"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "সংকলন অনুযায়ী প্রদর্শন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -24425,26 +34909,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux Service Protection"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "অ্যাডমিন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "সর্বধরনের ডেমন দ্বারা /-র মধ্যে corefile লেখার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "সর্বধরনের ডেমনকে অব্যবহৃত ttys ব্যবহারের ক্ষমতা প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -24453,163 +34937,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "ব্যবহারকারীর অধিকার"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "অ্যাপ্লিকেশন দ্বারা পরিচালিত ফাইল/ডিরেক্টরি নির্বাচন করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "অ্যাপ্লিকেশন যে সমস্ত ফাইল/ডিরেক্টরিতে \"Write\" লিখতে পারবে সেগুলির নাম যোগ "
--#~ "করুন। Pid ফাইল, লগ ফাইল, /var/lib ফাইল ..."
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"guest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "অ্যাপ্লিকেশন দ্বারা ব্যবহৃত বুলিয়ান নির্বাচন করুন"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "মেমরি সংরক্ষণ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "mount দ্বারা যে কোনো ফাইল মাউন্ট করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "mount দ্বারা যে কোনো ডিরেক্টরি মাউন্ট করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh দ্বারা ssh-keysign সঞ্চালনের অনুমতি দেওয়া হবে"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "কনফাইন করা অ্যাপ্লিকেশন/ব্যবহারকারীর জন্য প্রয়োগ হওয়া বুলিয়ান যোগ করুন/মুছে ফেলুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"staff SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "নিয়মনীতি নির্মাণের জন্য ব্যবহারযোগ্য ডিরেক্টরি নির্বাচন করুন"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Policy Directory"
--#~ msgstr "নিয়মনীতির ডিরেক্টরি"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"আন-কনফাইন করা SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত "
-+"ডিরেক্টরি (home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Generated Policy Files"
--#~ msgstr "উৎপন্ন নিয়মনীতির ফাইল"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "নেটওয়ার্ক কনফিগারেশন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "লেবেল বিহীন প্যাকেটগুলি নেটওয়ার্কের মধ্যে চলাচলের অনুমতি প্রদান করা হবে"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "বুলিয়ান ডায়লগ যোগ করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"user SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Boolean Name"
--#~ msgstr "বুলিয়ান নাম"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"আন-কনফাইন করা সামগ্রী unconfined_execmem-এ dyntrans করার অনুমতি প্রদান করা হবে"
--#~ msgid "Role"
--#~ msgstr "Role"
++
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "ডাটাবেস"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "ব্যবহারকারীদের mysql সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "ব্যবহারকারীদের postgres সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "ক্লায়েন্টদেরকে X শেয়ার মেমরিতে লেখার অনুমতি প্রদান করা হবে"
--#~ msgid "Existing_User"
--#~ msgstr "উপস্থিত_ব্যবহারকারী"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
-+"(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
--#~ msgid "Application"
--#~ msgstr "অ্যাপ্লিকেশন"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS-র সাথে ডেমন সঞ্চালনের অনুমতি দেওয়া হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -24617,1168 +35057,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "ওয়েব অ্যাপ্লিকেশন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "staff SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "user SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+"staff ওয়েব ব্রাউজার দ্বারা ব্যক্তিগত (home) ডিরেক্টরির মধ্যে লেখার অনুমতি প্রদান করা "
-+"হবে"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ডিরেক্টরি হওয়া আবশ্যক"
++
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster Server-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "You must select a user"
--#~ msgstr "একটি ব্যবহারকারী নির্বাচন করা আবশ্যক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord দ্বারা বিবিধ বস্তু পাঠের অনুমতি প্রদান করা হবে। nfs, samba, অপসারণযোগ্য "
-+"ডিভাইস, user temp ও অবিশ্বস্ত তথ্য সহ ফাইল"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "confine করার উদ্দেশ্যে এক্সিকিউটেবিল ফাইল নির্বাচন করুন"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "প্রিন্ট ব্যবস্থা"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd ব্যাক-এন্ড সার্ভারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t দ্বারা সরাসরি ডেমন আরম্ভের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "খেলা"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "খেলার জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "ওয়েব ব্রাউজারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "সুসংগতি"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "confine করার উদ্দেশ্যে init script ফাইল নির্বাচন করুন।"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "বিপদের আশঙ্কাবিহীন জ্ঞাত সমস্যাসহ সামগ্রীর জন্য অডিট করা হবে না"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD পরিসেবা"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd চাইল্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "কনফাইন করা অ্যাপ্লিকেশন দ্বারা নির্মিত অথবা লেখা ফাইল নির্বাচন করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+"evolution ও thunderbird দ্বারা ব্যবহারকারীদের ফাইল পাঠ করার অনুমতি প্রদান করা হবে"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "কনফাইন করা অ্যাপ্লিকেশনের মালিকানাধীন অথবা অ্যাপ্লিকেশন দ্বারা লিখনযোগ্য "
--#~ "ডিরেক্টরি নির্বাচন করুন"
++
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "mozilla ব্রাউজার দ্বারা ব্যবহারকারীদের ফাইল পড়ার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Name পরিসেবা"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "সাধারণ ব্যবহারকারীর জন্য pppd সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "নিয়মনীতি সংক্রান্ত ফাইল নির্মাণের জন্য ডিরেক্টরি নির্বাচন করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"প্রমিত অবস্থান ভিন্ন অন্য অবস্থানে উপস্থিত ফাইলগুলি বিভিন্ন প্রোগ্রাম দ্বারা পাঠ করার "
-+"অনুমতি প্রদান করা হবে (default_t)"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "বর্তমান নিয়মনীতির মধ্যে %s_t ধরন বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
--#~ "এগিয়ে যেতে ইচ্ছুক কি?"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh-কে ডেমনের পরিবর্তে inetd থেকে সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba দ্বারা nfs ডিরেক্টরি শেয়ার করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL অনুমোদনের সার্ভার"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl অনুমোদন সার্ভার দ্বারা /etc/shadow ফাইল পাঠ করার অনুমতি প্রদান করা হবে"
--#~ msgid "Verify Name"
--#~ msgstr "নাম পরীক্ষণ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows সার্ভার দ্বারা মেমরির অংশকে এক্সিকিউটেবল ও লিখনযোগ্য রূপে ম্যাপ করা হবে"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "বর্তমান নিয়মনীতির মধ্যে %s.pp মডিউল বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
--#~ "এগিয়ে যেতে ইচ্ছুক কি?"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "You must enter a name"
--#~ msgstr "নাম উল্লেখ করা আবশ্যক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "You must enter a executable"
--#~ msgstr "এক্সেকিউটেবল উল্লেখ করা আবশ্যক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t-এ রূপান্তরের অনুমতি প্রদান করা হবে না, sudo ও su প্রভাবিত হবে"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux কনফিগার করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "কোনো প্রসেস দ্বারা কার্নেল মডিউল লোড করার অনুমতি প্রদান করা হবে না"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr ""
--#~ "পোর্ট সংখ্যার ক্ষেত্রে 1 থেকে %d-র মধ্যে সংখ্যা অথবা সংখ্যামালা ব্যবহার করা আবশ্যক "
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "কোনো প্রসেস দ্বারা SELinux নিয়মনীতি পরিবর্তনের অনুমতি প্রদান করা হবে"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "কনফাইন করা প্রসেস/ব্যবহারকারীর জন্য নাম লেখা আবশ্যক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER ধরনটি অনুমোদিত এক্সেকিউটেবল নয়"
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "শুধুমাত্র DAEMON অ্যাপ্লিকেশন দ্বারা init স্ক্রিপ্ট ব্যবহার করা যাবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog-র মান বুলিয়ান হওয়া আবশ্যক "
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER ধরনের ক্ষেত্রে স্বয়ংক্রিয়রূপে tmp ধরন নির্ধারিত হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "কনফাইন করা প্রসেসের ক্ষেত্রে এক্সেকিউটেবলের পাথ উল্লেখ করা আবশ্যক"
++msgstr ""
++
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "ধরন প্রয়োগকারী ফাইল"
++msgstr ""
++
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Interface file"
--#~ msgstr "ইন্টারফেস সংক্রান্ত ফাইল"
++msgstr ""
++
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "File Contexts file"
--#~ msgstr "ফাইল কনটেক্সটের ফাইল"
++msgstr ""
++
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Setup Script"
--#~ msgstr "প্রস্তুতির স্ক্রিপ্ট"
++msgstr ""
++
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux পোর্ট\n"
--#~ "ধরন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "স্প্যাম থেকে সুরক্ষা"
--#~ msgid "Protocol"
--#~ msgstr "প্রোটোকল"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "স্তর"
++msgstr ""
++
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd দ্বারা ব্যক্তিগত (home) ডিরেক্টরি ব্যবহারের অনুমতি প্রদান করা হবে"
--#~ msgid "Port"
--#~ msgstr "পোর্ট"
++msgstr ""
++
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assassin ডেমনের ক্ষেত্রে নেটওয়ার্ক ব্যবহারের অনুমতি প্রদান করা হবে"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "\"%s\" পোর্ট সংখ্যা বৈধ নয়।  0 < পোর্ট_সংখ্যা < 65536 "
++msgstr ""
++
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "List View"
--#~ msgstr "তালিকা অনুসারে প্রদর্শন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Group View"
--#~ msgstr "সংকলন অনুযায়ী প্রদর্শন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid ডেমন দ্বারা নেটওয়ার্কের সাথে সংযোগ স্থাপনের অনুমতি প্রদান করা হবে"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux Service Protection"
++msgstr ""
++
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Admin"
--#~ msgstr "অ্যাডমিন"
++msgstr ""
++
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t রূপে ssh লগ-ইনের অনুমতি প্রদান করা হবে"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "সর্বধরনের ডেমন দ্বারা /-র মধ্যে corefile লেখার অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r ব্যবহারকারীদের দ্বারা sysadm-র ব্যক্তিগত (home) ডিরেক্টরির মধ্যে অনুসন্ধান ও "
-+"ফাইল (যেমন ~/.bashrc) পাঠের অনুমতি প্রদান করা হবে "
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "সর্বধরনের ডেমনকে অব্যবহৃত ttys ব্যবহারের ক্ষমতা প্রদান করা হবে"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "সার্বজনীন SSL টানেল"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel ডেমনকে xinetd-র বাইরে স্বতন্ত্ররূপে সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "সিস্টেমের cron কর্মের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "User Privs"
--#~ msgstr "ব্যবহারকারীর অধিকার"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। xinetd দ্বারা আরম্ভ হওয়া "
-+"যে সমস্ত পরিসেবার ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-কনফাইল অবস্থায় "
-+"সঞ্চালিত হবে।"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc স্ক্রিপ্ট আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। rc স্ক্রিপ্ট দ্বারা "
-+"আরম্ভ হওয়া যে সমস্ত ডেমনের ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-কনফাইল "
-+"অবস্থায় সঞ্চালিত হবে।"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm আন-কনফাইল অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "guest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"বিশেষ অধিকারপ্রাপ্ত সামগ্রী যেম hotplug ও insmod-কে আন-কনফাইন রূপে সঞ্চালনের "
-+"অনুমতি প্রদান করা হবে"
--#~ msgid "Memory Protection"
--#~ msgstr "মেমরি সংরক্ষণ"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#~ msgid "Allow java executable stack"
--#~ msgstr "java এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r-কে su, sudo অথবা userhelper-র সাহায্যে sysadm_r প্রাপ্ত করার অনুমতি প্রদান "
-+"করা হবে। অন্যথা, শুধুমাত্র staff_r দ্বারা এটি করা সম্ভব হবে"
--#~ msgid "Mount"
--#~ msgstr "Mount"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "ব্যবহারকারীদের দ্বারা mount কমান্ড প্রয়োগ করার অনুমতি প্রদান করা হবে"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "mount দ্বারা যে কোনো ফাইল মাউন্ট করার অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"সাধারণ ব্যবহারকারীদের ক্ষেত্রে সরাসরি মাউসের ব্যবহারের অনুমতি প্রদান করা হবে "
-+"(শুধুমাত্র X সার্ভার ব্যবহার করা হবে)"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "mount দ্বারা যে কোনো ডিরেক্টরি মাউন্ট করার অনুমতি প্রদান করা হবে"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "ব্যবহারকারীদের dmesg কমান্ড প্রয়োগের অনুমতি প্রদান করা হবে"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"ব্যবহারকারীদেরকে নেটওয়ার্ক ইন্টারফেস নিয়ন্ত্রণের অনুমতি প্রদান করা হবে "
-+"(USERCTL=true আবশ্যক)"
--#~ msgid "SSH"
--#~ msgstr "SSH"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "সাধারণ ব্যবহারকারীদেরকে ping প্রয়োগ করার অনুমতি প্রদান করা হবে"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh দ্বারা ssh-keysign সঞ্চালনের অনুমতি দেওয়া হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"ব্যবহারকারীদের noextattrfile পড়তে/লিখতে (r/w) অনুমতি প্রদান করা হবে (FAT, "
-+"CDROM, FLOPPY)"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "staff SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "ব্যবহারকারীদের usb পড়তে ও লিখতে (rw) অনুমোদন করা হবে"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"ব্যবহারকারীদের TCP সার্ভার সঞ্চালনের অনুমতি প্রদান করা হবে (পোর্টের সাথে বাইন্ড করা "
-+"হবে ও একই ডোমেইন ও বাইরের ডোমেইনের ব্যবহারকারীদের থেকে আগত সংযোগ গ্রহণ করা "
-+"হবে)  এটি নিষ্ক্রিয় করা হলে FTP passive মোড স্থাপন করা হবে ও অন্যান্য প্রোটোকল "
-+"পরিবর্তন হতে পারে"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ব্যবহারকারীদের ttyfiles stat করার অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t রূপে xdm লগ-ইনের অনুমতি প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen-কে প্রকৃত ডিস্ক ডিভাইস পড়তে/লিখতে অনুমদোন প্রদান করা হবে"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen নিয়ন্ত্রণের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS পাসওয়ার্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS Transfer ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "আন-কনফাইন করা SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত "
--#~ "ডিরেক্টরি (home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
-+"ডিরেক্টরি পরিচালনার অনুমতি প্রদান করা হবে"
--#~ msgid "Network Configuration"
--#~ msgstr "নেটওয়ার্ক কনফিগারেশন"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
-+"ডিরেক্টরি পড়ার অনুমতি প্রদান করা হবে"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "লেবেল বিহীন প্যাকেটগুলি নেটওয়ার্কের মধ্যে চলাচলের অনুমতি প্রদান করা হবে"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "আপনি কি নিশ্চিতরূপে %s '%s' মুছে ফেলতে ইচ্ছুক?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "user SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s মুছে ফেলুন"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr ""
--#~ "আন-কনফাইন করা সামগ্রী unconfined_execmem-এ dyntrans করার অনুমতি প্রদান করা "
--#~ "হবে"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s যোগ করুন"
--#~ msgid "Databases"
--#~ msgstr "ডাটাবেস"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s পরিবর্তন করুন"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "ব্যবহারকারীদের mysql সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissive (সতর্কতামূলক)"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "ব্যবহারকারীদের postgres সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Enforcing (সক্রিয়)"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Disabled (নিষ্ক্রিয়)"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "অবস্থা"
--#~ msgid "XServer"
--#~ msgstr "XServer"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"নিয়মনীতির ধরন পরিবর্তন করা হলে, পরবর্তী বার বুট করার সময় সম্পূর্ণ ফাইল-সিস্টেমের "
-+"লেবেল নতুন করে লেখা হবে। ফাইল-সিস্টেমের মাপের ভিত্তিতে, লেবেল পরিবর্তন করতে অনেক "
-+"সময় ব্যয় হওয়ার সম্ভাবনা রয়েছে।  আপনি কি এগিয়ে যেতে ইচ্ছুক?"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "ক্লায়েন্টদেরকে X শেয়ার মেমরিতে লেখার অনুমতি প্রদান করা হবে"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -25788,87 +36015,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux-র অবস্থা disabled (নিষ্ক্রিয়) হিসাবে ধার্য করা জন্য, পুনরায় বুট করা আবশ্যক।  "
-+"পরে SELinux পুনরায় সক্রিয় করার সময় সিস্টেমের লেবেল নতুন করে লেখা হবে এবং এই কাজে "
-+"অনেক সময় ব্যয় হয়। এই কারণে নিষ্ক্রিয় না করাই বাঞ্ছনীয়।  SELinux-র কারণে আপনার "
-+"সিস্টেমে কোনো সমস্যা হচ্ছে কি না জানার জন্য, SELinux permissive (সতর্কতামূলক) মোডে "
-+"নির্ধারণ করুন। এই মোডে নিয়মনীতি প্রয়োগ করা হবে না কিন্তু উৎপন্ন ত্রুটির লগ সংরক্ষণ "
-+"করা হবে। Permissive (সতর্কতামূলক) মোড নির্ধারণের জন্য পুনরায় বুট করা আবশ্যক নয়    "
-+"এগিয়ে যেতে ইচ্ছুক কি?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
--#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux-র enabled (সক্রিয়) মোডে পরিবর্তন করা হলে, পরবর্তী বার বুট করার সময় সম্পূর্ণ "
-+"ফাইল-সিস্টেমের লেবেল পরিবর্তিত হবে। ফাইল-সিস্টেমের মাপের ভিত্তিতে, লেবেল পরিবর্তন "
-+"করতে অনেক সময় ব্যয় হওয়ার সম্ভাবনা রয়েছে।  আপনি কি এগিয়ে যেতে ইচ্ছুক?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "NIS"
--#~ msgstr "NIS"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"স্বত্বাধিকার (c)২০০৬ Red Hat, Inc.\n"
-+"স্বত্বাধিকার (c) ২০০৬ ড্যান ওয়াল্‌শ <dwalsh@redhat.com>"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "NIS-র সাথে ডেমন সঞ্চালনের অনুমতি দেওয়া হবে"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux লগ-ইন ম্যাপ ব্যবস্থা যোগ করা হবে"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux নেটওয়ার্ক পোর্ট যোগ করা হবে"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux Type"
--#~ msgid "Web Applications"
--#~ msgstr "ওয়েব অ্যাপ্লিকেশন"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"স্তর"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "staff SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "ফাইলের বৈশিষ্ট্য"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ফাইলের ধরন"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "sysadm SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -25879,3665 +36066,3377 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"সর্বধরনের ফাইল\n"
-+"সাধারণ ফাইল\n"
-+"ডিরেক্টরি\n"
-+"ক্যারেক্টার ডিভাইস\n"
-+"ব্লক-ডিভাইস\n"
-+"সকেট\n"
-+"সিম্বলিক লিঙ্ক\n"
-+"নেমড পাইপ\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux ব্যবহারকারী যোগ করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux পরিচালনা"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "যোগ করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "বৈশিষ্ট্য (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "মুছে ফেলুন (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "পরিচালনার বিষয় নির্বাচন করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>নির্বাচন করুন:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "সিস্টেমের ডিফল্ট প্রয়োগ হওয়া মোড"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "user SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Disabled (নিষ্ক্রিয়)\n"
-+"Permissive (সতর্কতামূলক)\n"
-+"Enforcing (সক্রিয়)\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "বর্তমানে প্রয়োগ হওয়া মোড"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "সিস্টেমের ডিফল্ট নিয়মনীতির ধরন: "
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "xguest SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"পরবর্তী বার বুট করার সময় সম্পূর্ণ ফাইল-সিস্টেম নতুন করে লেবেল করা হবে কি না তা "
-+"নির্ধারণ করুন। ফাইল-সিস্টেমের মাপের ভিত্তিতে, লেবেল পরিবর্তন করতে অনেক সময় ব্যয় "
-+"হওয়ার সম্ভাবনা রয়েছে।  নিয়মনীতির ধরন পরিবর্তন করা হলে অথবা disabled (নিষ্ক্রিয়) "
-+"থেকে enforcing (সক্রিয়) অবস্থায় পরিবর্তনের সময় নতুন করে লেবেল নির্ধারণ করা আবশ্যক।"
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "পরবর্তী বুটের পরে রি-লেবেল করা হবে।"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "বুলিয়ান বৈশিষ্ট্যের মান সিস্টেম ডিফল্টে প্রত্যাবর্তন করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "স্বনির্ধারিত ও সকল বুলিয়ানের মধ্যে অদল-বদল করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "বুলিয়ানের লক-ডাউন ইউজার্ড সঞ্চালন করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "লক-ডাউন..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "ফিল্টার"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "ফাইল কনটেক্সট যোগ করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "ফাইল কনটেকস্ট পরিবর্তন করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "ফাইল কনটেক্সট মুছে ফেলুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "স্বনির্ধারিত ফাইল কনটেক্সট ও সকলের মধ্যে অদল-বদল করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux ব্যবহারকারী ম্যাপ ব্যবস্থা যোগ করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux ব্যবহারকারীর ম্যাপিং পরিবর্তন করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux ব্যবহারকারী ম্যাপিং মুছে ফেলুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "ব্যবহারকারী যোগ করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "ব্যবহারকারী পরিবর্তন করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "ব্যবহারকারী মুছে ফেলুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "অনুবাদ যোগ করুন"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "অনুবাদ পরিবর্তন করুন"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "অনুবাদ মুছে ফেলুন"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "নেটওয়ার্ক পোর্ট যোগ করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "নেটওয়ার্ক পোর্ট সম্পাদনা"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "নেটওয়ার্ক পোর্ট মুছে ফেলুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "স্বনির্ধারিত ও সকল পোর্টের মধ্যে অদল-বদল করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "নতুন নিয়মনীতির মডিউল নির্মাণ করুন"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "নিয়মনীতির মডিউল লোড করা হবে"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "লোড করার যোগ্য নিয়মনীতির মডিউল মুছে ফেলা হবে"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "staff ওয়েব ব্রাউজার দ্বারা ব্যক্তিগত (home) ডিরেক্টরির মধ্যে লেখার অনুমতি প্রদান "
--#~ "করা হবে"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"লগ ফাইল দ্বারা সাধারণত উল্লেখ না হওয়া অতিরিক্ত অডিট নিয়ম সক্রিয়/নিষ্ক্রিয় করা হবে।"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "প্রসেসটি permissive (সতর্কতামূলক) মোডে পরিবর্তন করুন।"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "প্রসেসটি enforcing (সক্রিয়) মোডে পরিবর্তন করুন।"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "প্রসেসের ডোমেইন"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/bn_IN.po b/policycoreutils/po/bn_IN.po
+index a791a3d..fcd6ac2 100644
+--- a/policycoreutils/po/bn_IN.po
++++ b/policycoreutils/po/bn_IN.po
+@@ -1,26 +1,24 @@
+-# translation of policycoreutils.HEAD.po to Bengali INDIA
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # 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.
+-# Runa Bhattacharjee <runabh@gmail.com>, 2007.
++# Translators:
+ # Runa Bhattacharjee <runab@fedoraproject.org>, 2008.
++# Runa Bhattacharjee <runabh@gmail.com>, 2007.
++# Runa Bhattacharjee <runab@redhat.com>, 2006, 2010.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-04 18:56+0530\n"
+-"Last-Translator: Runa Bhattacharjee <runab@fedoraproject.org>\n"
+-"Language-Team: Bengali INDIA <fedora-trans-bn_IN@redhat.com>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
++"Language: bn_IN\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -115,9 +113,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage সংযোগ স্থাপন করা যায়নি"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s'র ক্ষেত্রে MLS রেঞ্জ নির্ধারণ করা যায়নি"
++msgstr "MLS-র সক্রিয় অবস্থা পরীক্ষা করা যায়নি"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -125,36 +122,33 @@ msgstr "বাস্তবায়িত হয়নি"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage ট্রানস্যাকশন বর্তমানে চলছে"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি"
++msgstr "semanage আদান-প্রদান সমাপ্ত করা যায়নি"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage বর্তমানে চলছে না"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux ব্যবহারকারীদের তালিকা নির্মাণ করা যায়নি"
++msgstr "SELinux মডিউলের তালিকা নির্মাণ করা যায়নি"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "মডিউলের নাম"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "সংস্করণ"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Disabled (নিষ্ক্রিয়)"
+@@ -164,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s ভূমিকাটি, %s'র জন্য নির্ধারণ করা যায়নি"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -178,24 +172,22 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissive (সতর্কতামূলক)"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissive (সতর্কতামূলক)"
++msgstr ""
+ #: ../semanage/seobject.py:438
+ #, python-format
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "permissive ডোমেইন %s নির্ধারণ করা যায়নি (মডিউল ইনস্টল করতে ব্যর্থ)"
+ #: ../semanage/seobject.py:444
+ #, python-format
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "permissive ডোমেইন %s সরিয়ে ফেলা যায়নি (অপসারণ করতে ব্যর্থ)"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -215,9 +207,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux ব্যবহারকারী %s বর্তমানে উপস্থিত নেই"
++msgstr "Linux দল %s বর্তমানে উপস্থিত নেই"
+ #: ../semanage/seobject.py:497
+ #, python-format
+@@ -286,15 +278,20 @@ msgid "Could not list login mappings"
+ msgstr "লগ-ইন ম্যাপিং তালিকাভুক্ত করা যায়নি"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "লগ-ইন নাম"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "SELinux ব্যবহারকারী"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "MLS/MCS সীমা"
+@@ -312,9 +309,9 @@ msgid "Could not query user for %s"
+ msgstr "%s'র জন্য ব্যবহারকারী কোয়েরি করা যায়নি"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইল context যোগ করা যায়নি"
++msgstr "%s'র অন্তত একটি ভূমিকা যোগ করা আবশ্যক"
+ #: ../semanage/seobject.py:737
+ #, python-format
+@@ -406,6 +403,7 @@ msgid "MCS Range"
+ msgstr "MCS সীমা"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux রোল"
+@@ -418,9 +416,8 @@ msgid "Port is required"
+ msgstr "পোর্ট উল্লেখ করা আবশ্যক"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "প্রেফিক্স বৈধ নয় %s"
++msgstr ""
+ #: ../semanage/seobject.py:979
+ #, python-format
+@@ -537,18 +534,17 @@ msgstr "SELinux পোর্টের ধরন"
+ msgid "Proto"
+ msgstr "প্রোটো"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr "পোর্ট সংখ্যা"
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "পোর্ট উল্লেখ করা আবশ্যক"
++msgstr "নোডের ঠিকানা উল্লেখ করা আবশ্যক"
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+-msgstr ""
++msgstr "প্রোটোকল অজানা অথবা অনুপস্থিত"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -565,14 +561,14 @@ msgstr "%s'র কি নির্মাণ করা যায়নি"
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not check if addr %s is defined"
+-msgstr "পোর্ট %s/%s নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
++msgstr "addr %s নির্ধারিত হয়েছে কিনা পরীক্ষা করা যায়নি"
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create addr for %s"
+-msgstr "%s'র জন্য কি নির্মাণ করা যায়নি"
++msgstr "%s-র জন্য addr নির্মাণ করা যায়নি"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -581,74 +577,72 @@ msgid "Could not create context for %s"
+ msgstr "%s'র জন্য context নির্মাণ করা যায়নি"
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mask for %s"
+-msgstr "%s'র নাম নির্ধারণ করা যায়নি"
++msgstr "%s-র মাস্ক নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set user in addr context for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
++msgstr "%s'র ক্ষেত্রে addr context'এ ব্যবহারকারী বৈশিষ্ট্য নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set role in addr context for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ভূমিকা নির্ধারণ করা যায়নি"
++msgstr "%s'র ক্ষেত্রে addr context'এ ভূমিকা নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set type in addr context for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইলের context'এ ধরন নির্ধারণ করা যায়নি"
++msgstr "%s'র ক্ষেত্রে addr context'এ ধরন নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইলের context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
++msgstr "%s'র ক্ষেত্রে addr context'এ mls ক্ষেত্র নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set addr context for %s"
+-msgstr "%s'র ক্ষেত্রে ফাইলের context নির্ধারণ করা যায়নি"
++msgstr "%s'র ক্ষেত্রে addr context নির্ধারণ করা যায়নি"
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not add addr %s"
+-msgstr "%s/%s পোর্ট যোগ করা যায়নি"
++msgstr "%s addr যোগ করা যায়নি"
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is not defined"
+-msgstr "%s/%s পোর্ট নির্ধারিত হয়নি"
++msgstr "%s addr নির্ধারিত হয়নি"
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not query addr %s"
+-msgstr "%s/%s পোর্ট কোয়েরি করা যায়নি"
++msgstr "%s addr কোয়েরি করা যায়নি"
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not modify addr %s"
+-msgstr "%s/%s পোর্ট পরিবর্তন করা যায়নি"
++msgstr "%s addr পরিবর্তন করা যায়নি"
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "%s/%s পোর্টটি নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
++msgstr "%s addr নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে অপসারণযোগ্য নয়"
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete addr %s"
+-msgstr "%s মুছে ফেলা যায়নি"
++msgstr "%s addr মুছে ফেলা যায়নি"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং মুছে ফেলা যায়নি"
++msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "পোর্টের তালিকা নির্মাণ করা যায়নি"
++msgstr "addr-র তালিকা নির্মাণ করা যায়নি"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -722,9 +716,8 @@ msgid "Could not delete interface %s"
+ msgstr "%s প্রেক্ষাপট মুছে ফেলা যায়নি"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s প্রেক্ষাপট মুছে ফেলা যায়নি"
++msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -739,9 +732,9 @@ msgid "Context"
+ msgstr "কনটেক্সট"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s'র ফাইল context বর্তমানে নির্ধারিত রয়েছে"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -749,9 +742,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux ব্যবহারকারী %s বর্তমানে উপস্থিত নেই"
++msgstr ""
+ #: ../semanage/seobject.py:1692
+ #, python-format
+@@ -872,11 +865,10 @@ msgid ""
+ msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -895,14 +887,14 @@ msgid "Could not query file context %s"
+ msgstr "%s'র ফাইল context কোয়েরি করা যায়নি"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "মান উল্লেখ করা আবশ্যক"
++msgstr "নিম্নলিখিত একটি মান উল্লেখ করা আবশ্যক: %s"
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "বুলিয়ান %s মুছে ফেলা যায়নি"
++msgstr "%s বুলিয়েনের সক্রিয় মান নির্ধারণ করতে ব্যর্থ"
+ #: ../semanage/seobject.py:2007
+ #, python-format
+@@ -912,7 +904,7 @@ msgstr "%s বুলিয়ানের মান পরিবর্তন কর
+ #: ../semanage/seobject.py:2025
+ #, python-format
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "ভুল বিন্যাস %s: রেকর্ড %s"
+ #: ../semanage/seobject.py:2048
+ #, python-format
+@@ -945,15 +937,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux বুলিয়ান"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "অবস্থা"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "বিবরণ"
+@@ -1294,1677 +1286,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "বিকল্প সংক্রান্ত ত্রুটি %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s খুলতে ব্যর্থ: MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না: %s"
 -
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Cluster Server-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Level"
+-#~ msgstr "স্তর"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "অনুবাদ"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "অনুবাদের মধ্যে শূণ্যস্থান ব্যবহার করা যাবে না '%s' "
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "স্তর বৈধ নয় '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "অনুবাদের মধ্যে %s বর্তমানে ব্যাখ্যা করা হয়েছে"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "অনুবাদের মধ্যে %s'র ব্যাখ্যা করা হয়নি"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s'র ক্ষেত্রে লগ-ইন ম্যাপিং ব্যবস্থা বর্তমানে নির্ধারিত হয়েছে"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ব্যবহারকারী ম্যাপার যোগ করা হবে"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য বর্তমানে নির্ধারিত হয়েছে"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "পোর্ট উল্লেখ করা আবশ্যক"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "পোর্ট %s/%s বর্তমানে নির্ধারিত আছে"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s প্রেক্ষাপট বর্তমানে নির্ধারিত রয়েছে"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "কর্ম init করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে।\n"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ক্ষমতা নির্ধারণ করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে।\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS'র মান নির্ধারণ করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ক্ষমতা drop করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে।\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID বৈশিষ্ট্য drop করতে ব্যর্থ, পরিত্যাগ করা হচ্ছে\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps মুক্ত করতে ব্যর্থ\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
+-#~ msgid "Boolean"
+-#~ msgstr "বুলিয়ান"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
+-#~ msgid "all"
+-#~ msgstr "সকল"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
+-#~ msgid "Customized"
+-#~ msgstr "স্বনির্ধারিত"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "ফাইল লেবেল ব্যবস্থা"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "ফাইলের\n"
+-#~ "বৈশিষ্ট্য"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "ফাইলের ধরন"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "ফাইল\n"
+-#~ "ধরন"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
+-#~ msgid "User Mapping"
+-#~ msgstr "ব্যবহারকারী ম্যাপিং"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "লগ-ইন\n"
+-#~ "নাম"
 -
 -#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
+-#~ "SELinux\n"
+-#~ "User"
 -#~ msgstr ""
--#~ "cdrecord দ্বারা বিবিধ বস্তু পাঠের অনুমতি প্রদান করা হবে। nfs, samba, "
--#~ "à¦\85পসারণযà§\8bà¦\97à§\8dয à¦¡à¦¿à¦­à¦¾à¦\87স, user temp à¦\93 à¦\85বিশà§\8dবসà§\8dত à¦¤à¦¥à§\8dয à¦¸à¦¹ à¦«à¦¾à¦\87ল"
+-#~ "SELinux\n"
+-#~ "বà§\8dযবহারà¦\95ারà§\80"
 -
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS সীমা"
 -
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "লগ-ইন '%s' আবশ্যক"
 -
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Policy Module"
+-#~ msgstr "পলিসি মডিউল"
 -
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Disable Audit"
+-#~ msgstr "অডিট নিষ্ক্রিয় করা হবে"
 -
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Enable Audit"
+-#~ msgstr "অডিট সক্রিয় করা হবে"
 -
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Load Policy Module"
+-#~ msgstr "পলিসি মডিউল লোড করুন"
 -
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
 -
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat ২০০৭"
 -
--#~ msgid "Cron"
--#~ msgstr "Cron"
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
 -
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "translator-credits"
+-#~ msgstr "রুণা ভট্টাচার্য (runab@redhat.com)"
 -
--#~ msgid "Printing"
--#~ msgstr "প্রিন্ট ব্যবস্থা"
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux Policy নির্মাণের সামগ্রী"
 -
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd ব্যাক-এন্ড সার্ভারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ " SELinux প্রয়োগকারী অ্যাপ্লিকেশন অথবা ব্যবহারকারীদের confine করতে ব্যবহৃত "
+-#~ "পলিসির পরিকাঠামো নির্মাণের জন্য এই সামগ্রী ব্যবহার করা যাবে।\n"
+-#~ "\n"
+-#~ "এই সামগ্রী প্রয়োগ করে নির্মাণ করা যাবে:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - পলিসি কম্পাইল ও ইনস্টল করতে ব্যবহৃত।"
 -
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "আবদ্ধ করার জন্য অ্যাপ্লিকেশন/ব্যবহারকারীর ভূমিকা নির্বাচন করুন।"
 -
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>অ্যাপ্লিকেশন</b>"
 -
--#~ msgid "CVS"
--#~ msgstr "CVS"
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "বুট করার সময় init স্ক্রিপ্টের মাধ্যমে আরম্ভ হওয়া ডেমনগুলি প্রমিত Init ডেমন নামে "
+-#~ "পরিচিত। সাধারণত /etc/rc.d/init.d-র মধ্যে একটি স্ক্রিপ্ট উপস্থিত থাকা আবশ্যক।"
 -
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "প্রমিত Init ডেমন"
 -
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Internet Services Daemon-র ডেমনগুলি xinetd দ্বারা আরম্ভ করা হয়।"
 -
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Internet Services Daemon (inetd)"
 -
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "ওয়েব সার্ভার (apache) দ্বারা আরম্ভ করা ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI) CGI "
+-#~ "স্ক্রিপ্ট"
 -
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "ওয়েব অ্যাপ্লিকেশন/স্ক্রিপ্ট (CGI)"
 -
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "ব্যবহারকারী দ্বারা আরম্ভ করা কোনো অ্যাপ্লিকেশন যা আবদ্ধ করার জন্য চিহ্নিত তা "
+-#~ "ব্যবহারকারীদের অ্যাপ্লিকেশন নামে পরিচিত"
 -
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "User Application"
+-#~ msgstr "ব্যবহারকারীদের অ্যাপ্লিকেশন"
 -
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>ব্যবহারকারীর লগ-ইন</b>"
 -
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "বর্তমানে উপস্থিত লগ-ইন ব্যবহারকারীর তথ্য পরিবর্তন করুন।"
 -
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Existing User Roles"
+-#~ msgstr "বর্তমানে উপস্থিত ব্যবহারকারী ভূমিকা"
 -
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "চিহ্নিত ব্যবহারকারী টার্মিন্যাল অথবা দূরবর্তী লগ-ইনের মাধ্যমে মেশিনে লগ-ইন করতে "
+-#~ "পারবেন।  ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত "
+-#~ "থাকবে না"
 -
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "সর্বনিম্ন টার্মিন্যাল ব্যবহারকারীর ভূমিকা"
 -
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t দ্বারা সরাসরি ডেমন আরম্ভের অনুমতি প্রদান করা হবে"
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "চিহ্নিত ব্যবহারকারী X অথবা টার্মিন্যালের মাধ্যমে মেশিনে লগ-ইন করতে পারবেন।  "
+-#~ "ডিফল্টরূপে, এই মেশিনে কোনো setuid, নেটওয়ার্ক, sudo অথবা su উপস্থিত থাকবে না"
 -
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Evolution-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "সর্বনিম্ন X Windows ব্যবহারকারীর ভূমিকা"
 -
--#~ msgid "Games"
--#~ msgstr "খেলা"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা, su বিনা ও sudo বিনা "
+-#~ "ব্যবহারকারী ভূমিকা।"
 -
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "à¦\96à§\87লার à¦\9cনà§\8dয SELinux à¦¨à¦¿à¦°à¦¾à¦ªà¦¤à§\8dতা à¦¨à¦¿à¦·à§\8dà¦\95à§\8dরিà§\9f à¦\95রà§\81ন"
+-#~ msgid "User Role"
+-#~ msgstr "বà§\8dযবহারà¦\95ারà§\80র à¦­à§\82মিà¦\95া"
 -
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "ওয়েব ব্রাউজারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "সম্পূর্ণ নেটওয়ার্ক, রূপান্তরবিহীন setuid অ্যাপ্লিকেশন বিনা ও su বিনা ব্যবহারকারী "
+-#~ "ভূমিকা। sudo সহযোগে root ব্যবহারকারীর প্রশাসনিক ভূমিকা প্রয়োগ করা যাবে।"
 -
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Thunderbird-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Admin User Role"
+-#~ msgstr "অ্যাডমিন ব্যবহারকারীর ভূমিকা"
 -
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Compatibility"
--#~ msgstr "সুসংগতি"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr "বিপদের আশঙ্কাবিহীন জ্ঞাত সমস্যাসহ সামগ্রীর জন্য অডিট করা হবে না"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "hplip ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD পরিসেবা"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd চাইল্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr ""
--#~ "evolution ও thunderbird দ্বারা ব্যবহারকারীদের ফাইল পাঠ করার অনুমতি প্রদান করা "
--#~ "হবে"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "mozilla ব্রাউজার দ্বারা ব্যবহারকারীদের ফাইল পড়ার অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Name Service"
--#~ msgstr "Name পরিসেবা"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "সাধারণ ব্যবহারকারীর জন্য pppd সঞ্চালনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "প্রমিত অবস্থান ভিন্ন অন্য অবস্থানে উপস্থিত ফাইলগুলি বিভিন্ন প্রোগ্রাম দ্বারা পাঠ "
--#~ "করার অনুমতি প্রদান করা হবে (default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh-কে ডেমনের পরিবর্তে inetd থেকে সঞ্চালনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba দ্বারা nfs ডিরেক্টরি শেয়ার করার অনুমতি প্রদান করা হবে"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL অনুমোদনের সার্ভার"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr ""
--#~ "sasl অনুমোদন সার্ভার দ্বারা /etc/shadow ফাইল পাঠ করার অনুমতি প্রদান করা হবে"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "X-Windows সার্ভার দ্বারা মেমরির অংশকে এক্সিকিউটেবল ও লিখনযোগ্য রূপে ম্যাপ করা "
--#~ "হবে"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "কোনো প্রসেস দ্বারা কার্নেল মডিউল লোড করার অনুমতি প্রদান করা হবে না"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "কোনো প্রসেস দ্বারা SELinux নিয়মনীতি পরিবর্তনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Spam Protection"
--#~ msgstr "স্প্যাম থেকে সুরক্ষা"
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd দ্বারা ব্যক্তিগত (home) ডিরেক্টরি ব্যবহারের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam Assassin ডেমনের ক্ষেত্রে নেটওয়ার্ক ব্যবহারের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Squid"
--#~ msgstr "Squid"
--
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid ডেমন দ্বারা নেটওয়ার্কের সাথে সংযোগ স্থাপনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "sysadm_r:sysadm_t রূপে ssh লগ-ইনের অনুমতি প্রদান করা হবে"
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>root ব্যবহারকারী</b>"
 -
 -#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "staff_r ব্যবহারকারীদের দ্বারা sysadm-র ব্যক্তিগত (home) ডিরেক্টরির মধ্যে "
--#~ "অনুসন্ধান ও ফাইল (যেমন ~/.bashrc) পাঠের অনুমতি প্রদান করা হবে "
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "সার্বজনীন SSL টানেল"
--
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
 -#~ msgstr ""
--#~ "stunnel ডেমনকে xinetd-র বাইরে স্বতন্ত্ররূপে সঞ্চালনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ "এই ব্যবহারকারী দ্বারা root পরিচয়ে মেশিন পরিচালনা করা হলে 'Root প্রশাসনিক "
+-#~ "ব্যবহারকারীর ভূমিকা' নির্বাচন করুন। সিস্টেমে, এই ব্যবহারকারী সরাসরি লগ-ইন করতে "
+-#~ "সক্ষম হবেন না।"
 -
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "সিস্টেমের cron কর্মের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Root প্রশাসনিক ব্যবহারকারীর ভূমিকা"
 -
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "confine করার জন্য অ্যাপ্লিকেশন অথবা ব্যবহারকারীর নাম নির্বাচন করুন।"
 -
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Name"
+-#~ msgstr "নাম"
 -
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "confine করার জন্য এক্সেকিউটেবিলের সম্পূর্ণ পাথ লিখুন।"
 -
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "..."
+-#~ msgstr "..."
 -
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "confine করা ব্যবহারকারী অথবা অ্যাপ্লিকেশন ভূমিকার স্বতন্ত্র নাম লিখুন।"
 -
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Executable"
+-#~ msgstr "এক্সেকিউটেবল"
 -
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "xinetd আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। xinetd দ্বারা আরম্ভ "
--#~ "হওয়া যে সমস্ত পরিসেবার ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-কনফাইল "
--#~ "অবস্থায় সঞ্চালিত হবে।"
+-#~ msgid "Init script"
+-#~ msgstr "Init স্ক্রিপ্ট"
 -
 -#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "rc স্ক্রিপ্ট আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। rc স্ক্রিপ্ট দ্বারা "
--#~ "আরম্ভ হওয়া যে সমস্ত ডেমনের ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-"
--#~ "কনফাইল অবস্থায় সঞ্চালিত হবে।"
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm আন-কনফাইল অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "বিশেষ অধিকারপ্রাপ্ত সামগ্রী যেম hotplug ও insmod-কে আন-কনফাইন রূপে সঞ্চালনের "
--#~ "অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "confine করা অ্যাপ্লিকেশন আরম্ভের জন্য init স্ক্রিপ্টের সম্পূর্ণ পাথ লিখুন।"
 -
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "স্বনির্ধারণের জন্য প্রযোজ্য ব্যবহারকারীদের ভূমিকা চিহ্নিত করুন"
 -
 -#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r-কে su, sudo অথবা userhelper-র সাহায্যে sysadm_r প্রাপ্ত করার অনুমতি "
--#~ "প্রদান করা হবে। অন্যথা, শুধুমাত্র staff_r দ্বারা এটি করা সম্ভব হবে"
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "ব্যবহারকারীদের দ্বারা mount কমান্ড প্রয়োগ করার অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "সাধারণ ব্যবহারকারীদের ক্ষেত্রে সরাসরি মাউসের ব্যবহারের অনুমতি প্রদান করা হবে "
--#~ "(শুধুমাত্র X সার্ভার ব্যবহার করা হবে)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "ব্যবহারকারীদের dmesg কমান্ড প্রয়োগের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "ব্যবহারকারীদেরকে নেটওয়ার্ক ইন্টারফেস নিয়ন্ত্রণের অনুমতি প্রদান করা হবে "
--#~ "(USERCTL=true আবশ্যক)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "সাধারণ ব্যবহারকারীদেরকে ping প্রয়োগ করার অনুমতি প্রদান করা হবে"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ "Select the user roles that will transiton to this applications domains."
 -#~ msgstr ""
--#~ "ব্যবহারকারীদের noextattrfile পড়তে/লিখতে (r/w) অনুমতি প্রদান করা হবে (FAT, "
--#~ "CDROM, FLOPPY)"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "ব্যবহারকারীদের usb পড়তে ও লিখতে (rw) অনুমোদন করা হবে"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ব্যবহারকারীদের ttyfiles stat করার অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "sysadm_r:sysadm_t রূপে xdm লগ-ইনের অনুমতি প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen-কে প্রকৃত ডিস্ক ডিভাইস পড়তে/লিখতে অনুমদোন প্রদান করা হবে"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen নিয়ন্ত্রণের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS পাসওয়ার্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS Transfer ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-#~ "চিহ্নিত অ্যাপ্লিকেশন ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
 -
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
--#~ "ডিরেক্টরি পরিচালনার অনুমতি প্রদান করা হবে"
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "এই ব্যবহারকারী ভূমিকা দ্বারা রূপান্তরের জন্য অতিরিক্ত ডোমেইন নির্বাচন করুন"
 -
 -#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
 -#~ msgstr ""
--#~ "SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
--#~ "ডিরেক্টরি পড়ার অনুমতি প্রদান করা হবে"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "আপনি কি নিশ্চিতরূপে %s '%s' মুছে ফেলতে ইচ্ছুক?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s মুছে ফেলুন"
--
--#~ msgid "Add %s"
--#~ msgstr "%s যোগ করুন"
--
--#~ msgid "Modify %s"
--#~ msgstr "%s পরিবর্তন করুন"
--
--#~ msgid "Permissive"
--#~ msgstr "Permissive (সতর্কতামূলক)"
--
--#~ msgid "Enforcing"
--#~ msgstr "Enforcing (সম্পূর্ণ সক্রিয়)"
--
--#~ msgid "Disabled"
--#~ msgstr "Disabled (নিষ্ক্রিয়)"
--
--#~ msgid "Status"
--#~ msgstr "অবস্থা"
+-#~ "চিহ্নিত ব্যবহারকারীর ভূমিকা দ্বারা যে সমস্ত অ্যাপ্লিকেশন ডোমেইনে রূপান্তর করা সম্ভব "
+-#~ "হবে তা নির্বাচন করুন।"
 -
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "চিহ্নিত ডোমেইনের মধ্যে রূপান্তরযোগ্য ব্যবহারকারীর ভূমিকা নির্বাচন করুন"
 -
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgid "Select additional domains that this user role will administer"
 -#~ msgstr ""
--#~ "স্বত্বাধিকার (c)২০০৬ Red Hat, Inc.\n"
--#~ "স্বত্বাধিকার (c) ২০০৬ ড্যান ওয়াল্‌শ <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux লগ-ইন ম্যাপ ব্যবস্থা যোগ করা হবে"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux নেটওয়ার্ক পোর্ট যোগ করা হবে"
+-#~ "ব্যবহারকারী দ্বারা যে সমস্ত অতিরিক্ত ডোমেইন পরিচালিত হবে সেগুলি নির্বাচন করুন"
 -
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux Type"
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "চিহ্নিত ব্যবহারকারী দ্বারা পরিচালনার উদ্দেশ্যে ডোমেইন নির্বাচন করুন।"
 -
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "চিহ্নিত ব্যবহারকারীর জন্য অতিরিক্ত ভূমিকা নির্বাচন করুন"
 -
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
+-#~ msgid "Enter network ports that application/user role listens to"
 -#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "মাত্রা"
--
--#~ msgid "File Specification"
--#~ msgstr "ফাইলের বৈশিষ্ট্য"
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টে অপেক্ষা করা হবে"
 -
--#~ msgid "File Type"
--#~ msgstr "ফাইলের ধরন"
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP পোর্ট</b>"
 -
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
+-#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
--#~ "সর্বধরনের ফাইল\n"
--#~ "সাধারণ ফাইল\n"
--#~ "ডিরেক্টরি\n"
--#~ "ক্যারেক্টার ডিভাইস\n"
--#~ "ব্লক-ডিভাইস\n"
--#~ "সকেট\n"
--#~ "সিম্বলিক লিঙ্ক\n"
--#~ "নেমড পাইপ\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ব্যবহারকারী যোগ করুন"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux পরিচালনা"
--
--#~ msgid "Add"
--#~ msgstr "যোগ করুন"
--
--#~ msgid "_Properties"
--#~ msgstr "বৈশিষ্ট্য (_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "মুছে ফেলুন (_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "পরিচালনার বিষয় নির্বাচন করুন"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>নির্বাচন করুন:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "সিস্টেমের ডিফল্ট প্রয়োগ হওয়া মোড"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "বর্তমানে প্রয়োগ হওয়া মোড"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "সিস্টেমের ডিফল্ট নিয়মনীতির ধরন: "
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "পরবর্তী বুটের পরে রি-লেবেল করা হবে।"
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "বুলিয়ান বৈশিষ্ট্যের মান সিস্টেম ডিফল্টে প্রত্যাবর্তন করা হবে"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "স্বনির্ধারিত ও সকল বুলিয়ানের মধ্যে অদল-বদল করুন"
--
--#~ msgid "Filter"
--#~ msgstr "ফিল্টার"
--
--#~ msgid "Add File Context"
--#~ msgstr "ফাইল কনটেক্সট যোগ করা হবে"
--
--#~ msgid "Modify File Context"
--#~ msgstr "ফাইল কনটেকস্ট পরিবর্তন করা হবে"
--
--#~ msgid "Delete File Context"
--#~ msgstr "ফাইল কনটেক্সট মুছে ফেলুন"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "স্বনির্ধারিত ফাইল কনটেক্সট ও সকলের মধ্যে অদল-বদল করুন"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux ব্যবহারকারী ম্যাপ ব্যবস্থা যোগ করা হবে"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux ব্যবহারকারীর ম্যাপিং পরিবর্তন করুন"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux ব্যবহারকারী ম্যাপিং মুছে ফেলুন"
--
--#~ msgid "Add Translation"
--#~ msgstr "অনুবাদ যোগ করা হবে"
--
--#~ msgid "Modify Translation"
--#~ msgstr "অনুবাদ পরিবর্তন করুন"
--
--#~ msgid "Delete Translation"
--#~ msgstr "অনুবাদ মুছে ফেলুন"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux ব্যবহারকারী পরিবর্তন করুন"
--
--#~ msgid "Add Network Port"
--#~ msgstr "নেটওয়ার্ক পোর্ট যোগ করা হবে"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "নেটওয়ার্ক পোর্ট সম্পাদনা"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "নেটওয়ার্ক পোর্ট মুছে ফেলুন"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "স্বনির্ধারিত ও সকল পোর্টের মধ্যে অদল-বদল করুন"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "নতুন নিয়মনীতির মডিউল নির্মাণ করুন"
--
--#~ msgid "Load policy module"
--#~ msgstr "নিয়মনীতির মডিউল লোড করা হবে"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "লোড করার যোগ্য নিয়মনীতির মডিউল মুছে ফেলা হবে"
--
+-#~ "confine করা অ্যাপ্লিকেশন/ব্যবহারকারীদের যে কোনো udp পোর্টের সাথে bind করার "
+-#~ "সুযোগ দেয়।"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
+-#~ msgid "All"
+-#~ msgstr "সকল"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
 -#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
 -#~ msgstr ""
--#~ "লগ ফাইল দ্বারা সাধারণত উল্লেখ না হওয়া অতিরিক্ত অডিট নিয়ম সক্রিয়/নিষ্ক্রিয় করা "
--#~ "হবে।"
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "সংবেদনশীলতার মাত্রা"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux ব্যবহারকারী '%s'-র উপস্থিত আবশ্যক"
--
--#~ msgid "Requires value"
--#~ msgstr "মান আবশ্যক"
--
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 0 প্রয়োগ করে bindresvport কল করার সুযোগ দেওয়া হবে। "
+-#~ "পোর্ট সংখ্যা ৬০০-১০২৪-র সাথে bind করা হবে।"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 -#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "প্রেফিক্স বৈধ নয় %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
+-#~ "উপস্থিত পোর্টের সাথে বাইন্ড করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
+-#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "অসংরক্ষিত পোর্ট (>1024)"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "নির্বাচিত পোর্ট"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
--#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 1024-র অধিক যে কোনো tcp পোর্টের সাথে bind করার "
--#~ "সুযোগ দেওয়া হবে"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 1024-র অধিক যে কোনো udp পোর্টের সাথে bind করার "
+-#~ "সুযোগ দেওয়া হয়।"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP পোর্ট</b>"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
--#~ "confine করা অ্যাপ্লিকেশন/ব্যবহারকারীদের যে কোনো tcp পোর্টের সাথে bind করার "
--#~ "সুযোগ দেয়।"
--
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত নেটওয়ার্ক পোর্টের সাথে সংযোগ "
+-#~ "স্থাপন করা হবে"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
+-#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত tcp পোর্ট অথবা পোর্ট সীমার মধ্যে "
--#~ "à¦\89পসà§\8dথিত à¦ªà§\8bরà§\8dà¦\9fà§\87র à¦¸à¦¾à¦¥à§\87 à¦¬à¦¾à¦\87নà§\8dড করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
+-#~ "à¦\89পসà§\8dথিত à¦ªà§\8bরà§\8dà¦\9fà§\87র à¦¸à¦¾à¦¥à§\87 à¦¸à¦\82যà§\8bà¦\97 করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
 -#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux পলিসি নির্মাণের Druid"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "অসংরক্ষিত পোর্ট  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "আপনার অ্যাপ্লিকেশন দ্বারা 0 মান সহ bindresvport কল করা হলে এই চেক-বাটনটি "
--#~ "ব্যবহার করুন।"
--
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
 -#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux ব্যবহারকারী '%s'-র উপস্থিত আবশ্যক"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils-2.0.85/po/bn.po
---- nsapolicycoreutils/po/bn.po        2011-02-17 15:11:25.920721738 -0500
-+++ policycoreutils-2.0.85/po/bn.po    2011-02-18 16:03:41.345975583 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত udp পোর্ট অথবা পোর্ট সীমার মধ্যে "
+-#~ "উপস্থিত পোর্টের সাথে সংযোগ করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
+-#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
+-#~ msgid "Select common application traits"
+-#~ msgstr "সাধারণ অ্যাপ্লিকেশনের বৈশিষ্ট্য নির্বাচন করুন"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog বার্তা লেখা হয়\t"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp-র মধ্যে উপস্থিত অস্থায়ী ফাইল নির্মাণ/পরিবর্তন করুন"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "অনুমোদনের জন্য Pam ব্যবহার করুন"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
 +msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch অথবা getpw* কল ব্যবহার করা হয়"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ব্যবহার করা হয়"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+-#~ msgid "Sends audit messages"
+-#~ msgstr "অডিট সংক্রান্ত বার্তা পাঠানো হয়"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "টার্মিন্যালের সাথে যোগাযোগ"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+-#~ msgid "Sends email"
+-#~ msgstr "ই-মেইল বার্তা পাঠানো হয়"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "অ্যাপ্লিকেশন দ্বারা পরিচালিত ফাইল/ডিরেক্টরি নির্বাচন করুন"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "অ্যাপ্লিকেশন যে সমস্ত ফাইল/ডিরেক্টরিতে \"Write\" লিখতে পারবে সেগুলির নাম যোগ "
+-#~ "করুন। Pid ফাইল, লগ ফাইল, /var/lib ফাইল ..."
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "অ্যাপ্লিকেশন দ্বারা ব্যবহৃত বুলিয়ান নির্বাচন করুন"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "কনফাইন করা অ্যাপ্লিকেশন/ব্যবহারকারীর জন্য প্রয়োগ হওয়া বুলিয়ান যোগ করুন/মুছে ফেলুন"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "নিয়মনীতি নির্মাণের জন্য ব্যবহারযোগ্য ডিরেক্টরি নির্বাচন করুন"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#~ msgid "Policy Directory"
+-#~ msgstr "নিয়মনীতির ডিরেক্টরি"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "উৎপন্ন নিয়মনীতির ফাইল"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "বুলিয়ান ডায়লগ যোগ করুন"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+-#~ msgid "Boolean Name"
+-#~ msgstr "বুলিয়ান নাম"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-#~ msgid "Role"
+-#~ msgstr "Role"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+-#~ msgid "Existing_User"
+-#~ msgstr "উপস্থিত_ব্যবহারকারী"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+-#~ msgid "Application"
+-#~ msgstr "অ্যাপ্লিকেশন"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ডিরেক্টরি হওয়া আবশ্যক"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "You must select a user"
+-#~ msgstr "একটি ব্যবহারকারী নির্বাচন করা আবশ্যক"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "confine করার উদ্দেশ্যে এক্সিকিউটেবিল ফাইল নির্বাচন করুন"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "confine করার উদ্দেশ্যে init script ফাইল নির্বাচন করুন।"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "কনফাইন করা অ্যাপ্লিকেশন দ্বারা নির্মিত অথবা লেখা ফাইল নির্বাচন করুন"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "কনফাইন করা অ্যাপ্লিকেশনের মালিকানাধীন অথবা অ্যাপ্লিকেশন দ্বারা লিখনযোগ্য "
+-#~ "ডিরেক্টরি নির্বাচন করুন"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "নিয়মনীতি সংক্রান্ত ফাইল নির্মাণের জন্য ডিরেক্টরি নির্বাচন করুন"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "বর্তমান নিয়মনীতির মধ্যে %s_t ধরন বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
+-#~ "এগিয়ে যেতে ইচ্ছুক কি?"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-#~ msgid "Verify Name"
+-#~ msgstr "নাম পরীক্ষণ"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "বর্তমান নিয়মনীতির মধ্যে %s.pp মডিউল বর্তমানে ব্যাখ্যা করা হয়েছে।\n"
+-#~ "এগিয়ে যেতে ইচ্ছুক কি?"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+-#~ msgid "You must enter a name"
+-#~ msgstr "নাম উল্লেখ করা আবশ্যক"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+-#~ msgid "You must enter a executable"
+-#~ msgstr "এক্সেকিউটেবল উল্লেখ করা আবশ্যক"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux কনফিগার করুন"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr ""
+-#~ "পোর্ট সংখ্যার ক্ষেত্রে 1 থেকে %d-র মধ্যে সংখ্যা অথবা সংখ্যামালা ব্যবহার করা আবশ্যক "
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "কনফাইন করা প্রসেস/ব্যবহারকারীর জন্য নাম লেখা আবশ্যক"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER ধরনটি অনুমোদিত এক্সেকিউটেবল নয়"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "শুধুমাত্র DAEMON অ্যাপ্লিকেশন দ্বারা init স্ক্রিপ্ট ব্যবহার করা যাবে"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog-র মান বুলিয়ান হওয়া আবশ্যক "
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER ধরনের ক্ষেত্রে স্বয়ংক্রিয়রূপে tmp ধরন নির্ধারিত হবে"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "কনফাইন করা প্রসেসের ক্ষেত্রে এক্সেকিউটেবলের পাথ উল্লেখ করা আবশ্যক"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "ধরন প্রয়োগকারী ফাইল"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ইন্টারফেস সংক্রান্ত ফাইল"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "ফাইল কনটেক্সটের ফাইল"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "প্রস্তুতির স্ক্রিপ্ট"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux পোর্ট\n"
+-#~ "ধরন"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "প্রোটোকল"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "স্তর"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "পোর্ট"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "\"%s\" পোর্ট সংখ্যা বৈধ নয়।  0 < পোর্ট_সংখ্যা < 65536 "
+-
+-#~ msgid "List View"
+-#~ msgstr "তালিকা অনুসারে প্রদর্শন"
+-
+-#~ msgid "Group View"
+-#~ msgstr "সংকলন অনুযায়ী প্রদর্শন"
+-
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux Service Protection"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "অ্যাডমিন"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "সর্বধরনের ডেমন দ্বারা /-র মধ্যে corefile লেখার অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "সর্বধরনের ডেমনকে অব্যবহৃত ttys ব্যবহারের ক্ষমতা প্রদান করা হবে"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "ব্যবহারকারীর অধিকার"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "guest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "মেমরি সংরক্ষণ"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "mount দ্বারা যে কোনো ফাইল মাউন্ট করার অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "mount দ্বারা যে কোনো ডিরেক্টরি মাউন্ট করার অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer এক্সেকিউটেবল স্ট্যাকের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh দ্বারা ssh-keysign সঞ্চালনের অনুমতি দেওয়া হবে"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "staff SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "আন-কনফাইন করা SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত "
+-#~ "ডিরেক্টরি (home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "নেটওয়ার্ক কনফিগারেশন"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "লেবেল বিহীন প্যাকেটগুলি নেটওয়ার্কের মধ্যে চলাচলের অনুমতি প্রদান করা হবে"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "user SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr ""
+-#~ "আন-কনফাইন করা সামগ্রী unconfined_execmem-এ dyntrans করার অনুমতি প্রদান করা "
+-#~ "হবে"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "ডাটাবেস"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "ব্যবহারকারীদের mysql সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "ব্যবহারকারীদের postgres সকেটের সাথে সংযোগ করার অনুমতি প্রদান করা হবে"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "ক্লায়েন্টদেরকে X শেয়ার মেমরিতে লেখার অনুমতি প্রদান করা হবে"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux ব্যবহারকারী অ্যাকাউন্টের ক্ষেত্রে ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরি "
+-#~ "(home) অথবা /tmp ডিরেক্টরির মধ্যে ফাইল সঞ্চালনের অনুমতি প্রদান করা হবে"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "NIS-র সাথে ডেমন সঞ্চালনের অনুমতি দেওয়া হবে"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "ওয়েব অ্যাপ্লিকেশন"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "staff SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "sysadm SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "user SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "xguest SELinux ব্যবহারকারীকে ওয়েব ব্রাউজার ডোমেইনের মধ্যে রূপান্তর করা হবে"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
  
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr ""
+-#~ "staff ওয়েব ব্রাউজার দ্বারা ব্যক্তিগত (home) ডিরেক্টরির মধ্যে লেখার অনুমতি প্রদান "
+-#~ "করা হবে"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Cluster Server-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord দ্বারা বিবিধ বস্তু পাঠের অনুমতি প্রদান করা হবে। nfs, samba, "
+-#~ "অপসারণযোগ্য ডিভাইস, user temp ও অবিশ্বস্ত তথ্য সহ ফাইল"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "প্রিন্ট ব্যবস্থা"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd ব্যাক-এন্ড সার্ভারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "sysadm_t দ্বারা সরাসরি ডেমন আরম্ভের অনুমতি প্রদান করা হবে"
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Evolution-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "খেলা"
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "খেলার জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "ওয়েব ব্রাউজারের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Thunderbird-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "সুসংগতি"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr "বিপদের আশঙ্কাবিহীন জ্ঞাত সমস্যাসহ সামগ্রীর জন্য অডিট করা হবে না"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "hplip ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD পরিসেবা"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd চাইল্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr ""
+-#~ "evolution ও thunderbird দ্বারা ব্যবহারকারীদের ফাইল পাঠ করার অনুমতি প্রদান করা "
+-#~ "হবে"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "mozilla ব্রাউজার দ্বারা ব্যবহারকারীদের ফাইল পড়ার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "Name পরিসেবা"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "সাধারণ ব্যবহারকারীর জন্য pppd সঞ্চালনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "প্রমিত অবস্থান ভিন্ন অন্য অবস্থানে উপস্থিত ফাইলগুলি বিভিন্ন প্রোগ্রাম দ্বারা পাঠ "
+-#~ "করার অনুমতি প্রদান করা হবে (default_t)"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh-কে ডেমনের পরিবর্তে inetd থেকে সঞ্চালনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba দ্বারা nfs ডিরেক্টরি শেয়ার করার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL অনুমোদনের সার্ভার"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr ""
+-#~ "sasl অনুমোদন সার্ভার দ্বারা /etc/shadow ফাইল পাঠ করার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "X-Windows সার্ভার দ্বারা মেমরির অংশকে এক্সিকিউটেবল ও লিখনযোগ্য রূপে ম্যাপ করা "
+-#~ "হবে"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "কোনো প্রসেস দ্বারা কার্নেল মডিউল লোড করার অনুমতি প্রদান করা হবে না"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "কোনো প্রসেস দ্বারা SELinux নিয়মনীতি পরিবর্তনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans-র জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroubleshoot ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "স্প্যাম থেকে সুরক্ষা"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd দ্বারা ব্যক্তিগত (home) ডিরেক্টরি ব্যবহারের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Spam Assassin ডেমনের ক্ষেত্রে নেটওয়ার্ক ব্যবহারের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid ডেমন দ্বারা নেটওয়ার্কের সাথে সংযোগ স্থাপনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "sysadm_r:sysadm_t রূপে ssh লগ-ইনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r ব্যবহারকারীদের দ্বারা sysadm-র ব্যক্তিগত (home) ডিরেক্টরির মধ্যে "
+-#~ "অনুসন্ধান ও ফাইল (যেমন ~/.bashrc) পাঠের অনুমতি প্রদান করা হবে "
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "সার্বজনীন SSL টানেল"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "stunnel ডেমনকে xinetd-র বাইরে স্বতন্ত্ররূপে সঞ্চালনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "সিস্টেমের cron কর্মের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। xinetd দ্বারা আরম্ভ "
+-#~ "হওয়া যে সমস্ত পরিসেবার ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-কনফাইল "
+-#~ "অবস্থায় সঞ্চালিত হবে।"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "rc স্ক্রিপ্ট আন-কনফাইন অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে। rc স্ক্রিপ্ট দ্বারা "
+-#~ "আরম্ভ হওয়া যে সমস্ত ডেমনের ক্ষেত্রে ডোমেইন রূপান্তর নির্ধারিত হয়নি সেগুলিও আন-"
+-#~ "কনফাইল অবস্থায় সঞ্চালিত হবে।"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm আন-কনফাইল অবস্থায় সঞ্চালনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "বিশেষ অধিকারপ্রাপ্ত সামগ্রী যেম hotplug ও insmod-কে আন-কনফাইন রূপে সঞ্চালনের "
+-#~ "অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r-কে su, sudo অথবা userhelper-র সাহায্যে sysadm_r প্রাপ্ত করার অনুমতি "
+-#~ "প্রদান করা হবে। অন্যথা, শুধুমাত্র staff_r দ্বারা এটি করা সম্ভব হবে"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "ব্যবহারকারীদের দ্বারা mount কমান্ড প্রয়োগ করার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "সাধারণ ব্যবহারকারীদের ক্ষেত্রে সরাসরি মাউসের ব্যবহারের অনুমতি প্রদান করা হবে "
+-#~ "(শুধুমাত্র X সার্ভার ব্যবহার করা হবে)"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "ব্যবহারকারীদের dmesg কমান্ড প্রয়োগের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "ব্যবহারকারীদেরকে নেটওয়ার্ক ইন্টারফেস নিয়ন্ত্রণের অনুমতি প্রদান করা হবে "
+-#~ "(USERCTL=true আবশ্যক)"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "সাধারণ ব্যবহারকারীদেরকে ping প্রয়োগ করার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "ব্যবহারকারীদের noextattrfile পড়তে/লিখতে (r/w) অনুমতি প্রদান করা হবে (FAT, "
+-#~ "CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "ব্যবহারকারীদের usb পড়তে ও লিখতে (rw) অনুমোদন করা হবে"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ব্যবহারকারীদের ttyfiles stat করার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "sysadm_r:sysadm_t রূপে xdm লগ-ইনের অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "xen-কে প্রকৃত ডিস্ক ডিভাইস পড়তে/লিখতে অনুমদোন প্রদান করা হবে"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen নিয়ন্ত্রণের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS পাসওয়ার্ড ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS Transfer ডেমনের জন্য SELinux নিরাপত্তা নিষ্ক্রিয় করুন"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
+-#~ "ডিরেক্টরি পরিচালনার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm ব্যবহারকারীকে অধিকারবিহীন ব্যবহারকারীদের ব্যক্তিগত (home) "
+-#~ "ডিরেক্টরি পড়ার অনুমতি প্রদান করা হবে"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "আপনি কি নিশ্চিতরূপে %s '%s' মুছে ফেলতে ইচ্ছুক?"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Delete %s"
+-#~ msgstr "%s মুছে ফেলুন"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Add %s"
+-#~ msgstr "%s যোগ করুন"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Modify %s"
+-#~ msgstr "%s পরিবর্তন করুন"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Permissive"
+-#~ msgstr "Permissive (সতর্কতামূলক)"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Enforcing"
+-#~ msgstr "Enforcing (সম্পূর্ণ সক্রিয়)"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "স্বত্বাধিকার (c)২০০৬ Red Hat, Inc.\n"
+-#~ "স্বত্বাধিকার (c) ২০০৬ ড্যান ওয়াল্‌শ <dwalsh@redhat.com>"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux লগ-ইন ম্যাপ ব্যবস্থা যোগ করা হবে"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux নেটওয়ার্ক পোর্ট যোগ করা হবে"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux Type"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "মাত্রা"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "File Specification"
+-#~ msgstr "ফাইলের বৈশিষ্ট্য"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "File Type"
+-#~ msgstr "ফাইলের ধরন"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "সর্বধরনের ফাইল\n"
+-#~ "সাধারণ ফাইল\n"
+-#~ "ডিরেক্টরি\n"
+-#~ "ক্যারেক্টার ডিভাইস\n"
+-#~ "ব্লক-ডিভাইস\n"
+-#~ "সকেট\n"
+-#~ "সিম্বলিক লিঙ্ক\n"
+-#~ "নেমড পাইপ\n"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
@@ -29756,54 +39655,70 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ব্যবহারকারী যোগ করুন"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux পরিচালনা"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Add"
+-#~ msgstr "যোগ করুন"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "_Properties"
+-#~ msgstr "বৈশিষ্ট্য (_P)"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "_Delete"
+-#~ msgstr "মুছে ফেলুন (_D)"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Select Management Object"
+-#~ msgstr "পরিচালনার বিষয় নির্বাচন করুন"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>নির্বাচন করুন:</b>"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "সিস্টেমের ডিফল্ট প্রয়োগ হওয়া মোড"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "বর্তমানে প্রয়োগ হওয়া মোড"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -29813,54 +39728,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "সিস্টেমের ডিফল্ট নিয়মনীতির ধরন: "
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "পরবর্তী বুটের পরে রি-লেবেল করা হবে।"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "বুলিয়ান বৈশিষ্ট্যের মান সিস্টেম ডিফল্টে প্রত্যাবর্তন করা হবে"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "স্বনির্ধারিত ও সকল বুলিয়ানের মধ্যে অদল-বদল করুন"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "ফিল্টার"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "ফাইল কনটেক্সট যোগ করা হবে"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "ফাইল কনটেকস্ট পরিবর্তন করা হবে"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Delete File Context"
+-#~ msgstr "ফাইল কনটেক্সট মুছে ফেলুন"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "স্বনির্ধারিত ফাইল কনটেক্সট ও সকলের মধ্যে অদল-বদল করুন"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -29871,229 +39797,295 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux ব্যবহারকারী ম্যাপ ব্যবস্থা যোগ করা হবে"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux ব্যবহারকারীর ম্যাপিং পরিবর্তন করুন"
+-
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux ব্যবহারকারী ম্যাপিং মুছে ফেলুন"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Add Translation"
+-#~ msgstr "অনুবাদ যোগ করা হবে"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Modify Translation"
+-#~ msgstr "অনুবাদ পরিবর্তন করুন"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Delete Translation"
+-#~ msgstr "অনুবাদ মুছে ফেলুন"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux ব্যবহারকারী পরিবর্তন করুন"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Add Network Port"
+-#~ msgstr "নেটওয়ার্ক পোর্ট যোগ করা হবে"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Edit Network Port"
+-#~ msgstr "নেটওয়ার্ক পোর্ট সম্পাদনা"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Delete Network Port"
+-#~ msgstr "নেটওয়ার্ক পোর্ট মুছে ফেলুন"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "স্বনির্ধারিত ও সকল পোর্টের মধ্যে অদল-বদল করুন"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Generate new policy module"
+-#~ msgstr "নতুন নিয়মনীতির মডিউল নির্মাণ করুন"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "Load policy module"
+-#~ msgstr "নিয়মনীতির মডিউল লোড করা হবে"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "লোড করার যোগ্য নিয়মনীতির মডিউল মুছে ফেলা হবে"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "লগ ফাইল দ্বারা সাধারণত উল্লেখ না হওয়া অতিরিক্ত অডিট নিয়ম সক্রিয়/নিষ্ক্রিয় করা "
+-#~ "হবে।"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "সংবেদনশীলতার মাত্রা"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux ব্যবহারকারী '%s'-র উপস্থিত আবশ্যক"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid "Requires value"
+-#~ msgstr "মান আবশ্যক"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারীদের 1024-র অধিক যে কোনো tcp পোর্টের সাথে bind করার "
+-#~ "সুযোগ দেওয়া হবে"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "confine করা অ্যাপ্লিকেশন/ব্যবহারকারীদের যে কোনো tcp পোর্টের সাথে bind করার "
+-#~ "সুযোগ দেয়।"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "অ্যাপ্লিকেশন/ব্যবহারকারী ভূমিকা দ্বারা যে সমস্ত tcp পোর্ট অথবা পোর্ট সীমার মধ্যে "
+-#~ "উপস্থিত পোর্টের সাথে বাইন্ড করতে সক্ষম হবে সেগুলির তালিকা নির্মাণ করুন ও কমা "
+-#~ "চিহ্ন দ্বারা বিভাজন করুন। উদাহরণস্বরূপ: 612, 650-660"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux পলিসি নির্মাণের Druid"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "অসংরক্ষিত পোর্ট  (> 1024)"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "আপনার অ্যাপ্লিকেশন দ্বারা 0 মান সহ bindresvport কল করা হলে এই চেক-বাটনটি "
+-#~ "ব্যবহার করুন।"
+-
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -30101,1141 +40093,567 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils-2.0.85/po/bs.po
---- nsapolicycoreutils/po/bs.po        2011-02-17 15:11:25.440729666 -0500
-+++ policycoreutils-2.0.85/po/bs.po    2011-02-18 16:03:41.345975583 -0500
-@@ -4,10 +4,11 @@
+diff --git a/policycoreutils/po/bs.po b/policycoreutils/po/bs.po
+index 6430d38..10dc679 100644
+--- a/policycoreutils/po/bs.po
++++ b/policycoreutils/po/bs.po
+@@ -1,20 +1,24 @@
+-# translation of bs.po to Bosnian
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
+ # Adnan Hodzic <AbsintheSyringe@gmail.com>, 2007.
+ msgid ""
  msgstr ""
- "Project-Id-Version: bs\n"
+-"Project-Id-Version: bs\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2007-01-23 16:51+0100\n"
- "Last-Translator: Adnan Hodzic <AbsintheSyringe@gmail.com>\n"
- "Language-Team: Bosnian <lokal@linux.org.ba>\n"
-+"Language: bs\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-01-23 16:51+0100\n"
+-"Last-Translator: Adnan Hodzic <AbsintheSyringe@gmail.com>\n"
+-"Language-Team: Bosnian <lokal@linux.org.ba>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Bosnian (http://www.transifex.net/projects/p/fedora/language/"
++"bs/)\n"
+ "Language: bs\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-@@ -15,6 +16,25 @@
- "X-Poedit-Country: CROATIA\n"
- "X-Generator: KBabel 1.11.4\n"
+-"X-Poedit-Language: Croatian\n"
+-"X-Poedit-Country: CROATIA\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "Potrebna je SELinux vrsta"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Čitanje pohrane pravila nije moguće."
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -125,7 +145,8 @@
- msgid "Level"
- msgstr ""
+@@ -81,11 +85,8 @@ msgid "Could not set exec context to %s.\n"
+ msgstr "Nije moguće postaviti exec kontekst za %s.\n"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -179,743 +200,750 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+ #: ../audit2allow/audit2allow:230
+-#, fuzzy
+ msgid "******************** IMPORTANT ***********************\n"
  msgstr ""
+-"\n"
+-"********************  VAŽNO  ***********************\n"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+@@ -96,9 +97,8 @@ msgid "global"
  msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Izrada ključa za %s nije moguća"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, 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"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Mapiranje prijave za %s već je određeno"
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Semanage transakciju nije moguće pokrenuti"
++msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux korisnik %s ne postoji"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+@@ -113,9 +113,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Uspostavljanje semanage veze nije moguće"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux korisnik %s ne postoji"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Zadavanje MLS raspona za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Izrada mapiranja prijave za %s nije moguća"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -130,28 +129,26 @@ msgid "Could not start semanage transaction"
+ msgstr "Semanage transakciju nije moguće pokrenuti"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Zadavanje naziva za %s nije moguće"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Semanage transakciju nije moguće pokrenuti"
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Zadavanje MLS raspona za %s nije moguće"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+ msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Zadavanje SELinux korisnika za %s nije moguće"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Ispisivanje popisa SELinux korisnika nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Dodavanje mapiranja prijave za %s nije moguće"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- #, fuzzy
- msgid "add SELinux user mapping"
- msgstr "Dodavanje SELinux korisnika %s nije moguće"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Zahtijeva seuser ili serange"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Mapiranje prijave za %s nije određeno"
+@@ -161,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Propitivanje seusera za %s nije moguće"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Dodavanje uloge %s za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Uređivanje mapiranja prijave za %s nije moguće"
+@@ -210,9 +207,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Nije moguće provjeriti je li mapiranje za prijavu %s određeno"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- 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:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Brisanje mapiranja prijave za %s nije moguće"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -279,16 +276,20 @@ msgid "Could not list login mappings"
  msgstr "Ispisivanje popisa mapiranja prijava nije moguće"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- #, fuzzy
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "Potrebna je SELinux vrsta"
+-msgstr "Potrebna je SELinux vrsta"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Dodavanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Nije moguće provjeriti je li SELinux korisnik %s određen"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux korisnik %s već je određen"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Izrada SELinux korisnika za %s nije moguća"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Dodavanje uloge %s za %s nije moguće"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Zadavanje MLS razine za %s nije moguće"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Dodavanje prefiksa %s za %s nije moguće"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Izvlačenje ključa za %s nije moguće"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Dodavanje SELinux korisnika %s nije moguće"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Zahtijeva prefiks, uloge, razinu ili raspon"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Zahtijeva prefiks ili uloge"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux korisnik %s nije određen"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
+@@ -306,9 +307,9 @@ msgid "Could not query user for %s"
  msgstr "Propitivanje korisnika za %s nije moguće"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Uređivanje SELinux korisnika %s nije moguće"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- 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:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Brisanje SELinux korisnika %s nije moguće"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Ispisivanje popisa SELinux korisnika nije moguće"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Dodavanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Ispisivanje popisa uloga korisnika %s nije moguće"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
+@@ -398,6 +399,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Potreban je UDP ili TCP protokol"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -410,9 +412,8 @@ msgid "Port is required"
  msgstr "Potreban je port"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Izrada ključa za %s/%s nije moguća"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Potrebna je vrsta"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Nije moguće provjeriti je li port %s/%s određen"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s već je određen"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Izrada porta za %s/%s nije moguća"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Izrada konteksta za %s/%s nije moguća"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Zadavanje korisnika u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Zadavanje uloge u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Zadavanje vrste u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Zadavanje MLS polja u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Zadavanje konteksta porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Dodavanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Zahtijeva setype ili serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Zahtijeva setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s nije određen"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Propitivanje porta %s/%s nije moguće"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Neispravan prefiks %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
+@@ -499,14 +500,13 @@ msgid "Could not modify port %s/%s"
  msgstr "Uređivanje porta %s/%s nije moguće"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "Ispisivanje popisa portova nije moguće"
+-msgstr "Ispisivanje popisa portova nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "Brisanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
+-msgstr "Brisanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Brisanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Ispisivanje popisa portova nije moguće"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -530,14 +530,13 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "Potreban je port"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Potreban je port"
+-msgstr "Potreban je port"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Potrebna je SELinux vrsta"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Izrada ključa za %s nije moguća"
+@@ -558,14 +557,14 @@ msgstr "Izrada ključa za %s nije moguća"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "Nije moguće provjeriti je li port %s/%s određen"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Port %s/%s već je određen"
+-msgstr "Nije moguće provjeriti je li port %s/%s određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Izrada ključa za %s nije moguća"
+-msgstr "Izrada ključa za %s nije moguća"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -574,74 +573,72 @@ msgid "Could not create context for %s"
  msgstr "Izrada konteksta za %s nije moguća"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Zadavanje naziva za %s nije moguće"
+-msgstr "Zadavanje naziva za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
+-msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
+-msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
+-msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
+-msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Zadavanje konteksta datoteke za %s nije moguće"
+-msgstr "Zadavanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Dodavanje porta %s/%s nije moguće"
+-msgstr "Dodavanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "Port %s/%s nije određen"
+-msgstr "Port %s/%s nije određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Propitivanje porta %s/%s nije moguće"
+-msgstr "Propitivanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Uređivanje porta %s/%s nije moguće"
+-msgstr "Uređivanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
+-msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Brisanje sučelja %s nije moguće"
+-msgstr "Brisanje sučelja %s nije moguće"
++msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Brisanje mapiranja prijave za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "Ispisivanje popisa portova nije moguće"
+-msgstr "Ispisivanje popisa portova nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Nije moguće provjeriti je li sučelje %s određeno"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -715,9 +712,8 @@ msgid "Could not delete interface %s"
+ msgstr "Brisanje sučelja %s nije moguće"
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Sučelje %s već je određeno"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Brisanje sučelja %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Izrada sučelja za %s nije moguće"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -732,9 +728,9 @@ msgid "Context"
+ msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Zadavanje korisnika u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Zadavanje uloge u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Zadavanje vrste u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Zadavanje MLS polja u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Zadavanje konteksta sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Zadavanje konteksta poruke za %s nije moguće"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Dodavanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Sučelje %s nije određeno"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Propitivanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Uređivanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- 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:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Brisanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Ispisivanje popisa sučelja nije moguće"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Kontekst datoteke za %s već je određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
+@@ -742,9 +738,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, 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"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Kontekst datoteke za %s već je određen"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Izrada konteksta datoteke za %s nije moguća"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Zadavanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Dodavanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Zahtijeva setype, serange ili seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Kontekst datoteke za %s nije određen"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Propitivanje konteksta datoteke za %s nije moguće"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not modify file context for %s"
+@@ -823,14 +819,13 @@ msgid "Could not modify file context for %s"
  msgstr "Uređivanje konteksta datoteke za %s nije moguće"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
+-msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr "Brisanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- 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:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Brisanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Izrada popisa konteksta lokalnih datoteka nije moguća"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, 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:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Booleova vrijednost %s nije određena"
+-msgstr "Brisanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not query file context %s"
+@@ -887,14 +882,14 @@ msgid "Could not query file context %s"
  msgstr "Propitivanje konteksta datoteke %s nije moguće"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Potrebno je odrediti prefiks"
+-msgstr "Potrebno je odrediti prefiks"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Brisanje Booleove vrijednosti %s nije moguće"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Uređivanje Booleove vrijednosti %s nije moguće"
+-msgstr "Brisanje Booleove vrijednosti %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Bad format %s: Record %s"
+@@ -944,7 +939,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- 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:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Brisanje Booleove vrijednosti %s nije moguće"
+@@ -1138,9 +1134,9 @@ msgid "failed to get old_context.\n"
+ msgstr "Dohvaćanje starog konteksta nije uspjelo.\n"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Ispisivanje popisa Booleovih vrijednosti nije moguće"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Greška! Dohvaćanje TTY podataka nije moguće.\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1187,9 +1183,9 @@ msgid "failed to exec shell\n"
+ msgstr "Izvršavanje ljuske nije uspjelo\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "upotreba:  %s [-bq]\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+@@ -1197,9 +1193,9 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s: Pravilo nije moguće učitati: %s\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+@@ -1285,180 +1281,2096 @@ msgstr "chcat -- -TvrtkaPovjerljivo /docs/poslovniplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +TvrtkaPovjerljivo juser"
  
-@@ -1291,86 +1319,2087 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "Greška opcija %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
 -#, fuzzy
 -#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Potrebna je SELinux vrsta"
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Otvaranje %s nije moguće: Prijevodi nisu podržani na ne-MLS računalima"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Potrebna je SELinux vrsta"
++
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Greška pri slanju poruke provjere.\n"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Potrebno je odrediti ulogu"
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
++
 +#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Potrebno je odrediti ulogu"
 +msgid ""
 +"Selinux\n"
 +"File Type"
-+msgstr "Potrebna je SELinux vrsta"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Potrebno je odrediti ulogu"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Generiranje datoteke prisile vrste: %s.te"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Sučelje %s nije određeno"
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Kontekst datoteke za %s nije određen"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux korisnik %s nije određen"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Pravila prevođenja"
++
 +#: ../gui/loginsPage.py:133
-+#, fuzzy, python-format
++#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Potrebna je SELinux vrsta"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Provjera autentičnosti %s.\n"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Potrebna je SELinux vrsta"
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Uređivanje SELinux korisnika %s nije moguće"
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Brisanje SELinux korisnika %s nije moguće"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Uređivanje SELinux korisnika %s nije moguće"
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Čitanje pohrane pravila nije moguće."
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Potrebna je SELinux vrsta"
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
@@ -31249,488 +40667,665 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Prijevodi ne mogu sadržavati prazna mjesta (razmake) '%s' "
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Neispravna razina '%s'. "
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s već je definiran u prijevodima"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nije definiran u prijevodima"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mapiranje prijave za %s već je određeno"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux korisnik %s već je određen"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Potreban je port"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s već je određen"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Sučelje %s već je određeno"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Greška pri inicijalizaciji sposobnosti. Bit će prekinuto.\n"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Greška pri postavljanju sposobnosti. Bit će prekinuto.\n"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Greška postavljanju KEEPCAPS. Bit će prekinuto.\n"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Greška pri ispuštanju sposobnosti. Bit će prekinuto.\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Greška pri ispuštanju SETUID sposobnosti. Bit će prekinuto.\n"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Greška pri oslobađanju sposobnosti\n"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Potrebna je SELinux vrsta"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Potrebna je SELinux vrsta"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Greška pri slanju poruke provjere.\n"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Potrebno je odrediti ulogu"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Potrebno je odrediti ulogu"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Potrebno je odrediti ulogu"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Generiranje datoteke prisile vrste: %s.te"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Sučelje %s nije određeno"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Kontekst datoteke za %s nije određen"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux korisnik %s nije određen"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Pravila prevođenja"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Provjera autentičnosti %s.\n"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Potrebna je SELinux vrsta"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Uređivanje SELinux korisnika %s nije moguće"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Brisanje SELinux korisnika %s nije moguće"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Uređivanje SELinux korisnika %s nije moguće"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Čitanje pohrane pravila nije moguće."
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Potrebna je SELinux vrsta"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Requires value"
+-#~ msgstr "Zahtijeva vrijednost"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Zahtijeva 2 ili više argumenta"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "%s not defined"
+-#~ msgstr "%s nije određen"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s nije valjan za %s objekata\n"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "Opseg nije podržan na ne-MLS računalima"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Neispravna vrijednost '%s'. "
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Da bi se ovaj novoizrađeni paket pravila učitao u kernel,\n"
+-#~ "potrebno je da izvršite naredbu \n"
+-#~ "\n"
+-#~ "semodule -I %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Opciona greška: %s "
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+#, fuzzy
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Greška pri slanju poruke provjere.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+#, fuzzy
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Potrebno je odrediti ulogu"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+#, fuzzy
-+msgid "You must enter a name"
-+msgstr "Potrebno je odrediti ulogu"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
-+#, fuzzy
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Potrebno je odrediti ulogu"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
-+#, fuzzy
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Generiranje datoteke prisile vrste: %s.te"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
-+#, fuzzy
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Sučelje %s nije određeno"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
-+#, fuzzy
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Kontekst datoteke za %s nije određen"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -31763,7 +41358,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -31812,9 +41407,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+#, fuzzy
 +msgid "SELinux Service Protection"
-+msgstr "SELinux korisnik %s nije određen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
@@ -32222,9 +41816,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:87
-+#, fuzzy
 +msgid "Compatibility"
-+msgstr "Pravila prevođenja"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
@@ -32562,9 +42155,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+#, fuzzy
 +msgid "SASL authentication server"
-+msgstr "Provjera autentičnosti %s.\n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
@@ -32894,18 +42486,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -32946,7 +42534,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -32955,26 +42542,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Potrebna je SELinux vrsta"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -32986,59 +42566,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Dodavanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -33046,240 +42625,215 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bs.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Uređivanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Brisanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Dodavanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Uređivanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Čitanje pohrane pravila nije moguće."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
 +#: ../gui/usersPage.py:138
-+#, fuzzy, python-format
++#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Potrebna je SELinux vrsta"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
- #~ msgid "Requires value"
- #~ msgstr "Zahtijeva vrijednost"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils-2.0.85/po/ca.po
---- nsapolicycoreutils/po/ca.po        2011-02-17 15:11:25.745724636 -0500
-+++ policycoreutils-2.0.85/po/ca.po    2011-02-18 16:03:41.346975590 -0500
-@@ -5,6 +5,8 @@
++msgstr ""
+diff --git a/policycoreutils/po/ca.po b/policycoreutils/po/ca.po
+index c676726..c333722 100644
+--- a/policycoreutils/po/ca.po
++++ b/policycoreutils/po/ca.po
+@@ -1,35 +1,24 @@
+-# Catalan translation for policycoreutils
+-# Copyright © 2006 The Free Software Foundation, Inc.
+-# This file is distributed under the same license as the policycoreutils
+-#   package.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
  #
++# Translators:
++# Albert Carabasa Giribet <albertc@asic.udl.cat>, 2009.
  # Josep Puigdemont Casamajó <josep.puigdemont@gmail.com>, 2006.
- # Xavier Conde Rueda <xavi.conde@gmail.com>, 2006
-+# Josep Torné Llavall <josep.torne@gmail.com>,2009
-+# Albert Carabasa Giribet <albertc@asic.udl.cat>, 2009
- #
- # 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
-@@ -22,14 +24,32 @@
+-# Xavier Conde Rueda <xavi.conde@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.
+-#
++# Xavier Conde Rueda <xavi.conde@gmail.com>, 2006.
+ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2006-12-03 01:04+0100\n"
 -"Last-Translator: Xavier Conde Rueda <xavi.conde@gmail.com>\n"
 -"Language-Team: Catalan <tradgnome@softcatala.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-09-15 20:40+0100\n"
-+"Last-Translator: Robert Antoni Buj Gelonch <robert.buj@gmail.com>\n"
-+"Language-Team: Catalan <fedora@softcatala.net>\n"
-+"Language: ca\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Catalan <fedora@llistes.softcatala.org>\n"
+ "Language: ca\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configureu les preferènciies de SELinux amb mode gràfic"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Gestió de SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Genera els mòduls de les polítiques de SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Eina de generació de polítiques del SELinux"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -97,25 +117,21 @@
+@@ -98,29 +87,25 @@ msgid "Could not set exec context to %s.\n"
  msgstr "No s'ha pogut establir el context d'execució a %s.\n"
  
- #: ../audit2allow/audit2allow:217
+ #: ../audit2allow/audit2allow:230
 -#, fuzzy
  msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
@@ -33287,1171 +42841,621 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 -"******************** IMPORTANT ***********************\n"
 +msgstr "******************** IMPORTANT ***********************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
 -msgstr ""
 +msgstr "Per activar aquest paquet de política, executeu:"
  
- #: ../semanage/seobject.py:48
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "global"
+ #: ../semanage/seobject.py:222
 -#, fuzzy
  msgid "Could not create semanage handle"
 -msgstr "No s'ha pogut iniciar la transacció del semanage"
 +msgstr "No s'ha pogut crear el gestor del semanage"
  
- #: ../semanage/seobject.py:55
+ #: ../semanage/seobject.py:230
  msgid "SELinux policy is not managed or store cannot be accessed."
  msgstr ""
 -"No s'està gestionant les polítiques del SELinux o no es pot accedir el "
 +"No s'està gestionant les polítiques del SELinux o no es pot accedir al "
  "magatzem."
  
- #: ../semanage/seobject.py:60
-@@ -127,28 +143,28 @@
+ #: ../semanage/seobject.py:235
+@@ -132,47 +117,44 @@ msgid "Could not establish semanage connection"
  msgstr "No es pot establir la connexió amb el semanage"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
 -msgstr "No s'ha pogut establir el rang MLS per a %s"
 +msgstr "No s'ha pogut provar l'estat del MLS %s"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "global"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"No s'ha pogut obrir %s: les traduccions no estan suportades a màquines sense "
--"MLS"
-+"No s'ha pogut obrir %s: les traduccions no estan disponibles en màquines "
-+"sense MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Nivell"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Traducció"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
-@@ -172,778 +188,779 @@
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
 +msgstr "Encara no està implementat"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "Tansacció semanage ja en progrés"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
  msgstr "No s'ha pogut iniciar la transacció del semanage"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
 -msgstr "No s'ha pogut iniciar la transacció del semanage"
 +msgstr "No s'ha pogut completar la transacció del semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "Tansacció semanage no en progrés"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
 -msgstr "No es pot llistar els usuaris SELinux"
 +msgstr "No s'han pogut llistar els mòduls SELinux"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
 -msgstr ""
-+msgstr "Tipus permissius"
++msgstr "Versió"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Desactivat"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:322
+ #, python-format
+@@ -180,9 +162,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "No s'ha pogut afegir el rol %s per a %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -205,11 +187,13 @@ msgstr ""
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
 +"No s'ha pogut establir el domini permissiu %s (la instal·lació del mòdul ha "
 +"fallat)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
 +msgstr "No s'ha pogut eliminar el domini permissiu %s (l'eliminació ha fallat)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "No s'ha pogut crear una clau per a %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -229,9 +213,9 @@ msgid "Could not check if login mapping for %s is defined"
  msgstr "No s'ha pogut comprovar si està definit el mapatge d'entrada per a %s"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Ja s'ha definit el mapatge per a %s"
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
 -msgstr "No existeix l'usuari de Linux %s"
 +msgstr "No existeix el grup de Linux %s"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "No existeix l'usuari de Linux %s"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "No s'ha pogut crear el mapatge d'entrada per a %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "No s'ha pogut establir el nom per a %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "No s'ha pogut establir el rang MLS per a %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "No s'ha pogut establir l'usuari SELinux per a %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "No s'ha pogut afegir el mapatge d'entrada per a %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
--#, fuzzy
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "No s'ha pogut afegir l'usuari SELinux %s"
-+msgstr "afegeix el mapa d'usuaris de SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Es necessita el seuser o el serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "No s'ha definit el mapatge de l'entrada per a %s"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "No s'ha pogut consultar el seuser quant a %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "No s'ha pogut modificar el mapatge d'entrada per a %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "S'ha definit el mapatge per a %s a la política, no es pot suprimir"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "No s'ha pogut suprimir el mapatge d'entrada per a %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -298,18 +282,22 @@ msgid "Could not list login mappings"
  msgstr "No s'ha pogut llistar els mapatges d'entrada"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
 -msgstr ""
 +msgstr "Nom d'entrada"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 -#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr "Cal el tipus SELinux"
 +msgstr "Usuari SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
 -msgstr ""
 +msgstr "Rang MLS/MCS"
  
--#: ../semanage/seobject.py:594
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -325,9 +313,9 @@ msgid "Could not query user for %s"
+ msgstr "No s'ha pogut demanar l'usuari per a %s"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
 -msgstr "No s'ha pogut afegir el context de fitxer per a %s"
 +msgstr "Heu d'afegir almenys un rol per %s"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "No s'ha pogut comprovar si està definit l'usuari SELinux %s"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "L'usuari SELinux %s ja està definit"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "No s'ha pogut crear l'usuari SELinux per a %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "No s'ha pogut afegir el rol %s per a %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "No s'ha pogut establir el nivell MLS per a %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "No s'ha pogut afegir el prefix %s per a %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "No s'ha pogut extreure la clau per a %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "No s'ha pogut afegir l'usuari SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Necessita prefix, rols, nivell o rang"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Necessita prefix o rols"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "L'usuari SELinux %s no està definit"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "No s'ha pogut demanar l'usuari per a %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "No s'ha pogut modificar l'usuari SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "L'usuari SELinux %s està definit a la política, no es pot suprimir"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "No s'ha pogut suprimir l'usuari SELinux %s"
+@@ -389,7 +377,7 @@ msgstr "No s'ha pogut suprimir l'usuari SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
 -msgstr "No es pot llistar els usuaris SELinux"
 +msgstr "No es poden llistar els usuaris SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "No es pot llistar els rols per a l'usuari %s"
+@@ -398,27 +386,28 @@ msgstr "No es pot llistar els rols per a l'usuari %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
 -msgstr ""
 +msgstr "Etiquetatge"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
 -msgstr ""
 +msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
 -msgstr ""
 +msgstr "Prefix"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
 -msgstr ""
 +msgstr "Nivell MCS"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
 -msgstr ""
 +msgstr "Rang MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
 -msgstr ""
 +msgstr "Rols SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Es necessita el protocol udp o tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -429,9 +418,8 @@ msgid "Port is required"
  msgstr "Cal el port"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "No s'ha pogut crear una clau per a %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Cal el tipus"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "No s'ha pogut comprovar si el port %s/%s està definit"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "El port %s/%s està definit"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "No s'ha pogut crear el port per a %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "No s'ha pogut crear el context per a %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "No s'ha pogut establir l'usuari al context del port per a %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "No s'ha pogut establir el rol al context del port per a %s/%s"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "El prefix %s invàlid"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "No s'ha pogut establir el tipus al context del port per a %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+@@ -482,7 +470,7 @@ msgstr "No s'ha pogut establir el tipus al context del port per a %s/%s"
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
  msgstr ""
 -"No s'ha pogut establir els camps mls en el context del port per a %s/%s"
 +"No s'han pogut establir els camps mls en el context del port per a %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "No s'ha pogut establir el context del port per a %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "No s'ha pogut afegir el port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Cal el setype o el serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Cal el setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "El port %s/%s no està definit"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "No es pot consultar el port %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1029
  #, python-format
- msgid "Could not modify port %s/%s"
+@@ -519,14 +507,13 @@ msgid "Could not modify port %s/%s"
  msgstr "No es pot modificar el port %s/%s"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
 -msgstr "No s'ha pogut llistar els ports"
 +msgstr "No s'han pogut llistar els ports"
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
 -msgstr "No s'ha pogut suprimir el port %s/%s"
 +msgstr "No s'ha pogut suprimir el port %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "El port %s/%s està definit en la política, no es pot suprimir"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "No s'ha pogut suprimir el port %s/%s"
+@@ -540,28 +527,27 @@ msgstr "No s'ha pogut suprimir el port %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
 -msgstr "No s'ha pogut llistar els ports"
 +msgstr "No s'han pogut llistar els ports"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
 -msgstr ""
 +msgstr "Tipus de port SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
 -msgstr ""
 +msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
 -msgstr ""
 +msgstr "Número de port"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
 -msgstr "Cal el port"
 +msgstr "L'adreça del node és necessària"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Cal el port"
-+msgstr "La màscara del node és necessària"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "Manca el port o no es coneix"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Cal el tipus SELinux"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "No s'ha pogut crear la clau per a %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -578,14 +564,14 @@ msgstr "No s'ha pogut crear la clau per a %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr "No s'ha pogut comprovar si el port %s/%s està definit"
 +msgstr "No s'ha pogut comprovar si l'adreça %s està definida"
  
--#: ../semanage/seobject.py:1064
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "El port %s/%s està definit"
-+msgstr "L'adreça %s està definida"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
 -msgstr "No s'ha pogut crear una clau per a %s"
 +msgstr "No s'ha pogut crear l'adreça per a %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -594,74 +580,73 @@ msgid "Could not create context for %s"
  msgstr "No s'ha pogut crear el context per a %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
 -msgstr "No s'ha pogut establir el nom per a %s"
 +msgstr "No s'ha pogut establir la màscara per a %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr "No s'ha pogut establir l'usuari en el context del fitxer per a %s"
 +msgstr "No s'ha pogut establir l'usuari en el context de l'adreça per a %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr "No s'ha pogut establir el rol en el context del fitxer per a %s"
 +msgstr "No s'ha pogut establir el rol en el context de l'adreça per a %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr "No s'ha pogut establir el tipus en el context del fitxer per a %s"
 +msgstr "No s'ha pogut establir el tipus en el context de l'adreça per a %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr "No s'ha pogut establir els camps mls en el context de fitxer per a %s"
 +msgstr ""
 +"No s'ha pogut establir els camps mls en el context de l'adreça per a %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
 -msgstr "No s'ha pogut establir el context de fitxer per a %s"
 +msgstr "No s'ha pogut establir el context de l'adreça per a %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
 -msgstr "No s'ha pogut afegir el port %s/%s"
 +msgstr "No s'ha pogut afegir l'adreça %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
 -msgstr "El port %s/%s no està definit"
 +msgstr "L'adreça %s no està definida"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
 -msgstr "No es pot consultar el port %s/%s"
 +msgstr "No es pot consultar l'adreça %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
 -msgstr "No es pot modificar el port %s/%s"
 +msgstr "No es pot modificar l'adreça %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr "El port %s/%s està definit en la política, no es pot suprimir"
 +msgstr "L'adreça %s està definida en la política, no es pot suprimir"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
 -msgstr "No s'ha pogut suprimir la interfície %s"
 +msgstr "No s'ha pogut suprimir l'adreça %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "No s'ha pogut suprimir el mapatge d'entrada per a %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
 -msgstr "No s'ha pogut llistar els ports"
 +msgstr "No s'han pogut llistar les adreces"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "No s'ha pogut comprovar si s'ha definit la interfície %s"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Ja s'ha definit la interfície %s"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "No s'ha pogut crear la interfície per a %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
- "No s'ha pogut establir l'usuari en el context de la interfície per a %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "No s'ha pogut establir el rol en el context d'interfície per a %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "No s'ha pogut establir el tipus en el context d'interfície per a %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -694,7 +679,7 @@ msgstr "No s'ha pogut establir el tipus en el context d'interfície per a %s"
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
  msgstr ""
 -"No s'ha pogut establir els camps mls en el context d'interfície per a %s"
 +"No s'han pogut establir els camps mls en el context d'interfície per a %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
- msgid "Could not set interface context for %s"
- msgstr "No s'ha pogut establir el context d'interfície per a %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "No s'ha pogut establir el context de missatge per a %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "No s'ha pogut afegir la interfície per a %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "La interfície %s no s'ha definit"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "No s'ha pogut consultar la interfície %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "No s'ha pogut modificar la interfície %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "La interfície %s s'ha definit a la política, no es pot suprimir"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
+@@ -737,9 +722,8 @@ msgid "Could not delete interface %s"
  msgstr "No s'ha pogut suprimir la interfície %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "No s'ha pogut suprimir la interfície %s"
++msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "No s'han pogut llistar les interfícies"
+@@ -747,16 +731,16 @@ msgstr "No s'han pogut llistar les interfícies"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr ""
 +msgstr "Interfície del SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
 -msgstr ""
 +msgstr "Context"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "No s'ha pogut establir l'usuari en el context del fitxer per a %s"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "El context de fitxer per a %s ja està definit"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "No s'ha pogut establir el rol en el context del fitxer per a %s"
+@@ -764,9 +748,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "No existeix l'usuari de Linux %s"
++msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "No s'ha pogut establir els camps mls en el context de fitxer per a %s"
+@@ -785,7 +769,7 @@ msgstr "No s'ha pogut establir els camps mls en el context de fitxer per a %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
 -msgstr ""
 +msgstr "Especificació de fitxer no vàlida"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "No s'ha pogut comprovar si el context de fitxer per a %s està definit"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "El context de fitxer per a %s ja està definit"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "No s'ha pogut crear el fitxer de context per a %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "No s'ha pogut establir el tipus en el context del fitxer per a %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "No s'ha pogut establir el context de fitxer per a %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "No s'ha pogut afegir el context de fitxer per a %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Es necessita el setype, serange o seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "No s'ha definit el context del fitxer per a %s"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "No s'ha pogut consultar el context del fitxer per a %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -845,14 +829,13 @@ msgid "Could not modify file context for %s"
  msgstr "No s'ha pogut modificar el context de fitxer per a %s"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1839
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
  msgid "Could not list the file contexts"
 -msgstr "No s'ha pogut llistar els contexts del fitxer"
 +msgstr "No s'han pogut llistar els contexts de fitxer"
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1853
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
  msgid "Could not delete the file context %s"
 -msgstr "No s'ha pogut suprimir el context de fitxer per a %s"
 +msgstr "No s'ha pogut suprimir el context de fitxer %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
- "El context del fitxer per a %s està definit en la política, no es pot "
- "suprimir"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "No s'ha pogut suprimir el context de fitxer per a %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "No s'ha pogut llistar els contexts del fitxer"
+@@ -876,11 +859,11 @@ msgstr "No s'ha pogut llistar els contexts del fitxer local"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "No s'ha pogut llistar els contexts del fitxer local"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
 -msgstr ""
 +msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
 -msgstr ""
 +msgstr "tipus"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "No s'ha pogut comprovar si el booleà %s està definit"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "El booleà %s no s'ha definit"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -911,14 +894,14 @@ msgid "Could not query file context %s"
  msgstr "No s'ha pogut consultar el context %s del fitxer"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
 -msgstr "Heu d'especificar un prefix"
 +msgstr "Heu d'especificar un dels següents valors: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr "No s'ha pogut suprimir el booleà %s"
 +msgstr "No s'ha pogut establir el valor actiu del booleà %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "No s'ha pogut modificar el booleà %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -928,7 +911,7 @@ msgstr "No s'ha pogut modificar el booleà %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
 +msgstr "Format incorrecte %s: registre %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "El booleà %s està definit a la política, no es pot suprimir"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "No s'ha pogut suprimir el booleà %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "No s'ha pogut llistar els booleans"
+@@ -946,19 +929,19 @@ msgstr "No s'ha pogut llistar els booleans"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "desconegut"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
 +msgstr "inactiu"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
 -msgstr ""
 +msgstr "actiu"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr ""
 +msgstr "Booleà SELinux"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+@@ -968,9 +951,10 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "Descripció"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
-@@ -954,11 +971,13 @@
+@@ -981,11 +965,13 @@ msgstr "no s'ha pogut establir PAM_TTY\n"
  #, c-format
  msgid "newrole: service name configuration hashtable overflow\n"
  msgstr ""
 +"newrole: desbordament de la taula de dispersió del servei de configuració de "
 +"noms\n"
  
- #: ../newrole/newrole.c:297
+ #: ../newrole/newrole.c:300
  #, c-format
  msgid "newrole:  %s:  error on line %lu.\n"
 -msgstr ""
 +msgstr "newrole:  %s:  error en la línia %lu.\n"
  
- #: ../newrole/newrole.c:436
+ #: ../newrole/newrole.c:439
  #, c-format
-@@ -981,7 +1000,7 @@
- msgstr "No es pot buidar l'entorn\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "S'ha produït un error en iniciar les capacitats, s'està anul·lant.\n"
+@@ -1034,11 +1020,10 @@ msgstr "S'ha produït un error en assignar memòria.\n"
+ msgid "Error sending audit message.\n"
+ msgstr "S'ha produït un error en enviar el missatge d'audit.\n"
  
-@@ -1043,7 +1062,7 @@
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
+-# FIXME: enforce -> fer cumplir (josep)
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
  #, c-format
  msgid "Could not determine enforcing mode.\n"
 -msgstr "No s'ha pogut determinar el mode de reforç.\n"
 +msgstr "No s'ha pogut determinar el mode de compliment.\n"
  
- #: ../newrole/newrole.c:765
+ #: ../newrole/newrole.c:699
  #, c-format
-@@ -1103,6 +1122,8 @@
+@@ -1098,6 +1083,8 @@ msgstr "S'ha produït un error: s'han especificat múltiples nivells\n"
  #, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
  msgstr ""
 +"S'ha produït un error: no teniu autorització per canviar els nivells en un "
 +"terminal no segur \n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
-@@ -1170,14 +1191,14 @@
+@@ -1165,14 +1152,14 @@ msgid "failed to get old_context.\n"
  msgstr "no s'ha pogut obtenir l'old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
 -msgstr "No s'ha pogut obtenir informació de la tty.\n"
 +msgstr "Avís! No s'ha pogut obtenir informació de la tty.\n"
  
- #: ../newrole/newrole.c:1161
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr ""
 +msgstr "error en la lectura de la configuració del servei PAM.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
-@@ -1219,19 +1240,22 @@
+@@ -1214,19 +1201,22 @@ msgid "failed to exec shell\n"
  msgstr "no s'ha pogut executar l'intèrpret d'ordres\n"
  
  #: ../load_policy/load_policy.c:22
@@ -34478,401 +43482,496 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
  
  #: ../load_policy/load_policy.c:90
  #, c-format
-@@ -1323,121 +1347,2244 @@
+@@ -1313,187 +1303,2096 @@ msgstr "chcat -- -CompanyiaConfidencial /docs/pladenegocis.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyiaConfidencial jusuari"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "Error en les opcions %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "les traduccions no estan suportades en màquines sense MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "No s'ha pogut obrir %s: les traduccions no estan suportades a màquines "
+-#~ "sense MLS"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Booleà"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "tot"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Personalitzat"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Etiquetatge de fitxers"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Cal el tipus SELinux"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Especificació\n"
-+"de fitxer"
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Cal el tipus SELinux"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"Tipus de fitxer"
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "S'ha produït un error en enviar el missatge d'audit.\n"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Tipus\n"
-+"de fitxer"
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Heu d'especificar un rol"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Mapatge d'usuari"
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Heu d'especificar un rol"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Nom\n"
-+"d'entrada"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Heu d'especificar un rol"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"Usuari del\n"
-+"SELinux"
--# FIXME: enforce -> fer cumplir (josep)
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "S'està generant el fitxer de reforç del tipus: %s.te"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"Rang MCS"
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "La interfície %s no s'ha definit"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Cal l'entrada de '%s'"
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "No s'ha definit el context del fitxer per a %s"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Mòdul de política"
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "L'usuari SELinux %s no està definit"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Nom del mòdul"
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "S'està compilant la política"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versió"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "S'està autenticant %s.\n"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Inhabilita l'auditació"
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Cal el tipus SELinux"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Habilita l'auditació"
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "No s'ha pogut afegir l'usuari SELinux %s"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Carregueu el mòdul de polítiques"
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "No s'ha pogut modificar l'usuari SELinux %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Generació de polítiques Polgen"
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "No s'ha pogut suprimir l'usuari SELinux %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "No s'ha pogut modificar l'usuari SELinux %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "No es pot llegir el magatzem de polítiques."
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+"Josep Puigdemont Casamajó <josep.puigdemont@gmail.com>, 2006\n"
-+"Xavier Conde Rueda <xavi.conde@gmail.com>, 2006\n"
-+"Josep Torné Llavall <josep.torne@gmail.com>,2009\n"
-+"Albert Carabasa Giribet <albertc@asic.udl.cat>, 2009"
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Cal el tipus SELinux"
-+#: ../gui/polgen.glade:125
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
 +msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Aquesta eina pot ser utilitzada per a generar un marc de polítiques, per a "
-+"limitar aplicacions o els usuaris que utilitzen SELinux.\n"
-+"\n"
-+"L'eina genera:\n"
-+"Fitxer de compliment de tipus (te)\n"
-+"Fitxers d'interfície (if)\n"
-+"Fitxers de context (fc)\n"
-+"Scripts d'intèrpret d'ordres (sh) - utilitzats per compilar i instal·lar les "
-+"polítiques."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Seleccioneu el tipus d'aplicació/rol d'usuari a limitar"
-+
-+#: ../gui/polgen.glade:196
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Aplicacions</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Els dimonis d'inici estàndard són dimonis engegats a l'inici mitjançant "
-+"scripts. Normalment requereixen un script a /etc/rc.d/init.d"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Dimoni d'inici estàndard"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "Dimoni del sistema DBUS"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Els dimonis de serveis d'internet són dimonis engegats per xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Dimoni de serveis d'internet (inetd)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Scripts CGI, aplicacions web o scripts engegats pel servidor web (apache)"
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Aplicació web/Script (CGI)"
--#~ msgid "Requires value"
--#~ msgstr "Requereix un valor"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"L'aplicació d'usuari és qualsevol aplicació que desitgeu limitar, engegada "
-+"per l'usuari"
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Aplicació d'usuari"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Entrada d'usuaris</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "Modifica un registre d'usuari d'entrada existent."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Rols d'usuari existents"
++msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Aquest usuari entra a la màquina només via terminal o entrada remota. Per "
-+"defecte aquest usuari es crea sense setuid, sense xarxa, sense su ni sudo."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Rol d'usuari de terminal mínim"
++msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Aquest usuari pot entrar a una màquina mitjançant X o terminal. Per defecte "
-+"aquest usuari es crea sense setuid, sense xarxa, sense su ni sudo."
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Rol d'usuari d'X-Windows mínim"
++msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Usuari amb xarxa completa, sense aplicacions setuid sense transició "
-+"d'usuari, sense sudo, sense su."
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Rol d'usuari"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Usuari amb xarxa completa, sense aplicacions setuid sense transició "
-+"d'usuari, sense su, pot executar sudo per obtenir rols d'administració de "
-+"roots"
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Les traduccions no poden contenir espais '%s' "
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Rol d'usuari administrador"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Usuaris root</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Seleccioneu el rol d'usuari root, si aquest usuari s'utilitzarà per "
-+"administrar la màquina executant com a root. Aquest usuari no podrà d'entrar "
-+"al sistema directament."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Rol d'usuari administrador root"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Nivell '%s' invàlid "
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Introduïu el nom de l'aplicació o rol d'usuari a limitar"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Nom"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ja existeix a les traduccions"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Introduïu el camí sencer de l'executable a limitar."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s no està definit a les traduccions"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Ja s'ha definit el mapatge per a %s"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Introduïu un nom únic per a l'aplicació limitada o rol d'usuari."
-+
-+#: ../gui/polgen.glade:845
++msgstr ""
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "No s'ha pogut afegir l'usuari SELinux %s"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Executable"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "L'usuari SELinux %s ja està definit"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Script d'inici"
-+
-+#: ../gui/polgen.glade:901
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Cal el port"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Introduïu el camí complet cap a l'script d'inici utilitzat per iniciar "
-+"l'aplicació limitada."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Seleccioneu els rols d'usuari que voleu personalitzar"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "El port %s/%s està definit"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Ja s'ha definit la interfície %s"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr ""
+-#~ "S'ha produït un error en iniciar les capacitats, s'està anul·lant.\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr ""
+-#~ "S'ha produït un error en establir les capacitats, s'està anul·lant\n"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "S'ha produït un error en establir KEEPCAPS, s'està anul·lant.\n"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr ""
+-#~ "S'ha produït un error en eliminar les capacitats, s'està anul·lant.\n"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr ""
+-#~ "S'ha produït un error en eliminar la capacitat per a SETUID, s'està "
+-#~ "anul·lant.\n"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "S'ha produït un error en eliminar les capacitats\n"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "les traduccions no estan suportades en màquines sense MLS"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"Seleccioneu els rols d'usuari que transicionaran a aquests dominis "
-+"d'aplicacions."
  
--#~ msgid "Invalid prefix %s"
--#~ msgstr "El prefix %s invàlid"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Cal el tipus SELinux"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Cal el tipus SELinux"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "S'ha produït un error en enviar el missatge d'audit.\n"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Heu d'especificar un rol"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Heu d'especificar un rol"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Heu d'especificar un rol"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-# FIXME: enforce -> fer cumplir (josep)
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "S'està generant el fitxer de reforç del tipus: %s.te"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "La interfície %s no s'ha definit"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "No s'ha definit el context del fitxer per a %s"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "L'usuari SELinux %s no està definit"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "S'està compilant la política"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "S'està autenticant %s.\n"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Cal el tipus SELinux"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "No s'ha pogut afegir l'usuari SELinux %s"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "No s'ha pogut modificar l'usuari SELinux %s"
+-
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "No s'ha pogut suprimir l'usuari SELinux %s"
+-
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "No s'ha pogut modificar l'usuari SELinux %s"
+-
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "No es pot llegir el magatzem de polítiques."
+-
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Cal el tipus SELinux"
+-
+-#~ msgid "Requires value"
+-#~ msgstr "Requereix un valor"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
 +msgstr ""
-+"Seleccioneu dominis addicionals als que aquest rol d'usuari podrà "
-+"transicionar"
  
 -#~ msgid "Requires 2 or more arguments"
 -#~ msgstr "Necessita almenys dos arguments"
@@ -34885,7 +43984,10 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 -
 -#~ msgid "range not supported on Non MLS machines"
 -#~ msgstr "el rang no està implementat amb màquines sense MLS"
--
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 -#~ msgid "Invalid value %s"
 -#~ msgstr "Valor invàlid per a %s"
 -
@@ -34901,394 +44003,311 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 -#~ "\n"
 -#~ "semodule -i %s.pp\n"
 -#~ "\n"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
 +msgstr ""
-+"Seleccioneu els dominis d'aplicació als quals voldrieu que aquest usuari hi "
-+"transicioni."
  
 -#~ msgid "Options Error: %s "
 -#~ msgstr "Error en les opcions: %s "
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Seleccioneu els rols d'usuari que transicionaran a aquest domini"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Seleccioneu dominis addicionals que aquest rol d'usuari administrarà"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Seleccioneu els dominis que voleu que administri aquest usuari."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Seleccioneu rols addicionals per a aquest usuari"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Entreu els ports de xarxa que l'aplicació/usuari escolta"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Ports TCP</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Autoritza l'aplicació/rol d'usuari limitat a vincular-se amb qualsevol port "
-+"udp."
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Tot"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+"Autoritza l'aplicació/rol d'usuari a cridar bindresvport amb 0. Vinculació "
-+"amb ports 600-1024"
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Introduïu una llista separada per comes dels ports udp o rang de ports amb "
-+"els quals es vincula l'aplicació/rol d'usuari. Exemple: 612,650-660"
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Ports no reservats (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Seleccioneu ports"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"Autoritza l'aplicació/rol d'usuari a vincular-se amb qualsevol port udp > "
-+"1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Ports UDP</b>"
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Introduïu els ports de xarxa amb els quals es connecta l'aplicació/rol "
-+"d'usuari"
-+
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Introduïu una llista separada per comes dels ports o rang de ports amb els "
-+"quals es connecta l'aplicació/rol d'usuari. Exemple: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"Introduïu una llista separada per comes dels ports udp o rang de ports amb "
-+"els quals es connecta l'aplicació/rol d'usuari. Exemple 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Seleccioneu trets comuns de les aplicacions"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Escriu missatges del syslog\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Crea/manipula fitxers temporals a /tmp"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Utilitza Pam per autenticar"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Utilitza nsswitch o crides getpw*"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Utilitza dbus"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Envia missatges d'audit"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Interactua amb la terminal"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Envia correu electrònic"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Seleccioneu els fitxers/directoris que l'aplicació administra"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Afegiu els fitxers/directoris que l'aplicació hi haurà d'\"Escriure\". "
-+"Fitxers pid, fitxers de registre, fitxers a /var/lib..."
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Seleccioneu booleans que utilitza l'aplicació"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"Afegiu/suprimiu booleans utilitzats per aquesta aplicació/usuari limitats"
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Seleccioneu un directori per a generar-hi la política"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Directori de polítiques"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Fitxers de la política generada"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Aquesta eina generarà el següent: \n"
-+"Compliment de tipus (te), fitxer de context(fc), interfície(if), scripts "
-+"d'intèrpret d'ordres(sh)\n"
-+"Executeu l'script d'intèrpret d'ordres com a administrador per a compilar/"
-+"instal· lar i reetiquetar els fitxers/directoris.  \n"
-+"Utilitzeu semanage o bé useradd per a mapejar els usuaris d'entrada de Linux "
-+"amb els rols d'usuari.\n"
-+"Poseu la màquina en mode permissiu (setenforce 0). \n"
-+"Inicieu la sessió com a l'usuari i proveu el rol d'usuari.\n"
-+"Utilitzeu audit2allow -R per a generar regles addicionals per als fitxers "
-+"te.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Aquesta eina generarà el següent: \n"
-+"Compliment de tipus (te), fitxer de context(fc), interfície(if), scripts "
-+"d'intèrpret d'ordres(sh)\n"
-+"Executeu l'script d'intèrpret d'ordres com a administrador per a compilar/"
-+"instal· lar i reetiquetar els fitxers/directoris.  \n"
-+"Poseu la màquina en mode permissiu (setenforce 0). \n"
-+"Executeu/Reinicieu l'aplicació per a generar els missatges d'avc.\n"
-+"Utilitzeu audit2allow -R per a generar regles addicionals per als fitxers "
-+"te.\n"
-+
-+#: ../gui/polgen.glade:3127
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Diàleg per afegir booleans"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Nom del booleà"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Rol"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "_UsuariExistent"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Aplicació"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ha de ser un directori"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Heu de seleccionar un usuari"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Seleccioneu el fitxer executable a limitar"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Seleccioneu el fitxer d'script d'inici a limitar."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Seleccioneu els fitxers que crea o escriu l'aplicació limitada"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Seleccioneu els directoris propis i d'escriptura de l'aplicació limitada"
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Seleccioneu un directori per a generar-hi els fitxers de la politica"
++msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"El tipus %s_t ja està definit en l'actual política.\n"
-+"Voleu continuar?"
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Verifica el nom"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"El mòdul %s.pp ja està carregat a la política actual.\n"
-+"Voleu continuar?"
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Heu d'introduir un nom"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Heu d'introduir un executable"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Configura el SELinux"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Els ports han de ser números o rangs de números d'1 a %d "
++msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Heu d'introduir un nom per al vostre procés/usuari limitat"
++msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "No es permeten executables de tipus USER"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Només les aplicacions DIMONI poden utilitzar un script d'inici"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog ha de ser un valor booleà"
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "Els tipus USER automàticament obtenen un tipus tmp"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Heu d'introduir el camí executable del vostre procés limitat"
++msgstr ""
 +
-+# FIXME: enforce -> fer cumplir (josep)
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Tipus de fitxer d'execució"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Fitxer d'interfície"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Fitxer de context de fitxers"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Script de configuració"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Port de xarxa"
++msgstr ""
 +
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"Tipus de port\n"
-+"SELinux"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protocol"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"Nivell\n"
-+"MLS/MCS"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "El número de port \"%s\" no és vàlid. 0 < PORT_NUMBER < 65536"
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Visualització de llista"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Visualització de grup"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -35336,27 +44355,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Protecció de serveis del SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni acct"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Administració"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Autoritza a tots els dimonis a escriure fitxers core a /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+"Autoritza a tots els dimonis la capacitat d'utilitzar ttys no asignades"
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -35365,133 +44383,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Privilegis d'usuari"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari gadmin de SELinux a executar fitxers al "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari visitant de SELinux a executar fitxers al "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Protecció de memòria"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Autoritza java a executar la pila"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Autoritza el mount a muntar qualsevol fitxer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Autoritza el mount a muntar qualsevol directori"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Autoritza l'mplayer a executar la pila"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Autoritza l'ssh a executar ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari staff de SELinux a executar fitxers del "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari sysadm de SELinux a executar fitxers al "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari unconfined de SELinux a executar fitxers del "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Configuració de la xarxa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permet que paquets sense etiquetar travessin la xarxa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari de SELinux a executar fitxers al directori "
-+"d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Autoritza als no confirmats a dyntrans a unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Bases de dades"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Autoritza l'usuari a connectar-se al sòcol mysql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Autoritza l'usuari a connectar-se al sòcol postgres"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Autoritza els clients a escriure a la memòria compartida d'X"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Autoritza el compte d'usuari xguest de SELinux a executar fitxers al "
-+"directori d'inici o /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Autoritza els dimonis a executar-se amb NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -35499,860 +44503,836 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Aplicacions web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Transició de l'usuari SELinux staff al domini del navegador web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transició de l'usuari SELinux sysadm al domini del navegador web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transició de l'usuari SELinux user al domini del navegador web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transició de l'usuari SELinux xguest al domini del navegador web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Autoritza els navegadors web d'staff a escriure als directoris d'inici"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Desactiva la protecció del SELinux per a l'amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Desactiva la protecció del SELinux per a l'amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni apmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni arpwatch"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni auditd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni automount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Desactiva la protecció del SELinux per a l'avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni bluetooth"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni canna"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cardmgr"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Desactiva la protecció del SELinux per al Cluster Server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Autoritza cdrecord a llegir varis continguts. nfs, samba, dispositius "
-+"extraïbles, usuaris temporals i fitxers de contingut no fiable"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ciped"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni clamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Desactiva la protecció del SELinux per al clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Desactiva la protecció del SELinux per al clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni comsat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni courier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cpucontrol"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cpuspeed"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni crond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Impressió"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Desactiva la protecció del SELinux per al servidor de rerefons cupsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cupsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Desactiva la protecció del SELinux per al cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cvs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni cyrus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dbskkd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dbusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Desactiva la protecció del SELinux per a dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Desactiva la protecció del SELinux per al dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ddt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni devfsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dhcpc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dhcpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dictd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Autoritza el sysadm_t a iniciar els dimonis directament"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Desactiva la protecció del SELinux per a l'Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Jocs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Desactiva la protecció del SELinux per als jocs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Desactiva la protecció del SELinux per als navegadors web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Desactiva la protecció del SELinux per al Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni distccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dmesg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dnsmasq"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni dovecot"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni entropyd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Desactiva la protecció del SELinux per al fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni fingerd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni freshclam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni fsdaemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni gpm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni gss"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni Hal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Compatibilitat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"No auditis coses que sabem que no funcionen, però que no comporten riscos de "
-+"seguretat"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni hostname"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni hotplug"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni howl"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni hplip"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Desactiva la protecció del SELinux per al rotatelogs d'httpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "Servei HTTPD"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Desactiva la protecció del SELinux per al http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni hwclock"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni i18n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni imazesrv"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Desactiva la protecció del SELinux per als dimonis fills d'inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni innd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni iptables"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ircd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni irqbalance"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni iscsi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni jabberd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni kadmind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni klogd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni krb5kdc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ktalk"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni kudzu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni locate"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni lrrd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni lvm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Desactiva la protecció del SELinux per al mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Autoritza l'evolution i el thunderbird a llegir fitxers d'usuari"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni mdadm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni monopd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Autoritza el navegador mozilla a llegir fitxers d'usuari"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni mrtg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni mysqld"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nagios"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Servei de noms"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni named"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nessusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Desactiva la protecció del SELinux per al NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nfsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nmbd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nrpe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nscd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni nsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ntpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Desactiva la protecció del SELinux per al oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Desactiva la protecció del SELinux per al oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni openvpn"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni pam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Desactiva la protecció del SELinux per al pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni perdition"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni portmap"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni portslave"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Desactiva la protecció del SELinux per al dimoni postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni postgresql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Autoritza pppd a ser executat per un usuari normal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Desactiva la protecció del SELinux per al pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni prelink"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni privoxy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ptal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni pxe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Desactiva la protecció del SELinux per al pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni quota"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni radiusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni radvd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Desactiva la protecció del SELinux per al rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Desactiva la protecció del SELinux per al readahead"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Permet que els programes llegeixin fitxers a ubicacions no estàndard "
-+"(default_t)"
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Desactiva la protecció del SELinux per al restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni rhgb"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Desactiva la protecció del SELinux per al ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Desactiva la protecció del SELinux per al ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni rlogind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni rpcd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Desactiva la protecció del SELinux per al rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Autoritza l'ssh a executar-se des de inetd en comptes de com un dimoni"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Autoritza el Samba a compartir directoris nfs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "Servidor d'autenticació SASL"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Autoritza el servidor d'autenticació sasl a llegir /etc/shadow"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Autoritza el servidor X-Windows a mapar una regió de memòria com a "
-+"executable i escrivible"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni saslauthd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni scannerdaemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "No permetis la transició a sysadm_t, afecta a sudo i su"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "No autoritzis cap procés a carregar els mòduls del nucli"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "No autoritzis cap procés a modificar la política SELinux del nucli"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni sendmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Desactiva la protecció del SELinux per al setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni setroubleshoot"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni slapd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni slrnpull"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni smbd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni snmpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni snort"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni soundd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni sound"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Protecció de correu brossa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni spamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Autoritza el spamd a accedir els directoris d'inici"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Autoritza el dimoni Spam Assassin a accedir a la xarxa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni speedmgmt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Autoritza el dimoni squid a connectar-se a la xarxa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ssh"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Autoritza l'ssh a connectar-se com sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Permet que els usuaris d'staff_r cerquin el directori d'inici de sysadm i en "
-+"llegeixin fitxers (com ara ~/.bashrc)"
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Túnel SSL universal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni stunnel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Permet que el dimoni stunnel s'executi sol, sense l'xinetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni swat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni sxid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni syslogd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Desactiva la protecció del SELinux per el sistema de tasques cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni pam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni telnet"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni tftpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni transproxy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni udev"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni uml"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Autoritza a executar sense restriccions xinetd, incloent qualsevol servei "
-+"que engegui i que no tingui un domini de transició definit explícitament"
 +
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Autoritza a executar sense restriccions els scripts rc, incloent qualsevol "
-+"dimoni engegat per un script rc que no tingui un domini de transició definit "
-+"explícitament"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Autoritza l'rpm a executar-se sense limitació"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Permet que les utilitats privilegiades com ara hotplug i insmod s'executin "
-+"sense limitació"
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni updfstab"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni uptimed"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Autoritza l'user_r a assolir sysadm_r mitjançant su, sudo, o userhelper. En "
-+"cas contrari, només staff_r pot fer-ho"
 +
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Autoritza els usuaris a executar l'ordre mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Autoritza els usuaris normals a accedir el ratolí directament (només "
-+"autoritza el servidor X)"
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Autoritza els usuaris a executar l'ordre dmesg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Autoritza els usuaris a controlar les interfícies de xarxa (també necessita "
-+"USERCTL=true)"
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Autoritza l'usuari normal a executar ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Autoritza l'usuari a llegir/escriure de noextattrfile (FAT, CDROM, DISQUET)"
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Autoritza els usuaris a llegir/escriure dispositius usb"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
@@ -36360,121 +45340,110 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Autoritza els usuaris a executar servidors TCP (vincular ports i acceptar "
-+"connexions des del mateix domini i d'usuaris externs). Desactivant-ho, "
-+"imposa el mode passiu de l'FTP i pot afectar altres protocols"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Autoritza l'usuari a les estadístiques dels ttyfiles"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni uucpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni vmware"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni watchdog"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni winbind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni xdm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Autoritza les entrades d'xdm com a sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni xen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Autoritza el xen a llegir/escriure dispositius de disc físics"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni xfs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Desactiva la protecció del SELinux per al xen control"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ypbind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Desactiva la protecció del SELinux per al NIS Password Daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni ypserv"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Desactiva la protecció del SELinux per al dimoni NIS Transfer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Autoritza l'usuari webadm del SELinux a gestionar els directoris d'inici "
-+"d'usuaris no privilegiats"
 +
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Autoritza l'usuari webadm del SELinux a llegir els directoris d'inici "
-+"d'usuaris no privilegiats"
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Esteu segur que voleu suprimir %s '%s'?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Suprimeix %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Afegeix %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Modifica %s"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissiu"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Fer complir"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Desactivat"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Estat"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -36482,9 +45451,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Canviar el tipus de política causarà un reetiquetatge de tot el sistema de "
-+"fitxers en la següent arrencada. El reetiquetatge tarda molt temps depenent "
-+"de la mida del sistema de fitxers. Desitgeu continuar?"
 +
 +#: ../gui/statusPage.py:147
 +msgid ""
@@ -36495,12 +45461,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Desactivar el SELinux requereix arrancar de nou. No és recomanable. Si més "
-+"tard decidiu reactivar el SELinux, caldrà reetiquetar el sistema. Si només "
-+"voleu veure si el SELinux està causant un problema al vostre ordinador, "
-+"podeu canviar a mode permissiu i no aplicar la política de compliment del "
-+"SELinux, als errors registrats. El mode permissiu no requereix tornar a "
-+"arrencar. Voleu continuar?"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -36508,55 +45468,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Activar el SELinux provocarà el reetiquetatge de tot el sistema de fitxers "
-+"en la següent arrencada. El reetiquetatge tarda molta estona depenent de la "
-+"mida del sistema de fitxers. Desitgeu continuar?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Afegeix el mapatge d'entrada del SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Afegeix els ports de xarxa del SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Tipus SELinux"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"Nivell\n"
-+"SELinux MLS/MCS"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Especificació del fitxer"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Tipus de fitxer"
++msgstr ""
 +
-+# ../gui/system-config-selinux.glade:919
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -36567,5492 +45512,9145 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"tots els fitxers\n"
-+"fitxer normal\n"
-+"directori\n"
-+"dispositiu de caràcters\n"
-+"dispositiu de blocs\n"
-+"sòcol\n"
-+"enllaç simbòlic\n"
-+"conducte amb nom\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Afegeix l'usuari SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Administració del SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Afegeix"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Propietats"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Suprimeix"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Seleccioneu l'objecte a gestionar"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Seleccioneu:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Mode de compliment predeterminat per al sistema"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Desactivat\n"
-+"Permissiu\n"
-+"Fer complir\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Mode de compliment actual"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Tipus de política predeterminada del sistema: "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Seleccioneu si desitgeu reetiquetar tot el sistema de fitxers a la següent "
-+"arrencada.  El reetiquetatge pot tardar molt temps, depenent de la mida del "
-+"sistema.  Si s'està canviant els tipus de polítiques o s'està passant de "
-+"desactivada a compliment, caldrà reetiquetar."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Reetiqueta en la següent arrencada."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "etiqueta37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Torna els valors booleans al valor predeterminat del sistema"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Alterna entre tots els valors booleans i els personalitzats"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Executa l'assistent de bloqueig de booleans"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Bloqueig...s"
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filtre"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "etiqueta50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Afegeix context de fitxers"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Modifica context de fitxers"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Suprimeix el context de fitxers"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Alterna entre el context per a tots i el personalitzat"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "etiqueta38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Afegeix el mapatge d'usuari SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Modifica el mapatge d'usuari SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Elimina el mapatge d'usuari SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "etiqueta39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Afegeix usuari"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Modifica usuari"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Suprimeix usuari"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "etiqueta41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Afegeix traducció"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modifica traducció"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Suprimeix traducció"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "etiqueta40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Afegeix port de xarxa"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Edita port de xarxa"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Suprimeix port de xarxa"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Alterna entre tots els ports i els personalitzats"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "etiqueta42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Genera un nou mòdul de política"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Carrega un mòdul de política"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Suprimeix el mòdul de política carregable"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Habilita/inhabilita regles addicionals d'auditoria, que normalment no es "
-+"llisten en els fitxers de registre"
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "etiqueta44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Canvia el mode del procés a permissiu."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Canvia el mode del procés a Fer complir"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Domini del procés"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "etiqueta59"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Cal l'usuari SELinux '%s'"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Nivell de sensibilitat"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cs.po policycoreutils-2.0.85/po/cs.po
---- nsapolicycoreutils/po/cs.po        2011-02-17 15:11:25.036736340 -0500
-+++ policycoreutils-2.0.85/po/cs.po    2011-02-18 16:03:41.346975590 -0500
-@@ -9,16 +9,35 @@
++msgstr ""
+diff --git a/policycoreutils/po/cs.po b/policycoreutils/po/cs.po
+index 64bc3b6..93e243b 100644
+--- a/policycoreutils/po/cs.po
++++ b/policycoreutils/po/cs.po
+@@ -1,25 +1,26 @@
+-# translation of cs.po to Czech
+-# Copyright (C) 2002, FSF
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
++# Translators:
++# Adam Pribyl <pribyl@lowlevel.cz>, 2007.
++# Milan Keršláger <kerslage@linux.cz>, 2007.
+ # Miloslav Trmač <mitr@volny.cz>, 2002, 2003, 2004, 2005, 2008.
+ # Nikola Štohanzl <niko@srnet.cz>, 2006.
+-# Milan Keršláger <kerslage@linux.cz>, 2007.
+-# Adam Pribyl <pribyl@lowlevel.cz>, 2007.
+ msgid ""
  msgstr ""
- "Project-Id-Version: cs\n"
+-"Project-Id-Version: cs\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2008-03-03 05:55+0100\n"
- "Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
- "Language-Team: Czech <fedora-cs-list@redhat.com>\n"
-+"Language: cs\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-03 05:55+0100\n"
+-"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
+-"Language-Team: Czech <fedora-cs-list@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Czech (http://www.transifex.net/projects/p/fedora/language/"
++"cs/)\n"
+ "Language: cs\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
--"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
--"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "Úprava rozhraní"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -124,7 +143,8 @@
- msgid "Level"
- msgstr "RAID Level:"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- #, fuzzy
- msgid "Translation"
- msgstr "Virtualizace"
-@@ -178,267 +198,273 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, fuzzy, python-format
- msgid "Could not create a key for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
+@@ -34,9 +35,9 @@ msgid "failed to initialize PAM\n"
  msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+ #: ../run_init/run_init.c:139
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get account information\n"
+-msgstr "Nemohu připojit oddíl."
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -73,9 +74,9 @@ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../run_init/run_init.c:380
+-#, fuzzy, c-format
++#, c-format
+ msgid "authentication failed.\n"
+-msgstr "Operace LVM selhala"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+@@ -111,9 +112,8 @@ msgid "Could not establish semanage connection"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Úprava rozhraní"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -136,20 +136,18 @@ msgid "Semanage transaction not in progress"
  msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Místo připojení je již používáno"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
+-#, fuzzy
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr "Perština"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Zakázáno"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+@@ -197,9 +195,9 @@ msgstr ""
+ #: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+ #: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+ #: ../semanage/seobject.py:2037
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create a key for %s"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+@@ -277,16 +275,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#, fuzzy
 +#: ../gui/system-config-selinux.glade:100
- #, fuzzy
  msgid "Login Name"
- msgstr "Jméno logického svazku (LV)"
+-msgstr "Jméno logického svazku (LV)"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Musíte vybrat alespoň jeden z protokolů (IPv4 nebo IPv6)."
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
+@@ -304,9 +306,9 @@ msgid "Could not query user for %s"
  msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Musíte vybrat alespoň jeden z protokolů (IPv4 nebo IPv6)."
++msgstr ""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not delete SELinux user %s"
+@@ -367,9 +369,8 @@ msgid "Could not delete SELinux user %s"
  msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- #, fuzzy
+ #: ../semanage/seobject.py:911
+-#, fuzzy
  msgid "Could not list SELinux users"
- msgstr "Místo připojení je již používáno"
+-msgstr "Místo připojení je již používáno"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
- msgid "Could not list roles for user %s"
+@@ -377,9 +378,8 @@ msgid "Could not list roles for user %s"
  msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- #, fuzzy
+ #: ../semanage/seobject.py:942
+-#, fuzzy
  msgid "Labeling"
- msgstr "Název"
+-msgstr "Název"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
+@@ -390,15 +390,15 @@ msgid "Prefix"
  msgstr "Prefix"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- #, fuzzy
+ #: ../semanage/seobject.py:943
+-#, fuzzy
  msgid "MCS Level"
- msgstr "RAID Level:"
+-msgstr "RAID Level:"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
+@@ -411,9 +411,8 @@ msgid "Port is required"
  msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Neplatné jméno počítače"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Port %s/%s already defined"
+@@ -436,12 +435,9 @@ msgid "Port %s/%s already defined"
  msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1002
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create port for %s/%s"
  msgstr ""
-@@ -446,80 +472,80 @@
- "\n"
- "%s.%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-"Nemohu alokovat požadované oddíly: \n"
+-"\n"
+-"%s.%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1008
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
+@@ -507,9 +503,9 @@ msgid "Could not list the ports"
  msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "Nemohu alokovat požadované oddíly: %s."
+-msgstr "Nemohu alokovat požadované oddíly: %s."
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
+@@ -517,12 +513,9 @@ msgid "Port %s/%s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1122
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete port %s/%s"
  msgstr ""
-@@ -527,404 +553,405 @@
- "\n"
- "%s.%s"
+-"Nemohu alokovat požadované oddíly: \n"
+-"\n"
+-"%s.%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -536,7 +529,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
+@@ -568,65 +561,65 @@ msgid "Could not check if addr %s is defined"
  msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "balíček je již nainstalován"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Nelze odstranit volné místo."
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "%s není platné jméno počítače."
+-msgstr "%s není platné jméno počítače."
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Nelze odstranit volné místo."
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
+ #: ../semanage/seobject.py:1364
  #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
+@@ -634,19 +627,17 @@ msgid "Addr %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Nelze odstranit volné místo."
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "Úprava rozhraní"
+-msgstr "Úprava rozhraní"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -655,9 +646,9 @@ msgid "Could not check if interface %s is defined"
  msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, fuzzy, python-format
- msgid "Interface %s already defined"
- msgstr "balíček je již nainstalován"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1461
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create interface for %s"
- msgstr "Nemohu alokovat oddíly pomocí cylindrů.\n"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+-msgstr "Nemohu alokovat oddíly pomocí cylindrů.\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1470
  #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
+@@ -715,29 +706,25 @@ msgid "Interface %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1562
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete interface %s"
- msgstr "Nelze odstranit volné místo."
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- #, fuzzy
+ #: ../semanage/seobject.py:1588
+-#, fuzzy
  msgid "Could not list interfaces"
- msgstr "Úprava rozhraní"
+-msgstr "Úprava rozhraní"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- #, fuzzy
+ #: ../semanage/seobject.py:1613
+-#, fuzzy
  msgid "SELinux Interface"
- msgstr "Úprava rozhraní"
+-msgstr "Úprava rozhraní"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- #, fuzzy
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-#, fuzzy
  msgid "Context"
- msgstr "Pokračovat"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
+-msgstr "Pokračovat"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1663
  #, python-format
- msgid "Could not set mls fields in file context for %s"
+@@ -770,9 +757,8 @@ msgid "Could not set mls fields in file context for %s"
  msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- #, fuzzy
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
- msgstr "Chybná IP informace"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
+-msgstr "Chybná IP informace"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -792,9 +778,9 @@ msgid "Could not check if file context for %s is defined"
  msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1745
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create file context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1753
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
+@@ -846,9 +832,9 @@ msgid "File context for %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1884
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete file context for %s"
- msgstr "Nemohu vytvořit editor klonů disku"
+-msgstr "Nemohu vytvořit editor klonů disku"
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
+@@ -863,9 +849,8 @@ msgid "SELinux fcontext"
  msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- #, fuzzy
+ #: ../semanage/seobject.py:1936
+-#, fuzzy
  msgid "type"
- msgstr "Typ"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+-msgstr "Typ"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -896,14 +881,14 @@ msgid "Could not query file context %s"
  msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Musíte vložit hodnotu"
+-msgstr "Musíte vložit hodnotu"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Nelze odstranit volné místo."
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
+@@ -921,9 +906,9 @@ msgid "Boolean %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2052
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete boolean %s"
- msgstr "Nelze odstranit volné místo."
+-msgstr "Nelze odstranit volné místo."
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
+@@ -938,27 +923,25 @@ msgid "off"
  msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "neznámý"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- #, fuzzy
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
  msgid "on"
- msgstr "Nic"
+-msgstr "Nic"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- #, fuzzy
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Začátek"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr "Implicitní"
+-#: ../semanage/seobject.py:2131
+-#, fuzzy
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "Oddíl"
-@@ -1104,437 +1131,2318 @@
- msgid "failed to build new range with level %s\n"
+-msgstr "Oddíl"
++msgstr ""
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -986,14 +969,14 @@ msgid "Out of memory!\n"
  msgstr ""
  
--#: ../newrole/newrole.c:996
--#, c-format
--msgid "failed to set new range %s\n"
-+#: ../newrole/newrole.c:996
-+#, c-format
-+msgid "failed to set new range %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1004
-+#, c-format
-+msgid "failed to convert new context to string\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1009
-+#, fuzzy, c-format
-+msgid "%s is not a valid context\n"
-+msgstr "%s není platné jméno počítače."
-+
-+#: ../newrole/newrole.c:1016
-+#, c-format
-+msgid "Unable to allocate memory for new_context"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1042
-+#, fuzzy, c-format
-+msgid "Unable to obtain empty signal set\n"
-+msgstr "Nelze připojit souborový systém"
-+
-+#: ../newrole/newrole.c:1050
-+#, c-format
-+msgid "Unable to set SIGHUP handler\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1116
-+#, c-format
-+msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1133
-+#, c-format
-+msgid "failed to get old_context.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1140
-+#, c-format
-+msgid "Warning!  Could not retrieve tty information.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1161
-+#, fuzzy, c-format
-+msgid "error on reading PAM service configuration.\n"
-+msgstr "Zapisuji nastavení po aktualizaci..."
-+
-+#: ../newrole/newrole.c:1196
-+#, c-format
-+msgid "newrole: incorrect password for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1223
-+#, c-format
-+msgid "newrole: failure forking: %s"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
-+#, fuzzy, c-format
-+msgid "Unable to restore tty label...\n"
-+msgstr "Nemohu přenést instalační obraz."
-+
-+#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
-+#, c-format
-+msgid "Failed to close tty properly\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1287
-+#, fuzzy, c-format
-+msgid "Could not close descriptors.\n"
-+msgstr "Nemohu alokovat oddíly pomocí cylindrů.\n"
-+
-+#: ../newrole/newrole.c:1314
-+#, c-format
-+msgid "Error allocating shell's argv0.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1346
-+#, fuzzy, c-format
-+msgid "Unable to restore the environment, aborting\n"
-+msgstr "Nemohu přenést instalační obraz."
-+
-+#: ../newrole/newrole.c:1357
-+msgid "failed to exec shell\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:22
-+#, c-format
-+msgid "usage:  %s [-qi]\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:71
+ #: ../newrole/newrole.c:455
+-#, fuzzy, c-format
 +#, c-format
-+msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Chyba - jméno logického svazku (LV) %s není platné."
 +msgstr ""
-+
-+#: ../load_policy/load_policy.c:80
+ #: ../newrole/newrole.c:512
+-#, fuzzy, c-format
 +#, c-format
-+msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+ msgid "Unable to clear environment\n"
+-msgstr "Nemohu přečíst soubor!"
 +msgstr ""
-+
-+#: ../load_policy/load_policy.c:90
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+@@ -1016,9 +999,9 @@ msgid "Error allocating memory.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:648
+-#, fuzzy, c-format
 +#, c-format
-+msgid "%s:  Can't load policy:  %s\n"
+ msgid "Error sending audit message.\n"
+-msgstr "Chyba při stahování obrazu s aktualizacemi"
 +msgstr ""
-+
-+#: ../scripts/chcat:92 ../scripts/chcat:169
-+#, fuzzy
-+msgid "Requires at least one category"
-+msgstr "Vložená hodnota není číslo"
-+
-+#: ../scripts/chcat:106 ../scripts/chcat:183
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+@@ -1116,9 +1099,9 @@ msgid "failed to convert new context to string\n"
+ msgstr ""
+ #: ../newrole/newrole.c:943
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Can not modify sensitivity levels using '+' on %s"
+ msgid "%s is not a valid context\n"
+-msgstr "%s není platné jméno počítače."
 +msgstr ""
-+
-+#: ../scripts/chcat:110
+ #: ../newrole/newrole.c:950
+ #, c-format
+@@ -1126,9 +1109,9 @@ msgid "Unable to allocate memory for new_context"
+ msgstr ""
+ #: ../newrole/newrole.c:976
+-#, fuzzy, c-format
 +#, c-format
-+msgid "%s is already in %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:188 ../scripts/chcat:198
-+#, fuzzy, c-format
-+msgid "%s is not in %s"
-+msgstr "%s není platné jméno počítače."
-+
-+#: ../scripts/chcat:267 ../scripts/chcat:272
-+msgid "Can not combine +/- with other types of categories"
-+msgstr ""
-+
-+#: ../scripts/chcat:319
-+msgid "Can not have multiple sensitivities"
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "Nelze připojit souborový systém"
 +msgstr ""
-+
-+#: ../scripts/chcat:325
+ #: ../newrole/newrole.c:984
+ #, c-format
+@@ -1151,9 +1134,9 @@ msgid "Warning!  Could not retrieve tty information.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1098
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s CATEGORY File ..."
+ msgid "error on reading PAM service configuration.\n"
+-msgstr "Zapisuji nastavení po aktualizaci..."
 +msgstr ""
-+
-+#: ../scripts/chcat:326
+ #: ../newrole/newrole.c:1133
+ #, c-format
+@@ -1166,9 +1149,9 @@ msgid "newrole: failure forking: %s"
+ msgstr ""
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s -l CATEGORY user ..."
+ msgid "Unable to restore tty label...\n"
+-msgstr "Nemohu přenést instalační obraz."
 +msgstr ""
-+
-+#: ../scripts/chcat:327
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+@@ -1176,9 +1159,9 @@ msgid "Failed to close tty properly\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1224
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+ msgid "Could not close descriptors.\n"
+-msgstr "Nemohu alokovat oddíly pomocí cylindrů.\n"
 +msgstr ""
-+
-+#: ../scripts/chcat:328
+ #: ../newrole/newrole.c:1251
+ #, c-format
+@@ -1186,9 +1169,9 @@ msgid "Error allocating shell's argv0.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1287
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "Nemohu přenést instalační obraz."
 +msgstr ""
-+
-+#: ../scripts/chcat:329
-+#, fuzzy, c-format
-+msgid "Usage %s -d File ..."
-+msgstr "Zavádím ovladač %s ..."
-+
-+#: ../scripts/chcat:330
-+#, c-format
-+msgid "Usage %s -l -d user ..."
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+@@ -1215,9 +1198,8 @@ msgid "%s:  Can't load policy:  %s\n"
+ msgstr ""
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+-#, fuzzy
+ msgid "Requires at least one category"
+-msgstr "Vložená hodnota není číslo"
 +msgstr ""
-+
-+#: ../scripts/chcat:331
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+@@ -1230,9 +1212,9 @@ msgid "%s is already in %s"
+ msgstr ""
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s -L"
+ msgid "%s is not in %s"
+-msgstr "%s není platné jméno počítače."
 +msgstr ""
-+
-+#: ../scripts/chcat:332
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+@@ -1263,9 +1245,9 @@ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+ msgstr ""
+ #: ../scripts/chcat:329
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Usage %s -L -l user"
-+msgstr ""
-+
-+#: ../scripts/chcat:333
-+msgid "Use -- to end option list.  For example"
-+msgstr ""
-+
-+#: ../scripts/chcat:334
-+msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "Usage %s -d File ..."
+-msgstr "Zavádím ovladač %s ..."
 +msgstr ""
-+
-+#: ../scripts/chcat:335
-+msgid "chcat -l +CompanyConfidential juser"
+ #: ../scripts/chcat:330
+ #, c-format
+@@ -1294,5910 +1276,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
+-#: ../scripts/chcat:399
+-#, fuzzy, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+-msgstr "Chyby v oddílech"
 +msgstr ""
-+
-+#: ../scripts/chcat:399
-+#, fuzzy, c-format
-+msgid "Options Error %s "
-+msgstr "Chyby v oddílech"
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+#, fuzzy
+-#, fuzzy
+-#~ msgid "Level"
+-#~ msgstr "RAID Level:"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Korejština"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Translation"
+-#~ msgstr "Virtualizace"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+#, fuzzy
 +msgid "all"
-+msgstr "_Instalovat"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Instalace nemůže pokračovat."
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "_Upravit teď"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+#, fuzzy
++msgstr ""
+-#, fuzzy
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Neplatná jmenovka"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Jmenovka systému souborů:"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "balíček je již nainstalován"
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "balíček je již nainstalován"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Boolean"
+-#~ msgstr "Korejština"
 +#: ../gui/fcontextPage.py:88
-+#, fuzzy
 +msgid ""
 +"File\n"
 +"Type"
-+msgstr "Typ"
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++msgstr ""
+-#, fuzzy
+-#~ msgid "all"
+-#~ msgstr "_Instalovat"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Customized"
+-#~ msgstr "_Upravit teď"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "File Labeling"
+-#~ msgstr "Jmenovka systému souborů:"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr "Typ"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Disable Audit"
+-#~ msgstr "Zakázáno"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#, fuzzy
+-#~ msgid "Enable Audit"
+-#~ msgstr "Nelze upravit"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Uživatelské jméno:</b>"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+#, fuzzy
-+msgid "Version"
-+msgstr "Perština"
-+
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "Uživatelské jméno"
 +#: ../gui/modulesPage.py:134
-+#, fuzzy
 +msgid "Disable Audit"
-+msgstr "Zakázáno"
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+#, fuzzy
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Uživatelské jméno:</b>"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Nelze upravit"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>FCP LUN:</b>"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Select Ports"
+-#~ msgstr "Výběr oddílu"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>IPv4 adresa:</b>"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Policy Directory"
+-#~ msgstr "Neplatné adresáře"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Existing_User"
+-#~ msgstr "Konec"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#, fuzzy
+-#~ msgid "Application"
+-#~ msgstr "oddíl"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#, fuzzy
+-#~ msgid "%s must be a directory"
+-#~ msgstr "Adresář %s:"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Zvolte oddíl, který chcete upravit"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#, fuzzy
+-#~ msgid "Verify Name"
+-#~ msgstr "Název proxy:"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Musíte zadat jméno serveru."
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Musíte zadat jméno serveru."
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#, fuzzy
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Nastavit proxy"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Úprava rozhraní"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#, fuzzy
+-#~ msgid "Protocol"
+-#~ msgstr "Chybějící protokol"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
+-#, fuzzy
+-#~ msgid "Port"
+-#~ msgstr "Formátovat"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#, fuzzy
+-#~ msgid "Memory Protection"
+-#~ msgstr "Nastavení oddílu"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#, fuzzy
+-#~ msgid "Mount"
+-#~ msgstr "Připojit do"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+#, fuzzy
+-#~ msgid "Network Configuration"
+-#~ msgstr "Nastavení sítě"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#, fuzzy
+-#~ msgid "XServer"
+-#~ msgstr "Name server:"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Uživatelské jméno:</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "NIS"
+-#~ msgstr "NFS"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Cron"
+-#~ msgstr "Chorvatština"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#, fuzzy
+-#~ msgid "Printing"
+-#~ msgstr "Oddíl"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#, fuzzy
+-#~ msgid "Games"
+-#~ msgstr "Ásámština"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#, fuzzy
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Zařízení"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#, fuzzy
+-#~ msgid "Name Service"
+-#~ msgstr "Name server:"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+#, fuzzy
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "oddíl"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Uživatelské jméno"
-+
-+#: ../gui/polgen.glade:535
++msgstr ""
+-#, fuzzy
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Opravdu chcete odstranit logický svazek (LV) \"%s\"?"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#, fuzzy
+-#~ msgid "Delete %s"
+-#~ msgstr "Odstranit"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+#, fuzzy
+-#, fuzzy
+-#~ msgid "Add %s"
+-#~ msgstr "_Přidat"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Uživatelské jméno:</b>"
-+
-+#: ../gui/polgen.glade:645
++msgstr ""
+-#, fuzzy
+-#~ msgid "File Type"
+-#~ msgstr "Typ systému souborů:"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#, fuzzy
+-#~ msgid "Add"
+-#~ msgstr "_Přidat"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "_Delete"
+-#~ msgstr "_Odstranit"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#, fuzzy
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Uživatelské jméno:</b>"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "label37"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#, fuzzy
+-#~ msgid "label50"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#, fuzzy
+-#~ msgid "label38"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#, fuzzy
+-#~ msgid "label39"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#, fuzzy
+-#~ msgid "Add Translation"
+-#~ msgstr "Přidat oddíl"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#, fuzzy
+-#~ msgid "Modify Translation"
+-#~ msgstr "Nastavení oddílu"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#, fuzzy
+-#~ msgid "label41"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label40"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+#, fuzzy
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>FCP LUN:</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+#, fuzzy
-+msgid "Select Ports"
-+msgstr "Výběr oddílu"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+#, fuzzy
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>IPv4 adresa:</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+#, fuzzy
-+msgid "Policy Directory"
-+msgstr "Neplatné adresáře"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+#, fuzzy
-+msgid "Existing_User"
-+msgstr "Konec"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+#, fuzzy
-+msgid "Application"
-+msgstr "oddíl"
-+
-+#: ../gui/polgengui.py:269
-+#, fuzzy, python-format
-+msgid "%s must be a directory"
-+msgstr "Adresář %s:"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+#, fuzzy
-+msgid "You must select a user"
-+msgstr "Zvolte oddíl, který chcete upravit"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+#, fuzzy
-+msgid "Verify Name"
-+msgstr "Název proxy:"
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+#, fuzzy
-+msgid "You must enter a name"
-+msgstr "Musíte zadat jméno serveru."
-+
-+#: ../gui/polgengui.py:610
-+#, fuzzy
-+msgid "You must enter a executable"
-+msgstr "Musíte zadat jméno serveru."
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+#, fuzzy
-+msgid "Configue SELinux"
-+msgstr "Nastavit proxy"
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+#, fuzzy
-+msgid "Interface file"
-+msgstr "Úprava rozhraní"
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+#, fuzzy
-+msgid "Network Port"
-+msgstr "Chyba sítě"
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+#, fuzzy
-+msgid "Protocol"
-+msgstr "Chybějící protokol"
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+#, fuzzy
-+msgid "Port"
-+msgstr "Formátovat"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+#, fuzzy
-+msgid "Memory Protection"
-+msgstr "Nastavení oddílu"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+#, fuzzy
-+msgid "Mount"
-+msgstr "Připojit do"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Nastavení sítě"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+#, fuzzy
-+msgid "XServer"
-+msgstr "Name server:"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+#, fuzzy
-+msgid "NIS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+#, fuzzy
-+msgid "Cron"
-+msgstr "Chorvatština"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+#, fuzzy
-+msgid "Printing"
-+msgstr "Oddíl"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+#, fuzzy
-+msgid "Games"
-+msgstr "Ásámština"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+#, fuzzy
-+msgid "HTTPD Service"
-+msgstr "Zařízení"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
+-#, fuzzy
+-#~ msgid "Add Network Port"
+-#~ msgstr "Chyba sítě"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
+-#, fuzzy
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Chyba sítě"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
+-#, fuzzy
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Chyba sítě"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
+-#, fuzzy
+-#~ msgid "label42"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
+-#, fuzzy
+-#~ msgid "label44"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
+-#, fuzzy
+-#~ msgid "Requires value"
+-#~ msgstr "Potřebná instalační média"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
+-#, fuzzy
+-#~ msgid "Invalid prefix %s"
+-#~ msgstr "Neplatný prefix"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
+-#, fuzzy
+-#~ msgid "label25"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
+-#, fuzzy
+-#~ msgid "label26"
+-#~ msgstr "Název"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+#, fuzzy
-+msgid "Name Service"
-+msgstr "Name server:"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
+-#, fuzzy
+-#~ msgid "label28"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label30"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label31"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label32"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label33"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label34"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label35"
+-#~ msgstr "Název"
+-
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "Název"
+-
+-#~ msgid "Error processing %%ksappend lines: %s"
+-#~ msgstr "Chyba při zpracovávání řádků %%ksappend: %s"
+-
+-#~ msgid "Unknown error processing %%ksappend lines: %s"
+-#~ msgstr "Neznámá chyba při zpracovávání řádků %%ksappend: %s"
+-
+-#~ msgid ""
+-#~ "The following error was found while parsing your kickstart "
+-#~ "configuration:\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Při zpracovávání kickstart souboru byla nalezena následující chyba:\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid "Press <enter> for a shell"
+-#~ msgstr "Stiskněte <Enter> pro shell"
+-
+-#~ msgid "OK"
+-#~ msgstr "OK"
+-
+-#~ msgid ""
+-#~ "You do not have enough RAM to use the graphical installer.  Starting text "
+-#~ "mode."
+-#~ msgstr ""
+-#~ "Nemáte dostatek paměti RAM pro grafický instalační program. Spouštím "
+-#~ "textový režim."
+-
+-#~ msgid "No video hardware found, assuming headless"
+-#~ msgstr "Nenalezen žádný video hardware, předpokládám počítač bez monitoru"
+-
+-#~ msgid "Unable to instantiate a X hardware state object."
+-#~ msgstr "Nemohu vytvořit objekt stavu hardware X."
+-
+-#~ msgid "Starting graphical installation..."
+-#~ msgstr "Spouštím grafickou instalaci..."
+-
+-#~ msgid "Install class forcing text mode installation"
+-#~ msgstr "Třída instalace vynucující instalaci v textovém režimu"
+-
+-#~ msgid "Graphical installation not available...  Starting text mode."
+-#~ msgstr "Grafická instalace není k dispozici... Spouštím textový režim."
+-
+-#~ msgid "DISPLAY variable not set. Starting text mode!"
+-#~ msgstr "Proměnná prostředí DISPLAY není nastavena. Spouštím textový režim!."
+-
+-#~ msgid ""
+-#~ "Error resizing partition %s.\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Chyba při změně velikosti oddílu %s.\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid "Start of partition %s was moved when resizing"
+-#~ msgstr "Začátek oddílu %s byl při změně velikosti přesunut"
+-
+-#~ msgid ""
+-#~ "Could not allocate cylinder-based partitions as primary partitions.\n"
+-#~ msgstr "Nemohu alokovat primární oddíly podle cylindrů.\n"
+-
+-#~ msgid "Could not allocate partitions as primary partitions.\n"
+-#~ msgstr "Nemohu alokovat oddíly jako primární.\n"
+-
+-#~ msgid ""
+-#~ "Boot partition %s doesn't belong to a BSD disk label. SRM won't be able "
+-#~ "to boot from this partition. Use a partition belonging to a BSD disk "
+-#~ "label or change this device disk label to BSD."
+-#~ msgstr ""
+-#~ "Zaváděcí oddíl %s nemá BSD rozložení oddílů (BSD disk label). SRM nemůže "
+-#~ "z tohoto oddílu systém zavést. Vyberte oddíl, který má BSD rozložení nebo "
+-#~ "změňte rozložení disku na BSD."
+-
+-#~ msgid ""
+-#~ "Boot partition %s doesn't belong to a disk with enough free space at its "
+-#~ "beginning for the bootloader to live on. Make sure that there's at least "
+-#~ "5MB of free space at the beginning of the disk that contains /boot"
+-#~ msgstr ""
+-#~ "Zaváděcí oddíl %s není na disku, kde je na začátku dostatek volného místa "
+-#~ "pro zavaděč. Ujistěte se, že na začátku disku, který obsahuje /boot, je k "
+-#~ "dispozici alespoň 5 MB volného místa."
+-
+-#~ msgid ""
+-#~ "Boot partition %s isn't a VFAT partition.  EFI won't be able to boot from "
+-#~ "this partition."
+-#~ msgstr ""
+-#~ "Zaváděcí oddíl %s není typu VFAT, a proto z něj EFI nemůže načíst systém."
+-
+-#~ msgid ""
+-#~ "The boot partition must entirely be in the first 4GB of the disk.  "
+-#~ "OpenFirmware won't be able to boot this installation."
+-#~ msgstr ""
+-#~ "Zaváděcí oddíl musí být celý umístěn v prvních 4GB disku. OpenFirmware "
+-#~ "nebude moct systém nastartovat."
+-
+-#~ msgid ""
+-#~ "Boot partition %s may not meet booting constraints for your architecture."
+-#~ msgstr ""
+-#~ "Zaváděcí oddíl %s zřejmě na vaší architektuře nesplňuje omezení pro "
+-#~ "zavedení systému."
+-
+-#~ msgid ""
+-#~ "Adding this partition would not leave enough disk space for already "
+-#~ "allocated logical volumes in %s."
+-#~ msgstr ""
+-#~ "Přidání oddílu by nenechalo dost diskového prostoru pro již alokované "
+-#~ "logické oddíly (LV) v %s."
+-
+-#~ msgid "Requested Partition Does Not Exist"
+-#~ msgstr "Požadovaný oddíl neexistuje"
+-
+-#~ msgid ""
+-#~ "Unable to locate partition %s to use for %s.\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "Nemohu nalézt oddíl %s pro %s.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Requested Raid Device Does Not Exist"
+-#~ msgstr "Požadované RAID zařízení neexistuje"
+-
+-#~ msgid ""
+-#~ "Unable to locate raid device %s to use for %s.\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "Nemohu nalézt raid zařízení %s pro %s.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Requested Volume Group Does Not Exist"
+-#~ msgstr "Požadovaná skupina svazků neexistuje"
+-
+-#~ msgid ""
+-#~ "Unable to locate volume group %s to use for %s.\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "Nemohu nalézt skupinu svazků %s pro %s.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Requested Logical Volume Does Not Exist"
+-#~ msgstr "Požadovaný logický svazek neexistuje"
+-
+-#~ msgid ""
+-#~ "Unable to locate logical volume %s to use for %s.\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "Nemohu nalézt logický svazek %s pro %s.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Automatic Partitioning Errors"
+-#~ msgstr "Chyby při automatickém vytvoření oddílů"
+-
+-#~ msgid ""
+-#~ "The following errors occurred with your partitioning:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "Při vytváření oddílů došlo k následujícím chybám:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Warnings During Automatic Partitioning"
+-#~ msgstr "Varování při automatickém vytvoření oddílů"
+-
+-#~ msgid ""
+-#~ "Following warnings occurred during automatic partitioning:\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Při automatickém vytvoření oddílů vznikla následující varování:\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Press 'OK' to exit the installer."
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Error Partitioning"
+-#~ msgstr "Chyba při vytváření oddílů"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Press 'OK' to choose a different partitioning option."
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro výběr jiné možnosti rozdělení disku."
+-
+-#~ msgid ""
+-#~ "The following errors occurred with your partitioning:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "This can happen if there is not enough space on your hard drive(s) for "
+-#~ "the installation. %s"
+-#~ msgstr ""
+-#~ "Při vytváření oddílů došlo k následujícím chybám:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "Chyby mohou vzniknout v případě, že na disku (discích) není pro instalaci "
+-#~ "%s dostatek místa."
+-
+-#~ msgid "Unrecoverable Error"
+-#~ msgstr "Neopravitelná chyba"
+-
+-#~ msgid "Your system will now be rebooted."
+-#~ msgstr "Systém bude restartován."
+-
+-#~ msgid ""
+-#~ "Automatic Partitioning sets partitions based on the selected installation "
+-#~ "type. You also can customize the partitions once they have been created.\n"
+-#~ "\n"
+-#~ "The manual disk partitioning tool, Disk Druid, allows you to create "
+-#~ "partitions in an interactive environment. You can set the file system "
+-#~ "types, mount points, partition sizes, and more."
+-#~ msgstr ""
+-#~ "Automatické vytvoření oddílů je závislé na zvoleném typu instalace. Jeho "
+-#~ "výsledek můžete dodatečně upravit.\n"
+-#~ "\n"
+-#~ "Disk Druid umožňuje ruční vytváření oddílů. Lze určit typy systémů "
+-#~ "souborů, místa připojení, velikosti a další podrobnosti."
+-
+-#~ msgid ""
+-#~ "Before automatic partitioning can be set up by the installation program, "
+-#~ "you must choose how to use the space on your hard drives."
+-#~ msgstr ""
+-#~ "Před automatickým vytvořením oddílů musíte zvolit, jak využít místo na "
+-#~ "vašich pevných discích."
+-
+-#~ msgid "Remove all partitions on this system"
+-#~ msgstr "Odstranit všechny oddíly"
+-
+-#~ msgid "Remove all Linux partitions on this system"
+-#~ msgstr "Odstranit všechny linuxové oddíly"
+-
+-#~ msgid "Keep all partitions and use existing free space"
+-#~ msgstr "Zachovat všechny oddíly a využít jen volný prostor"
+-
+-#~ msgid "Upgrading %s\n"
+-#~ msgstr "Aktualizace %s\n"
+-
+-#~ msgid "Installing %s\n"
+-#~ msgstr "Instalace %s\n"
+-
+-#~ msgid "Warning"
+-#~ msgstr "Varování"
+-
+-#~ msgid ""
+-#~ "Your filesystems have already been activated.  You cannot go back past "
+-#~ "this point.\n"
+-#~ "\n"
+-#~ "Would you like to continue with the installation?"
+-#~ msgstr ""
+-#~ "Vaše systémy souborů již byly aktivovány. Před tento krok se nemůžete "
+-#~ "vrátit.\n"
+-#~ "\n"
+-#~ "Chcete pokračovat v instalaci?"
+-
+-#~ msgid "_Exit installer"
+-#~ msgstr "_Ukončit instalátor"
+-
+-#~ msgid "_Continue"
+-#~ msgstr "_Pokračovat"
+-
+-#~ msgid "Bootloader"
+-#~ msgstr "Zavaděč"
+-
+-#~ msgid "Installing bootloader..."
+-#~ msgstr "Instalace zavaděče systému..."
+-
+-#~ msgid ""
+-#~ "No kernel packages were installed on your system.  Your boot loader "
+-#~ "configuration will not be changed."
+-#~ msgstr ""
+-#~ "V systému nebyl nainstalován žádný balíček s jádrem. Nastavení zavaděče "
+-#~ "systému nebude změněno."
+-
+-#~ msgid "Completed"
+-#~ msgstr "Hotovo"
+-
+-#~ msgid "In progress...   "
+-#~ msgstr "Probíhá...   "
+-
+-#~ msgid "Can't have a question in command line mode!"
+-#~ msgstr "Nelze mít dotaz v režimu příkazového řádku!"
+-
+-#~ msgid "Parted exceptions can't be handled in command line mode!"
+-#~ msgstr ""
+-#~ "Výjimky pro parted nemohou být v režimu příkazového řádku obslouženy!"
+-
+-#~ msgid ""
+-#~ "An unhandled exception has occurred.  This is most likely a bug.  Please "
+-#~ "save a copy of the detailed exception and file a bug report"
+-#~ msgstr ""
+-#~ "Byla zachycena neobsloužená výjimka, což nejspíše způsobila chyba v "
+-#~ "programu. Uložte prosím podrobný záznam výjimky a vyplňte hlášení o chybě"
+-
+-#~ msgid " with the provider of this software."
+-#~ msgstr " u poskytovatele tohoto software."
+-
+-#~ msgid " against anaconda at %s"
+-#~ msgstr " programu Anaconda na %s"
+-
+-#~ msgid "Dump Written"
+-#~ msgstr "Záznam uložen"
+-
+-#~ msgid ""
+-#~ "Your system's state has been successfully written to the disk. The "
+-#~ "installer will now exit."
+-#~ msgstr ""
+-#~ "Stav vašeho systému byl úspěšně zapsán na disk. Instalace bude nyní "
+-#~ "ukončena."
+-
+-#~ msgid "Dump Not Written"
+-#~ msgstr "Záznam nebyl uložen"
+-
+-#~ msgid "There was a problem writing the system state to the disk."
+-#~ msgstr "Při zápisu stavu systému na disk došlo k chybě."
+-
+-#~ msgid ""
+-#~ "Your system's state has been successfully written to the remote host.  "
+-#~ "The installer will now exit."
+-#~ msgstr ""
+-#~ "Stav vašeho systému byl úspěšně zapsán na vzdálený počítač. Instalace "
+-#~ "bude nyní ukončena."
+-
+-#~ msgid "There was a problem writing the system state to the remote host."
+-#~ msgstr "Při zápisu záznamu chyby na vzdálený počítač došlo k chybě."
+-
+-#~ msgid "Checking"
+-#~ msgstr "Kontroluji"
+-
+-#~ msgid "Checking filesystem on %s..."
+-#~ msgstr "Kontroluji systém souborů na %s..."
+-
+-#~ msgid "Resizing"
+-#~ msgstr "Měním velikost"
+-
+-#~ msgid "Resizing filesystem on %s..."
+-#~ msgstr "Měním velikost systému souborů na %s..."
+-
+-#~ msgid "Error"
+-#~ msgstr "Chyba"
+-
+-#~ msgid ""
+-#~ "An error occurred migrating %s to ext3.  It is possible to continue "
+-#~ "without migrating this file system if desired.\n"
+-#~ "\n"
+-#~ "Would you like to continue without migrating %s?"
+-#~ msgstr ""
+-#~ "Při převodu (migrace) %s na ext3 došlo k chybě. Instalace může pokračovat "
+-#~ "i bez převodu.\n"
+-#~ "\n"
+-#~ "Přejete si pokračovat bez převodu %s?"
+-
+-#~ msgid "RAID Device"
+-#~ msgstr "RAID zařízení"
+-
+-#~ msgid "Apple Bootstrap"
+-#~ msgstr "Apple zavaděč"
+-
+-#~ msgid "PPC PReP Boot"
+-#~ msgstr "PPC PReP zavaděč"
+-
+-#~ msgid "First sector of boot partition"
+-#~ msgstr "První sektor zaváděcího oddílu"
+-
+-#~ msgid "Master Boot Record (MBR)"
+-#~ msgstr "Hlavní zaváděcí záznam (MBR)"
+-
+-#~ msgid ""
+-#~ "An error occurred trying to initialize swap on device %s.  This problem "
+-#~ "is serious, and the install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při inicializaci odkládacího prostoru (swap) na zařízení %s došlo k "
+-#~ "chybě. Chyba je závažná a instalace nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid "Skip"
+-#~ msgstr "Vynechat"
+-
+-#~ msgid ""
+-#~ "The swap device:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "is a version 0 Linux swap partition. If you want to use this device, you "
+-#~ "must reformat as a version 1 Linux swap partition. If you skip it, the "
+-#~ "installer will ignore it during the installation."
+-#~ msgstr ""
+-#~ "Odkládací (swap) zařízení:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "je linuxový odkládací oddíl verze 0. Chcete-li zařízení použít, musíte ho "
+-#~ "přeformátovat na verzi 1. Vynecháte-li změnu na verzi 1, bude instalátor "
+-#~ "odkládací oddíl v průběhu instalace ignorovat."
+-
+-#~ msgid "Reformat"
+-#~ msgstr "Přeformátovat"
+-
+-#~ msgid ""
+-#~ "The swap device:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "in your /etc/fstab file is currently in use as a software suspend "
+-#~ "partition, which means your system is hibernating. To perform an upgrade, "
+-#~ "please shut down your system rather than hibernating it."
+-#~ msgstr ""
+-#~ "Odkládací (swap) zařízení:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "v /etc/fstab je právě používáno jako oddíl pro uspání počítače (software "
+-#~ "suspend), což znamená, že je systém uspán (hibernován). Před provedením "
+-#~ "aktualizace systém raději úplně vypněte a nepoužívejte přitom režim "
+-#~ "spánku."
+-
+-#~ msgid ""
+-#~ "The swap device:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "in your /etc/fstab file is currently in use as a software suspend "
+-#~ "partition, which means your system is hibernating. If you are performing "
+-#~ "a new install, make sure the installer is set to format all swap "
+-#~ "partitions."
+-#~ msgstr ""
+-#~ "Odkládací (swap) zařízení:\n"
+-#~ "\n"
+-#~ "     /dev/%s\n"
+-#~ "\n"
+-#~ "v /etc/fstab je právě používáno jako oddíl pro uspání počítače (software "
+-#~ "suspend), což znamená, že je systém uspán (hibernován). Před spuštěním "
+-#~ "nové instalace se ujistěte, že instalátor všechny odkládací oddíly "
+-#~ "naformátuje."
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Choose Skip if you want the installer to ignore this partition during the "
+-#~ "upgrade.  Choose Format to reformat the partition as swap space."
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Zvolte Vynechat, chcete-li, aby instalátor tento oddíl v průběhu "
+-#~ "aktualizace ignoroval. Zvolte Formátovat, má-li být oddíl naformátován "
+-#~ "jako odkládací oddíl (swap)."
+-
+-#~ msgid ""
+-#~ "Error enabling swap device %s: %s\n"
+-#~ "\n"
+-#~ "Devices in /etc/fstab should be specified by label, not by device name.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer."
+-#~ msgstr ""
+-#~ "Chyba při povolování odkládacího zařízení %s: %s\n"
+-#~ "\n"
+-#~ "Zařízení v /etc/fstab musí být určena jmenovkou (label), ne názvem "
+-#~ "zařízení.\n"
+-#~ "\n"
+-#~ "Ukončete instalaci stisknutím OK."
+-
+-#~ msgid ""
+-#~ "Error enabling swap device %s: %s\n"
+-#~ "\n"
+-#~ "The /etc/fstab on your upgrade partition does not reference a valid swap "
+-#~ "partition.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer"
+-#~ msgstr ""
+-#~ "Chyba při povolování odkládacího zařízení %s: %s\n"
+-#~ "\n"
+-#~ "/etc/fstab na oddílu určeném pro aktualizaci se neodkazuje na platný "
+-#~ "odkládací oddíl.\n"
+-#~ "\n"
+-#~ "Ukončete instalaci stisknutím OK."
+-
+-#~ msgid ""
+-#~ "Error enabling swap device %s: %s\n"
+-#~ "\n"
+-#~ "This most likely means this swap partition has not been initialized.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer."
+-#~ msgstr ""
+-#~ "Chyba při povolování odkládacího zařízení %s: %s\n"
+-#~ "\n"
+-#~ "Chyba je obvykle způsobena tím, že odkládací prostor není naformátován.\n"
+-#~ "\n"
+-#~ "Ukončete instalaci stisknutím OK."
+-
+-#~ msgid ""
+-#~ "An error occurred trying to format %s.  This problem is serious, and the "
+-#~ "install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při formátování oddílu %s došlo k chybě.  Problém je závažný a instalace "
+-#~ "nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "An error occurred trying to migrate %s.  This problem is serious, and the "
+-#~ "install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při převodu (migraci) oddílu %s došlo k chybě. Problém je závažný a "
+-#~ "instalace nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid "Invalid mount point"
+-#~ msgstr "Neplatné místo připojení"
+-
+-#~ msgid ""
+-#~ "An error occurred when trying to create %s.  Some element of this path is "
+-#~ "not a directory. This is a fatal error and the install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při pokusu o vytvoření %s došlo k chybě. Některá část cesty není adresář. "
+-#~ "Problém je závažný a instalace nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "An error occurred when trying to create %s: %s.  This is a fatal error "
+-#~ "and the install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při pokusu o vytvoření %s došlo k chybě: %s. Chyba je závažná a instalace "
+-#~ "nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "An error occurred mounting device %s as %s.  You may continue "
+-#~ "installation, but there may be problems."
+-#~ msgstr ""
+-#~ "V pokusu o připojení zařízení %s jako %s došlo k chybě. Můžete pokračovat "
+-#~ "v instalaci, mohou však nastat problémy."
+-
+-#~ msgid ""
+-#~ "Error mounting device %s as %s: %s\n"
+-#~ "\n"
+-#~ "Devices in /etc/fstab should be specified by label, not by device name.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer."
+-#~ msgstr ""
+-#~ "Chyba při připojování zařízení %s jako %s: %s\n"
+-#~ "\n"
+-#~ "Zařízení v souboru /etc/fstab musí být určena jmenovkou (label) a ne "
+-#~ "názvem zařízení.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "Error mounting device %s as %s: %s\n"
+-#~ "\n"
+-#~ "This most likely means this partition has not been formatted.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer."
+-#~ msgstr ""
+-#~ "Chyba při připojování zařízení %s jako %s: %s\n"
+-#~ "\n"
+-#~ "Problém je obvykle způsoben tím, že zařízení není naformátováno.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "Error finding / entry.\n"
+-#~ "\n"
+-#~ "This is most likely means that your fstab is incorrect.\n"
+-#~ "\n"
+-#~ "Press OK to exit the installer."
+-#~ msgstr ""
+-#~ "Chyba při hledání položky /.\n"
+-#~ "\n"
+-#~ "Problém je obvykle způsoben tím, že tabulka fstab není správná.\n"
+-#~ "\n"
+-#~ "Klikněte na 'OK' pro ukončení instalace."
+-
+-#~ msgid "Duplicate Labels"
+-#~ msgstr "Duplicitní jmenovky"
+-
+-#~ msgid ""
+-#~ "Multiple devices on your system are labelled %s.  Labels across devices "
+-#~ "must be unique for your system to function properly.\n"
+-#~ "\n"
+-#~ "Please fix this problem and restart the installation process."
+-#~ msgstr ""
+-#~ "Několik zařízení ve vašem počítači má jmenovku %s. Aby váš systém správně "
+-#~ "fungoval, musí mít jmenovky různé názvy.\n"
+-#~ "\n"
+-#~ "Opravte jmenovky a spusťte instalaci znovu."
+-
+-#~ msgid ""
+-#~ "An invalid label was found on device %s.  Please fix this problem and "
+-#~ "restart the installation process."
+-#~ msgstr ""
+-#~ "Na zařízení %s je neplatná jmenovka (label). Opravte problém a spusťte "
+-#~ "instalační program znovu."
+-
+-#~ msgid "Formatting"
+-#~ msgstr "Formátování"
+-
+-#~ msgid "Formatting %s file system..."
+-#~ msgstr "Formátování systému souborů %s..."
+-
+-#~ msgid "An error occurred copying the screenshots over."
+-#~ msgstr "Při kopírování snímků obrazovky došlo k chybě."
+-
+-#~ msgid "Screenshots Copied"
+-#~ msgstr "Snímek obrazovky zkopírován"
+-
+-#~ msgid ""
+-#~ "The screenshots have been saved into the directory:\n"
+-#~ "\n"
+-#~ "\t/root/anaconda-screenshots/\n"
+-#~ "\n"
+-#~ "You can access these when you reboot and login as root."
+-#~ msgstr ""
+-#~ "Snímky obrazovky byly uloženy do adresáře\n"
+-#~ "\n"
+-#~ "\t/root/anaconda-screenshots/\n"
+-#~ "\n"
+-#~ "Soubory můžete použít až po restartu počítače a přihlášení se jako root."
+-
+-#~ msgid "Saving Screenshot"
+-#~ msgstr "Ukládám snímek obrazovky"
+-
+-#~ msgid "A screenshot named '%s' has been saved."
+-#~ msgstr "Snímek obrazovky pojmenovaný '%s' byl uložen."
+-
+-#~ msgid "Error Saving Screenshot"
+-#~ msgstr "Chyba při ukládání snímku obrazovky"
+-
+-#~ msgid ""
+-#~ "An error occurred while saving the screenshot.  If this occurred during "
+-#~ "package installation, you may need to try several times for it to succeed."
+-#~ msgstr ""
+-#~ "Při ukládání snímku obrazovky došlo k chybě. Jestliže k ní došlo v "
+-#~ "průběhu instalace balíčků, můžete zkusit získat snímek obrazovky "
+-#~ "opakovaně."
+-
+-#~ msgid "Fix"
+-#~ msgstr "Opravit"
+-
+-#~ msgid "Yes"
+-#~ msgstr "Ano"
+-
+-#~ msgid "No"
+-#~ msgstr "Ne"
+-
+-#~ msgid "Retry"
+-#~ msgstr "Znovu"
+-
+-#~ msgid "Ignore"
+-#~ msgstr "Ignorovat"
+-
+-#~ msgid "Cancel"
+-#~ msgstr "Zrušit"
+-
+-#~ msgid "Installation Key"
+-#~ msgstr "Instalační klíč"
+-
+-#~ msgid "Error with passphrase"
+-#~ msgstr "Chyba v hesle"
+-
+-#~ msgid "The passphrases you entered were different.  Please try again."
+-#~ msgstr "Hesla, která jste zadali, jsou různá. Zkuste to prosím znovu."
+-
+-#~ msgid "The passphrase must be at least eight characters long."
+-#~ msgstr "Heslo musí být alespoň osm znaků dlouhé."
+-
+-#~ msgid ""
+-#~ "Device %s is encrypted. In order to access the device's contents during "
+-#~ "installation you must enter the device's passphrase below."
+-#~ msgstr ""
+-#~ "Zařízení %s je šifrováno. Abysteo mohli k obsahu tohoto zařízení "
+-#~ "přistupovat při instalaci, musíte níže zadat heslo zařízení."
+-
+-#~ msgid "_Debug"
+-#~ msgstr "_Ladění"
+-
+-#~ msgid "Exit installer"
+-#~ msgstr "Ukončit instalátor"
+-
+-#~ msgid "Debug"
+-#~ msgstr "Ladění"
+-
+-#~ msgid "Exception Occurred"
+-#~ msgstr "Došlo k výjimce"
+-
+-#~ msgid "Error Parsing Kickstart Config"
+-#~ msgstr "Chyba při zpracovávání kickstart souboru"
+-
+-#~ msgid "default:LTR"
+-#~ msgstr "default:LTR"
+-
+-#~ msgid "Error!"
+-#~ msgstr "Chyba!"
+-
+-#~ msgid ""
+-#~ "An error occurred when attempting to load an installer interface "
+-#~ "component.\n"
+-#~ "\n"
+-#~ "className = %s"
+-#~ msgstr ""
+-#~ "Chyba při pokusu o načtení komponenty rozhraní instalačního programu.\n"
+-#~ "\n"
+-#~ "className = %s"
+-
+-#~ msgid "_Exit"
+-#~ msgstr "_Konec"
+-
+-#~ msgid "_Retry"
+-#~ msgstr "_Znovu"
+-
+-#~ msgid "The installer will now exit..."
+-#~ msgstr "Instalační program bude ukončen..."
+-
+-#~ msgid "Your system will now be rebooted..."
+-#~ msgstr "Počítač bude restartován..."
+-
+-#~ msgid "_Reboot"
+-#~ msgstr "_Restartovat"
+-
+-#~ msgid "%s Installer"
+-#~ msgstr "Instalační program %s"
+-
+-#~ msgid "Unable to load title bar"
+-#~ msgstr "Nemohu přečíst titulek"
+-
+-#~ msgid "Install Window"
+-#~ msgstr "Instalační okno"
+-
+-#~ msgid ""
+-#~ "The ISO image %s has a size which is not a multiple of 2048 bytes.  This "
+-#~ "may mean it was corrupted on transfer to this computer.\n"
+-#~ "\n"
+-#~ "It is recommended that you exit and abort your installation, but you can "
+-#~ "choose to continue if you think this is in error."
+-#~ msgstr ""
+-#~ "ISO obraz %s má velikost, která není násobkem 2048 bajtů. Obraz byl "
+-#~ "pravděpodobně při přenosu poškozen.\n"
+-#~ "\n"
+-#~ "Doporučujeme přerušit a ukončit instalaci. Pokud si myslíte, že to není "
+-#~ "chyba, můžete v instalaci pokračovat."
+-
+-#~ msgid "Couldn't Mount ISO Source"
+-#~ msgstr "Nelze připojit ISO obraz"
+-
+-#~ msgid ""
+-#~ "An error occurred mounting the source device %s.  This may happen if your "
+-#~ "ISO images are located on an advanced storage device like LVM or RAID, or "
+-#~ "if there was a problem mounting a partition.  Click exit to abort the "
+-#~ "installation."
+-#~ msgstr ""
+-#~ "Při připojováni ISO obrazu %s došlo k chybě. Chyba může být způsobena "
+-#~ "umístěním ISO obrazů na zařízení s LVM nebo RAID nebo při problémech s "
+-#~ "připojením oddílu, kde jsou obrazy umístěny. Pro opuštění instalace "
+-#~ "klikněte na Ukončit."
+-
+-#~ msgid "Missing ISO 9660 Image"
+-#~ msgstr "Chybějící obraz formátu ISO 9660"
+-
+-#~ msgid ""
+-#~ "The installer has tried to mount image #%s, but cannot find it on the "
+-#~ "hard drive.\n"
+-#~ "\n"
+-#~ "Please copy this image to the drive and click Retry. Click Exit  to abort "
+-#~ "the installation."
+-#~ msgstr ""
+-#~ "Instalátor se pokusil připojit obraz #%s, ale na pevném disku se ho "
+-#~ "nepodařilo nalézt.\n"
+-#~ "\n"
+-#~ "Zkopírujte požadovaný obraz na disk a stiskněte 'Znovu'. Chcete-li "
+-#~ "instalaci opustit, zvolte Ukončit."
+-
+-#~ msgid ""
+-#~ "The software you have selected to install will require the following "
+-#~ "discs:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "Please have these ready before proceeding with the installation.  If you "
+-#~ "need to abort the installation and exit please select \"Reboot\"."
+-#~ msgstr ""
+-#~ "Pro programy, které jste se rozhodli nainstalovat, budou potřeba "
+-#~ "následující média:\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "Připravte si je před pokračováním v instalaci. Pokud potřebujete "
+-#~ "instalaci přerušit a restartovat, zvolte 'Restartovat'."
+-
+-#~ msgid "_Back"
+-#~ msgstr "_Předchozí"
+-
+-#~ msgid ""
+-#~ "An error occurred unmounting the disc.  Please make sure you're not "
+-#~ "accessing %s from the shell on tty2 and then click OK to retry."
+-#~ msgstr ""
+-#~ "Při odpojování média došlo k chybě. Zkontrolujte, že v příkazovém řádku "
+-#~ "shellu na tty2 (druhá kvirtuální konzole) nepřistupujete na %s a "
+-#~ "stiskněte 'OK' pro další pokus."
+-
+-#~ msgid "Install on System"
+-#~ msgstr "Typ instalace"
+-
+-#~ msgid "Initializing iSCSI initiator"
+-#~ msgstr "Inicializace iSCSI iniciátoru"
+-
+-#~ msgid ""
+-#~ "There was an error running the kickstart script at line %s.  You may "
+-#~ "examine the output in %s.  This is a fatal error and your install will be "
+-#~ "aborted.  Press the OK button to exit the installer."
+-#~ msgstr ""
+-#~ "Při provádění kickstart skriptu došlo k chybě na řádku %s. Výstup můžete "
+-#~ "zkontrolovat v %s. Toto je závažná chyba a instalace bude ukončena. "
+-#~ "Ukončete instalaci stisknutím tlačítka OK."
+-
+-#~ msgid "Scriptlet Failure"
+-#~ msgstr "Chyba skriptu"
+-
+-#~ msgid "Running..."
+-#~ msgstr "Spouštím..."
+-
+-#~ msgid "Running post-install scripts"
+-#~ msgstr "Spouštím poinstalační skripty"
+-
+-#~ msgid "Running pre-install scripts"
+-#~ msgstr "Spouštím předinstalační skripty"
+-
+-#~ msgid "Missing Package"
+-#~ msgstr "Chybějící Balíček"
+-
+-#~ msgid ""
+-#~ "You have specified that the package '%s' should be installed.  This "
+-#~ "package does not exist. Would you like to continue or abort your "
+-#~ "installation?"
+-#~ msgstr ""
+-#~ "V kickstart souboru je požadována instalace balíčku '%s'. Takový balíček "
+-#~ "neexistuje. Chcete pokračovat nebo ukončit instalaci?"
+-
+-#~ msgid "_Abort"
+-#~ msgstr "_Přerušit"
+-
+-#~ msgid "Missing Group"
+-#~ msgstr "Chybějící skupina"
+-
+-#~ msgid ""
+-#~ "You have specified that the group '%s' should be installed. This group "
+-#~ "does not exist. Would you like to continue or abort your installation?"
+-#~ msgstr ""
+-#~ "V kickstart souboru je požadována instalace skupiny '%s'. Taková skupina "
+-#~ "neexistuje. Chcete pokračovat nebo ukončit instalaci?"
+-
+-#~ msgid "Unable to find image"
+-#~ msgstr "Nelze najít obraz"
+-
+-#~ msgid ""
+-#~ "The given location isn't a valid %s live CD to use as an installation "
+-#~ "source."
+-#~ msgstr ""
+-#~ "Na zadaném místě není platné %s Live CD, které by mohlo být použito pro "
+-#~ "instalaci."
+-
+-#~ msgid "Copying live image to hard drive."
+-#~ msgstr "Kopírování live obrazu na pevný disk."
+-
+-#~ msgid "Doing post-installation"
+-#~ msgstr "Dokončení instalace"
+-
+-#~ msgid ""
+-#~ "Performing post-installation filesystem changes.  This may take several "
+-#~ "minutes..."
+-#~ msgstr "Probíhá dokončení instalace. Může to chvíli trvat..."
+-
+-#~ msgid ""
+-#~ "The root filesystem you created is not large enough for this live image "
+-#~ "(%.2f MB required)."
+-#~ msgstr ""
+-#~ "Kořenový systém souborů, který jste vytvořili, není pro tento živý obraz "
+-#~ "dost velký (je třeba %.2f MB)."
+-
+-#~ msgid "Hostname must be 64 or less characters in length."
+-#~ msgstr "Jméno počítače musí být dlouhé nejvýše 64 znaků."
+-
+-#~ msgid ""
+-#~ "Hostname must start with a valid character in the range 'a-z' or 'A-Z'"
+-#~ msgstr ""
+-#~ "Jméno počítače musí začínat znakem 'a-z' nebo 'A-Z' (bez háčků a čárek)"
+-
+-#~ msgid "Hostnames can only contain the characters 'a-z', 'A-Z', '-', or '.'"
+-#~ msgstr ""
+-#~ "Jméno počítače může obsahovat jen znaky 'a-z', 'A-Z', '-' nebo '.' (bez "
+-#~ "háčků a čárek)"
+-
+-#~ msgid "IP address is missing."
+-#~ msgstr "Chybí IP adresa."
+-
+-#~ msgid ""
+-#~ "IPv4 addresses must contain four numbers between 0 and 255, separated by "
+-#~ "periods."
+-#~ msgstr ""
+-#~ "IPv4 adresy musí obsahovat čtyři čísla mezi 0 a 255 oddělená tečkami."
+-
+-#~ msgid "'%s' is not a valid IPv6 address."
+-#~ msgstr "'%s' není platná IPv6 adresa."
+-
+-#~ msgid "'%s' is an invalid IP address."
+-#~ msgstr "'%s' není platná IP adresa."
+-
+-#~ msgid "Invalid Key"
+-#~ msgstr "Neplatný klíč"
+-
+-#~ msgid "The key you entered is invalid."
+-#~ msgstr "Vložený klíč není platný."
+-
+-#~ msgid "_Skip"
+-#~ msgstr "_Přeskočit"
+-
+-#~ msgid "Warning! This is pre-release software!"
+-#~ msgstr "Varování! Používáte předběžnou verzi!"
+-
+-#~ msgid ""
+-#~ "Thank you for downloading this pre-release of %s.\n"
+-#~ "\n"
+-#~ "This is not a final release and is not intended for use on production "
+-#~ "systems.  The purpose of this release is to collect feedback from "
+-#~ "testers, and it is not suitable for day to day usage.\n"
+-#~ "\n"
+-#~ "To report feedback, please visit:\n"
+-#~ "\n"
+-#~ "   %s\n"
+-#~ "\n"
+-#~ "and file a report against '%s'.\n"
+-#~ msgstr ""
+-#~ "Děkujeme vám, že jste si stáhli předběžnou verzi (pre-release) %s.\n"
+-#~ "\n"
+-#~ "Předběžná verze není ještě dokončeným produktem a není určena pro použití "
+-#~ "na důležitých počítačích ani pro běžné použití. Účelem předběžné verze je "
+-#~ "umožnit testování a získat ohlasy a hlášení o chybách.\n"
+-#~ "\n"
+-#~ "Pro nahlášení svých zkušeností navštivte prosím:\n"
+-#~ "\n"
+-#~ "    %s\n"
+-#~ "\n"
+-#~ "a vyplňte hlášení chyb pro '%s'.\n"
+-
+-#~ msgid "_Install anyway"
+-#~ msgstr "Přesto _instalovat"
+-
+-#~ msgid "Foreign"
+-#~ msgstr "Cizí"
+-
+-#~ msgid ""
+-#~ "The device %s is LDL formatted instead of CDL formatted.  LDL formatted "
+-#~ "DASDs are not supported for usage during an install of %s.  If you wish "
+-#~ "to use this disk for installation, it must be re-initialized causing the "
+-#~ "loss of ALL DATA on this drive.\n"
+-#~ "\n"
+-#~ "Would you like to reformat this DASD using CDL format?"
+-#~ msgstr ""
+-#~ "Zařízení %s je naformátován na LDL místo na CDL. DASD s formátem LDL "
+-#~ "nejsou při instalaci %s podporovány. Pokud chcete disk použít pro "
+-#~ "instalaci, musí být znovu inicializován, což způsobí ztrátu VŠECH DAT na "
+-#~ "disku.\n"
+-#~ "\n"
+-#~ "Chcete DASD přeformátovat na formát CDL?"
+-
+-#~ msgid ""
+-#~ "/dev/%s currently has a %s partition layout.  To use this drive for the "
+-#~ "installation of %s, it must be re-initialized, causing the loss of ALL "
+-#~ "DATA on this drive.\n"
+-#~ "\n"
+-#~ "Would you like to re-initialize this drive?"
+-#~ msgstr ""
+-#~ "Zařízení /dev/%s má tabulku rozložení oddílů %s. Abyste na disk mohli "
+-#~ "nainstalovat %s, musí být znovu inicializován, což znamená ztrátu VŠECH "
+-#~ "DAT na disku.\n"
+-#~ "\n"
+-#~ "Chcete disk inicializovat?"
+-
+-#~ msgid "_Ignore drive"
+-#~ msgstr "_Ignorovat disk"
+-
+-#~ msgid "_Re-initialize drive"
+-#~ msgstr "_Inicializovat disk"
+-
+-#~ msgid "Initializing"
+-#~ msgstr "Inicializace"
+-
+-#~ msgid "Please wait while formatting drive %s...\n"
+-#~ msgstr "Čekejte prosím, formátuje se disk %s...\n"
+-
+-#~ msgid ""
+-#~ "The partition table on device %s was unreadable. To create new partitions "
+-#~ "it must be initialized, causing the loss of ALL DATA on this drive.\n"
+-#~ "\n"
+-#~ "This operation will override any previous installation choices about "
+-#~ "which drives to ignore.\n"
+-#~ "\n"
+-#~ "Would you like to initialize this drive, erasing ALL DATA?"
+-#~ msgstr ""
+-#~ "Tabulka oddílů na zařízení %s je nečitelná. Aby mohly být vytvořeny nové "
+-#~ "oddíly, musí být tabulka oddílů inicializována, což znamená ztrátu VŠECH "
+-#~ "DAT na disku.\n"
+-#~ "\n"
+-#~ "Operace nebere ohled na dřívější rozhodnutí, které disky chcete "
+-#~ "ignorovat.\n"
+-#~ "\n"
+-#~ "Chcete inicializovat disk a smazat VŠECHNA DATA?"
+-
+-#~ msgid ""
+-#~ "The partition table on device %s (%s) was unreadable. To create new "
+-#~ "partitions it must be initialized, causing the loss of ALL DATA on this "
+-#~ "drive.\n"
+-#~ "\n"
+-#~ "This operation will override any previous installation choices about "
+-#~ "which drives to ignore.\n"
+-#~ "\n"
+-#~ "Would you like to initialize this drive, erasing ALL DATA?"
+-#~ msgstr ""
+-#~ "Tabulka oddílů na zařízení %s (%s) je nečitelná. Aby mohly být vytvořeny "
+-#~ "nové oddíly, musí být tabulka oddílů inicializována, což znamená ztrátu "
+-#~ "VŠECH DAT na disku.\n"
+-#~ "\n"
+-#~ "Operace nebere ohled na dřívější rozhodnutí, které disky chcete "
+-#~ "ignorovat.\n"
+-#~ "\n"
+-#~ "Chcete inicializovat disk a smazat VŠECHNA DATA?"
+-
+-#~ msgid ""
+-#~ "The drive /dev/%s has more than 15 partitions on it.  The SCSI subsystem "
+-#~ "in the Linux kernel does not allow for more than 15 partitons at this "
+-#~ "time.  You will not be able to make changes to the partitioning of this "
+-#~ "disk or use any partitions beyond /dev/%s15 in %s"
+-#~ msgstr ""
+-#~ "Zařízení /dev/%s obsahuje více než 15 oddílů. SCSI subsystém v jádře "
+-#~ "Linuxu zatím více, než 15 zařízení neumožňuje. Nebude možné provádět "
+-#~ "změny v rozdělení disku ani používat oddíly za 15. oddílem /dev/%s v %s."
+-
+-#~ msgid "No Drives Found"
+-#~ msgstr "Nenalezeny žádné disky"
+-
+-#~ msgid ""
+-#~ "An error has occurred - no valid devices were found on which to create "
+-#~ "new file systems. Please check your hardware for the cause of this "
+-#~ "problem."
+-#~ msgstr ""
+-#~ "Došlo k chybě - nebyla nalezena žádná platná zařízení, na nichž by bylo "
+-#~ "možné vytvořit nové systémy souborů. Může se jednat o hardwarovou chybu."
+-
+-#~ msgid "Please enter a volume group name."
+-#~ msgstr "Vložte jméno skupiny svazků (VG)."
+-
+-#~ msgid "Volume Group Names must be less than 128 characters"
+-#~ msgstr "Jméno skupiny svazků (VG) musí mít méně než 128 znaků"
+-
+-#~ msgid "Error - the volume group name %s is not valid."
+-#~ msgstr "Chyba - jméno skupiny svazku (VG) %s není platné."
+-
+-#~ msgid ""
+-#~ "Error - the volume group name contains illegal characters or spaces.  "
+-#~ "Acceptable characters are letters, digits, '.' or '_'."
+-#~ msgstr ""
+-#~ "Chyba - jméno skupiny svazků obsahuje neplatné znaky nebo mezery. "
+-#~ "Povolené znaky jsou písmena, číslice, '.' a '_'."
+-
+-#~ msgid "Please enter a logical volume name."
+-#~ msgstr "Vložte jméno logického svazku (LV)."
+-
+-#~ msgid "Logical Volume Names must be less than 128 characters"
+-#~ msgstr "Jméno logického svazku (LV) musí mít méně než 128 znaků"
+-
+-#~ msgid ""
+-#~ "Error - the logical volume name contains illegal characters or spaces.  "
+-#~ "Acceptable characters are letters, digits, '.' or '_'."
+-#~ msgstr ""
+-#~ "Chyba - jméno logického svazku (LV) obsahuje nedovolené znaky nebo "
+-#~ "mezery. Povolené znaky jsou písmena, číslice, '.' a '_'."
+-
+-#~ msgid ""
+-#~ "The mount point %s is invalid.  Mount points must start with '/' and "
+-#~ "cannot end with '/', and must contain printable characters and no spaces."
+-#~ msgstr ""
+-#~ "Místo připojení %s není platné. Musí začínat znakem '/' a nesmí tímto "
+-#~ "znakem končit. Může obsahovat pouze tisknutelné znaky a žádné mezery."
+-
+-#~ msgid "Please specify a mount point for this partition."
+-#~ msgstr "Zvolte místo připojení oddílu."
+-
+-#~ msgid "This partition is part of the RAID device /dev/md%s."
+-#~ msgstr "Oddíl je část RAID zařízení /dev/md%s."
+-
+-#~ msgid "This partition is part of a RAID device."
+-#~ msgstr "Oddíl je část RAID zařízení."
+-
+-#~ msgid "This partition is part of the LVM volume group '%s'."
+-#~ msgstr "Oddíl je část LVM skupiny svazků (VG) '%s'."
+-
+-#~ msgid "This partition is part of a LVM volume group."
+-#~ msgstr "Oddíl je část LVM skupiny svazků (VG)."
+-
+-#~ msgid "Unable To Delete"
+-#~ msgstr "Nelze odstranit"
+-
+-#~ msgid "You must first select a partition to delete."
+-#~ msgstr "Nejprve musíte zvolit oddíl, který chcete odstranit."
+-
+-#~ msgid "You cannot delete a partition of a LDL formatted DASD."
+-#~ msgstr "Nelze odstranit oddíl DASD formátovaného LDL."
+-
+-#~ msgid ""
+-#~ "You cannot delete this partition, as it is an extended partition which "
+-#~ "contains %s"
+-#~ msgstr "Nelze odstranit rozšířený (extended) oddíl, protože obsahuje %s"
+-
+-#~ msgid "This partition is holding the data for the hard drive install."
+-#~ msgstr "Oddíl obsahuje data pro instalaci z disku."
+-
+-#~ msgid ""
+-#~ "You cannot delete this partition:\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Nelze odstranit oddíl:\n"
+-#~ "\n"
+-
+-#~ msgid "Confirm Delete"
+-#~ msgstr "Potvrdit odstranění"
+-
+-#~ msgid "You are about to delete all partitions on the device '/dev/%s'."
+-#~ msgstr "Odstranění všech oddílů na zařízení /dev/%s."
+-
+-#~ msgid "Notice"
+-#~ msgstr "Upozornění"
+-
+-#~ msgid ""
+-#~ "The following partitions were not deleted because they are in use:\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Následující oddíly nebyly odstraněny, protože jsou právě používány:\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "You cannot edit this partition:\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Nelze upravit oddíl:\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "You cannot edit this partition, as it is an extended partition which "
+-#~ "contains %s"
+-#~ msgstr "Nelze upravit rozšířený (extended) oddíl, protože obsahuje %s"
+-
+-#~ msgid "Format as Swap?"
+-#~ msgstr "Formátovat jako SWAP?"
+-
+-#~ msgid ""
+-#~ "/dev/%s has a partition type of 0x82 (Linux swap) but does not appear to "
+-#~ "be formatted as a Linux swap partition.\n"
+-#~ "\n"
+-#~ "Would you like to format this partition as a swap partition?"
+-#~ msgstr ""
+-#~ "Oddíl /dev/%s je typu 0x82 (odkládací oddíl - Linux swap), ale nezdá se, "
+-#~ "že byl byl jako swap naformátován.\n"
+-#~ "\n"
+-#~ "Chcete oddíl naformátovat jako swap?"
+-
+-#~ msgid "You need to select at least one hard drive to install %s."
+-#~ msgstr "Musíte vybrat alespoň jeden disk, na který nainstalujete %s."
+-
+-#~ msgid ""
+-#~ "You have chosen to use a pre-existing partition for this installation "
+-#~ "without formatting it. We recommend that you format this partition to "
+-#~ "make sure files from a previous operating system installation do not "
+-#~ "cause problems with this installation of Linux. However, if this "
+-#~ "partition contains files that you need to keep, such as home directories, "
+-#~ "then continue without formatting this partition."
+-#~ msgstr ""
+-#~ "Rozhodli jste se pro instalaci použít existující oddíl bez jeho "
+-#~ "naformátování. Doporučujeme oddíl naformátovat, aby soubory z instalace "
+-#~ "předchozího operačního systému nemohly v této instalaci Linuxu způsobit "
+-#~ "problémy. Pokud ale oddíl obsahuje data, která potřebujete zachovat, "
+-#~ "např. domovské adresáře uživatelů, tak pokračujte bez formátování tohoto "
+-#~ "oddílu."
+-
+-#~ msgid "Format?"
+-#~ msgstr "Formátovat?"
+-
+-#~ msgid "_Modify Partition"
+-#~ msgstr "_Zpět na nastavení oddílu"
+-
+-#~ msgid "Do _Not Format"
+-#~ msgstr "_Neformátovat"
+-
+-#~ msgid "Error with Partitioning"
+-#~ msgstr "Chyba při vytváření oddílů"
+-
+-#~ msgid ""
+-#~ "The following critical errors exist with your requested partitioning "
+-#~ "scheme. These errors must be corrected prior to continuing with your "
+-#~ "install of %s.\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "V požadovaném rozdělení na oddíly se vyskytly následující kritické chyby, "
+-#~ "které musí být před pokračováním instalace %s odstraněny.\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid "Partitioning Warning"
+-#~ msgstr "Varování při vytváření oddílů"
+-
+-#~ msgid ""
+-#~ "The following warnings exist with your requested partition scheme.\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "Would you like to continue with your requested partitioning scheme?"
+-#~ msgstr ""
+-#~ "V požadovaném rozdělení na oddíly se vyskytla následující varování.\n"
+-#~ "\n"
+-#~ "%s\n"
+-#~ "\n"
+-#~ "Chcete i přes to pokračovat?"
+-
+-#~ msgid ""
+-#~ "The following pre-existing partitions have been selected to be formatted, "
+-#~ "destroying all data."
+-#~ msgstr ""
+-#~ "Uvedené oddíly budou naformátovány, což smaže všechna data, která jsou na "
+-#~ "nich uložena:"
+-
+-#~ msgid ""
+-#~ "Select 'Yes' to continue and format these partitions, or 'No' to go back "
+-#~ "and change these settings."
+-#~ msgstr ""
+-#~ "Pro pokračování a naformátování oddílů klikněte na 'Ano'. Pokud zvolíte "
+-#~ "'Ne', bude možné provést změny v nastavení."
+-
+-#~ msgid "Format Warning"
+-#~ msgstr "Varování před formátováním"
+-
+-#~ msgid ""
+-#~ "You are about to delete the volume group \"%s\".\n"
+-#~ "\n"
+-#~ "ALL logical volumes in this volume group will be lost!"
+-#~ msgstr ""
+-#~ "Chcete odstranit skupinu svazků (VG) \"%s\".\n"
+-#~ "\n"
+-#~ "VŠECHNY logické svazky (LV) ve skupině (VG) budou smazány!"
+-
+-#~ msgid "You are about to delete the logical volume \"%s\"."
+-#~ msgstr "Chcete odstranit logický svazek (LV) \"%s\"."
+-
+-#~ msgid "You are about to delete a RAID device."
+-#~ msgstr "Chcete odstranit RAID zařízení."
+-
+-#~ msgid "You are about to delete the /dev/%s partition."
+-#~ msgstr "Chcete odstranit oddíl /dev/%s."
+-
+-#~ msgid "The partition you selected will be deleted."
+-#~ msgstr "Vybraný oddíl bude odstraněn."
+-
+-#~ msgid "Confirm Reset"
+-#~ msgstr "Potvrzení obnovení"
+-
+-#~ msgid ""
+-#~ "Are you sure you want to reset the partition table to its original state?"
+-#~ msgstr "Chcete opravdu obnovit tabulku oddílů do jejího původního stavu?"
+-
+-#~ msgid ""
+-#~ "The partitioning options you have chosen have already been activated. You "
+-#~ "can no longer return to the disk editing screen. Would you like to "
+-#~ "continue with the installation process?"
+-#~ msgstr ""
+-#~ "Změny v oddílech byly zapsány. Nní možné se již vrátit zpět na úpravu "
+-#~ "oddílů. Chcete pokračovat v instalaci?"
+-
+-#~ msgid "Writing partitioning to disk"
+-#~ msgstr "Zapisuji oddíly na disk"
+-
+-#~ msgid ""
+-#~ "The partitioning options you have selected will now be written to disk.  "
+-#~ "Any data on deleted or reformatted partitions will be lost"
+-#~ msgstr ""
+-#~ "Možnosti rozložení oddílů, které jste zvolili, budou nyní zapsány na "
+-#~ "disk.  Všechna data na odstraněných nebo přeformátovaných oddílech budou "
+-#~ "ztracena"
+-
+-#~ msgid "Go _back"
+-#~ msgstr "Jít _zpět"
+-
+-#~ msgid "_Write changes to disk"
+-#~ msgstr "Za_psat změny na disk"
+-
+-#~ msgid "Back"
+-#~ msgstr "Zpět"
+-
+-#~ msgid "Confirm"
+-#~ msgstr "Potvrďte"
+-
+-#~ msgid ""
+-#~ "Are you sure you want to skip entering a passphrase for device %s?\n"
+-#~ "\n"
+-#~ "If you skip this step the device's contents will not be available during "
+-#~ "installation."
+-#~ msgstr ""
+-#~ "Opravdu chcete přeskočit zadávání hesla pro zařízení %s?\n"
+-#~ "\n"
+-#~ "Pokud tento krok přeskočíte, obsah zařízení nebude k dispozici při "
+-#~ "instalaci."
+-
+-#~ msgid ""
+-#~ "You have not defined a root partition (/), which is required for "
+-#~ "installation of %s to continue."
+-#~ msgstr ""
+-#~ "Není definován kořenový oddíl (/), který je nutný pro pokračování "
+-#~ "instalace distribuce %s."
+-
+-#~ msgid ""
+-#~ "Your root partition is less than 250 megabytes which is usually too small "
+-#~ "to install %s."
+-#~ msgstr ""
+-#~ "Kořenový oddíl je menší než 250 MB, což je obvykle příliš málo pro "
+-#~ "instalaci distribuce %s."
+-
+-#~ msgid ""
+-#~ "You must create a /boot/efi partition of type FAT and a size of 50 "
+-#~ "megabytes."
+-#~ msgstr ""
+-#~ "Musíte vytvořit oddíl /boot/efi, který bude typu FAT a jeho velikost bude "
+-#~ "50 MB."
+-
+-#~ msgid ""
+-#~ "Your boot partition isn't on one of the first four partitions and thus "
+-#~ "won't be bootable."
+-#~ msgstr ""
+-#~ "Oddíl, ze kterého se bude zavádět systém, není na jednom z prvních čtyř "
+-#~ "oddílů, a proto z něj nebude možné systém spustit."
+-
+-#~ msgid "You must create an Apple Bootstrap partition."
+-#~ msgstr "Musíte vytvořit zaváděcí oddíl Apple."
+-
+-#~ msgid "You must create a PPC PReP Boot partition."
+-#~ msgstr "Musíte vytvořit zaváděcí oddíl PPC PReP."
+-
+-#~ msgid ""
+-#~ "Your %s partition is less than %s megabytes which is lower than "
+-#~ "recommended for a normal %s install."
+-#~ msgstr ""
+-#~ "Oddíl %s je menší než %s MB, což je méně než je doporučená velikost pro "
+-#~ "obvyklou instalaci distribuce %s."
+-
+-#~ msgid ""
+-#~ "Installing on a USB device.  This may or may not produce a working system."
+-#~ msgstr ""
+-#~ "Instalace na USB zařízení. To může (ale nemusí) vést k vytvoření "
+-#~ "funkčního systému. "
+-
+-#~ msgid ""
+-#~ "Installing on a FireWire device.  This may or may not produce a working "
+-#~ "system."
+-#~ msgstr ""
+-#~ "Instalace na FireWire zařízení. To může (ale nemusí) vést k vytvoření "
+-#~ "funkčního systému. "
+-
+-#~ msgid "Bootable partitions can only be on RAID1 devices."
+-#~ msgstr "Oddíl pro zavádění systému může být pouze na RAID1 zařízení."
+-
+-#~ msgid "Bootable partitions cannot be on a logical volume."
+-#~ msgstr "Oddíl pro zavádění systému nemůže být na logickém svazku (LV)."
+-
+-#~ msgid "Bootable partitions cannot be on a RAID device."
+-#~ msgstr "Oddíl pro zavádění systému nemůže být na RAID zařízení."
+-
+-#~ msgid "Bootable partitions cannot be on an %s filesystem."
+-#~ msgstr "Oddíl pro zavádění systému nemůže být na systému souborů %s."
+-
+-#~ msgid "Bootable partitions cannot be on an encrypted block device"
+-#~ msgstr ""
+-#~ "Oddíl pro zavádění systému nemůže být na šifrovaném blokovém zařízení"
+-
+-#~ msgid ""
+-#~ "You have not specified a swap partition.  Although not strictly required "
+-#~ "in all cases, it will significantly improve performance for most "
+-#~ "installations."
+-#~ msgstr ""
+-#~ "Neurčili jste odkládací oddíl (swap). Přesto, že to není není nezbytně "
+-#~ "nutné, jeho použití ve většině případů výrazně zvýší výkonnost systému."
+-
+-#~ msgid ""
+-#~ "You have specified more than 32 swap devices.  The kernel for %s only "
+-#~ "supports 32 swap devices."
+-#~ msgstr ""
+-#~ "Určili jste více než 32 odkládacích zařízení, což je více než podporuje "
+-#~ "jádro distribuce %s."
+-
+-#~ msgid ""
+-#~ "You have allocated less swap space (%dM) than available RAM (%dM) on your "
+-#~ "system.  This could negatively impact performance."
+-#~ msgstr ""
+-#~ "Systém má k dispozici méně odkládacího prostoru (%dM), než je velikost "
+-#~ "RAM (%dM), což může negativně ovlivnit výkon vašeho systému."
+-
+-#~ msgid "the partition in use by the installer."
+-#~ msgstr "oddíl používaný instalačním programem."
+-
+-#~ msgid "a partition which is a member of a RAID array."
+-#~ msgstr "oddíl, který je součástí RAID pole."
+-
+-#~ msgid "a partition which is a member of a LVM Volume Group."
+-#~ msgstr "oddíl, který je členem skupiny svazků LVM."
+-
+-#~ msgid "The mount point %s must be formatted during live CD installs."
+-#~ msgstr ""
+-#~ "Místo připojení %s musí být při instalaci z živého CD naformátováno."
+-
+-#~ msgid ""
+-#~ "This mount point is invalid.  The %s directory must be on the / file "
+-#~ "system."
+-#~ msgstr ""
+-#~ "Místo připojení není platné. Adresář %s musí být v kořenovém systému "
+-#~ "souborů."
+-
+-#~ msgid ""
+-#~ "The mount point %s cannot be used.  It must be a symbolic link for proper "
+-#~ "system operation.  Please select a different mount point."
+-#~ msgstr ""
+-#~ "Pro připojení (mount) nelze %s použít. Pro správnou funkci by to musel "
+-#~ "být symbolický odkaz. Zvolte jiné místo připojení."
+-
+-# Týká se jen / /boot /var /tmp /usr /home. Nemusíme uživatele strašit při
+-# připojování windowsovské partition víc, než je nutné.
+-#~ msgid "This mount point must be on a linux file system."
+-#~ msgstr "Místo připojení musí být na linuxovém systému souborů."
+-
+-#~ msgid ""
+-#~ "The mount point \"%s\" is already in use, please choose a different mount "
+-#~ "point."
+-#~ msgstr "Místo připojení \"%s\" je již používáno. Zadejte jiné."
+-
+-#~ msgid ""
+-#~ "The size of the %s partition (%10.2f MB) exceeds the maximum size of "
+-#~ "%10.2f MB."
+-#~ msgstr ""
+-#~ "Velikost oddílu %s (%10.2f MB) překračuje maximální velikost %10.2f MB."
+-
+-#~ msgid ""
+-#~ "The size of the requested partition (size = %s MB) exceeds the maximum "
+-#~ "size of %s MB."
+-#~ msgstr "Velikost oddílu (size = %s MB) překračuje maximální velikost %s MB."
+-
+-#~ msgid "The size of the requested partition is negative! (size = %s MB)"
+-#~ msgstr "Velikost zadaného oddílu je záporná! (size = %s MB)"
+-
+-#~ msgid "Partitions can't start below the first cylinder."
+-#~ msgstr "Oddíl nemůže začínat před prvním cylindrem."
+-
+-#~ msgid "Partitions can't end on a negative cylinder."
+-#~ msgstr "Oddíl nemůže končit na záporném cylindru."
+-
+-#~ msgid "No members in RAID request, or not RAID level specified."
+-#~ msgstr "Nevybráni členové pro RAID nebo nezvolen typ RAIDu."
+-
+-#~ msgid "A RAID device of type %s requires at least %s members."
+-#~ msgstr "RAID zařízení typu %s vyžaduje alespoň %s členů."
+-
+-#~ msgid ""
+-#~ "This RAID device can have a maximum of %s spares. To have more spares you "
+-#~ "will need to add members to the RAID device."
+-#~ msgstr ""
+-#~ "RAID zařízení může mít maximálně %s rezerv (spare). Pokud jich chcete "
+-#~ "více, musíte přidat další členy RAIDu."
+-
+-#~ msgid ""
+-#~ "Logical volume size must be larger than the volume group's physical "
+-#~ "extent size."
+-#~ msgstr ""
+-#~ "Velikost logického svazku (LV) musí být větší, než je velikost extentu "
+-#~ "skupiny svazků (VG)."
+-
+-#~ msgid "Starting Interface"
+-#~ msgstr "Start rozhraní"
+-
+-#~ msgid "Attempting to start %s"
+-#~ msgstr "Pokus o spuštění %s"
+-
+-#~ msgid ""
+-#~ "When finished please exit from the shell and your system will reboot."
+-#~ msgstr "Po dokončení práce ukončete shell a váš systém bude restartován."
+-
+-#~ msgid "Setup Networking"
+-#~ msgstr "Nastavení sítě"
+-
+-#~ msgid "Do you want to start the network interfaces on this system?"
+-#~ msgstr "Chcete aktivovat síťová rozhraní?"
+-
+-#~ msgid "Cancelled"
+-#~ msgstr "Přerušeno"
+-
+-#~ msgid ""
+-#~ "I can't go to the previous step from here. You will have to try again."
+-#~ msgstr "Nelze se již vrátit zpět. Musíte to zkusit znovu."
+-
+-#~ msgid "Rescue"
+-#~ msgstr "Záchrana"
+-
+-#~ msgid ""
+-#~ "The rescue environment will now attempt to find your Linux installation "
+-#~ "and mount it under the directory %s.  You can then make any changes "
+-#~ "required to your system.  If you want to proceed with this step choose "
+-#~ "'Continue'.  You can also choose to mount your file systems read-only "
+-#~ "instead of read-write by choosing 'Read-Only'.\n"
+-#~ "\n"
+-#~ "If for some reason this process fails you can choose 'Skip' and this step "
+-#~ "will be skipped and you will go directly to a command shell.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Záchranné prostředí se pokusí najít vaši instalaci Linuxu a připojit ji "
+-#~ "do adresáře %s. Pak budete moci provést v systému změny. Pokud chcete "
+-#~ "pokračovat, stiskněte tlačítko 'Pokračovat'. Disky lze připojit v režimu "
+-#~ "jen pro čtení místo s povoleným zápisem stiskem tlačítka 'Jen pro "
+-#~ "čtení'.\n"
+-#~ "\n"
+-#~ "Pokud proces z nějakého důvodu selhává, stiskněte tlačítko 'Vynechat' a "
+-#~ "dostanete se přímo do shellu.\n"
+-#~ "\n"
+-
+-#~ msgid "Read-Only"
+-#~ msgstr "Jen pro čtení"
+-
+-#~ msgid "System to Rescue"
+-#~ msgstr "Opravit systém"
+-
+-#~ msgid "What partition holds the root partition of your installation?"
+-#~ msgstr ""
+-#~ "Který oddíl obsahuje kořenový systém souborů nainstalovaného systému?"
+-
+-#~ msgid "Exit"
+-#~ msgstr "Konec"
+-
+-#~ msgid ""
+-#~ "Your system had dirty file systems which you chose not to mount.  Press "
+-#~ "return to get a shell from which you can fsck and mount your partitions.  "
+-#~ "The system will reboot automatically when you exit from the shell."
+-#~ msgstr ""
+-#~ "V počítači jsou systémy souborů s chybami, které nebyly připojeny. Po "
+-#~ "stisknutí klávesy <Enter>, bude spuštěn příkazový řádek (shell), ze "
+-#~ "kterého můžete chyby opravít příkazem fsck, a pak je bezpečně připojit "
+-#~ "příkazem mount. Počítač bude po ukončení shellu automaticky restartován."
+-
+-#~ msgid ""
+-#~ "Your system has been mounted under %s.\n"
+-#~ "\n"
+-#~ "Press <return> to get a shell. If you would like to make your system the "
+-#~ "root environment, run the command:\n"
+-#~ "\n"
+-#~ "\tchroot %s\n"
+-#~ "\n"
+-#~ "The system will reboot automatically when you exit from the shell."
+-#~ msgstr ""
+-#~ "Systém byl připojen do adresáře %s.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro vstup do shellu. Pokud chcete, aby byl výše uvedený "
+-#~ "adresář kořenem, napište příkaz:\n"
+-#~ "\n"
+-#~ "\tchroot %s\n"
+-#~ "\n"
+-#~ "Počítač bude po ukončení shellu automaticky restartován."
+-
+-#~ msgid ""
+-#~ "An error occurred trying to mount some or all of your system. Some of it "
+-#~ "may be mounted under %s.\n"
+-#~ "\n"
+-#~ "Press <return> to get a shell. The system will reboot automatically when "
+-#~ "you exit from the shell."
+-#~ msgstr ""
+-#~ "Při připojování oddílů došlo k chybě. Některé mohou být připojeny v "
+-#~ "adresáři %s.\n"
+-#~ "\n"
+-#~ "Stiskněte Enter pro vstup do shellu. Počítač bude po ukončení shellu "
+-#~ "automaticky restartován."
+-
+-#~ msgid "Rescue Mode"
+-#~ msgstr "Záchranný režim"
+-
+-#~ msgid ""
+-#~ "You don't have any Linux partitions. Press return to get a shell. The "
+-#~ "system will reboot automatically when you exit from the shell."
+-#~ msgstr ""
+-#~ "Ve vašem systému nejsou žádné oddíly s Linuxem. Stiskněte Enter pro vstup "
+-#~ "do shellu. Počítač bude po ukončení shellu automaticky restartován."
+-
+-#~ msgid "Your system is mounted under the %s directory."
+-#~ msgstr "Systém je připojen v adresáři %s."
+-
+-#~ msgid "Save"
+-#~ msgstr "Uložit"
+-
+-#~ msgid "Save to Disk"
+-#~ msgstr "Uložit na disk"
+-
+-#~ msgid "Save to Remote"
+-#~ msgstr "Uložit na vzdálený počítač"
+-
+-#~ msgid "Host"
+-#~ msgstr "Počítač"
+-
+-#~ msgid "Remote path"
+-#~ msgstr "Cesta a jméno"
+-
+-#~ msgid "Password"
+-#~ msgstr "Heslo"
+-
+-#~ msgid "Passphrase"
+-#~ msgstr "Heslo"
+-
+-#~ msgid "This is a global passphrase"
+-#~ msgstr "Toto je globální heslo"
+-
+-#~ msgid "Help not available"
+-#~ msgstr "Nápověda není k dispozici"
+-
+-#~ msgid "No help is available for this step of the install."
+-#~ msgstr "Nápověda není k dispozici."
+-
+-#~ msgid "Repository editing is not available in text mode."
+-#~ msgstr "Úprava repozitářů instalace není v textovém režimu k dispozici."
+-
+-#~ msgid "Please enter your %(instkey)s"
+-#~ msgstr "Vložte %(instkey)s."
+-
+-#~ msgid "Skip entering %(instkey)s"
+-#~ msgstr "Přeskočit vložení %(instkey)s"
+-
+-#~ msgid "Welcome to %s for %s"
+-#~ msgstr "Vítá vás %s pro %s"
+-
+-#~ msgid "Welcome to %s"
+-#~ msgstr "Vítá vás %s"
+-
+-#~ msgid ""
+-#~ " <F1> for help | <Tab> between elements | <Space> selects | <F12> next "
+-#~ "screen"
+-#~ msgstr ""
+-#~ "<F1> nápověda  |  <Tab> další položka  |  <Mezera> vybrat  |  <F12> "
+-#~ "pokračovat"
+-
+-#~ msgid ""
+-#~ "  <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next "
+-#~ "screen"
+-#~ msgstr ""
+-#~ "  <Tab>/<Alt-Tab> další položka   |   <Mezera> vybrat   |   <F12> "
+-#~ "pokračovat"
+-
+-#~ msgid "Proceed with upgrade?"
+-#~ msgstr "Provést aktualizaci?"
+-
+-#~ msgid ""
+-#~ "You have choosen the upgrade for %s architecture, but the installed "
+-#~ "system is for %s architecture. \n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Zvolili jste aktualizaci pro architekturu %s, ale nainstalovaný systém je "
+-#~ "pro architekturu %s. \n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "Would you like to upgrade  the installed system to the %s architecture?"
+-#~ msgstr "Chcete nainstalovaný systém aktualizovat na architekturu %s?"
+-
+-#~ msgid ""
+-#~ "The file systems of the Linux installation you have chosen to upgrade "
+-#~ "have already been mounted. You cannot go back past this point. \n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Systémy souborů s instalací Linuxu, kterou jste zvolili k aktualizaci, "
+-#~ "již byly připojeny. Nelze se již vrátit zpět.\n"
+-#~ "\n"
+-
+-#~ msgid "Would you like to continue with the upgrade?"
+-#~ msgstr "Chcete pokračovat v aktualizaci?"
+-
+-#~ msgid "Dirty File Systems"
+-#~ msgstr "Systémy souborů s chybami"
+-
+-#~ msgid ""
+-#~ "The following file systems for your Linux system were not unmounted "
+-#~ "cleanly.  Please boot your Linux installation, let the file systems be "
+-#~ "checked and shut down cleanly to upgrade.\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Následující systémy souborů nebyly správně odpojeny. Spusťte svůj "
+-#~ "Linuxový systém a nechte ho, aby disky opravil. Pak systém správně "
+-#~ "ukončete a proveďte aktualizaci.\n"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "The following file systems for your Linux system were not unmounted "
+-#~ "cleanly.  Would you like to mount them anyway?\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Následující systémy souborů nebyly správně odpojeny. Chcete je přesto "
+-#~ "připojit?\n"
+-#~ "%s"
+-
+-#~ msgid "Mount failed"
+-#~ msgstr "Připojení selhalo"
+-
+-#~ msgid ""
+-#~ "One or more of the file systems listed in the /etc/fstab on your Linux "
+-#~ "system cannot be mounted. Please fix this problem and try to upgrade "
+-#~ "again."
+-#~ msgstr ""
+-#~ "Jeden nebo více systémů souborů zapsaných v /etc/fstab nemohou být "
+-#~ "připojeny. Odstraňte problém a spusťte aktualizaci znovu."
+-
+-#~ msgid ""
+-#~ "One or more of the file systems listed in the /etc/fstab of your Linux "
+-#~ "system are inconsistent and cannot be mounted.  Please fix this problem "
+-#~ "and try to upgrade again."
+-#~ msgstr ""
+-#~ "Jeden nebo více systémů souborů zapsaných v /etc/fstab nejsou "
+-#~ "konzistentní, a proto nemohou být připojeny. Odstraňte problém a spusťte "
+-#~ "aktualizaci znovu."
+-
+-#~ msgid ""
+-#~ "The following files are absolute symbolic links, which we do not support "
+-#~ "during an upgrade. Please change them to relative symbolic links and "
+-#~ "restart the upgrade.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Níže jsou vypsány absolutní symbolické linky, které nejsou aktualizací "
+-#~ "podporovány. Změňte je na relativní a spusťte aktualizaci znovu.\n"
+-#~ "\n"
+-
+-#~ msgid "Absolute Symlinks"
+-#~ msgstr "Absolutní symbolické linky"
+-
+-#~ msgid ""
+-#~ "The following are directories which should instead be symbolic links, "
+-#~ "which will cause problems with the upgrade.  Please return them to their "
+-#~ "original state as symbolic links and restart the upgrade.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Níže jsou vypsány adresáře, které však mají být symbolické linky, což při "
+-#~ "aktualizaci způsobí problémy. Změňte je zpět na symbolické linky a "
+-#~ "spusťte aktualizaci znovu.\n"
+-
+-#~ msgid "%s not found"
+-#~ msgstr "%s nenalezen"
+-
+-#~ msgid "%s %s installation on host %s"
+-#~ msgstr "Instalace %s %s na počítač %s"
+-
+-#~ msgid "%s %s installation"
+-#~ msgstr "Instalace %s %s"
+-
+-#~ msgid "Attempting to connect to vnc client on host %s..."
+-#~ msgstr "Pokouším se připojit k VNC klientovi na počítači %s..."
+-
+-#~ msgid "Connected!"
+-#~ msgstr "Připojen!"
+-
+-#~ msgid "Will try to connect again in 15 seconds..."
+-#~ msgstr "Nový pokus o připojení za 15 sekund..."
+-
+-#~ msgid "Giving up attempting to connect after %d tries!\n"
+-#~ msgstr "Po %d pokusech končím pokusy o připojení!\n"
+-
+-#~ msgid "Please manually connect your vnc client to %s to begin the install."
+-#~ msgstr "Pro spuštění instalace se pomocí VNC klienta připojte k %s."
+-
+-#~ msgid "Please manually connect your vnc client to begin the install."
+-#~ msgstr "Pro spuštění instalace se připojte pomocí VNC klienta."
+-
+-#~ msgid "Starting VNC..."
+-#~ msgstr "Startuji VNC..."
+-
+-#~ msgid "The VNC server is now running."
+-#~ msgstr "VNC server byl spuštěn."
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "You chose to connect to a listening vncviewer. \n"
+-#~ "This does not require a password to be set.  If you \n"
+-#~ "set a password, it will be used in case the connection \n"
+-#~ "to the vncviewer is unsuccessful\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Rozhodli jste se připojit k poslouchajícímu vncviewer. \n"
+-#~ "K tomu není potřeba nastavit heslo. Pokud jste \n"
+-#~ "nastavili heslo, bude použito, pokud připojení \n"
+-#~ "k vncviewer není úspěšné\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "WARNING!!! VNC server running with NO PASSWORD!\n"
+-#~ "You can use the self.password=<password> boot option\n"
+-#~ "if you would like to secure the server.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "VAROVÁNÍ!!! VNC server je spuštěn BEZ HESLA!\n"
+-#~ "Pokud chcete server zabezpečit, můžete použít\n"
+-#~ "při startu systému parametr self.password=<heslo>.\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "You chose to execute vnc with a password. \n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Rozhodli jste se spustit vnc s heslem. \n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Unknown Error.  Aborting. \n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Neznámá chyba. Končím. \n"
+-#~ "\n"
+-
+-#~ msgid "VNC Configuration"
+-#~ msgstr "Nastavení VNC"
+-
+-#~ msgid "No password"
+-#~ msgstr "Žádné heslo"
+-
+-#~ msgid ""
+-#~ "A password will prevent unauthorized listeners connecting and monitoring "
+-#~ "your installation progress.  Please enter a password to be used for the "
+-#~ "installation"
+-#~ msgstr ""
+-#~ "Heslo zabrání neautorizovaným klientům, aby se také připojili a sledovali "
+-#~ "průběh vaší instalace. Zadejte proto heslo, které chcete pro připojení k "
+-#~ "instalaci použít."
+-
+-#~ msgid "Password (confirm):"
+-#~ msgstr "Heslo (znovu):"
+-
+-#~ msgid "Password Mismatch"
+-#~ msgstr "Hesla nejsou stejná"
+-
+-#~ msgid "The passwords you entered were different. Please try again."
+-#~ msgstr "Nezadali jste stejná hesla. Zadejte je prosím znovu."
+-
+-#~ msgid "Password Length"
+-#~ msgstr "Délka hesla"
+-
+-#~ msgid "The password must be at least six characters long."
+-#~ msgstr "Heslo musí mít délku alespoň 6 znaků."
+-
+-#~ msgid "Unable to Start X"
+-#~ msgstr "Nelze spustit X"
+-
+-#~ msgid ""
+-#~ "X was unable to start on your machine.  Would you like to start VNC to "
+-#~ "connect to this computer from another computer and perform a graphical "
+-#~ "install or continue with a text mode install?"
+-#~ msgstr ""
+-#~ "Na počítači selhalo spuštění grafického prostředí X Window System. "
+-#~ "Pokračovat můžete pomocí instalace v textovém režimu nebo můžete spustit "
+-#~ "VNC. Pomocí VNC je možné se k počítači připojit z jiného počítače a "
+-#~ "pokračovat tak v instalaci v grafickém režimu."
+-
+-#~ msgid "Use text mode"
+-#~ msgstr "Použít textový režim"
+-
+-#~ msgid "Start VNC"
+-#~ msgstr "Spustit VNC"
+-
+-#~ msgid "%s MB"
+-#~ msgstr "%s MB"
+-
+-#~ msgid "%s KB"
+-#~ msgstr "%s KB"
+-
+-#~ msgid "%s Byte"
+-#~ msgstr "%s bajt"
+-
+-#~ msgid "%s Bytes"
+-#~ msgstr "%s bajtů"
+-
+-#~ msgid "Processing"
+-#~ msgstr "Zpracovávání"
+-
+-#~ msgid "Preparing transaction from installation source..."
+-#~ msgstr "Připravuje se transakce z instalačního zdroje..."
+-
+-#~ msgid "<b>Installing %s</b> (%s)\n"
+-#~ msgstr "<b>Instalace %s</b> (%s)\n"
+-
+-#~ msgid "%s of %s packages completed"
+-#~ msgstr "%s z %s balíčků dokončeno"
+-
+-#~ msgid "Finishing upgrade"
+-#~ msgstr "Ukončení aktualizace"
+-
+-#~ msgid "Finishing upgrade process.  This may take a little while..."
+-#~ msgstr "Ukončuji proces aktualizace. Může to chvíli trvat..."
+-
+-#~ msgid "Copying File"
+-#~ msgstr "Kopírování souboru"
+-
+-#~ msgid "Transferring install image to hard drive..."
+-#~ msgstr "Přenášení instalačního obrazu na pevný disk..."
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgid ""
+-#~ "An error occurred transferring the install image to your hard drive.  "
+-#~ "This is probably due to bad media."
+-#~ msgstr ""
+-#~ "Došlo k chybě při přenosu instalačního obrazu na pevný disk. Médium je "
+-#~ "zřejmě vadné."
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
+-#~ msgid ""
+-#~ "An error occurred transferring the install image to your hard drive. You "
+-#~ "are probably out of disk space."
+-#~ msgstr ""
+-#~ "Došlo k chybě při přenosu instalačního obrazu na pevný disk. Disk je "
+-#~ "zřejmě plný."
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgid "Change Disc"
+-#~ msgstr "Výměna média"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgid "Please insert %s disc %d to continue."
+-#~ msgstr "Pro pokračování vložte %s disk %d."
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
+-#~ msgid "Wrong Disc"
+-#~ msgstr "Nesprávné médium"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
+-#~ msgid "That's not the correct %s disc."
+-#~ msgstr "Nesprávné %s médium."
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgid "Unable to access the disc."
+-#~ msgstr "Nelze přistupovat na médium."
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
+-#~ msgid "Re_boot"
+-#~ msgstr "_Restartovat"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgid "_Eject"
+-#~ msgstr "_Vysunout"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgid ""
+-#~ "The file %s cannot be opened.  This is due to a missing file, a corrupt "
+-#~ "package or corrupt media.  Please verify your installation source.\n"
+-#~ "\n"
+-#~ "If you exit, your system will be left in an inconsistent state that will "
+-#~ "likely require reinstallation.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Nelze otevřít soubor %s. Důvodem může být chybějící soubor, poškozený "
+-#~ "balíček nebo poškozené médium. Zkontrolujte prosím svůj zdroj instalace.\n"
+-#~ "\n"
+-#~ "Ukončíte-li instalaci, zůstane systém v nekonzistentním stavu, což bude "
+-#~ "pravděpodobně vyžadovat reinstalaci.\n"
+-#~ "\n"
+-
+-#~ msgid "Retrying"
+-#~ msgstr "Zkouším to znovu"
+-
+-#~ msgid "Retrying package download..."
+-#~ msgstr "Znovu se pokouším stáhnout balíček..."
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
+-#~ msgid ""
+-#~ "There was an error running your transaction for the following reason: %s\n"
+-#~ msgstr "Při provádění transakce došlo k chybě z následujícího důvodu: %s\n"
+-
+-#~ msgid "file conflicts"
+-#~ msgstr "kolize souborů"
+-
+-#~ msgid "older package(s)"
+-#~ msgstr "starší balíčky"
+-
+-#~ msgid "insufficient disk space"
+-#~ msgstr "nedostatek místa na disku"
+-
+-#~ msgid "insufficient disk inodes"
+-#~ msgstr "nedostatek inodů na disku"
+-
+-#~ msgid "package conflicts"
+-#~ msgstr "kolize balíčků"
+-
+-#~ msgid "required package"
+-#~ msgstr "vyžadovaný balíček"
+-
+-#~ msgid "package for incorrect arch"
+-#~ msgstr "balíček pro nesprávnou architekturu"
+-
+-#~ msgid "package for incorrect os"
+-#~ msgstr "balíček pro nesprávný operační systém"
+-
+-#~ msgid "You need more space on the following file systems:\n"
+-#~ msgstr "Na následujících systémech souborů je potřeba více místa:\n"
+-
+-#~ msgid ""
+-#~ "There were file conflicts when checking the packages to be installed:\n"
+-#~ "%s\n"
+-#~ msgstr ""
+-#~ "Při kontrole balíčků k instalaci došlo ke konfliktům souborů:\n"
+-#~ "%s\n"
+-
+-#~ msgid ""
+-#~ "There was an error running your transaction for the following reason(s): "
+-#~ "%s.\n"
+-#~ msgstr "Při provádění transakce došlo k chybě z následujících důvodů: %s.\n"
+-
+-#~ msgid "Error Running Transaction"
+-#~ msgstr "Chyba při provádění transakce"
+-
+-#~ msgid "Error running transaction"
+-#~ msgstr "Chyba v průběhu transakce"
+-
+-#~ msgid "Retrieving installation information..."
+-#~ msgstr "Načítám informace o instalaci..."
+-
+-#~ msgid "Retrieving installation information for %s..."
+-#~ msgstr "Načítám informace o instalaci pro %s..."
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
+-#~ msgid ""
+-#~ "Unable to read package metadata. This may be due to a missing repodata "
+-#~ "directory.  Please ensure that your install tree has been correctly "
+-#~ "generated.\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Nemohu číst metadata balíčku. Důvodem může být chybějící adresář "
+-#~ "repodata. Zkontrolujte prosím, že byl instalační strom správně "
+-#~ "vygenerován.\n"
+-#~ "\n"
+-#~ "%s"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
+-#~ msgid ""
+-#~ "Unable to read group information from repositories.  This is a problem "
+-#~ "with the generation of your install tree."
+-#~ msgstr ""
+-#~ "Ze zadaných repozitářů nelze přečíst informace o skupinách. Při "
+-#~ "generování vašeho instalačního stromu došlo k chybě."
+-
+-#~ msgid "Uncategorized"
+-#~ msgstr "Nezařazeno"
+-
+-#~ msgid ""
+-#~ "Your selected packages require %d MB of free space for installation, but "
+-#~ "you do not have enough available.  You can change your selections or exit "
+-#~ "the installer."
+-#~ msgstr ""
+-#~ "Vybrané balíčky vyžadují pro instalaci %d MB volného místa. Tolik místa "
+-#~ "není k dispozici. Můžete změnit výběr nebo ukončit instalaci."
+-
+-#~ msgid "Reboot?"
+-#~ msgstr "Restartovat?"
+-
+-#~ msgid "The system will be rebooted now."
+-#~ msgstr "Systém bude restartován."
+-
+-#~ msgid ""
+-#~ "You appear to be upgrading from a system which is too old to upgrade to "
+-#~ "this version of %s.  Are you sure you wish to continue the upgrade "
+-#~ "process?"
+-#~ msgstr ""
+-#~ "Zřejmě aktualizujete ze systému, který je příliš starý pro aktualizaci na "
+-#~ "verzi %s. Opravdu chcete pokračovat v procesu aktualizace?"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
+-#~ msgid ""
+-#~ "The arch of the release of %s you are upgrading to appears to be %s which "
+-#~ "does not match your previously installed arch of %s.  This is likely to "
+-#~ "not succeed.  Are you sure you wish to continue the upgrade process?"
+-#~ msgstr ""
+-#~ "Akchitektura verze %s, na kterou aktualizujete, je zřejmě %s, což "
+-#~ "neodpovídá dříve nainstalované architektuře %s. To pravděpodobně "
+-#~ "neuspěje. Opravdu chcete v aktualizaci pokračovat?"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
+-#~ msgid "Install Starting"
+-#~ msgstr "Start instalace"
+-
+-#~ msgid "Starting install process.  This may take several minutes..."
+-#~ msgstr "Spouštím proces instalace. Může to chvíli trvat..."
+-
+-#~ msgid "Post Upgrade"
+-#~ msgstr "Dokončení Upgrade"
+-
+-#~ msgid "Post Install"
+-#~ msgstr "Po instalaci"
+-
+-#~ msgid "Performing post install configuration..."
+-#~ msgstr "Zapisuji nastavení po instalaci..."
+-
+-#~ msgid "Installation Progress"
+-#~ msgstr "Postup instalace"
+-
+-#~ msgid "Dependency Check"
+-#~ msgstr "Kontrola závislostí"
+-
+-#~ msgid "Checking dependencies in packages selected for installation..."
+-#~ msgstr "Řeším závislosti mezi balíčky vybranými pro instalaci..."
+-
+-#~ msgid "You have not specified a device number or the number is invalid"
+-#~ msgstr "Neurčili jste číslo zařízení nebo číslo zařízení není platné"
+-
+-#~ msgid "You have not specified a worldwide port name or the name is invalid."
+-#~ msgstr "Neurčili jste název portu nebo název portu není platný."
+-
+-#~ msgid "You have not specified a FCP LUN or the number is invalid."
+-#~ msgstr "Neurčili jste FCP LUN nebo číslo není platné."
+-
+-#~ msgid "Root _Password:"
+-#~ msgstr "_Heslo správce systému:"
+-
+-#~ msgid "_Confirm:"
+-#~ msgstr "P_otvrďte:"
+-
+-#~ msgid "Caps Lock is on."
+-#~ msgstr "Caps Lock je aktivní."
+-
+-#~ msgid "Error with Password"
+-#~ msgstr "Chyba v hesle"
+-
+-#~ msgid ""
+-#~ "You must enter your root password and confirm it by typing it a second "
+-#~ "time to continue."
+-#~ msgstr "Zadejte heslo pro uživatele root a potvrďte ho opakovaným zadáním."
+-
+-#~ msgid "The passwords you entered were different.  Please try again."
+-#~ msgstr "Hesla, která jste zadali, jsou různá. Zadejte je znovu."
+-
+-#~ msgid "The root password must be at least six characters long."
+-#~ msgstr "Heslo pro uživatele root musí být alespoň 6 znaků dlouhé."
+-
+-#~ msgid "Weak Password"
+-#~ msgstr "Slabé heslo"
+-
+-#~ msgid ""
+-#~ "Weak password provided: %s\n"
+-#~ "\n"
+-#~ "Would you like to continue with this password?"
+-#~ msgstr ""
+-#~ "Zadáno slabé heslo: %s\n"
+-#~ "\n"
+-#~ "Chcete s tímto heslem pokračovat?"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
+-#~ msgid ""
+-#~ "Requested password contains non-ASCII characters, which are not allowed."
+-#~ msgstr "Heslo nesmí obsahovat znaky, které nepatří do ASCII."
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgid ""
+-#~ "No partitions are available to resize.  Only physical partitions with "
+-#~ "specific filesystems can be resized."
+-#~ msgstr ""
+-#~ "Pro změnu velikosti není k dispozici žádný oddíl.  Lze změnit velikost "
+-#~ "jen fyzických oddílů s konkrétními systémy souborů."
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
+-#~ msgid ""
+-#~ "Do you really want to boot from disk which is not used for instalation?"
+-#~ msgstr ""
+-#~ "Opravdu chcete zavádět systém z disku, který se nepoužívá pro instalaci?"
+-
+-#~ msgid "Invalid Initiator Name"
+-#~ msgstr "Neplatné jméno pro iniciátor"
+-
+-#~ msgid "You must provide an initiator name."
+-#~ msgstr "Je nutné vložit jméno iniciátoru."
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
+-#~ msgid "Error with Data"
+-#~ msgstr "Chyba v datech"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
+-#~ msgid "Remove all partitions on selected drives and create default layout"
+-#~ msgstr "Odstranit všechny oddíly a vytvořit oddíly dle vzoru"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
+-#~ msgid "Remove Linux partitions on selected drives and create default layout"
+-#~ msgstr "Odstranit linuxové oddíly a vytvořit oddíly dle vzoru"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgid "Resize existing partition and create default layout in free space"
+-#~ msgstr ""
+-#~ "Změnit velikost existujícího oddílu a ve volném místu vytvořit oddíly dle "
+-#~ "vzoru"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
+-#~ msgid "Use free space on selected drives and create default layout"
+-#~ msgstr "Použít jen volné místo a vytvořit oddíly dle vzoru"
+-
+-#~ msgid "Create custom layout"
+-#~ msgstr "Vytvořit oddíly ručně"
+-
+-#~ msgid "_Use a boot loader password"
+-#~ msgstr "Použít _heslo pro zavaděč systému"
+-
+-#~ msgid ""
+-#~ "A boot loader password prevents users from changing kernel options, "
+-#~ "increasing security."
+-#~ msgstr ""
+-#~ "Heslo pro zavaděč systému zabraňuje uživatelům měnit volby jádra, což "
+-#~ "zvyšuje zabezpečení systému."
+-
+-#~ msgid "Change _password"
+-#~ msgstr "Z_měnit heslo"
+-
+-#~ msgid "Enter Boot Loader Password"
+-#~ msgstr "Vložte heslo pro zavaděč systému"
+-
+-#~ msgid ""
+-#~ "Enter a boot loader password and then confirm it.  (Note that your BIOS "
+-#~ "keymap may be different than the actual keymap you are used to.)"
+-#~ msgstr ""
+-#~ "Zadejte heslo pro zavaděč systému (pro kontrolu dvakrát). POZOR: Mapa "
+-#~ "klávesnice může být při startu počítače jiná, než je právě používané "
+-#~ "rozložení kláves. Zavaděč používá ke čtení klávesnice BIOS, který se "
+-#~ "neřídí národními mapami klávesnic (obvykle používá anglické rozložení)."
+-
+-#~ msgid "_Password:"
+-#~ msgstr "_Heslo:"
+-
+-#~ msgid "Con_firm:"
+-#~ msgstr "Heslo (_znovu):"
+-
+-#~ msgid "Passwords don't match"
+-#~ msgstr "Hesla nejsou stejná."
+-
+-#~ msgid "Passwords do not match"
+-#~ msgstr "Hesla nejsou stejná."
+-
+-#~ msgid ""
+-#~ "Your boot loader password is shorter than six characters.  We recommend a "
+-#~ "longer boot loader password.\n"
+-#~ "\n"
+-#~ "Would you like to continue with this password?"
+-#~ msgstr ""
+-#~ "Heslo pro zavaděč systému je kratší než 6 znaků. Doporučujeme použít "
+-#~ "delší heslo.\n"
+-#~ "\n"
+-#~ "Chcete pokračovat s tímto heslem?"
+-
+-#~ msgid "Boot Loader Configuration"
+-#~ msgstr "Nastavení zavaděče systému"
+-
+-#~ msgid "_Install boot loader on /dev/%s."
+-#~ msgstr "Na_instalovat zavaděč systému na /dev/%s."
+-
+-#~ msgid "_Change device"
+-#~ msgstr "_Změnit zařízení"
+-
+-#~ msgid "Congratulations"
+-#~ msgstr "Gratulujeme"
+-
+-#~ msgid ""
+-#~ "Press the \"Reboot\" button to reboot your system.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Klikněte na 'OK' pro restart počítače.\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "Congratulations, the installation is complete.\n"
+-#~ "\n"
+-#~ "%s%s"
+-#~ msgstr ""
+-#~ "Blahopřejeme, instalace je dokončena.\n"
+-#~ "\n"
+-#~ "%s%s"
+-
+-#~ msgid "Upgrade Examine"
+-#~ msgstr "Prozkoumání aktualizaci"
+-
+-#~ msgid "_Install %s"
+-#~ msgstr "_Instalovat systém %s"
+-
+-#~ msgid ""
+-#~ "Choose this option to freshly install your system. Existing software and "
+-#~ "data may be overwritten depending on your configuration choices."
+-#~ msgstr ""
+-#~ "Zvolte instalaci pro novou instalaci vašeho systému. Existující software "
+-#~ "a data mohou být přepsána, podle vašich rozhodnutí při konfiguraci."
+-
+-#~ msgid "_Upgrade an existing installation"
+-#~ msgstr "_Aktualizovat existující instalaci"
+-
+-#~ msgid ""
+-#~ "Choose this option if you would like to upgrade your existing %s system.  "
+-#~ "This option preserves the existing data on your drives."
+-#~ msgstr ""
+-#~ "Zvolte aktualizaci, jestliže chcete aktualizovat %s. Aktualizace zachová "
+-#~ "data na vašich discích."
+-
+-#~ msgid "The following installed system will be upgraded:"
+-#~ msgstr "Bude aktualizován následující nainstalovaný systém:"
+-
+-#~ msgid "Unknown Linux system"
+-#~ msgstr "Neznámý systém Linux"
+-
+-#~ msgid "Language Selection"
+-#~ msgstr "Výběr jazyka"
+-
+-#~ msgid "What language would you like to use during the installation process?"
+-#~ msgstr "Jaký jazyk chcete používat během instalace?"
+-
+-#~ msgid "Not enough space"
+-#~ msgstr "Nedostatek místa"
+-
+-#~ msgid ""
+-#~ "The physical extent size cannot be changed because otherwise the space "
+-#~ "required by the currently defined logical volumes will be increased to "
+-#~ "more than the available space."
+-#~ msgstr ""
+-#~ "Velikost extentu nelze změnit, protože velikost potřebná pro definované "
+-#~ "logické svazky (LV) by byla větší, než je dostupné místo."
+-
+-#~ msgid "Confirm Physical Extent Change"
+-#~ msgstr "Potvrdit změnu velikosti extentu."
+-
+-#~ msgid ""
+-#~ "This change in the value of the physical extent will require the sizes of "
+-#~ "the current logical volume requests to be rounded up in size to an "
+-#~ "integer multiple of the physical extent.\n"
+-#~ "\n"
+-#~ "This change will take effect immediately."
+-#~ msgstr ""
+-#~ "Změna velikosti extentu znamená, že se velikost logického svazku (LV) "
+-#~ "zaokrouhlí nahoru na celočíselný násobek velikosti extentu.\n"
+-#~ "\n"
+-#~ "Změna bude mít okamžitý účinek."
+-
+-#~ msgid "C_ontinue"
+-#~ msgstr "_Pokračovat"
+-
+-#~ msgid ""
+-#~ "The physical extent size cannot be changed because the value selected "
+-#~ "(%10.2f MB) is larger than the smallest physical volume (%10.2f MB) in "
+-#~ "the volume group."
+-#~ msgstr ""
+-#~ "Velikost fyzického oddílu nelze změnit, protože zvolená hodnota (%10.2f "
+-#~ "MB) je větší, než nejmenší fyzický svazek (%10.2f MB) ve skupině svazků."
+-
+-#~ msgid ""
+-#~ "The physical extent size cannot be changed because the value selected "
+-#~ "(%10.2f MB) is too large compared to the size of the smallest physical "
+-#~ "volume (%10.2f MB) in the volume group."
+-#~ msgstr ""
+-#~ "Velikost fyzického svazku nelze změnit, protože zvolená hodnota (%10.2f "
+-#~ "MB) je příliš velká vzhledem k velikosti nejmenšího fyzického svazku "
+-#~ "(%10.2f MB) ve skupině svazků."
+-
+-#~ msgid "Too small"
+-#~ msgstr "Příliš malý"
+-
+-#~ msgid ""
+-#~ "This change in the value of the physical extent will waste substantial "
+-#~ "space on one or more of the physical volumes in the volume group."
+-#~ msgstr ""
+-#~ "Změna velikosti extentu způsobí nezanedbatelné plýtvání místem na jednom "
+-#~ "nebo více fyzických svazcích (PV) ve skupině svazků (VG)."
+-
+-#~ msgid ""
+-#~ "The physical extent size cannot be changed because the resulting maximum "
+-#~ "logical volume size (%10.2f MB) is smaller than one or more of the "
+-#~ "currently defined logical volumes."
+-#~ msgstr ""
+-#~ "Velikost extentu nelze změnit, protože výsledná maximální velikost "
+-#~ "logického svazku (LV, tj. %10.2f MB) je menší, než jeden nebo více z "
+-#~ "aktuálně definovaných logických svazků (LV)."
+-
+-#~ msgid ""
+-#~ "You cannot remove this physical volume because otherwise the volume group "
+-#~ "will be too small to hold the currently defined logical volumes."
+-#~ msgstr ""
+-#~ "Nelze odstranit fyzický svazek (PV), protože jinak by byla skupina svazků "
+-#~ "(VG) příliš malá pro aktuálně definované logické svazky (LV)."
+-
+-#~ msgid "Make Logical Volume"
+-#~ msgstr "Vytvořit logický svazek (LV)"
+-
+-#~ msgid "Edit Logical Volume: %s"
+-#~ msgstr "Upravit logický svazek (LV): %s"
+-
+-#~ msgid "Edit Logical Volume"
+-#~ msgstr "Upravit logický svazek (LV)"
+-
+-#~ msgid "_Mount Point:"
+-#~ msgstr "_Připojit do:"
+-
+-#~ msgid "_File System Type:"
+-#~ msgstr "Typ _systému souborů:"
+-
+-#~ msgid "Original File System Type:"
+-#~ msgstr "Původní typ systému souborů:"
+-
+-#~ msgid "Unknown"
+-#~ msgstr "Neznámý"
+-
+-#~ msgid "Original File System Label:"
+-#~ msgstr "Původní jmenovka systému souborů:"
+-
+-#~ msgid "_Logical Volume Name:"
+-#~ msgstr "Jméno _logického svazku (LV):"
+-
+-#~ msgid "Logical Volume Name:"
+-#~ msgstr "Jméno logického svazku (LV):"
+-
+-#~ msgid "_Size (MB):"
+-#~ msgstr "_Velikost (MB):"
+-
+-#~ msgid "Size (MB):"
+-#~ msgstr "Velikost (MB):"
+-
+-#~ msgid "(Max size is %s MB)"
+-#~ msgstr "(Maximum je %s MB)"
+-
+-#~ msgid "Illegal size"
+-#~ msgstr "Neplatná velikost"
+-
+-#~ msgid "The requested size as entered is not a valid number greater than 0."
+-#~ msgstr "Vložená velikost není není platné číslo větší než 0."
+-
+-#~ msgid "The mount point \"%s\" is in use. Please pick another."
+-#~ msgstr "Místo připojení \"%s\" je již používáno. Zadejte jiné."
+-
+-#~ msgid "Illegal Logical Volume Name"
+-#~ msgstr "Neplatné jméno logického svazku (LV)"
+-
+-#~ msgid "Illegal logical volume name"
+-#~ msgstr "Neplatné jméno logického svazku (LV)"
+-
+-#~ msgid ""
+-#~ "The logical volume name \"%s\" is already in use. Please pick another."
+-#~ msgstr "Jméno logického svazku \"%s\" je již používáno. Zadejte jiné."
+-
+-#~ msgid ""
+-#~ "The current requested size (%10.2f MB) is larger than the maximum logical "
+-#~ "volume size (%10.2f MB). To increase this limit you can create more "
+-#~ "Physical Volumes from unpartitioned disk space and add them to this "
+-#~ "Volume Group."
+-#~ msgstr ""
+-#~ "Požadovaná velikost (%10.2f MB) je větší, než maximální velikost "
+-#~ "logického svazku (LV, tj. %10.2f MB). Limit můžete zvýšit vytořením "
+-#~ "dalších fyzických svazků (PV) ve volném diskovém prostoru a jejich "
+-#~ "přidáním do skupiny svazků (VG)."
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
+-#~ msgid "Error With Request"
+-#~ msgstr "Chyba při požadavku"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
+-#~ msgid ""
+-#~ "The logical volumes you have configured require %d MB, but the volume "
+-#~ "group only has %d MB.  Please either make the volume group larger or make "
+-#~ "the logical volume(s) smaller."
+-#~ msgstr ""
+-#~ "Logické svazky (LV) potřebují %d MB, ale ve skupině svazků (VG) je k "
+-#~ "dispozici jen %d MB. Buď zvětšete skupinu svazků (VG), nebo zmenšete "
+-#~ "logický svazek (LV)."
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
+-#~ msgid "No free slots"
+-#~ msgstr "Chybí volné pozice"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgid "You cannot create more than %s logical volumes per volume group."
+-#~ msgstr ""
+-#~ "Nelze vytvořit více než %s logických svazků (LV) v jedné skupině svazků "
+-#~ "(VG)."
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
+-#~ msgid "No free space"
+-#~ msgstr "Chybí volné místo"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
+-#~ msgid ""
+-#~ "There is no room left in the volume group to create new logical volumes. "
+-#~ "To add a logical volume you must reduce the size of one or more of the "
+-#~ "currently existing logical volumes"
+-#~ msgstr ""
+-#~ "Ve skupině svazků (VG) není místo pro vytvoření nových logických svazků "
+-#~ "(LV). Zmenšete velikost jednoho nebo více z existujících logických svazků "
+-#~ "(LV)."
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
+-#~ msgid "Invalid Volume Group Name"
+-#~ msgstr "Neplatné jméno skupiny svazků (VG)"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgid "Name in use"
+-#~ msgstr "Jméno je již používáno"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
+-#~ msgid "The volume group name \"%s\" is already in use. Please pick another."
+-#~ msgstr "Jméno skupiny svazků (VG) \"%s\" je již používáno. Zadejte jiné."
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgid "Not enough physical volumes"
+-#~ msgstr "Nedostatek fyzických svazků (PV)"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
+-#~ msgid ""
+-#~ "At least one unused physical volume partition is needed to create an LVM "
+-#~ "Volume Group.\n"
+-#~ "\n"
+-#~ "Create a partition or RAID array of type \"physical volume (LVM)\" and "
+-#~ "then select the \"LVM\" option again."
+-#~ msgstr ""
+-#~ "Pro vytvoření skupiny svazků (VG) v LVM je potřeba alespoň jeden oddíl s "
+-#~ "fyzickým svazkem (PV).\n"
+-#~ "\n"
+-#~ "Vytvořte oddíl nebo pole RAID typu \"fyzický svazek (PV)\" a pak zvolte "
+-#~ "volbu \"LVM\" znovu."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgid "Make LVM Volume Group"
+-#~ msgstr "Vytvořit skupinu svazků (VG) LVM"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgid "Edit LVM Volume Group: %s"
+-#~ msgstr "Upravit skupinu svazků (VG) LVM: %s"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgid "Edit LVM Volume Group"
+-#~ msgstr "Upravit skupinu svazků (VG) LVM"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
+-#~ msgid "_Volume Group Name:"
+-#~ msgstr "_Jméno skupiny svazků (VG):"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
+-#~ msgid "Volume Group Name:"
+-#~ msgstr "Jméno skupiny svazků (VG):"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
+-#~ msgid "_Physical Extent:"
+-#~ msgstr "_Fyzický extent:"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgid "Physical Volumes to _Use:"
+-#~ msgstr "_Použít fyzické svazky (PV):"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
+-#~ msgid "Used Space:"
+-#~ msgstr "Použité místo:"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
+-#~ msgid "Free Space:"
+-#~ msgstr "Volné místo:"
++#: ../gui/polgengui.py:261
++msgid "Role"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgid "Total Space:"
+-#~ msgstr "Celkem:"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
+-#~ msgid "Size (MB)"
+-#~ msgstr "Velikost (MB)"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgid "_Edit"
+-#~ msgstr "_Upravit"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgid "_Logical Volumes"
+-#~ msgstr "_Logické svazky"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgid "Mouse Configuration"
+-#~ msgstr "Nastavení myši"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
+-#~ msgid "/dev/ttyS0 (COM1 under DOS)"
+-#~ msgstr "/dev/ttyS0 (v DOSu COM1)"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgid "/dev/ttyS1 (COM2 under DOS)"
+-#~ msgstr "/dev/ttyS1 (v DOSu COM2)"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgid "/dev/ttyS2 (COM3 under DOS)"
+-#~ msgstr "/dev/ttyS2 (v DOSu COM3)"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
+-#~ msgid "/dev/ttyS3 (COM4 under DOS)"
+-#~ msgstr "/dev/ttyS3 (v DOSu COM4)"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgid "_Device"
+-#~ msgstr "Z_ařízení"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
+-#~ msgid "_Model"
+-#~ msgstr "_Model"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgid "_Emulate 3 buttons"
+-#~ msgstr "_Emulovat 3 tlačítka"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
+-#~ msgid "Select the appropriate mouse for the system."
+-#~ msgstr "Zvolte typ myši."
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgid ""
+-#~ "An error occurred converting the value entered for \"%s\":\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Při konverzi hodnoty zadané pro \"%s\" došlo k chybě:\n"
+-#~ "%s"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
+-#~ msgid "Error With Data"
+-#~ msgstr "Chyba v datech"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
+-#~ msgid "A value is required for the field %s."
+-#~ msgstr "V poli %s je nutné vyplnit hodnotu."
+-
+-#~ msgid "Dynamic IP"
+-#~ msgstr "Dynamické nastavení IP"
+-
+-#~ msgid "Sending request for IP information for %s..."
+-#~ msgstr "Odesílám požadavek o informace IP pro %s..."
+-
+-#~ msgid "IP Address"
+-#~ msgstr "IP adresa"
+-
+-#~ msgid "IPv4 CIDR prefix must be between 0 and 32."
+-#~ msgstr "Prefix CIDR IPv4 musí být mezi 0 a 32."
+-
+-#~ msgid "IPv4 Network Mask"
+-#~ msgstr "IPv4 maska sítě "
+-
+-#~ msgid "Gateway"
+-#~ msgstr "Gateway"
+-
+-#~ msgid "Nameserver"
+-#~ msgstr "DNS server"
+-
+-#~ msgid "Error configuring network device:"
+-#~ msgstr "Chyba při konfigurování síťového rozhraní "
+-
+-#~ msgid "Error configuring network device"
+-#~ msgstr "Chyba při konfigurování síťového rozhraní"
+-
+-#~ msgid "Primary DNS"
+-#~ msgstr "Primární DNS"
+-
+-#~ msgid "Secondary DNS"
+-#~ msgstr "Sekundární DNS"
+-
+-#~ msgid "_Gateway"
+-#~ msgstr "_Gateway"
+-
+-#~ msgid "_Primary DNS"
+-#~ msgstr "Primární _DNS"
+-
+-#~ msgid "_Secondary DNS"
+-#~ msgstr "_Sekundární DNS"
+-
+-#~ msgid ""
+-#~ "You have not specified a hostname.  Depending on your network environment "
+-#~ "this may cause problems later."
+-#~ msgstr ""
+-#~ "Nezadali jste jméno počítače. To může, v závislosti na vašem síťovém "
+-#~ "prostředí, později způsobit problémy."
+-
+-#~ msgid ""
+-#~ "You have not specified the field \"%s\".  Depending on your network "
+-#~ "environment this may cause problems later."
+-#~ msgstr ""
+-#~ "Nevyplnili jste pole \"%s\". To může, v závislosti na vašem síťovém "
+-#~ "prostředí, později způsobit problémy."
+-
+-#~ msgid ""
+-#~ "The hostname \"%s\" is not valid for the following reason:\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Jméno počítače \"%s\" není platné z následujícího důvodu:\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid "Error With %s Data"
+-#~ msgstr "Chyba v datech %s"
+-
+-#~ msgid "The IPv4 information you have entered is invalid."
+-#~ msgstr "Hodnoty pro IPv4 nejsou platné."
+-
+-#~ msgid ""
+-#~ "You have no active network devices.  Your system will not be able to "
+-#~ "communicate over a network by default without at least one device active."
+-#~ msgstr ""
+-#~ "Nemáte žádná aktivní síťová zařízení. Váš systém nebude moci komunikovat "
+-#~ "po síti bez aktivního zařízení."
+-
+-#~ msgid "Active on Boot"
+-#~ msgstr "Aktivovat při startu"
+-
+-#~ msgid "IPv4/Netmask"
+-#~ msgstr "IPv4/Maska sítě"
+-
+-#~ msgid "IPv6/Prefix"
+-#~ msgstr "IPv6/Prefix"
+-
+-#~ msgid "Network Devices"
+-#~ msgstr "Síťová zařízení"
+-
+-#~ msgid "Set the hostname:"
+-#~ msgstr "Nastavit jméno počítače:"
+-
+-#~ msgid "_automatically via DHCP"
+-#~ msgstr "_automaticky pomocí DHCP"
+-
+-#~ msgid "_manually"
+-#~ msgstr "_ručně"
+-
+-#~ msgid "(e.g., host.domain.com)"
+-#~ msgstr "(např. pocitac.domena.cz)"
+-
+-#~ msgid "Hostname"
+-#~ msgstr "Jméno počítače"
+-
+-#~ msgid "Miscellaneous Settings"
+-#~ msgstr "Různé volby"
+-
+-#~ msgid "Edit Device "
+-#~ msgstr "Upravit zařízení "
+-
+-#~ msgid "Unknown Ethernet Device"
+-#~ msgstr "Neznámé Ethernet zařízení"
+-
+-#~ msgid "Hardware address: "
+-#~ msgstr "Hardwarová adresa: "
+-
+-#~ msgid "You must select at least IPv4 or IPv6 support."
+-#~ msgstr "Musíte vybrat alespoň jeden z protokolů IPv4 nebo IPv6."
+-
+-#~ msgid "IPv4 prefix must be between 0 and 32."
+-#~ msgstr "Prefix IPv4 musí být mezi 0 a 32."
+-
+-#~ msgid "IPv6 prefix must be between 0 and 128."
+-#~ msgstr "Prefix IPv6 musí být mezi 0 a 128."
+-
+-#~ msgid "Boot loader operating system list"
+-#~ msgstr "Seznam operačních systémů pro zavaděč."
+-
+-#~ msgid "Image"
+-#~ msgstr "Obraz"
+-
+-#~ msgid ""
+-#~ "Enter a label for the boot loader menu to display. The device (or hard "
+-#~ "drive and partition number) is the device from which it boots."
+-#~ msgstr ""
+-#~ "Vložte název, který bude zobrazen v menu zavaděče. Zařízení (nebo disk a "
+-#~ "číslo oddílu) určuje, odkud bude systém zaveden."
+-
+-#~ msgid "_Label"
+-#~ msgstr "_Název"
+-
+-#~ msgid "Default Boot _Target"
+-#~ msgstr "Implicitní _obraz pro zavedení systému"
+-
+-#~ msgid "You must specify a label for the entry"
+-#~ msgstr "Musíte zvolit jmenovku pro položku"
+-
+-#~ msgid "Boot label contains illegal characters"
+-#~ msgstr "Název systému obsahuje nedovolené znaky"
+-
+-#~ msgid "Duplicate Label"
+-#~ msgstr "Název je již používán"
+-
+-#~ msgid "This label is already in use for another boot entry."
+-#~ msgstr "Název je již používána v jiné položce zavaděče."
+-
+-#~ msgid "Duplicate Device"
+-#~ msgstr "Zařízení je používáno"
+-
+-#~ msgid "This device is already being used for another boot entry."
+-#~ msgstr "Zařízení je již používáno v jiné položce zavaděče."
+-
+-#~ msgid "Cannot Delete"
+-#~ msgstr "Nemohu odstranit"
+-
+-#~ msgid ""
+-#~ "This boot target cannot be deleted because it is for the %s system you "
+-#~ "are about to install."
+-#~ msgstr ""
+-#~ "Položku v zavaděči nelze odstranit, protože je pro systém %s, který "
+-#~ "budete instalovat."
+-
+-#~ msgid "Additional Size Options"
+-#~ msgstr "Další volby pro velikost"
+-
+-#~ msgid "_Fixed size"
+-#~ msgstr "_Uvedená velikost"
+-
+-#~ msgid "Fill all space _up to (MB):"
+-#~ msgstr "Vyplnit vo_lné místo do velikosti (MB):"
+-
+-#~ msgid "Fill to maximum _allowable size"
+-#~ msgstr "Vyplnit vš_echno volné místo"
+-
+-#~ msgid "The end cylinder must be greater than the start cylinder."
+-#~ msgstr "Koncový cylindr musí být větší než počáteční cylindr."
+-
+-#~ msgid "Edit Partition: /dev/%s"
+-#~ msgstr "Nastavení oddílu: /dev/%s"
+-
+-#~ msgid "Edit Partition"
+-#~ msgstr "Nastavení oddílu"
+-
+-#~ msgid "File System _Type:"
+-#~ msgstr "_Typ systému souborů:"
+-
+-#~ msgid "_Encrypt"
+-#~ msgstr "_Šifrovat"
+-
+-#~ msgid "Allowable _Drives:"
+-#~ msgstr "Výběr _disků:"
+-
+-#~ msgid "Drive:"
+-#~ msgstr "Disk:"
+-
+-#~ msgid "_Start Cylinder:"
+-#~ msgstr "_Počáteční cylindr:"
+-
+-#~ msgid "_End Cylinder:"
+-#~ msgstr "_Koncový cylindr:"
+-
+-#~ msgid "Force to be a _primary partition"
+-#~ msgstr "Vytvořit jako _primární oddíl"
+-
+-#~ msgid "Drive %s (Geom: %s/%s/%s) (Model: %s)"
+-#~ msgstr "Disk %s (Geom: %s/%s/%s) (Model: %s)"
+-
+-#~ msgid "Drive %s (%-0.f MB) (Model: %s)"
+-#~ msgstr "Disk %s (%-0.f MB) (Model: %s)"
+-
+-#~ msgid "End"
+-#~ msgstr "Konec"
+-
+-#~ msgid ""
+-#~ "Mount Point/\n"
+-#~ "RAID/Volume"
+-#~ msgstr ""
+-#~ "Připojit do/\n"
+-#~ "RAID/svazek"
+-
+-#~ msgid ""
+-#~ "Size\n"
+-#~ "(MB)"
+-#~ msgstr ""
+-#~ "Velikost\n"
+-#~ "(MB)"
+-
+-#~ msgid "Partitioning"
+-#~ msgstr "Vytváření oddílů"
+-
+-#~ msgid ""
+-#~ "The partitioning scheme you requested caused the following critical "
+-#~ "errors."
+-#~ msgstr ""
+-#~ "Rozdělení disku, které bylo vybráno, skončilo s následujícími chybami."
+-
+-#~ msgid ""
+-#~ "You must correct these errors before you continue your installation of %s."
+-#~ msgstr "Před pokračováním instalace %s musí být chyby opraveny."
+-
+-#~ msgid ""
+-#~ "The partitioning scheme you requested generated the following warnings."
+-#~ msgstr ""
+-#~ "Rozdělení disku, které bylo vybráno, proběhlo s následujícími varováními."
+-
+-#~ msgid "Would you like to continue with your requested partitioning scheme?"
+-#~ msgstr "Chcete pokračovat s požadovaným schématem oddílů?"
+-
+-#~ msgid "Partitioning Warnings"
+-#~ msgstr "Varování o oddílech"
+-
+-#~ msgid "Format Warnings"
+-#~ msgstr "Varování před formátováním"
+-
+-#~ msgid "_Format"
+-#~ msgstr "_Formátovat"
+-
+-#~ msgid "LVM Volume Groups"
+-#~ msgstr "Skupiny svazků LVM"
+-
+-#~ msgid "RAID Devices"
+-#~ msgstr "RAID zařízení"
+-
+-#~ msgid "Hard Drives"
+-#~ msgstr "Pevné disky"
+-
+-#~ msgid "Free space"
+-#~ msgstr "Nevyužito"
+-
+-#~ msgid "Extended"
+-#~ msgstr "Extended"
+-
+-#~ msgid "software RAID"
+-#~ msgstr "softwarový RAID"
+-
+-#~ msgid "Free"
+-#~ msgstr "Volné"
+-
+-#~ msgid "Warning: %s."
+-#~ msgstr "Varování: %s."
+-
+-#~ msgid "Not supported"
+-#~ msgstr "Nepodporováno"
+-
+-#~ msgid "LVM is NOT supported on this platform."
+-#~ msgstr "LVM na této platformě NENÍ podporován."
+-
+-#~ msgid "Software RAID is NOT supported on this platform."
+-#~ msgstr "Softwarový RAID na této platformě NENÍ podporován."
+-
+-#~ msgid "No RAID minor device numbers available"
+-#~ msgstr "Chybí menší čísla zařízení RAID"
+-
+-#~ msgid ""
+-#~ "A software RAID device cannot be created because all of the available "
+-#~ "RAID minor device numbers have been used."
+-#~ msgstr ""
+-#~ "Nelze vytvořit zařízení softwarový RAID, protože všechna menší čísla "
+-#~ "zařízení RAID již byla použita."
+-
+-#~ msgid "RAID Options"
+-#~ msgstr "Nastavení RAID"
+-
+-#~ msgid ""
+-#~ "Software RAID allows you to combine several disks into a larger RAID "
+-#~ "device.  A RAID device can be configured to provide additional speed and "
+-#~ "reliability compared to using an individual drive.  For more information "
+-#~ "on using RAID devices please consult the %s documentation.\n"
+-#~ "\n"
+-#~ "You currently have %s software RAID partition(s) free to use.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Softwarový RAID umožňuje zkombinovat několik disků do většího zařízení "
+-#~ "RAID. Zařízení RAID může být nakonfigurováno, aby poskytlo větší rychlost "
+-#~ "a spolehlivost než jednotlivý disk. Pro více informací o používání "
+-#~ "zařízení RAID si prosím přečtěte dokumentaci %s.\n"
+-#~ "\n"
+-#~ "Aktuálně máte k dispozici %s oddílů softwarového RAID.\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "To use RAID you must first create at least two partitions of type "
+-#~ "'software RAID'.  Then you can create a RAID device that can be formatted "
+-#~ "and mounted.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Aby šlo používat RAID, musíte nejdříve vytvořit alespoň dva oddíly typu "
+-#~ "'softwarový RAID'. Pak lze vytvořit RAID zařízení, které je možné "
+-#~ "naformátovat a připojit.\n"
+-#~ "\n"
+-
+-#~ msgid "What do you want to do now?"
+-#~ msgstr "Co chcete provést?"
+-
+-#~ msgid "Create a software RAID _partition."
+-#~ msgstr "Vytvořit _oddíl softwarového RAID."
+-
+-#~ msgid "Create a RAID _device [default=/dev/md%s]."
+-#~ msgstr "Vytvořit _zařízení RAID [implicitní /dev/md%s]."
+-
+-#~ msgid "Clone a _drive to create a RAID device [default=/dev/md%s]."
+-#~ msgstr "Vytvořit zařízení RAID _klonováním disku [implicitní /dev/md%s]."
+-
+-#~ msgid "The drive clone editor could not be created for some reason."
+-#~ msgstr "Z nějakého důvodu nelze vytvořit editor klonů disku."
+-
+-#~ msgid "Ne_w"
+-#~ msgstr "No_vý"
+-
+-#~ msgid "Re_set"
+-#~ msgstr "O_bnovit"
+-
+-#~ msgid "R_AID"
+-#~ msgstr "_RAID"
+-
+-#~ msgid "_LVM"
+-#~ msgstr "_LVM"
+-
+-#~ msgid "Hide RAID device/LVM Volume _Group members"
+-#~ msgstr "_Skrýt členy zařízení RAID a skupin svazků LVM"
+-
+-#~ msgid "<Not Applicable>"
+-#~ msgstr "<Není použitelné>"
+-
+-#~ msgid "_Format as:"
+-#~ msgstr "_Formátovat jako:"
+-
+-#~ msgid "Mi_grate filesystem to:"
+-#~ msgstr "_Migrovat systém souborů na:"
+-
+-#~ msgid "_Resize"
+-#~ msgstr "Změnit _velikost"
+-
+-#~ msgid ""
+-#~ "Partitions of type '%s' must be constrained to a single drive.  To do "
+-#~ "this, select the drive in the 'Allowable Drives' checklist."
+-#~ msgstr ""
+-#~ "Oddíly typu '%s' musí být omezeny na jeden disk. Vyberte pouze jeden disk "
+-#~ "v seznamu 'Výběr disků'."
+-
+-#~ msgid "Disk Partitioning Setup"
+-#~ msgstr "Nastavení oddílů na disku"
+-
+-#~ msgid "_Automatically partition"
+-#~ msgstr "_Automatické vytvoření oddílů"
+-
+-#~ msgid "Manually partition with _Disk Druid"
+-#~ msgstr "_Ruční vytvoření oddílů pomocí programu Disk Druid"
+-
+-#~ msgid "Installing Packages"
+-#~ msgstr "Instaluji balíčky"
+-
+-#~ msgid ""
+-#~ "At least two unused software RAID partitions are needed to create a RAID "
+-#~ "device.\n"
+-#~ "\n"
+-#~ "First create at least two partitions of type \"software RAID\", and then "
+-#~ "select the \"RAID\" option again."
+-#~ msgstr ""
+-#~ "Pro vytvoření zařízení RAID jsou potřeba alespoň dva nepoužité oddíly "
+-#~ "softwarového RAID.\n"
+-#~ "\n"
+-#~ "Nejdříve vytvořte alespoň dva oddíly typu \"softwarový RAID\", pak zvolte "
+-#~ "volbu \"RAID\" znovu."
+-
+-#~ msgid "Make RAID Device"
+-#~ msgstr "Vytvořit RAID zařízení"
+-
+-#~ msgid "Edit RAID Device: /dev/md%s"
+-#~ msgstr "Upravit RAID zařízení: /dev/md%s"
+-
+-#~ msgid "Edit RAID Device"
+-#~ msgstr "Upravit RAID zařízení"
+-
+-#~ msgid "RAID _Device:"
+-#~ msgstr "RAID _zařízení:"
+-
+-#~ msgid "RAID _Level:"
+-#~ msgstr "RAID _Level:"
+-
+-#~ msgid "_RAID Members:"
+-#~ msgstr "Členové _RAID:"
+-
+-#~ msgid "Number of _spares:"
+-#~ msgstr "Počet _rezerv:"
+-
+-#~ msgid "_Format partition?"
+-#~ msgstr "_Formátovat oddíl?"
+-
+-#~ msgid ""
+-#~ "The source drive has no partitions to be cloned.  You must first define "
+-#~ "partitions of type 'software RAID' on this drive before it can be cloned."
+-#~ msgstr ""
+-#~ "Zdrojový disk nemá žádné oddíly pro klonování. Než může být disk "
+-#~ "klonován, musí na něm nejdříve být definovány oddíly typu 'softwarový "
+-#~ "RAID'."
+-
+-#~ msgid "Source Drive Error"
+-#~ msgstr "Chyba zdrojového disku"
+-
+-#~ msgid ""
+-#~ "The source drive you selected has partitions which are not of type "
+-#~ "'software RAID'.\n"
+-#~ "\n"
+-#~ "You must remove these partitions before this drive can be cloned. "
+-#~ msgstr ""
+-#~ "Zvolený zdrojový disk obsahuje oddíly, které nejsou typu 'softwarový "
+-#~ "RAID'.\n"
+-#~ "\n"
+-#~ "Aby bylo možné klonovat disk, musíte je odstranit."
+-
+-#~ msgid ""
+-#~ "The source drive you selected has partitions which are not constrained to "
+-#~ "the drive /dev/%s.\n"
+-#~ "\n"
+-#~ "You must remove these partitions or restrict them to this drive before "
+-#~ "this drive can be cloned. "
+-#~ msgstr ""
+-#~ "Zvolený zdrojový disk obsahuje oddíly, které nejsou omezeny na disk /dev/"
+-#~ "%s.\n"
+-#~ "\n"
+-#~ "Aby bylo možné klonovat disk, musíte je odstranit nebo omezit pouze na "
+-#~ "zdrojový disk."
+-
+-#~ msgid ""
+-#~ "The source drive you selected has software RAID partition(s) which are "
+-#~ "members of an active software RAID device.\n"
+-#~ "\n"
+-#~ "You must remove these partitions before this drive can be cloned."
+-#~ msgstr ""
+-#~ "Zvolený zdrojový disk obsahuje oddíl 'softwarový RAID', které jsou členy "
+-#~ "aktivního softwarového RAID zařízení.\n"
+-#~ "\n"
+-#~ "Aby bylo možné klonovat disk, musíte je odstranit."
+-
+-#~ msgid "Target Drive Error"
+-#~ msgstr "Chyba cílového disku"
+-
+-#~ msgid "Please select the target drives for the clone operation."
+-#~ msgstr "Vyberte cílové disky pro klonování."
+-
+-#~ msgid ""
+-#~ "The source drive /dev/%s cannot be selected as a target drive as well."
+-#~ msgstr "Zdrojový disk /dev/%s nemůže být zvolen také jako cílový disk."
+-
+-#~ msgid ""
+-#~ "The target drive /dev/%s has a partition which cannot be removed for the "
+-#~ "following reason:\n"
+-#~ "\n"
+-#~ "\"%s\"\n"
+-#~ "\n"
+-#~ "You must remove this partition before this drive can be a target."
+-#~ msgstr ""
+-#~ "Na cílovém disku /dev/%s je oddíl, který nelze odstranit z následujícího "
+-#~ "důvodu:\n"
+-#~ "\n"
+-#~ "\"%s\"\n"
+-#~ "\n"
+-#~ "Aby disk mohl být cílem, musíte oddíl odstranit."
+-
+-#~ msgid "Please select a source drive."
+-#~ msgstr "Zvolte zdrojový disk."
+-
+-#~ msgid ""
+-#~ "The drive /dev/%s will now be cloned to the following drives:\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Disk /dev/%s bude nyní naklonován na následující disky:\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "WARNING! ALL DATA ON THE TARGET DRIVES WILL BE DESTROYED."
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "VAROVÁNÍ! VŠECHNA DATA NA CÍLOVÝCH DISCÍCH BUDOU SMAZÁNA."
+-
+-#~ msgid "Final Warning"
+-#~ msgstr "Poslední varování"
+-
+-#~ msgid "Clone Drives"
+-#~ msgstr "Klonovat disky"
+-
+-#~ msgid "There was an error clearing the target drives.  Cloning failed."
+-#~ msgstr "Při mazání cílových disků došlo k chybě. Klonování selhalo."
+-
+-#~ msgid ""
+-#~ "Clone Drive Tool\n"
+-#~ "\n"
+-#~ "This tool allows you to significantly reduce the amount of effort "
+-#~ "required to setup RAID arrays.  This tool uses a source drive which has "
+-#~ "been prepared with the desired partitioning layout, and clones this "
+-#~ "layout onto other similar sized drives.  Then a RAID device can be "
+-#~ "created.\n"
+-#~ "\n"
+-#~ "NOTE: The source drive must have partitions which are restricted to be on "
+-#~ "that drive only, and can only contain unused software RAID partitions.  "
+-#~ "Other partition types are not allowed.\n"
+-#~ "\n"
+-#~ "EVERYTHING on the target drive(s) will be destroyed by this process."
+-#~ msgstr ""
+-#~ "Nástroj pro klonování disků\n"
+-#~ "\n"
+-#~ "Nástroj na klonování disků umožňuje podstatně zjednodušit vytvoření polí "
+-#~ "RAID. Vytvoříte zdrojový disk s požadovaným rozložením oddílů a "
+-#~ "naklonujete jeho rozložení na ostatní, podobně velké disky. Pak lze "
+-#~ "vytvořit zařízení RAID.\n"
+-#~ "\n"
+-#~ "UPOZORNĚNÍ: Zdrojový disk musí mít oddíly, které jsou omezeny na jeden "
+-#~ "disk a může obsahovat jen nepoužité softwarové RAID oddíly. Jiné typy "
+-#~ "oddílů nejsou povoleny.\n"
+-#~ "\n"
+-#~ "VŠECHNA DATA na cílovém disku (discích) budou klonováním smazána."
+-
+-#~ msgid "Source Drive:"
+-#~ msgstr "Zdrojový disk:"
+-
+-#~ msgid "Target Drive(s):"
+-#~ msgstr "Cílový disk (disky):"
+-
+-#~ msgid "Drives"
+-#~ msgstr "Disky"
+-
+-#~ msgid ""
+-#~ "Unable to read package metadata from repository.  This may be due to a "
+-#~ "missing repodata directory.  Please ensure that your repository has been "
+-#~ "correctly generated.\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Nelze načíst metadata balíčku z repozitáře. Důvodem může být chybějící "
+-#~ "adresář repodata. Zkontrolujte, zda metadata repozitáře byla správně "
+-#~ "vygenerována.\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "Unable to find a group file for %s.  This will prevent manual selection "
+-#~ "of packages from the repository from working"
+-#~ msgstr ""
+-#~ "Nelze najít soubor se skupinami pro %s. Ruční výběr balíčků nebude pro "
+-#~ "repozitář fungovat."
+-
+-#~ msgid "Edit Repository"
+-#~ msgstr "Upravit repozitář"
+-
+-#~ msgid "Invalid Repository Name"
+-#~ msgstr "Neplatné jméno repozitáře"
+-
+-#~ msgid "You must provide a repository name."
+-#~ msgstr "Musíte vložit jméno repozitáře."
+-
+-#~ msgid "Invalid Proxy URL"
+-#~ msgstr "Neplatné URL proxy"
+-
+-#~ msgid "You must provide an HTTP, HTTPS, or FTP URL to a proxy."
+-#~ msgstr "Musíte zadat HTTP, HTTPS nebo FTP URL proxy."
+-
+-#~ msgid "Invalid Repository URL"
+-#~ msgstr "Neplatné URL repozitáře"
+-
+-#~ msgid "You must provide an HTTP, HTTPS, or FTP URL to a repository."
+-#~ msgstr "Musíte zadat HTTP, HTTPS nebo FTP URL repozitáře."
+-
+-#~ msgid ""
+-#~ "The repository %s has already been added.  Please choose a different "
+-#~ "repository name and URL."
+-#~ msgstr "Repozitář %s již byl přidán. Zvolte jiné jméno repozitáře a URL."
+-
+-#~ msgid "Time Zone Selection"
+-#~ msgstr "Výběr časové zóny"
+-
+-#~ msgid "Upgrade Boot Loader Configuration"
+-#~ msgstr "Aktualizace zavaděče systému"
+-
+-#~ msgid "_Update boot loader configuration"
+-#~ msgstr "_Aktualizovat zavaděč systému"
+-
+-#~ msgid "This will update your current boot loader."
+-#~ msgstr "Bude provedena aktualizace zavaděče systému."
+-
+-#~ msgid ""
+-#~ "Due to system changes, your boot loader configuration can not be "
+-#~ "automatically updated."
+-#~ msgstr ""
+-#~ "Konfigurace zavaděče nemůže být kvůli systémovým změnám automaticky "
+-#~ "aktualizována."
+-
+-#~ msgid ""
+-#~ "The installer is unable to detect the boot loader currently in use on "
+-#~ "your system."
+-#~ msgstr ""
+-#~ "Instalační program není schopen detekovat, jaký zavaděč je v systému "
+-#~ "používán."
+-
+-#~ msgid ""
+-#~ "The installer has detected the %s boot loader currently installed on %s."
+-#~ msgstr "Instalační program nalezl zavaděč %s nainstalovaný na %s."
+-
+-#~ msgid "This is the recommended option."
+-#~ msgstr "Toto je doporučená volba."
+-
+-#~ msgid "_Create new boot loader configuration"
+-#~ msgstr "_Vytvořit nové nastavení zavaděče"
+-
+-#~ msgid ""
+-#~ "This option creates a new boot loader configuration.  If you wish to "
+-#~ "switch boot loaders, you should choose this."
+-#~ msgstr ""
+-#~ "Vytvoření nového nastavení zavaděče systému použijte v případě, že chcete "
+-#~ "přejít na jiný zavaděč."
+-
+-#~ msgid "_Skip boot loader updating"
+-#~ msgstr "_Vynechat aktualizaci zavaděče"
+-
+-#~ msgid ""
+-#~ "This option makes no changes to boot loader configuration.  If you are "
+-#~ "using a third party boot loader, you should choose this."
+-#~ msgstr ""
+-#~ "V nastavení zavaděče nebudou provedeny žádné změny. Volbu použijte v "
+-#~ "případě, že používáte zavaděč třetí strany."
+-
+-#~ msgid "What would you like to do?"
+-#~ msgstr "Co chcete provést?"
+-
+-#~ msgid "Migrate File Systems"
+-#~ msgstr "Migrovat systémy souborů"
+-
+-#~ msgid ""
+-#~ "This release of %s supports the ext3 journaling file system, which has "
+-#~ "several benefits over the ext2 file system traditionally shipped in %s.  "
+-#~ "This installation program can migrate the ext2 formatted partitions to "
+-#~ "ext3 without data loss.\n"
+-#~ "\n"
+-#~ "Which of these partitions would you like to migrate?"
+-#~ msgstr ""
+-#~ "Distribuce %s podporuje žurnálový systém souborů ext3, který má proti "
+-#~ "ext2, které se používá v %s, několik významných vylepšení. Migrace "
+-#~ "(převod) z ext2 na ext3 je možný beze ztráty dat.\n"
+-#~ "\n"
+-#~ "Které oddíly chcete migrovat na ext3?"
+-
+-#~ msgid "Upgrade Swap Partition"
+-#~ msgstr "Aktualizace odkládacího oddílu"
+-
+-#~ msgid ""
+-#~ "Recent kernels (2.4 or newer) need significantly more swap than older "
+-#~ "kernels, up to twice the amount of RAM on the system.  You currently have "
+-#~ "%dMB of swap configured, but you may create additional swap space on one "
+-#~ "of your file systems now."
+-#~ msgstr ""
+-#~ "Moderní jádra (2.4 a novější) potřebují více odkládacího prostoru, než "
+-#~ "jádra starší. Doporučená velikost odkládacího prostoru je dvojnásobek "
+-#~ "velikosti RAM, kterou máte ve vašem počítači. V současné době máte %d MB "
+-#~ "odkládacího prostoru. Chcete-li, můžete na jednom ze systémů souborů "
+-#~ "odkládací prostor přidat."
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "The installer has detected %s MB of RAM.\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "Instalační program detekoval %s MB RAM.\n"
+-
+-#~ msgid "I _want to create a swap file"
+-#~ msgstr "Chci _vytvořit odkládací soubor"
+-
+-#~ msgid "Select the _partition to put the swap file on:"
+-#~ msgstr "Zvolte _oddíl, na kterém se má vytvořit odkládací soubor:"
+-
+-#~ msgid "Free Space (MB)"
+-#~ msgstr "Volný prostor (MB)"
+-
+-#~ msgid ""
+-#~ "A minimum swap file size of %d MB is recommended.  Please enter a size "
+-#~ "for the swap file:"
+-#~ msgstr ""
+-#~ "Doporučená velikost odkládacího souboru je alespoň %d MB. Vložte prosím "
+-#~ "velikost odkládacího souboru:"
+-
+-#~ msgid "Swap file _size (MB):"
+-#~ msgstr "Velikost odkládacího _souboru (MB):"
+-
+-#~ msgid "I _don't want to create a swap file"
+-#~ msgstr "_Nechci vytvořit odkládací soubor"
+-
+-#~ msgid ""
+-#~ "A swap file is strongly recommended. Failure to create one could cause "
+-#~ "the installer to abort abnormally.  Are you sure you wish to continue?"
+-#~ msgstr ""
+-#~ "Důrazně doporučujeme vytvořit odkládací soubor. Pokud jej nevytvoříte, "
+-#~ "může být běh instalačního programu neočekávaně ukončen. Opravdu chcete "
+-#~ "pokračovat?"
+-
+-#~ msgid "The swap file must be between 1 and 2000 MB in size."
+-#~ msgstr "Velikost odkládacího souboru musí být mezi 1 a 2000 MB."
+-
+-#~ msgid ""
+-#~ "There is not enough space on the device you selected for the swap "
+-#~ "partition."
+-#~ msgstr ""
+-#~ "Na vybraném zařízení není dostatek volného místa pro odkládací oddíl."
+-
+-#~ msgid "z/IPL Boot Loader Configuration"
+-#~ msgstr "Nastavení zavaděče systému z/IPL"
+-
+-#~ msgid "The z/IPL boot loader will be installed on your system."
+-#~ msgstr "Zavaděč z/IPL bude nainstalován na váš systém."
+-
+-#~ msgid ""
+-#~ "The z/IPL Boot Loader will now be installed on your system.\n"
+-#~ "\n"
+-#~ "The root partition will be the one you selected previously in the "
+-#~ "partition setup.\n"
+-#~ "\n"
+-#~ "The kernel used to start the machine will be the one to be installed by "
+-#~ "default.\n"
+-#~ "\n"
+-#~ "If you wish to make changes later after the installation feel free to "
+-#~ "change the /etc/zipl.conf configuration file.\n"
+-#~ "\n"
+-#~ "You can now enter any additional kernel parameters which your machine or "
+-#~ "your setup may require."
+-#~ msgstr ""
+-#~ "Nyní bude na Víš systém nainstalován zavaděč systému z/IPL.\n"
+-#~ "\n"
+-#~ "Kořenový oddíl bude ten, co jste zvolili při nastavování oddílů.\n"
+-#~ "\n"
+-#~ "Jádro použité pro zavedení systému bude implicitní nainstalované jádro.\n"
+-#~ "\n"
+-#~ "Pokud chcete změnit nastaveni, upravte po instalaci konfigurační soubor /"
+-#~ "etc/zipl.conf.\n"
+-#~ "\n"
+-#~ "Nyní můžete zadat přídavné parametry jádra, které jsou potřeba pro váš "
+-#~ "počítač."
+-
+-#~ msgid "Kernel Parameters"
+-#~ msgstr "Parametry jádra"
+-
+-#~ msgid "Chandev Parameters"
+-#~ msgstr "Parametry chandev"
+-
+-#~ msgid "Which boot loader would you like to use?"
+-#~ msgstr "Který zavaděč systému chcete použít?"
+-
+-#~ msgid "Use GRUB Boot Loader"
+-#~ msgstr "Použít GRUB"
+-
+-#~ msgid "No Boot Loader"
+-#~ msgstr "Žádný zavaděč"
+-
+-#~ msgid "Skip Boot Loader"
+-#~ msgstr "Vynechat zavaděč"
+-
+-#~ msgid ""
+-#~ "You have elected not to install any boot loader, which is not recommended "
+-#~ "unless you have an advanced need. Booting your system into Linux directly "
+-#~ "from the hard drive almost always requires a boot loader.\n"
+-#~ "\n"
+-#~ "Are you sure you want to skip boot loader installation?"
+-#~ msgstr ""
+-#~ "Nezvolili jste instalaci žádného zavaděče. Doporučujeme jeho instalaci "
+-#~ "neprovádět jen v případě, že k tomu máte zvláštní důvody. Zavaděč je "
+-#~ "potřeba pro zavedení systému přímo z pevného disku.\n"
+-#~ "\n"
+-#~ "Opravdu chcete vynechat instalaci zavaděče systému?"
+-
+-#~ msgid ""
+-#~ "A few systems need to pass special options to the kernel at boot time to "
+-#~ "function properly. If you need to pass boot options to the kernel, enter "
+-#~ "them now. If you don't need any or aren't sure, leave this blank."
+-#~ msgstr ""
+-#~ "U některých systémů je při startu potřeba předat jádru speciální "
+-#~ "parametry. Máte-li takové, můžete je zde uvést. Pokud nevíte, co byste "
+-#~ "měli zadat, nezadávejte nic."
+-
+-#~ msgid "Force use of LBA32 (not normally required)"
+-#~ msgstr "Použít LBA32 (bez ohledu na autodetekci)"
+-
+-#~ msgid ""
+-#~ "If LBA32 is not supported by your system's BIOS, forcing its use can "
+-#~ "prevent your machine from booting.\n"
+-#~ "\n"
+-#~ "Would you like to continue and force LBA32 mode?"
+-#~ msgstr ""
+-#~ "Pokud použijete LBA32 a její podpora v BIOSu nebude přítomna, počítač "
+-#~ "nebude schopen nastartovat.\n"
+-#~ "\n"
+-#~ "Opravdu chcete použít LBA32 bez ohledu na autodetekci?"
+-
+-#~ msgid "Where do you want to install the boot loader?"
+-#~ msgstr "Kam chcete nainstalovat zavaděč systému?"
+-
+-#~ msgid "Boot label"
+-#~ msgstr "Název v zavaděči"
+-
+-#~ msgid "Clear"
+-#~ msgstr "Smazat"
+-
+-#~ msgid "Edit Boot Label"
+-#~ msgstr "Upravit název v zavaděči"
+-
+-#~ msgid "Invalid Boot Label"
+-#~ msgstr "Neplatný název v zavaděči"
+-
+-#~ msgid "Boot label may not be empty."
+-#~ msgstr "Název nesmí být prázdný."
+-
+-#~ msgid "Boot label contains illegal characters."
+-#~ msgstr "Název položky zavaděče obsahuje neplatné znaky."
+-
+-#~ msgid "Edit"
+-#~ msgstr "Upravit"
+-
+-#~ msgid ""
+-#~ "The boot manager %s uses can boot other operating systems as well.  "
+-#~ "Please tell me what partitions you would like to be able to boot and what "
+-#~ "label you want to use for each of them."
+-#~ msgstr ""
+-#~ "Zavaděč, který používá %s, lze použít při startu systému i pro zavedení "
+-#~ "jiných operačních systémů. Je potřeba zadat, ve kterých oddílech jsou a "
+-#~ "názvy, které budou použity v menu."
+-
+-#~ msgid ""
+-#~ " <Space> select | <F2> select default | <F4> delete | <F12> next screen>"
+-#~ msgstr ""
+-#~ " <Mezera> zvolit | <F2> jako implicitní | <F4> odstranit | <F12> "
+-#~ "pokračovat"
+-
+-#~ msgid ""
+-#~ "A boot loader password prevents users from passing arbitrary options to "
+-#~ "the kernel.  For highest security, you should set a password, but a "
+-#~ "password is not necessary for more casual users."
+-#~ msgstr ""
+-#~ "Heslo pro zavaděč systému brání uživatelům, aby při startu systému měnili "
+-#~ "nebo přidávali jádru dodatečné parametry. Chcete-li systém zabezpečit, "
+-#~ "nastavte heslo. Pro běžné použití to však není nutné."
+-
+-#~ msgid "Use a GRUB Password"
+-#~ msgstr "Chránit GRUB heslem"
+-
+-#~ msgid "Boot Loader Password:"
+-#~ msgstr "Heslo pro zavaděč GRUB:"
+-
+-#~ msgid "Confirm:"
+-#~ msgstr "Potvrďte:"
+-
+-#~ msgid "Passwords Do Not Match"
+-#~ msgstr "Hesla nesouhlasí."
+-
+-#~ msgid "Password Too Short"
+-#~ msgstr "Heslo je příliš krátké."
+-
+-#~ msgid "Boot loader password is too short"
+-#~ msgstr "Heslo pro zavaděč je příliš krátké."
+-
+-#~ msgid ""
+-#~ "Press <Enter> to end the installation process.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Dokončete instalaci stisknutím <Enter>.\n"
+-#~ "\n"
+-
+-#~ msgid "<Enter> to exit"
+-#~ msgstr "<Enter> pro ukončení"
+-
+-#~ msgid ""
+-#~ "Congratulations, your %s installation is complete.\n"
+-#~ "\n"
+-#~ "%s%s"
+-#~ msgstr ""
+-#~ "Blahopřejeme, vaše instalace %s je dokončena.\n"
+-#~ "\n"
+-#~ "%s%s"
+-
+-#~ msgid ""
+-#~ "For information on errata (updates and bug fixes), visit http://www."
+-#~ "redhat.com/errata/.\n"
+-#~ "\n"
+-#~ "Information on using your system is available in the %s manuals at http://"
+-#~ "www.redhat.com/docs/."
+-#~ msgstr ""
+-#~ "Pro informace o errata (aktualizacích a opravách chyb) navštivte http://"
+-#~ "www.redhat.com/errata/.\n"
+-#~ "\n"
+-#~ "Informace o používání systému naleznete v manuálech distribuce %s na "
+-#~ "http://www.redhat.com/docs/."
+-
+-#~ msgid "Complete"
+-#~ msgstr "Hotovo"
+-
+-#~ msgid "Reboot"
+-#~ msgstr "Restartovat"
+-
+-#~ msgid "Please select the package groups you would like to install."
+-#~ msgstr "Zvolte skupiny balíčků, které chcete nainstalovat."
+-
+-#~ msgid ""
+-#~ "<Space>,<+>,<-> selection   |   <F2> Group Details   |   <F12> next screen"
+-#~ msgstr ""
+-#~ "  <Mezera>,<+>,<-> vybrat   |   <F2> Detaily skupiny   |   <F12> "
+-#~ "pokračovat"
+-
+-#~ msgid "No optional packages to select"
+-#~ msgstr "Žádné volitelné balíčky"
+-
+-#~ msgid "Package Group Details"
+-#~ msgstr "Detaily skupiny balíčků"
+-
+-#~ msgid "Keyboard Selection"
+-#~ msgstr "Výběr klávesnice"
+-
+-#~ msgid "Which model keyboard is attached to this computer?"
+-#~ msgstr "Jaký model klávesnice je připojen k počítači?"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
+-#~ msgid "What device is your mouse located on?"
+-#~ msgstr "K jakému zařízení je připojena vaše myš?"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+#, fuzzy
-+msgid "Spam Protection"
-+msgstr "oddíl"
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
+-#~ msgid "Which model mouse is attached to this computer?"
+-#~ msgstr "Jaký model myši je připojen k počítači?"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
+-#~ msgid "Emulate 3 Buttons?"
+-#~ msgstr "Emulovat 3 tlačítka?"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
+-#~ msgid "Mouse Selection"
+-#~ msgstr "Výběr myši"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgid ""
+-#~ "You have not specified the field %s.  Depending on your network "
+-#~ "environment this may cause problems later."
+-#~ msgstr ""
+-#~ "Nevyplnili jste pole %s. V závislosti na vašem síťovém prostředí to může "
+-#~ "později způsobit problémy."
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
+-#~ msgid "IPv%d prefix must be between 0 and %d."
+-#~ msgstr "Prefix IPv%d musí být mezi 0 a %d."
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
+-#~ msgid "Integer Required for Prefix"
+-#~ msgstr "Prefix musí být celé číslo"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
+-#~ msgid ""
+-#~ "You must enter a valid integer for the %s.  For IPv4, the value can be "
+-#~ "between 0 and 32.  For IPv6 it can be between 0 and 128."
+-#~ msgstr ""
+-#~ "Pro %s musíte vložit platné celé číslo. Pro IPv4 je rozsah od 0 do 32, "
+-#~ "pro IPv6 je rozsah od 0 do 128."
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
+-#~ msgid "Prefix (Netmask)"
+-#~ msgstr "Prefix (maska sítě)"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgid "Activate on boot"
+-#~ msgstr "Aktivovat při startu"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:189
+-#~ msgid "Enable IPv4 support"
+-#~ msgstr "Povolit podporu IPv4"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
+-#~ msgid "Enable IPv6 support"
+-#~ msgstr "Povolit podporu IPv6"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
+-#~ msgid "P-to-P:"
+-#~ msgstr "P-to-P:"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
+-#~ msgid "ESSID:"
+-#~ msgstr "ESSID:"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
+-#~ msgid "WEP Key:"
+-#~ msgstr "WEP klíč:"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
+-#~ msgid "Network Configuration for %s"
+-#~ msgstr "Nastavení sítě pro %s"
++#: ../gui/polgen.py:1290
++#, python-format
 +msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
+-#~ msgid "point-to-point IP address"
+-#~ msgstr "point-to-point IP adresa"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgid "Dynamic IP configuration (DHCP)"
+-#~ msgstr "Dynamické nastavení IP adresy (DHCP)"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgid "Manual address configuration"
+-#~ msgstr "Ruční konfigurace IP adresy"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
+-#~ msgid "IPv4 Configuration for %s"
+-#~ msgstr "IPv4 konfigurace pro %s"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
+-#~ msgid "IPv4 address"
+-#~ msgstr "IPv4 adresa"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
++#: ../gui/portsPage.py:101
++msgid "Port"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
++#: ../gui/portsPage.py:252
++msgid "List View"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgid "IPv4 network mask"
+-#~ msgstr "IPv4 maska sítě"
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
- msgstr ""
  
--#: ../newrole/newrole.c:1004
--#, c-format
--msgid "failed to convert new context to string\n"
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
- msgstr ""
+-#~ msgid "IPv4 prefix (network mask)"
+-#~ msgstr "IPv4 prefix (maska sítě)"
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
  
--#: ../newrole/newrole.c:1009
--#, fuzzy, c-format
--msgid "%s is not a valid context\n"
--msgstr "%s není platné jméno počítače."
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
+-#~ msgid "Automatic neighbor discovery"
+-#~ msgstr "Automatické vyhledání okolních počítačů"
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
 +msgstr ""
  
--#: ../newrole/newrole.c:1016
--#, c-format
--msgid "Unable to allocate memory for new_context"
+-#~ msgid "Dynamic IP configuration (DHCPv6)"
+-#~ msgstr "Dynamické nastavení IP adresy (DHCPv6)"
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
- msgstr ""
--#: ../newrole/newrole.c:1042
--#, fuzzy, c-format
--msgid "Unable to obtain empty signal set\n"
--msgstr "Nelze připojit souborový systém"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
++msgid "Mount"
 +msgstr ""
  
--#: ../newrole/newrole.c:1050
--#, c-format
--msgid "Unable to set SIGHUP handler\n"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
- msgstr ""
+-#~ msgid "IPv6 Configuration for %s"
+-#~ msgstr "IPv6 konfigurace pro %s"
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
  
--#: ../newrole/newrole.c:1116
--#, c-format
--msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
- msgstr ""
+-#~ msgid "IPv6 address"
+-#~ msgstr "IPv6 adresa"
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
  
--#: ../newrole/newrole.c:1133
--#, c-format
--msgid "failed to get old_context.\n"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
- msgstr ""
+-#~ msgid "IPv6 prefix"
+-#~ msgstr "IPv6 prefix"
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
  
--#: ../newrole/newrole.c:1140
--#, c-format
--msgid "Warning!  Could not retrieve tty information.\n"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
- msgstr ""
+-#~ msgid "Configure Network Interface"
+-#~ msgstr "Nastavení síťového rozhraní"
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
  
--#: ../newrole/newrole.c:1161
--#, fuzzy, c-format
--msgid "error on reading PAM service configuration.\n"
--msgstr "Zapisuji nastavení po aktualizaci..."
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
+-#~ msgid "Would you like to configure the %s network interface in your system?"
+-#~ msgstr "Chcete nastavit síťové rozhraní %s?"
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
  
--#: ../newrole/newrole.c:1196
--#, c-format
--msgid "newrole: incorrect password for %s\n"
-+#: ../gui/selinux.tbl:216
+-#~ msgid "UNCONFIGURED"
+-#~ msgstr "NENASTAVENO"
++#: ../gui/selinux.tbl:11
 +msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
- msgstr ""
--#: ../newrole/newrole.c:1223
--#, c-format
--msgid "newrole: failure forking: %s"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
- msgstr ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
  
--#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
--#, fuzzy, c-format
--msgid "Unable to restore tty label...\n"
--msgstr "Nemohu přenést instalační obraz."
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgid ""
+-#~ "The current configuration settings for each interface are listed next to "
+-#~ "the device name.  Unconfigured interfaces are shown as UNCONFIGURED.  To "
+-#~ "configure an interface, highlight it and choose Edit.  When you are "
+-#~ "finished, press OK to continue."
+-#~ msgstr ""
+-#~ "Aktuální nastavení všech síťových zařízení je vypsáno vedle jeho názvu. "
+-#~ "Zařízení, která nejsou nakonfigurována, jsou označena NENASTAVENO. Chcete-"
+-#~ "li nastavení změnit, klikněte na zařízení a pak na Upravit. Po dokončení "
+-#~ "stiskněte OK pro pokračování."
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
  
--#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
--#, c-format
--msgid "Failed to close tty properly\n"
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
- msgstr ""
+-#~ msgid "Active on boot"
+-#~ msgstr "Aktivní při startu"
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
  
--#: ../newrole/newrole.c:1287
--#, fuzzy, c-format
--msgid "Could not close descriptors.\n"
--msgstr "Nemohu alokovat oddíly pomocí cylindrů.\n"
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgid "Inactive on boot"
+-#~ msgstr "Neaktivní při startu"
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
 +msgstr ""
  
--#: ../newrole/newrole.c:1314
--#, c-format
--msgid "Error allocating shell's argv0.\n"
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
- msgstr ""
+-#~ msgid "DHCP"
+-#~ msgstr "DHCP"
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
  
--#: ../newrole/newrole.c:1346
--#, fuzzy, c-format
--msgid "Unable to restore the environment, aborting\n"
--msgstr "Nemohu přenést instalační obraz."
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
+-#~ msgid "Auto IPv6"
+-#~ msgstr "Auto IPv6"
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
  
--#: ../newrole/newrole.c:1357
--msgid "failed to exec shell\n"
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
- msgstr ""
--#: ../load_policy/load_policy.c:22
--#, c-format
--msgid "usage:  %s [-qi]\n"
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
- msgstr ""
--#: ../load_policy/load_policy.c:71
--#, c-format
--msgid "%s:  Policy is already loaded and initial load requested\n"
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
- msgstr ""
+-#~ msgid "DHCPv6"
+-#~ msgstr "DHCPv6"
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
  
--#: ../load_policy/load_policy.c:80
--#, c-format
--msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
- msgstr ""
+-#~ msgid "Gateway:"
+-#~ msgstr "Brána:"
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
  
--#: ../load_policy/load_policy.c:90
--#, c-format
--msgid "%s:  Can't load policy:  %s\n"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
- msgstr ""
+-#~ msgid "Primary DNS:"
+-#~ msgstr "Primární DNS:"
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
  
--#: ../scripts/chcat:92 ../scripts/chcat:169
--#, fuzzy
--msgid "Requires at least one category"
--msgstr "Vložená hodnota není číslo"
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
+-#~ msgid "Secondary DNS:"
+-#~ msgstr "Sekundární DNS:"
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
 +msgstr ""
  
--#: ../scripts/chcat:106 ../scripts/chcat:183
--#, c-format
--msgid "Can not modify sensitivity levels using '+' on %s"
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
- msgstr ""
+-#~ msgid "Miscellaneous Network Settings"
+-#~ msgstr "Různá nastavení sítě"
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
  
--#: ../scripts/chcat:110
--#, c-format
--msgid "%s is already in %s"
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
- msgstr ""
+-#~ msgid "gateway"
+-#~ msgstr "brána"
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
  
--#: ../scripts/chcat:188 ../scripts/chcat:198
--#, fuzzy, c-format
--msgid "%s is not in %s"
--msgstr "%s není platné jméno počítače."
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgid "primary DNS"
+-#~ msgstr "primární DNS"
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
  
--#: ../scripts/chcat:267 ../scripts/chcat:272
--msgid "Can not combine +/- with other types of categories"
+-#~ msgid "secondary DNS"
+-#~ msgstr "sekundární DNS"
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
- msgstr ""
++msgid "NIS"
++msgstr ""
  
--#: ../scripts/chcat:319
--msgid "Can not have multiple sensitivities"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
- msgstr ""
+-#~ msgid "automatically via DHCP"
+-#~ msgstr "automaticky pomocí DHCP"
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
  
--#: ../scripts/chcat:325
--#, c-format
--msgid "Usage %s CATEGORY File ..."
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
- msgstr ""
+-#~ msgid "manually"
+-#~ msgstr "ručně"
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
  
--#: ../scripts/chcat:326
--#, c-format
--msgid "Usage %s -l CATEGORY user ..."
-+#: ../gui/semanagePage.py:126
-+#, fuzzy, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Opravdu chcete odstranit logický svazek (LV) \"%s\"?"
-+
-+#: ../gui/semanagePage.py:126
-+#, fuzzy, python-format
-+msgid "Delete %s"
-+msgstr "Odstranit"
-+
-+#: ../gui/semanagePage.py:134
-+#, fuzzy, python-format
-+msgid "Add %s"
-+msgstr "_Přidat"
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
- msgstr ""
+-#~ msgid "Hostname Configuration"
+-#~ msgstr "Nastavení jména počítače"
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
  
--#: ../scripts/chcat:327
--#, c-format
--msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
- msgstr ""
+-#~ msgid ""
+-#~ "If your system is part of a larger network where hostnames are assigned "
+-#~ "by DHCP, select automatically via DHCP. Otherwise, select manually and "
+-#~ "enter a hostname for your system. If you do not, your system will be "
+-#~ "known as 'localhost.'"
+-#~ msgstr ""
+-#~ "Pokud je systém součástí větší sítě, kde jsou jména počítačů přiřazována "
+-#~ "pomocí DHCP, zvolte 'Automaticky pomocí DHCP'. V opačném případě zvolte "
+-#~ "Ručně a zadejte jméno svého počítače. Pokud nezvolíte nic, systém se bude "
+-#~ "jmenovat 'localhost'."
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
  
--#: ../scripts/chcat:328
--#, c-format
--msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
- msgstr ""
+-#~ msgid "You have not specified a hostname."
+-#~ msgstr "Neurčili jste jméno počítače."
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
  
--#: ../scripts/chcat:329
--#, fuzzy, c-format
--msgid "Usage %s -d File ..."
--msgstr "Zavádím ovladač %s ..."
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Zakázáno"
+-#~ msgid "Requested value is too large"
+-#~ msgstr "Vložená hodnota je příliš velká"
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
  
--#: ../scripts/chcat:330
--#, c-format
--msgid "Usage %s -l -d user ..."
--msgstr ""
-+#: ../gui/statusPage.py:94
-+#, fuzzy
-+msgid "Status"
-+msgstr "Začátek"
+-#~ msgid "RAID Device %s"
+-#~ msgstr "RAID zařízení %s"
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr ""
  
--#: ../scripts/chcat:331
--#, c-format
--msgid "Usage %s -L"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
- msgstr ""
+-#~ msgid "Warning: %s"
+-#~ msgstr "Varování: %s"
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr ""
  
--#: ../scripts/chcat:332
--#, c-format
--msgid "Usage %s -L -l user"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
- msgstr ""
+-#~ msgid "Add anyway"
+-#~ msgstr "Přesto použít"
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr ""
  
--#: ../scripts/chcat:333
--msgid "Use -- to end option list.  For example"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
- msgstr ""
+-#~ msgid "Mount Point:"
+-#~ msgstr "Připojeno do:"
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr ""
  
--#: ../scripts/chcat:334
--msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
- msgstr ""
+-#~ msgid "File System type:"
+-#~ msgstr "Typ systému souborů:"
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr ""
  
--#: ../scripts/chcat:335
--msgid "chcat -l +CompanyConfidential juser"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
- msgstr ""
+-#~ msgid "Allowable Drives:"
+-#~ msgstr "Výběr disků:"
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr ""
  
--#: ../scripts/chcat:399
--#, fuzzy, c-format
--msgid "Options Error %s "
--msgstr "Chyby v oddílech"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
+-#~ msgid "Fixed Size:"
+-#~ msgstr "Uvedená velikost:"
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Boolean"
--#~ msgstr "Korejština"
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
+-#~ msgid "Fill maximum size of (MB):"
+-#~ msgstr "Vyplnit maximálně (MB):"
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "all"
--#~ msgstr "_Instalovat"
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
+-#~ msgid "Fill all available space:"
+-#~ msgstr "Vyplnit všechen volný prostor:"
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Customized"
--#~ msgstr "_Upravit teď"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
+-#~ msgid "Start Cylinder:"
+-#~ msgstr "Počáteční cylindr:"
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "File Labeling"
--#~ msgstr "Jmenovka systému souborů:"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
+-#~ msgid "End Cylinder:"
+-#~ msgstr "Koncový cylindr:"
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:842
- #, fuzzy
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr "Typ"
-+msgid "File Type"
-+msgstr "Typ systému souborů:"
+-#~ msgid "Volume Group:"
+-#~ msgstr "Skupina svazků:"
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Version"
--#~ msgstr "Perština"
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "RAID Members:"
+-#~ msgstr "Členové RAID:"
++#: ../gui/selinux.tbl:41
 +msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Disable Audit"
--#~ msgstr "Zakázáno"
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
+-#~ msgid "Number of spares?"
+-#~ msgstr "Počet rezerv?"
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Enable Audit"
--#~ msgstr "Nelze upravit"
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
+-#~ msgid "File System Option:"
+-#~ msgstr "Nastavení systému souborů:"
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Uživatelské jméno:</b>"
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
+-#~ msgid "Format as %s"
+-#~ msgstr "Formátovat jako %s"
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:1314
- #, fuzzy
--#~ msgid "User Role"
--#~ msgstr "Uživatelské jméno"
-+msgid "Add"
-+msgstr "_Přidat"
--#, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Uživatelské jméno:</b>"
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
+-#~ msgid "Migrate to %s"
+-#~ msgstr "Migrovat na %s"
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>FCP LUN:</b>"
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Odstranit"
--#, fuzzy
--#~ msgid "Select Ports"
--#~ msgstr "Výběr oddílu"
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
+-#~ msgid "Leave unchanged"
+-#~ msgstr "Ponechat beze změny"
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:1466
- #, fuzzy
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>IPv4 adresa:</b>"
-+msgid "<b>Select:</b>"
-+msgstr "<b>Uživatelské jméno:</b>"
+-#~ msgid "File System Options"
+-#~ msgstr "Nastavení systému souborů"
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Policy Directory"
--#~ msgstr "Neplatné adresáře"
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
+-#~ msgid ""
+-#~ "Please choose how you would like to prepare the file system on this "
+-#~ "partition."
+-#~ msgstr "Vyberte, jak chcete připravit systém souborů na oddílu."
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Existing_User"
--#~ msgstr "Konec"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
+-#~ msgid "Leave unchanged (preserve data)"
+-#~ msgstr "Ponechat beze změny (zachovat data)"
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Application"
--#~ msgstr "oddíl"
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
+-#~ msgid "Format as:"
+-#~ msgstr "Formátovat jako:"
++#: ../gui/selinux.tbl:54
++msgid "Cron"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "%s must be a directory"
--#~ msgstr "Adresář %s:"
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
+-#~ msgid "Migrate to:"
+-#~ msgstr "Migrovat na:"
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Zvolte oddíl, který chcete upravit"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
+-#~ msgid "Force to be a primary partition"
+-#~ msgstr "Nastavit jako primární oddíl"
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Verify Name"
--#~ msgstr "Název proxy:"
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
+-#~ msgid "Not Supported"
+-#~ msgstr "Nepodporováno"
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:1754
- #, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Musíte zadat jméno serveru."
-+msgid "label37"
-+msgstr "Název"
+-#~ msgid "You can only edit LVM Volume Groups in the graphical installer."
+-#~ msgstr ""
+-#~ "Skupiny svazků LVM mohou být měněny jen v grafickém instalačním programu."
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Musíte zadat jméno serveru."
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
+-#~ msgid "Invalid Entry for Partition Size"
+-#~ msgstr "Špatná velikost oddílu"
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Configue SELinux"
--#~ msgstr "Nastavit proxy"
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
+-#~ msgid "Invalid Entry for Maximum Size"
+-#~ msgstr "Špatná maximální velikost"
++#: ../gui/selinux.tbl:58
++msgid "CVS"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Úprava rozhraní"
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
+-#~ msgid "Invalid Entry for Starting Cylinder"
+-#~ msgstr "Špatný počáteční cylindr"
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Protocol"
--#~ msgstr "Chybějící protokol"
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
+-#~ msgid "Invalid Entry for End Cylinder"
+-#~ msgstr "Špatný koncový cylindr"
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Port"
--#~ msgstr "Formátovat"
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
+-#~ msgid "No RAID partitions"
+-#~ msgstr "Žádné RAID oddíly"
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:1945
- #, fuzzy
--#~ msgid "Memory Protection"
--#~ msgstr "Nastavení oddílu"
-+msgid "label50"
-+msgstr "Název"
+-#~ msgid "At least two software RAID partitions are needed."
+-#~ msgstr "Jsou potřeba alespoň dva softwarové RAID oddíly."
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Mount"
--#~ msgstr "Připojit do"
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
+-#~ msgid "Format partition?"
+-#~ msgstr "Formátovat oddíl?"
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
 +msgstr ""
  
--#~ msgid "Network Configuration"
--#~ msgstr "Nastavení sítě"
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
+-#~ msgid "Invalid Entry for RAID Spares"
+-#~ msgstr "Špatná položka pro RAID rezervy"
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "XServer"
--#~ msgstr "Name server:"
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
+-#~ msgid "Too many spares"
+-#~ msgstr "Příliš mnoho rezerv"
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "NIS"
--#~ msgstr "NFS"
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
+-#~ msgid "You may not use any spares with a RAID0 array."
+-#~ msgstr "U RAID0 nelze použít žádné rezervy."
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2150
- #, fuzzy
--#~ msgid "Cron"
--#~ msgstr "Chorvatština"
-+msgid "label38"
-+msgstr "Název"
+-#~ msgid "No Volume Groups"
+-#~ msgstr "Žádná skupina svazků"
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Printing"
--#~ msgstr "Oddíl"
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
+-#~ msgid "No volume groups exist in which to create a logical volume"
+-#~ msgstr ""
+-#~ "Neexistuje skupina svazků (VG), ve které vytvořit logický svazek (LV)"
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Games"
--#~ msgstr "Ásámština"
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
+-#~ msgid ""
+-#~ "The current requested size (%10.2f MB) is larger than the maximum logical "
+-#~ "volume size (%10.2f MB). "
+-#~ msgstr ""
+-#~ "Požadovaná velikost (%10.2f MB) je větší než maximální velikost logického "
+-#~ "svazku (LV, tj. %10.2f MB). "
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
  
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
+-#~ msgid ""
+-#~ "The current requested size (%10.2f MB) is larger than the available size "
+-#~ "in the volume group (%10.2f MB)."
+-#~ msgstr ""
+-#~ "Momentálně požadovaná velikost (%10.2f MB) je větší než dostupná velikost "
+-#~ "ve skupině svazků (%10.2f MB)."
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2337
- #, fuzzy
--#~ msgid "HTTPD Service"
--#~ msgstr "Zařízení"
-+msgid "label39"
-+msgstr "Název"
+-#~ msgid "New Partition or Logical Volume?"
+-#~ msgstr "Nový oddíl nebo logický svazek?"
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2374
- #, fuzzy
--#~ msgid "Name Service"
--#~ msgstr "Name server:"
-+msgid "Add User"
-+msgstr "_Přidat"
+-#~ msgid "Would you like to create a new partition or a new logical volume?"
+-#~ msgstr "Chcete vytvořit nový oddíl nebo nový logický svazek?"
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2390
- #, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "oddíl"
-+msgid "Modify User"
-+msgstr "_Upravit repozitář"
+-#~ msgid "logical volume"
+-#~ msgstr "logický svazek"
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2406
- #, fuzzy
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Opravdu chcete odstranit logický svazek (LV) \"%s\"?"
-+msgid "Delete User"
-+msgstr "Odstranit"
+-#~ msgid "Size"
+-#~ msgstr "Velikost"
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2524
- #, fuzzy
--#~ msgid "Delete %s"
--#~ msgstr "Odstranit"
-+msgid "label41"
-+msgstr "Název"
+-#~ msgid "New"
+-#~ msgstr "Nový"
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2561
- #, fuzzy
--#~ msgid "Add %s"
--#~ msgstr "_Přidat"
--
--#~ msgid "Disabled"
--#~ msgstr "Zakázáno"
-+msgid "Add Translation"
-+msgstr "Přidat oddíl"
+-#~ msgid "RAID"
+-#~ msgstr "RAID"
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2577
- #, fuzzy
--#~ msgid "Status"
--#~ msgstr "Začátek"
-+msgid "Modify Translation"
-+msgstr "Nastavení oddílu"
+-#~ msgid ""
+-#~ "    F1-Help     F2-New      F3-Edit   F4-Delete    F5-Reset    F12-"
+-#~ "OK        "
+-#~ msgstr ""
+-#~ "   F1-Nápověda   F2-Nový   F3-Upravit   F4-Odstranit   F5-Obnovit   F12-"
+-#~ "Ok   "
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "File Type"
--#~ msgstr "Typ systému souborů:"
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
+-#~ msgid "No Root Partition"
+-#~ msgstr "Chybí kořenový oddíl"
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2711
- #, fuzzy
--#~ msgid "Add"
--#~ msgstr "_Přidat"
--
--#~ msgid "_Delete"
--#~ msgstr "_Odstranit"
-+msgid "label40"
-+msgstr "Název"
+-#~ msgid "Installation requires a / partition."
+-#~ msgstr "Instalace vyžaduje kořenový oddíl (/)."
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2748
- #, fuzzy
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Uživatelské jméno:</b>"
-+msgid "Add Network Port"
-+msgstr "Chyba sítě"
+-#~ msgid "Partitioning Type"
+-#~ msgstr "Typ tabulky oddílů"
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2764
- #, fuzzy
--#~ msgid "label37"
--#~ msgstr "Název"
-+msgid "Edit Network Port"
-+msgstr "Chyba sítě"
+-#~ msgid ""
+-#~ "Installation requires partitioning of your hard drive.  The default "
+-#~ "layout is reasonable for most users.  You can either choose to use this "
+-#~ "or create your own."
+-#~ msgstr ""
+-#~ "Před instalací je potřeba rozdělit disk na oddíly a určit, kam se bude "
+-#~ "instalovat. Automatické rozdělení vytvoří implicitní rozdělení, které "
+-#~ "bude ve většině případů vyhovovat. Můžete také vytvořit oddíly ručně a "
+-#~ "sami určit, kam budou připojeny."
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2780
- #, fuzzy
--#~ msgid "label50"
--#~ msgstr "Název"
-+msgid "Delete Network Port"
-+msgstr "Chyba sítě"
+-#~ msgid "Which drive(s) do you want to use for this installation?"
+-#~ msgstr "Které disky chcete pro instalaci použít?"
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr ""
  
--#, fuzzy
--#~ msgid "label38"
--#~ msgstr "Název"
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
+-#~ msgid ""
+-#~ "<Space>,<+>,<-> selection   |   <F2> Add drive   |   <F12> next screen"
+-#~ msgstr ""
+-#~ "<Mezera>,<+>,<-> vybrat  |  <F2> přidat jednotku  |  <F12> pokračovat"
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:2954
- #, fuzzy
--#~ msgid "label39"
--#~ msgstr "Název"
-+msgid "label42"
-+msgstr "Název"
+-#~ msgid "Review Partition Layout"
+-#~ msgstr "Prohlédnout rozložení oddílů"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Add Translation"
--#~ msgstr "Přidat oddíl"
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
+-#~ msgid "Review and modify partitioning layout?"
+-#~ msgstr "Prohlédnout a upravit rozložení oddílů?"
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Modify Translation"
--#~ msgstr "Nastavení oddílu"
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
+-#~ msgid "Advanced Storage Options"
+-#~ msgstr "Pokročilé volby pro ukládání dat"
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "label41"
--#~ msgstr "Název"
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
+-#~ msgid "How would you like to modify your drive configuration?"
+-#~ msgstr "Jak chcete upravit nastavení disku?"
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "label40"
--#~ msgstr "Název"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
+-#~ msgid "Add FCP Device"
+-#~ msgstr "Přidat FCP zařízení"
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:3179
- #, fuzzy
--#~ msgid "Add Network Port"
--#~ msgstr "Chyba sítě"
-+msgid "label44"
-+msgstr "Název"
+-#~ msgid ""
+-#~ "zSeries machines can access industry-standard SCSI devices via Fibre "
+-#~ "Channel (FCP). You need to provide a 16 bit device number, a 64 bit World "
+-#~ "Wide Port Name (WWPN), and a 64 bit FCP LUN for each device."
+-#~ msgstr ""
+-#~ "Počítače zSeries mohou používat standardní zařízení SCSI přes Fibre "
+-#~ "Channel (FCP). Pro každé zařízení musíte zadat tyto parametry: 16 bitové "
+-#~ "číslo zařízení, 64 bitové World Wide Port Name (WWPN) a 64 bitové FCP LUN."
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Edit Network Port"
--#~ msgstr "Chyba sítě"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
+-#~ msgid "Configure iSCSI Parameters"
+-#~ msgstr "Konfigurace iSCSI"
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Delete Network Port"
--#~ msgstr "Chyba sítě"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
+-#~ msgid ""
+-#~ "To use iSCSI disks, you must provide the address of your iSCSI target and "
+-#~ "the iSCSI initiator name you've configured for your host."
+-#~ msgstr ""
+-#~ "Chcete-li používat iSCSI disky, musíte zadat adresu a jméno vašeho iSCSI "
+-#~ "iniciátoru, které jste konfigurovali pro váš počítač."
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
 +msgstr ""
  
-+#: ../gui/system-config-selinux.glade:3326
- #, fuzzy
--#~ msgid "label42"
--#~ msgstr "Název"
-+msgid "Process Domain"
-+msgstr "Zpracovávání"
+-#~ msgid "Target IP Address"
+-#~ msgstr "Cílová IP adresa"
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr ""
  
-+#: ../gui/system-config-selinux.glade:3354
- #, fuzzy
--#~ msgid "label44"
--#~ msgstr "Název"
-+msgid "label59"
-+msgstr "Název"
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
+-#~ msgid "iSCSI Initiator Name"
+-#~ msgstr "Název iSCSI iniciátoru"
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
  
- #, fuzzy
- #~ msgid "Requires value"
-@@ -3059,8 +4967,8 @@
- #~ msgstr "Místo připojení \"%s\" je již používáno. Zadejte jiné."
+-#~ msgid "Autopartition"
+-#~ msgstr "Automatické vytváření oddílů"
+-
+-#~ msgid "Disk Druid"
+-#~ msgstr "Disk Druid"
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr ""
  
- #~ msgid ""
--#~ "The size of the %s partition (%10.2f MB) exceeds the maximum size of %"
--#~ "10.2f MB."
-+#~ "The size of the %s partition (%10.2f MB) exceeds the maximum size of "
-+#~ "%10.2f MB."
- #~ msgstr ""
- #~ "Velikost oddílu %s (%10.2f MB) překračuje maximální velikost %10.2f MB."
+-#~ msgid "Package Installation"
+-#~ msgstr "Instalace balíčků"
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr ""
  
-@@ -3514,9 +5422,6 @@
- #~ msgid "%s Bytes"
- #~ msgstr "%s bajtů"
+-#~ msgid "Package selection"
+-#~ msgstr "Výběr balíčků"
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr ""
  
--#~ msgid "Processing"
--#~ msgstr "Zpracovávání"
+-#~ msgid ""
+-#~ "The default installation of %s includes a set of software applicable for "
+-#~ "general internet usage.  What additional tasks would you like your system "
+-#~ "to support?"
+-#~ msgstr ""
+-#~ "Standardní instalace %s obsahuje sadu programů pro běžné používání "
+-#~ "Internetu. Které další činnosti by měl váš systém podporovat?"
 -
- #~ msgid "Preparing transaction from installation source..."
- #~ msgstr "Připravuje se transakce z instalačního zdroje..."
-@@ -3633,8 +5538,8 @@
- #~ "%s\n"
- #~ msgid ""
--#~ "There was an error running your transaction for the following reason(s): %"
--#~ "s.\n"
-+#~ "There was an error running your transaction for the following reason(s): "
-+#~ "%s.\n"
- #~ msgstr "Při provádění transakce došlo k chybě z následujících důvodů: %s.\n"
- #~ msgid "Error Running Transaction"
-@@ -3954,21 +5859,21 @@
- #~ msgstr "_Pokračovat"
- #~ msgid ""
--#~ "The physical extent size cannot be changed because the value selected (%"
--#~ "10.2f MB) is larger than the smallest physical volume (%10.2f MB) in the "
--#~ "volume group."
-+#~ "The physical extent size cannot be changed because the value selected "
-+#~ "(%10.2f MB) is larger than the smallest physical volume (%10.2f MB) in "
-+#~ "the volume group."
- #~ msgstr ""
- #~ "Velikost fyzického oddílu nelze změnit, protože zvolená hodnota (%10.2f "
- #~ "MB) je větší, než nejmenší fyzický svazek (%10.2f MB) ve skupině svazků."
- #~ msgid ""
--#~ "The physical extent size cannot be changed because the value selected (%"
--#~ "10.2f MB) is too large compared to the size of the smallest physical "
-+#~ "The physical extent size cannot be changed because the value selected "
-+#~ "(%10.2f MB) is too large compared to the size of the smallest physical "
- #~ "volume (%10.2f MB) in the volume group."
- #~ msgstr ""
- #~ "Velikost fyzického svazku nelze změnit, protože zvolená hodnota (%10.2f "
--#~ "MB) je příliš velká vzhledem k velikosti nejmenšího fyzického svazku (%"
--#~ "10.2f MB) ve skupině svazků."
-+#~ "MB) je příliš velká vzhledem k velikosti nejmenšího fyzického svazku "
-+#~ "(%10.2f MB) ve skupině svazků."
- #~ msgid "Too small"
- #~ msgstr "Příliš malý"
-@@ -4673,8 +6578,8 @@
- #~ "You must remove these partitions or restrict them to this drive before "
- #~ "this drive can be cloned. "
- #~ msgstr ""
--#~ "Zvolený zdrojový disk obsahuje oddíly, které nejsou omezeny na disk /dev/%"
--#~ "s.\n"
-+#~ "Zvolený zdrojový disk obsahuje oddíly, které nejsou omezeny na disk /dev/"
-+#~ "%s.\n"
- #~ "\n"
- #~ "Aby bylo možné klonovat disk, musíte je odstranit nebo omezit pouze na "
- #~ "zdrojový disk."
-@@ -5808,8 +7713,8 @@
- #~ "médium % s a opakujte stisknutím %s."
- #~ msgid ""
--#~ "The %s disc was not found in any of your CDROM drives. Please insert the %"
--#~ "s disc and press %s to retry."
-+#~ "The %s disc was not found in any of your CDROM drives. Please insert the "
-+#~ "%s disc and press %s to retry."
- #~ msgstr ""
- #~ "Nemohu nalézt médium %s v žádné jednotce. Vložte médium s distribucí %s a "
- #~ "stiskněte tlačítko %s pro opakování."
-@@ -6604,9 +8509,6 @@
- #~ msgid "_Add additional software repositories"
- #~ msgstr "_Přidat rozšiřující repozitáře"
--#~ msgid "_Modify repository"
--#~ msgstr "_Upravit repozitář"
+-#~ msgid "Customize software selection"
+-#~ msgstr "Upravit výběr programů"
 -
- #~ msgid "<b>Device number:</b>"
- #~ msgstr "<b>Číslo zařízení:</b>"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils-2.0.85/po/cy.po
---- nsapolicycoreutils/po/cy.po        2011-02-17 15:11:25.483728954 -0500
-+++ policycoreutils-2.0.85/po/cy.po    2011-02-18 16:03:41.347975597 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
+-#~ msgid "In which time zone are you located?"
+-#~ msgstr "Ve které časové zóně je počítač umístěn?"
+-
+-#~ msgid "System clock uses UTC"
+-#~ msgstr "Systémové hodiny jsou nastaveny na čas UTC"
+-
+-#~ msgid "Update boot loader configuration"
+-#~ msgstr "Aktualizace zavaděče systému"
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr ""
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
+-#~ msgid "Skip boot loader updating"
+-#~ msgstr "Vynechat aktualizaci zavaděče"
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
+-#~ msgid "Create new boot loader configuration"
+-#~ msgstr "Vytvořit nové nastavení zavaděče"
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
+-#~ msgid "Free Space"
+-#~ msgstr "Volné místo"
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
+-#~ msgid "RAM detected (MB):"
+-#~ msgstr "Detekovaná RAM (MB):"
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+-#~ msgid "Suggested size (MB):"
+-#~ msgstr "Doporučená velikost (MB):"
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+-#~ msgid "Swap file size (MB):"
+-#~ msgstr "Velikost odkládacího souboru (MB):"
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+-#~ msgid "Add Swap"
+-#~ msgstr "Přidat swap"
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-#~ msgid "The value you entered is not a valid number."
+-#~ msgstr "Vložený údaj není platné číslo."
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+-#~ msgid "Reinstall System"
+-#~ msgstr "Přeinstalovat systém"
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+-#~ msgid "System to Upgrade"
+-#~ msgstr "Aktualizace systému"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+-#~ msgid ""
+-#~ "There seem to be one or more existing Linux installations on your "
+-#~ "system.\n"
+-#~ "\n"
+-#~ "Please choose one to upgrade, or select 'Reinstall System' to freshly "
+-#~ "install your system."
+-#~ msgstr ""
+-#~ "Na vašem systému byla nalezena jedna nebo více dalších instalací Linuxu.\n"
+-#~ "\n"
+-#~ "Chcete-li některou z nich aktualizovat, vyberte ji. Úplně nový systém "
+-#~ "můžete nainstalovat volbou 'Přeinstalovat systém'."
+-
+-#~ msgid "Root Password"
+-#~ msgstr "Heslo správce systému"
+-
+-#~ msgid ""
+-#~ "Pick a root password. You must type it twice to ensure you know it and do "
+-#~ "not make a typing mistake. "
+-#~ msgstr ""
+-#~ "Zvolte heslo pro uživatele root. Heslo musíte zadat dvakrát, abyste "
+-#~ "zajistili, že je víte a že jste se při psaní nespletli."
+-
+-#~ msgid "The root password must be at least 6 characters long."
+-#~ msgstr "Heslo pro uživatele root musí obsahovat nejméně 6 znaků."
+-
+-#~ msgid "%s"
+-#~ msgstr "%s"
+-
+-#~ msgid ""
+-#~ "Welcome to %s!\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Vítá vás %s!\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "The z/IPL Boot Loader will be installed on your system after installation "
+-#~ "is complete. You can now enter any additional kernel and chandev "
+-#~ "parameters which your machine or your setup require."
+-#~ msgstr ""
+-#~ "Zavaděč z/IPL bude na váš systém nainstalován po dokončení instalace. "
+-#~ "Zadejte vlastní parametry jádra a chandev, které jsou pro počítač potřeba."
+-
+-#~ msgid "z/IPL Configuration"
+-#~ msgstr "Nastavení z-IPL"
+-
+-#~ msgid "Chandev line "
+-#~ msgstr "Řádek chandev "
+-
+-#~ msgid "_Fedora"
+-#~ msgstr "_Fedora"
+-
+-#~ msgid ""
+-#~ "The default installation of %s includes a set of software applicable for "
+-#~ "general internet usage. What additional tasks would you like your system "
+-#~ "to include support for?"
+-#~ msgstr ""
+-#~ "Standardní instalace %s obsahuje sadu programů pro běžné používání "
+-#~ "Internetu. Které další činnosti by měl váš systém podporovat?"
+-
+-#~ msgid "Office and Productivity"
+-#~ msgstr "Kancelář a Produktivita"
+-
+-#~ msgid "Software Development"
+-#~ msgstr "Vývoj software"
+-
+-#~ msgid "Web server"
+-#~ msgstr "Web server"
+-
+-#~ msgid "Red Hat Enterprise Linux"
+-#~ msgstr "Red Hat Enterprise Linux"
+-
+-#~ msgid "Office"
+-#~ msgstr "Kancelář"
+-
+-#~ msgid "Multimedia"
+-#~ msgstr "Multimédia"
+-
+-#~ msgid "Clustering"
+-#~ msgstr "Clustery"
+-
+-#~ msgid "Storage Clustering"
+-#~ msgstr "Úložné clustery"
+-
+-#~ msgid "Installation Number"
+-#~ msgstr "Instalační číslo"
+-
+-#~ msgid ""
+-#~ "To install the full set of supported packages included in your "
+-#~ "subscription, please enter your Installation Number"
+-#~ msgstr ""
+-#~ "Pro instalaci všech podporovaných balíčků pro vaše předplatné vložte své "
+-#~ "Instalační číslo"
+-
+-#~ msgid ""
+-#~ "If you're unable to locate the Installation Number, consult http://www."
+-#~ "redhat.com/apps/support/in.html.\n"
+-#~ "\n"
+-#~ "If you skip:\n"
+-#~ "* You may not get access to the full set of packages included in your "
+-#~ "subscription.\n"
+-#~ "* It may result in an unsupported/uncertified installation of Red Hat "
+-#~ "Enterprise Linux.\n"
+-#~ "* You will not get software and security updates for packages not "
+-#~ "included in your subscription."
+-#~ msgstr ""
+-#~ "Pokud nemůžete nalézt instalační číslo, podívejte se na http://www.redhat."
+-#~ "com/apps/support/in.html.\n"
+-#~ "\n"
+-#~ "Pokud tento krok přeskočíte:\n"
+-#~ "* Nemusíte získat přístup ke všem balíčkům v předplatném.\n"
+-#~ "* Může mít nepodporovanou/necertifikovanou instalaci Red Hat Entriprise "
+-#~ "Linuxu.\n"
+-#~ "* Nezískáte bezpečnostní a softwarové aktualizace dle předplatného."
+-
+-#~ msgid "Media Check"
+-#~ msgstr "Kontrola média"
+-
+-#~ msgid "Test"
+-#~ msgstr "Test"
+-
+-#~ msgid "Eject Disc"
+-#~ msgstr "Vysunout CD "
+-
+-#~ msgid ""
+-#~ "Choose \"%s\" to test the disc currently in the drive, or \"%s\" to eject "
+-#~ "the disc and insert another for testing."
+-#~ msgstr ""
+-#~ "Zvolte \"%s\" pro test média, které je právě v mechanice nebo \"%s\" pro "
+-#~ "vysunutí média. Pak vložte další médium, které chcete otestovat."
+-
+-#~ msgid ""
+-#~ "If you would like to test additional media, insert the next disc and "
+-#~ "press \"%s\". Testing each disc is not strictly required, however it is "
+-#~ "highly recommended.  Minimally, the discs should be tested prior to using "
+-#~ "them for the first time. After they have been successfully tested, it is "
+-#~ "not required to retest each disc prior to using it again."
+-#~ msgstr ""
+-#~ "Chcete-li testovat doplňková média, vložte další médium a stiskněte \"%s"
+-#~ "\".Testování každého média není bezpodmínečně vyžadován, je ale velmi "
+-#~ "doporučován. Určitě by měla být média testována před prvním použitím. Po "
+-#~ "úspěšném otestování již není vyžadováno dalsí testování před každým "
+-#~ "použitím."
+-
+-#~ msgid ""
+-#~ "The %s disc was not found in any of your drives. Please insert the %s "
+-#~ "disc and press %s to retry."
+-#~ msgstr ""
+-#~ "Nemohu nalézt médium %s v žádné jednotce. Vložte médium s distribucí %s a "
+-#~ "stiskněte tlačítko %s pro opakování."
+-
+-#~ msgid "Disc Found"
+-#~ msgstr "Médium nalezeno"
+-
+-#~ msgid ""
+-#~ "To begin testing the media before installation press %s.\n"
+-#~ "\n"
+-#~ "Choose %s to skip the media test and start the installation."
+-#~ msgstr ""
+-#~ "Pro kontrolu média před vlastní instalací stiskněte %s.\n"
+-#~ "\n"
+-#~ "Klikněte na %s pro vynechání testu média a započetí instalace. "
+-
+-#~ msgid ""
+-#~ "No %s disc was found which matches your boot media.  Please insert the %s "
+-#~ "disc and press %s to retry."
+-#~ msgstr ""
+-#~ "Nemohu nalézt médium %s odpovídající vašemu zaváděcímu médiu. Vložte "
+-#~ "médium % s a opakujte stisknutím %s."
+-
+-#~ msgid ""
+-#~ "The %s disc was not found in any of your CDROM drives. Please insert the "
+-#~ "%s disc and press %s to retry."
+-#~ msgstr ""
+-#~ "Nemohu nalézt médium %s v žádné jednotce. Vložte médium s distribucí %s a "
+-#~ "stiskněte tlačítko %s pro opakování."
+-
+-#~ msgid "Disc Not Found"
+-#~ msgstr "Médium  nenalezeno"
+-
+-#~ msgid "Cannot find kickstart file on CDROM."
+-#~ msgstr "Nemohu najít soubor kickstart na CDROM."
+-
+-#~ msgid "Failed to read directory %s: %s"
+-#~ msgstr "Nemohu číst adresář %s: %s"
+-
+-#~ msgid "Loading"
+-#~ msgstr "Načítání"
+-
+-#~ msgid "Reading driver disk..."
+-#~ msgstr "Načítám ovladače..."
+-
+-#~ msgid "Driver Disk Source"
+-#~ msgstr "Umístění ovladačů"
+-
+-#~ msgid ""
+-#~ "You have multiple devices which could serve as sources for a driver "
+-#~ "disk.  Which would you like to use?"
+-#~ msgstr ""
+-#~ "V počítači je k dispozici více zařízení, která by mohla být použita pro "
+-#~ "načtení ovladačů. Vyberte zařízení, ze kterého chcete ovladače načíst."
+-
+-#~ msgid ""
+-#~ "There are multiple partitions on this device which could contain the "
+-#~ "driver disk image.  Which would you like to use?"
+-#~ msgstr ""
+-#~ "Na zařízení je více oddílů, které by mohly obsahovat obraz disku s "
+-#~ "ovladači. Který chcete použít?"
+-
+-#~ msgid "Select driver disk image"
+-#~ msgstr "Zvolte obraz disku s ovladači"
+-
+-#~ msgid "Select the file which is your driver disk image."
+-#~ msgstr "Zvolte soubor, který je obraz vaší disk s ovladači."
+-
+-#~ msgid "Failed to load driver disk from file."
+-#~ msgstr "Nemohu načíst disk s ovladači ze souboru."
+-
+-#~ msgid "Insert your driver disk into /dev/%s and press \"OK\" to continue."
+-#~ msgstr ""
+-#~ "Vložte disk s ovladači do zařízení /dev/%s a pokračujte stisknutím \"OK\"."
+-
+-#~ msgid "Insert Driver Disk"
+-#~ msgstr "Vložte disk s ovladači"
+-
+-#~ msgid "Failed to mount driver disk."
+-#~ msgstr "Nemohu připojit disk s ovladači."
+-
+-#~ msgid "Driver disk is invalid for this release of %s."
+-#~ msgstr "Disk s ovladači není pro %s platný."
+-
+-#~ msgid "Manually choose"
+-#~ msgstr "Zvolit ručně"
+-
+-#~ msgid "Load another disk"
+-#~ msgstr "Načíst jiný disk"
+-
+-#~ msgid ""
+-#~ "No devices of the appropriate type were found on this driver disk.  Would "
+-#~ "you like to manually select the driver, continue anyway, or load another "
+-#~ "driver disk?"
+-#~ msgstr ""
+-#~ "Na disku s ovladači nebyla nalezena žádná zařízení potřebného typu. "
+-#~ "Chcete vybrat ovladač ručně, i přesto pokračovat, nebo načíst jiný disk s "
+-#~ "ovladači?"
+-
+-#~ msgid "Driver disk"
+-#~ msgstr "Disk s ovladači"
+-
+-#~ msgid "Do you have a driver disk?"
+-#~ msgstr "Máte disk s ovladači?"
+-
+-#~ msgid "More Driver Disks?"
+-#~ msgstr "Více disků s ovladači?"
+-
+-#~ msgid "Do you wish to load any more driver disks?"
+-#~ msgstr "Chcete načíst další disky s ovladači?"
+-
+-#~ msgid "Kickstart Error"
+-#~ msgstr "Chyba kickstartu"
+-
+-#~ msgid "Unknown driver disk kickstart source: %s"
+-#~ msgstr "Neznámy zdroj driver disk kickstartu: %s"
+-
+-#~ msgid ""
+-#~ "The following invalid argument was specified for the kickstart driver "
+-#~ "disk command: %s:%s"
+-#~ msgstr ""
+-#~ "Byl zadán následující neplatný argument příkazu kickstart driver disk: %s:"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "Please enter any parameters which you wish to pass to the %s module "
+-#~ "separated by spaces.  If you don't know what parameters to supply, skip "
+-#~ "this screen by pressing the \"OK\" button."
+-#~ msgstr ""
+-#~ "Zadejte parametry, které chcete předat modulu %s, oddělené mezerami. "
+-#~ "Pokud nevíte, jaké parametry zadat, stiskňete tlačítko \"OK\"."
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+-#~ msgid "Enter Module Parameters"
+-#~ msgstr "Zadejte parametry modulu"
+-
+-#~ msgid "No drivers found"
+-#~ msgstr "Nenalezen žádný ovladač"
+-
+-#~ msgid "Load driver disk"
+-#~ msgstr "Načíst disk s ovladači"
+-
+-#~ msgid ""
+-#~ "No drivers were found to manually insert.  Would you like to use a driver "
+-#~ "disk?"
+-#~ msgstr ""
+-#~ "Nebyly nalezeny žádné ovladače pro ruční zavedení. Chcete použít disk s "
+-#~ "ovladači?"
+-
+-#~ msgid ""
+-#~ "Please select the driver below which you wish to load.  If it does not "
+-#~ "appear and you have a driver disk, press F2."
+-#~ msgstr ""
+-#~ "Vyberte ovladač, který si přejete načíst. Pokud není uveden a máte disk s "
+-#~ "ovladači, stiskněte F2."
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+-#~ msgid "Specify optional module arguments"
+-#~ msgstr "Zadejte volitelné parametry modulu"
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#~ msgid "Select Device Driver to Load"
+-#~ msgstr "Vyberte ovladač zařízení, který načíst"
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#~ msgid "Media Detected"
+-#~ msgstr "Detekováno médium"
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
+-#~ msgid "Local installation media detected..."
+-#~ msgstr "Detekováno místní instalační médium..."
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "The %s installation tree in that directory does not seem to match your "
+-#~ "boot media."
+-#~ msgstr ""
+-#~ "Instalační strom %s v zadaném adresáři neodpovídá systému, který jste "
+-#~ "nastartovali."
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "An error occured reading the install from the ISO images. Please check "
+-#~ "your ISO images and try again."
+-#~ msgstr ""
+-#~ "Při čtení instalačního programu z ISO obrazu došlo k chybě. Zkontrolujte "
+-#~ "ISO obrazy a zkuste spustit instalaci znovu."
+-
+-#~ msgid ""
+-#~ "You don't seem to have any hard drives on your system! Would you like to "
+-#~ "configure additional devices?"
+-#~ msgstr ""
+-#~ "V počítači nebyly nalezeny žádné pevné disky! Chcete nastavit další "
+-#~ "připojená zařízení?"
+-
+-#~ msgid ""
+-#~ "What partition and directory on that partition hold the CD (iso9660) "
+-#~ "images for %s? If you don't see the disk drive you're using listed here, "
+-#~ "press F2 to configure additional devices."
+-#~ msgstr ""
+-#~ "Který disk, oddíl a adresář obsahuje obrazy s instalačními CD (iso9660) "
+-#~ "pro %s? Pokud oddíl ani disk na seznamu nenaleznete, stiskněte klávesu F2 "
+-#~ "pro nakonfigurování dalších zařízení."
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-#~ msgid "Directory holding images:"
+-#~ msgstr "Adresář obsahující obrazy:"
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+-#~ msgid "Device %s does not appear to contain %s CDROM images."
+-#~ msgstr "Zařízení %s zřejmě neobsahuje obrazy CD %s."
+-
+-#~ msgid "Bad argument to HD kickstart method command %s: %s"
+-#~ msgstr "Chybný argument kickstart příkazu metody HD %s: %s"
+-
+-#~ msgid "Cannot find kickstart file on hard drive."
+-#~ msgstr "Nemohu najít soubor kickstart na pevném disku."
+-
+-#~ msgid "Cannot find hard drive for BIOS disk %s"
+-#~ msgstr "Nemohu najít pevný disk pro disk BIOSu %s"
+-
+-#~ msgid "Keyboard Type"
+-#~ msgstr "Typ klávesnice"
+-
+-#~ msgid "What type of keyboard do you have?"
+-#~ msgstr "Jakou mapu kláves chcete použít?"
+-
+-#~ msgid "Error opening kickstart file %s: %s"
+-#~ msgstr "Chyba při otevírání souboru kickstart %s: %s"
+-
+-#~ msgid "Error reading contents of kickstart file %s: %s"
+-#~ msgstr "Chyba při čtení obsahu souboru kickstart %s: %s"
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+-#~ msgid "Error in %s on line %d of kickstart file %s."
+-#~ msgstr "Chyba v %s na řádku %d souboru kickstart %s."
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+-#~ msgid "Cannot find ks.cfg on removable media."
+-#~ msgstr "Na výměnném médiu nemohu nalézt ks.cfg."
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Unable to download the kickstart file.  Please modify the kickstart "
+-#~ "parameter below or press Cancel to proceed as an interactive installation."
+-#~ msgstr ""
+-#~ "Chyba při stahování kickstart souboru. Opravte umístění kickstart souboru "
+-#~ "nebo stiskněte 'Přerušit' a instalace bude dále pokračovat interaktivně."
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Error downloading kickstart file"
+-#~ msgstr "Chyba při stahování kickstart souboru"
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+-#~ msgid "Bad argument to shutdown kickstart method command %s: %s"
+-#~ msgstr "Chybný argument kickstart příkazu metody shutdown %s: %s"
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+-#~ msgid "Welcome to %s for %s - Rescue Mode"
+-#~ msgstr "Vítá vás %s pro %s - Záchranný režim"
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+-#~ msgid ""
+-#~ "  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
+-#~ msgstr ""
+-#~ "  <Tab>/<Alt-Tab> další položka   |  <Mezera> vybrat   |  <F12> "
+-#~ "pokračovat "
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
+-#~ msgid "Choose a Language"
+-#~ msgstr "Vyberte jazyk"
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
+-#~ msgid "Local CD/DVD"
+-#~ msgstr "Lokální CD/DVD"
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-#~ msgid "Hard drive"
+-#~ msgstr "Pevný disk"
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-#~ msgid "NFS directory"
+-#~ msgstr "NFS adresář"
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+-#~ msgid "Welcome to %s%n for %s"
+-#~ msgstr "Vítá vás %s%n pro %s"
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+-#~ msgid "Update Disk Source"
+-#~ msgstr "Zdroj disku s aktualizací"
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "You have multiple devices which could serve as sources for an update "
+-#~ "disk.  Which would you like to use?"
+-#~ msgstr ""
+-#~ "Máte více zařízení, která by mohla být použita pro disk s aktualizací. "
+-#~ "Které chcete použít?"
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "There are multiple partitions on this device which could contain the "
+-#~ "update disk image.  Which would you like to use?"
+-#~ msgstr ""
+-#~ "Na zařízení je více oddílů, které by mohly obsahovat obraz disku s "
+-#~ "aktualizacemi. Který chcete použít?"
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#~ msgid "Insert your updates disk into /dev/%s and press \"OK\" to continue."
+-#~ msgstr ""
+-#~ "Vložte disk s aktualizací do /dev/%s a pokračujte stisknutím \"OK\"."
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+-#~ msgid "Updates Disk"
+-#~ msgstr "Disk s aktualizací"
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+-#~ msgid "Failed to mount updates disk"
+-#~ msgstr "Nemohu připojit disk s aktualizací"
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+-#~ msgid "Updates"
+-#~ msgstr "Aktualizace"
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+-#~ msgid "Reading anaconda updates..."
+-#~ msgstr "Čtu aktualizace anacondy..."
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+-#~ msgid ""
+-#~ "Unable to download the updates image.  Please modify the updates location "
+-#~ "below or press Cancel to proceed without updates.."
+-#~ msgstr ""
+-#~ "Nemohu stáhnout obraz s aktualizacemi. Opravte prosím umístění "
+-#~ "aktualizací níže nebo pokračujte bez aktualizací stisknutím Zrušit.."
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-#~ msgid "You do not have enough RAM to install %s on this machine."
+-#~ msgstr "Nemáte dostatek paměti RAM pro instalaci distribuce %s."
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr ""
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
+-#~ msgid "Rescue Method"
+-#~ msgstr "Metoda zotavení"
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
+-#~ msgid "Installation Method"
+-#~ msgstr "Metoda instalace"
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
+-#~ msgid "What type of media contains the rescue image?"
+-#~ msgstr "Jaký druh média obsahuje disk pro zotavení?"
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
+-#~ msgid "What type of media contains the packages to be installed?"
+-#~ msgstr "Kde jsou umístěny balíčky, které chcete instalovat?"
+-
+-#~ msgid "No driver found"
+-#~ msgstr "Žádný ovladač nebyl nalezen"
+-
+-#~ msgid "Select driver"
+-#~ msgstr "Vybrat ovladač"
+-
+-#~ msgid "Use a driver disk"
+-#~ msgstr "Použít disk s ovladači"
+-
+-#~ msgid ""
+-#~ "Unable to find any devices of the type needed for this installation "
+-#~ "type.  Would you like to manually select your driver or use a driver disk?"
+-#~ msgstr ""
+-#~ "Nemohu najít žádná zařízení, která jsou potřeba pro provedení tohoto typu "
+-#~ "instalace. Chcete vybrat ovladač ručně nebo chcete použít disk s ovladači?"
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
+-#~ msgid "The following devices have been found on your system."
+-#~ msgstr "Ve vašem systému byla nalezena následující zařízení."
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+-#~ msgid ""
+-#~ "No device drivers have been loaded for your system.  Would you like to "
+-#~ "load any now?"
+-#~ msgstr ""
+-#~ "Pro váš systém nebyly zavedeny žádné ovladače zařízení. Chcete nějaké "
+-#~ "zavést?"
+-
+-#~ msgid "Devices"
+-#~ msgstr "Zařízení"
+-
+-#~ msgid "Done"
+-#~ msgstr "Hotovo"
+-
+-#~ msgid "Add Device"
+-#~ msgstr "Přidat zařízení"
+-
+-#~ msgid "loader has already been run.  Starting shell.\n"
+-#~ msgstr "loader již byl spuštěn. Spouštím shell.\n"
+-
+-#~ msgid "Running anaconda %s, the %s rescue mode - please wait...\n"
+-#~ msgstr ""
+-#~ "Spouštím anacondu %s, záchranný režim systému %s - čekejte prosím...\n"
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+-#~ msgid "Running anaconda %s, the %s system installer - please wait...\n"
+-#~ msgstr ""
+-#~ "Spouštím anacondu %s, instalační program systému %s - čekejte prosím...\n"
+-
+-#~ msgid "Unable to find install image %s"
+-#~ msgstr "Nemohu najít instalační obraz %s"
+-
+-#~ msgid "Checking \"%s\"..."
+-#~ msgstr "Kontroluji \"%s\"..."
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+-#~ msgid "Checking media now..."
+-#~ msgstr "Probíhá kontrola média..."
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+-#~ msgid ""
+-#~ "Unable to read the disc checksum from the primary volume descriptor.  "
+-#~ "This probably means the disc was created without adding the checksum."
+-#~ msgstr ""
+-#~ "Nemohu přečíst kontrolní součet disku z primárního deskriptoru svazku. "
+-#~ "Disk byl pravděpodobně vytvořen bez kontrolního součtu."
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+-#~ msgid ""
+-#~ "Would you like to perform a checksum test of the ISO image:\n"
+-#~ "\n"
+-#~ "   %s?"
+-#~ msgstr ""
+-#~ "Chcete zkontrolovat kontrolní součty v ISO obrazu:\n"
+-#~ "\n"
+-#~ "   %s?"
+-
+-#~ msgid "Checksum Test"
+-#~ msgstr "Test kontrolních součtů"
+-
+-#~ msgid "Bad argument to device kickstart method command %s: %s"
+-#~ msgstr "Chybný argument kickstart příkazu metody device %s: %s"
+-
+-#~ msgid "A module name must be specified for the kickstart device command."
+-#~ msgstr "Pro příkaz kickstartu device musí být zadán název modulu."
+-
+-#~ msgid ""
+-#~ "Please enter the URL containing %s on your\n"
+-#~ "server.\n"
+-#~ msgstr ""
+-#~ "Zadejte prosím URL, které na vašem serveru\n"
+-#~ "obsahuje %s.\n"
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+-#~ msgid ""
+-#~ "Prefix must be between 1 and 32 for IPv4 networks or between 1 and 128 "
+-#~ "for IPv6 networks"
+-#~ msgstr ""
+-#~ "Prefix musí být pro IPv4 sítě mezi 1 a 32 a pro IPv6 sítě mezi 1 a 128"
+-
+-#~ msgid ""
+-#~ "%s is a wireless network adapter.  Please provide the ESSID and "
+-#~ "encryption key needed to access your wireless network.  If no key is "
+-#~ "needed, leave this field blank and the install will continue."
+-#~ msgstr ""
+-#~ "%s je adaptér pro bezdrátovou síť. Zadejte ESSID a šifrovací klíč "
+-#~ "potřebný po přístup k vaší bezdrátové síti. Pokud klíč není potřeba, "
+-#~ "nechte pole prázdné a instalace bude pokračovat."
+-
+-#~ msgid "ESSID"
+-#~ msgstr "ESSID"
+-
+-#~ msgid "Encryption Key"
+-#~ msgstr "Šifrovací klíč"
+-
+-# If you can get away with it in English...
+-#~ msgid "Wireless Settings"
+-#~ msgstr "Bezdrátová nastavení"
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr ""
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+-#~ msgid "Nameserver IP"
+-#~ msgstr "IP DNS serveru"
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-#~ msgid "Missing Nameserver"
+-#~ msgstr "Chybí DNS server"
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+-#~ msgid ""
+-#~ "Your IP address request returned configuration information, but it did "
+-#~ "not include a nameserver address. If you do not have this information, "
+-#~ "you can leave the field blank and the install will continue."
+-#~ msgstr ""
+-#~ "Odpověď na žádost o přidělení IP adresy neobsahuje jméno DNS serveru. "
+-#~ "Pokud adresu neznáte, ponechte políčko prázdné a instalace bude "
+-#~ "pokračovat."
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+-#~ msgid "You entered an invalid IP address."
+-#~ msgstr "Vložili jste chybnou IP adresu."
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
+-#~ msgid "There was an error configuring your network interface."
+-#~ msgstr "Došlo k chybě v průběhu konfigurování vašeho síťového rozhraní"
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-#~ msgid "Configure TCP/IP"
+-#~ msgstr "Nastavení TCP/IP"
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr ""
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-#~ msgid "IPv4 Needed for NFS"
+-#~ msgstr "Pro NFS je potřeba IPv4"
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-#~ msgid "NFS installation method requires IPv4 support."
+-#~ msgstr "NFS instalace vyžaduje podporu IPv4."
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-#~ msgid "IPv4 address:"
+-#~ msgstr "IPv4 adresa:"
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
+-#~ msgid "/"
+-#~ msgstr "/"
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
+-#~ msgid "IPv6 address:"
+-#~ msgstr "IPv6 adresa:"
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
+-#~ msgid ""
+-#~ "Enter the IPv4 and/or the IPv6 address and prefix (address / prefix).  "
+-#~ "For IPv4, the dotted-quad netmask or the CIDR-style prefix are "
+-#~ "acceptable. The gateway and name server fields must be valid IPv4 or IPv6 "
+-#~ "addresses."
+-#~ msgstr ""
+-#~ "Vložte IPv4 a/nebo IPv6 adresy a prefixy (adresa/prefix). V případě IPv4 "
+-#~ "můžete zadat masku ve formátu čtyř čísel oddělených tečkami nebo použít "
+-#~ "CIDR-styl. Brána a adresy DNS serverů musí být platné IPv4 nebo IPv6 "
+-#~ "adresy."
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-#~ msgid "Manual TCP/IP Configuration"
+-#~ msgstr "Ruční konfigurace TCP/IP"
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+-#~ msgid "Missing Information"
+-#~ msgstr "Chybějící informace"
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-#~ msgid ""
+-#~ "You must enter both a valid IPv4 address and a network mask or CIDR "
+-#~ "prefix."
+-#~ msgstr "Musíte zadat platnou IPv4 adresu a masku sítě nebo CIDR prefix."
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+-#~ msgid "You must enter both a valid IPv6 address and a CIDR prefix."
+-#~ msgstr "Musíte zadat platnou IPv6 adresu a platný CIDR prefix."
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr ""
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+-#~ msgid "Determining host name and domain..."
+-#~ msgstr "Zjišťuji jméno počítače a doménu..."
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+-#~ msgid "Bad argument to kickstart network command %s: %s"
+-#~ msgstr "Chybný argument Kickstart příkazu network %s: %s"
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Bad bootproto %s specified in network command"
+-#~ msgstr "Chybný zaváděcí protokol %s v příkazu network"
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+-#~ msgid "Networking Device"
+-#~ msgstr "Síťové zařízení"
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr ""
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
+-#~ msgid ""
+-#~ "You have multiple network devices on this system. Which would you like to "
+-#~ "install through?"
+-#~ msgstr ""
+-#~ "V počítači je více síťových zařízení. Pomocí kterého chcete instalovat?"
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
+-#~ msgid "NFS server name:"
+-#~ msgstr "Jméno NFS serveru:"
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
+-#~ msgid "NFS Setup"
+-#~ msgstr "NFS instalace"
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
+-#~ msgid "Hostname specified with no DNS configured"
+-#~ msgstr "Zadáno jméno počítače s nekonfigurovaným DNS"
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
+-#~ msgid "That directory could not be mounted from the server."
+-#~ msgstr "Uvedený adresář nelze připojit."
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-#~ msgid "That directory does not seem to contain a %s installation tree."
+-#~ msgstr "Uvedený adresář zřejmě neobsahuje instalační strom %s."
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
+-#~ msgid "Bad argument to NFS kickstart method command %s: %s"
+-#~ msgstr "Chybný argument Kickstart příkazu metody NFS %s: %s"
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-#~ msgid "Telnet"
+-#~ msgstr "Telnet"
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+-#~ msgid "Waiting for telnet connection..."
+-#~ msgstr "Čekám na telnetové spojení..."
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
+-#~ msgid "Running anaconda via telnet..."
+-#~ msgstr "Spouštím Anacondu přes telnet..."
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr ""
  
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-#~ msgid "Unable to retrieve %s://%s/%s/%s."
+-#~ msgstr "Nemohu přenést %s://%s/%s/%s."
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
+-#~ msgid "Bad argument to Url kickstart method command %s: %s"
+-#~ msgstr "Chybný argument Kickstart příkazu metody Url %s: %s"
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+-#~ msgid "Must supply a --url argument to Url kickstart method."
+-#~ msgstr "Kickstart metodě Url musíte zadat argument --url."
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
+-#~ msgid "Unknown Url method %s"
+-#~ msgstr "Neznámá metoda v URL %s"
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
+-#~ msgid "Retrieving"
+-#~ msgstr "Načítání"
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
+-#~ msgid "URL Setup"
+-#~ msgstr "Nastavení URL"
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
+-#~ msgid "You must enter a URL."
+-#~ msgstr "Musíte zadat URL."
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-#~ msgid "Unknown Host"
+-#~ msgstr "Neznámý počítač"
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "If you are using a HTTP proxy server enter the name of the HTTP proxy "
+-#~ "server to use."
+-#~ msgstr "Jestliže používáte HTTP proxy server, zadejte jeho jméno."
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
+-#~ msgid "Proxy Port:"
+-#~ msgstr "Port proxy:"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
+-#~ msgid "Further Setup"
+-#~ msgstr "Další nastavení"
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
+-#~ msgid "Loading SCSI driver"
+-#~ msgstr "Zavádím SCSI ovladač"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
+-#~ msgid "Root Password:"
+-#~ msgstr "Heslo správce systému:"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid ""
+-#~ "The root account is used for administering the system.  Enter a password "
+-#~ "for the root user."
+-#~ msgstr ""
+-#~ "Účet root se používá pro správu systému. Zadejte heslo pro uživatele root."
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
+-#~ msgid "Add _ZFCP LUN"
+-#~ msgstr "Přidat _ZFCP LUN"
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
+-#~ msgid "Add _iSCSI target"
+-#~ msgstr "Přidat _iSCSI target"
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
+-#~ msgid "Disable _dmraid device"
+-#~ msgstr "Zakázat zařízení _dmraid"
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+-#~ msgid "_Add drive"
+-#~ msgstr "_Přidat disk"
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
+-#~ msgid "<b>Repository _name:</b>"
+-#~ msgstr "<b>_Název repozitáře:</b>"
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
+-#~ msgid "Add Repository"
+-#~ msgstr "Přidat repozitář"
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Please provide the location where your additional software can be "
+-#~ "installed from."
+-#~ msgstr ""
+-#~ "Zadejte prosím umístění, odkud lze nainstalovát váš dodatečný software."
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
+-#~ msgid "Proxy U_RL:"
+-#~ msgstr "_URL proxy:"
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-#~ msgid "Proxy pass_word:"
+-#~ msgstr "_Heslo proxy:"
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
+-#~ msgid "Proxy u_sername:"
+-#~ msgstr "Jméno _uživatele proxy:"
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
+-#~ msgid "Repository _Mirror"
+-#~ msgstr "_Kopie repozitáře"
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
+-#~ msgid "Repository _URL"
+-#~ msgstr "_URL repozitáře"
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-#~ msgid "_Proxy configuration"
+-#~ msgstr "Nastavení _proxy"
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+-#~ msgid "Reboo_t"
+-#~ msgstr "_Restartovat"
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+-#~ msgid "_Next"
+-#~ msgstr "_Další"
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "<b>Resize _target:</b>"
+-#~ msgstr "<b>Změnit velikost _cíle:</b>"
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Installation requires partitioning of your hard drive.  By default, a "
+-#~ "partitioning layout is chosen which is reasonable for most users.  You "
+-#~ "can either choose to use this or create your own."
+-#~ msgstr ""
+-#~ "Instalace vyžaduje rozdělení Vašeho pevného disku na oddíly. Standardně "
+-#~ "je vybrán takový způsob rozložení oddílů, který vyhovuje většině "
+-#~ "uživatelů. Můžete buď použít navržené rozložení, nebo definovat vlastní."
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
+-#~ msgid "Re_view and modify partitioning layout"
+-#~ msgstr "Pro_hlédnout a upravit rozložení oddílů"
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
+-#~ msgid "What drive would you like to _boot this installation from?"
+-#~ msgstr "Z _kterého zařízení chcete zavádět tuto instalaci?"
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
+-#~ msgid "Which Partition to resize"
+-#~ msgstr "Kterému oddílu změnit velikost"
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Which partition would you like to resize to make room for your "
+-#~ "installation?"
+-#~ msgstr ""
+-#~ "Kterému oddílu chcete změnit velikost, abyste pro instalaci udělali místo?"
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
+-#~ msgid "_Advanced storage configuration"
+-#~ msgstr "_Pokročilé nastavení ukládání dat"
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-#~ msgid "_Encrypt system"
+-#~ msgstr "_Šifrovat systém"
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
+-#~ msgid "_Select the drive(s) to use for this installation."
+-#~ msgstr "_Vybrat disk(y), které budou použity pro instalaci:"
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
+-#~ msgid "/boot"
+-#~ msgstr "/boot"
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+-#~ msgid "BIOS Drive Order"
+-#~ msgstr "Pořadí disků BIOSu"
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
+-#~ msgid "Boot loader device"
+-#~ msgstr "Zařízení zavaděče systému"
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
+-#~ msgid "First BIOS drive:"
+-#~ msgstr "První disk BIOSu:"
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
+-#~ msgid "Fourth BIOS drive:"
+-#~ msgstr "Čtvrtý disk BIOSu:"
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
+-#~ msgid "MBR"
+-#~ msgstr "MBR"
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
+-#~ msgid "Second BIOS drive:"
+-#~ msgstr "Druhý disk BIOSu:"
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
+-#~ msgid "Third BIOS drive:"
+-#~ msgstr "Třetí disk BIOSu:"
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+-#~ msgid "Where would you like to install the boot loader for your system?"
+-#~ msgstr "Kam chcete nainstalovat zavaděč systému?"
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+-#~ msgid "Info"
+-#~ msgstr "Informace"
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
+-#~ msgid "_Details"
+-#~ msgstr "_Podrobnosti"
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+-#~ msgid "Select a destination for the exception information."
+-#~ msgstr "Zvolte cíl pro informace o výjimce."
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "_Disk"
+-#~ msgstr "_Disk"
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
+-#~ msgid "_Remote"
+-#~ msgstr "_Vzdálený počítač"
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
+-#~ msgid "%(instkey)s:"
+-#~ msgstr "%(instkey)s:"
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
+-#~ msgid "Please enter your %(instkey)s."
+-#~ msgstr "Vložte %(instkey)s."
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
+-#~ msgid "<b>_Password:</b>"
+-#~ msgstr "<b>_Heslo:</b>"
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+-#~ msgid "<b>_Target IP Address:</b>"
+-#~ msgstr "<b>_IP adresa cíle:</b>"
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
+-#~ msgid "<b>iSCSI Initiator _Name:</b>"
+-#~ msgstr "<b>_Název iSCSI iniciátoru:</b>"
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+-#~ msgid "_Add target"
+-#~ msgstr "_Přidat cíl"
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+-#~ msgid "Install the live CD to your hard disk"
+-#~ msgstr "Nainstalovat Live CD na pevný disk"
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
+-#~ msgid "Install to Hard Drive"
+-#~ msgstr "Instalovat na pevný disk"
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Choose a passphrase for this encrypted partition. You will be prompted "
+-#~ "for the passphrase during system boot."
+-#~ msgstr ""
+-#~ "Zvolte heslo pro tento šifrovaný oddíl. O heslo budete žádáni při "
+-#~ "zavádění systému."
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
+-#~ msgid "Confirm passphrase:"
+-#~ msgstr "Potvrďte heslo:"
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+-#~ msgid "Enter passphrase for encrypted partition"
+-#~ msgstr "Zadejte heslo pro šifrovaný oddíl"
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Enter passphrase:"
+-#~ msgstr "Zadejte heslo:"
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
+-#~ msgid "<b>Gateway:</b>"
+-#~ msgstr "<b>Gateway:</b>"
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
+-#~ msgid "<b>IPv6 Address:</b>"
+-#~ msgstr "<b>IPv6 adresa:</b>"
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+-#~ msgid "<b>Nameserver:</b>"
+-#~ msgstr "<b>Nameserver:</b>"
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+-#~ msgid "<b>_Interface:</b>"
+-#~ msgstr "<b>_Rozhraní:</b>"
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+-#~ msgid "Enable IPv_4 support"
+-#~ msgstr "Povolit podporu IPv_4"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+-#~ msgid "Enable IPv_6 support"
+-#~ msgstr "Povolit podporu IPv_6"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+-#~ msgid "Enable network interface"
+-#~ msgstr "Povolit síťové rozhraní"
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
++msgstr ""
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
+-#~ msgid ""
+-#~ "This requires that you have an active network connection during the "
+-#~ "installation process.  Please configure a network interface."
+-#~ msgstr ""
+-#~ "Pro pokračování instalace potřebujete aktivní síťové připojení. "
+-#~ "Nakonfigurujte prosím síťové rozhraní."
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
+-#~ msgid "Use _dynamic IP configuration (DHCP)"
+-#~ msgstr "_Dynamické nastavení IP adresy (DHCP)"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
+-#~ msgid "<b>Description Goes Here</b>"
+-#~ msgstr "<b>Popis: %s</b>"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
+-#~ msgid "<b>Hardware address: DE:AD:00:BE:EF:00</b>"
+-#~ msgstr "<b>Hardwarová adresa: DE:AD:00:BE:EF:00</b>"
++#: ../gui/statusPage.py:94
++msgid "Status"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
+-#~ msgid "Encryption Key:"
+-#~ msgstr "Šifrovací klíč:"
++#: ../gui/statusPage.py:133
 +msgid ""
-+"File\n"
-+"Specification"
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
+-#~ msgid "Manual configuration"
+-#~ msgstr "Ruční konfigurace"
++#: ../gui/statusPage.py:147
 +msgid ""
-+"Selinux\n"
-+"File Type"
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
+-#~ msgid "Point to Point (IP):"
+-#~ msgstr "Point to Point (IP):"
++#: ../gui/statusPage.py:152
 +msgid ""
-+"File\n"
-+"Type"
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
+-#~ msgid "Customize _later"
+-#~ msgstr "Upravit po_zději"
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:52
+-#~ msgid ""
+-#~ "Please select any additional repositories that you want to use for "
+-#~ "software installation."
+-#~ msgstr "Vložte další repozitář, který chcete pro instalaci použít."
++#: ../gui/system-config-selinux.glade:12
 +msgid ""
-+"Login\n"
-+"Name"
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
+-#~ msgid ""
+-#~ "You can further customize the software selection now, or after install "
+-#~ "via the software management application."
+-#~ msgstr ""
+-#~ "Výběr instalovaných součástí můžete změnit teď nebo po instalaci pomocí "
+-#~ "aplikace pro správu balíčků."
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
+-#~ msgid "_Add additional software repositories"
+-#~ msgstr "_Přidat rozšiřující repozitáře"
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
+-#~ msgid "_Modify repository"
+-#~ msgstr "_Upravit repozitář"
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
+-#~ msgid "<b>Device number:</b>"
+-#~ msgstr "<b>Číslo zařízení:</b>"
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
+-#~ msgid "<b>WWPN:</b>"
+-#~ msgstr "<b>WWPN:</b>"
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
+-#~ msgid "Add FCP device"
+-#~ msgstr "Přidat zařízení FCP"
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
+-#~ msgid "Afrikaans"
+-#~ msgstr "Afrikánština"
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
+-#~ msgid "Arabic"
+-#~ msgstr "Arabština"
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
+-#~ msgid "Bengali"
+-#~ msgstr "Bengálština"
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
+-#~ msgid "Bengali(India)"
+-#~ msgstr "Bengálština (Indie)"
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
+-#~ msgid "Bulgarian"
+-#~ msgstr "Bulharština"
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
+-#~ msgid "Catalan"
+-#~ msgstr "Katalánština"
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
 +msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
+-#~ msgid "Chinese(Simplified)"
+-#~ msgstr "Čínština (zjednodušená)"
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
+-#~ msgid "Chinese(Traditional)"
+-#~ msgstr "Čínština (tradiční)"
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
+-#~ msgid "Czech"
+-#~ msgstr "Čeština"
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
+-#~ msgid "Danish"
+-#~ msgstr "Dánština"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Dutch"
+-#~ msgstr "Holandština"
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
+-#~ msgid "English"
+-#~ msgstr "Angličtina"
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "Estonian"
+-#~ msgstr "Estonština"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
+-#~ msgid "Finnish"
+-#~ msgstr "Finština"
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
+-#~ msgid "French"
+-#~ msgstr "Francouzština"
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgid "German"
+-#~ msgstr "Němčina"
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
+-#~ msgid "Greek"
+-#~ msgstr "Řečtina"
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
+-#~ msgid "Gujarati"
+-#~ msgstr "Gujarati"
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
+-#~ msgid "Hindi"
+-#~ msgstr "Hindština"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
+-#~ msgid "Hungarian"
+-#~ msgstr "Maďarština"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
+-#~ msgid "Icelandic"
+-#~ msgstr "Islandština"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
+-#~ msgid "Iloko"
+-#~ msgstr "Iloko"
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
+-#~ msgid "Indonesian"
+-#~ msgstr "Indonéština"
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
+-#~ msgid "Italian"
+-#~ msgstr "Italština"
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgid "Japanese"
+-#~ msgstr "Japonština"
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
+-#~ msgid "Kannada"
+-#~ msgstr "Kannada"
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
+-#~ msgid "Macedonian"
+-#~ msgstr "Makedonština"
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
+-#~ msgid "Malay"
+-#~ msgstr "Malajština"
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
+-#~ msgid "Malayalam"
+-#~ msgstr "Malayalam"
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
+-#~ msgid "Marathi"
+-#~ msgstr "Marathi"
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
+-#~ msgid "Norwegian"
+-#~ msgstr "Norština"
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
+-#~ msgid "Northern Sotho"
+-#~ msgstr "Northern Sotho"
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
+-#~ msgid "Oriya"
+-#~ msgstr "Oriya"
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
+-#~ msgid "Polish"
+-#~ msgstr "Polština"
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
+-#~ msgid "Portuguese"
+-#~ msgstr "Portugalština"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
+-#~ msgid "Portuguese(Brazilian)"
+-#~ msgstr "Portugalština(brazilská)"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
+-#~ msgid "Punjabi"
+-#~ msgstr "Paňdžábština"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
+-#~ msgid "Romanian"
+-#~ msgstr "Rumunština"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
+-#~ msgid "Russian"
+-#~ msgstr "Ruština"
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
+-#~ msgid "Serbian"
+-#~ msgstr "Srbština"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
+-#~ msgid "Serbian(Latin)"
+-#~ msgstr "Srbština(Latin)"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
+-#~ msgid "Sinhala"
+-#~ msgstr "Sinhala"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
+-#~ msgid "Slovak"
+-#~ msgstr "Slovenština"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
+-#~ msgid "Slovenian"
+-#~ msgstr "Slovinština"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
+-#~ msgid "Spanish"
+-#~ msgstr "Španělština"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
+-#~ msgid "Swedish"
+-#~ msgstr "Švédština"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
+-#~ msgid "Tamil"
+-#~ msgstr "Tamilština"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
+-#~ msgid "Telugu"
+-#~ msgstr "Telugu"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
+-#~ msgid "Turkish"
+-#~ msgstr "Turečtina"
+-
+-#~ msgid "Ukrainian"
+-#~ msgstr "Ukrajiština"
+-
+-#~ msgid "Vietnamese"
+-#~ msgstr "Vietnamština"
+-
+-#~ msgid "Welsh"
+-#~ msgstr "Velština"
+-
+-#~ msgid "Zulu"
+-#~ msgstr "Zulu"
+-
+-#~ msgid "Error pulling second part of kickstart config: %s!"
+-#~ msgstr "Chyba při stahování druhé části konfigurace kickstart: %s"
+-
+-#~ msgid "Unknown install method"
+-#~ msgstr "Neznámý způsob instalace"
+-
+-#~ msgid ""
+-#~ "You have specified an install method which isn't supported by anaconda."
+-#~ msgstr "Byl zvolen způsob instalace, který Anaconda nepodporuje."
+-
+-#~ msgid "unknown install method: %s"
+-#~ msgstr "Neznámý způsob instalace: %s"
+-
+-#~ msgid ""
+-#~ "You have chosen to remove all partitions (ALL DATA) on the following "
+-#~ "drives:%s\n"
+-#~ "Are you sure you want to do this?"
+-#~ msgstr ""
+-#~ "Zvolili jste odstranění všech oddílů (VŠECHNA DATA) na následujících "
+-#~ "discích:%s\n"
+-#~ "Opravdu je chcete odstranit?"
+-
+-#~ msgid ""
+-#~ "You have chosen to remove all Linux partitions (and ALL DATA on them) on "
+-#~ "the following drives:%s\n"
+-#~ "Are you sure you want to do this?"
+-#~ msgstr ""
+-#~ "Zvolili jste odstranění všech linuxových oddílů (a VŠECH DAT na nich) na "
+-#~ "následujících discích:%s\n"
+-#~ "Opravdu je chcete odstranit?"
+-
+-#~ msgid "Checking for Bad Blocks"
+-#~ msgstr "Vyhledávání vadných bloků"
+-
+-#~ msgid ""
+-#~ "Bad blocks have been detected on device /dev/%s. We do not recommend you "
+-#~ "use this device.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Na zařízení /dev/%s byly nalezeny vadné bloky. Zařízení nedoporučujeme "
+-#~ "používat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "An error occurred searching for bad blocks on %s.  This problem is "
+-#~ "serious, and the install cannot continue.\n"
+-#~ "\n"
+-#~ "Press <Enter> to exit the installer."
+-#~ msgstr ""
+-#~ "Při vyhledávání vadných bloků na %s došlo k chybě. Problém je závažný a "
+-#~ "instalace nemůže pokračovat.\n"
+-#~ "\n"
+-#~ "Stiskněte <Enter> pro ukončení instalace."
+-
+-#~ msgid ""
+-#~ "Please insert a floppy now. All contents of the disk will be erased, so "
+-#~ "please choose your diskette carefully."
+-#~ msgstr ""
+-#~ "Vložte prosím disketu. Celý obsah diskety bude smazán, proto vyberte "
+-#~ "disketu, na které nemáte důležitá data."
+-
+-#~ msgid ""
+-#~ "The file %s cannot be opened.  This is due to a missing file or perhaps a "
+-#~ "corrupt package.  Please verify your installation images and that you "
+-#~ "have all the required media.\n"
+-#~ "\n"
+-#~ "If you exit, your system will be left in an inconsistent state that will "
+-#~ "likely require reinstallation.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Nelze otevřít soubor %s. Důvodem je chybějící soubor nebo poškození "
+-#~ "balíčku.  Zkontrolujte obrazy médií, z nichž instalujete, a přesvědčte "
+-#~ "se, že máte všechna potřebná média.\n"
+-#~ "\n"
+-#~ "Ukončíte-li instalaci, zůstane systém v nekonzistentním stavu, což si "
+-#~ "může vyžádat opětovnou instalaci.\n"
+-#~ "\n"
+-
+-#~ msgid ""
+-#~ "The installer has tried to mount image #%s, but cannot find it on the "
+-#~ "server.\n"
+-#~ "\n"
+-#~ "Please copy this image to the remote server's share path and click Retry. "
+-#~ "Click Exit to abort the installation."
+-#~ msgstr ""
+-#~ "Instalátor se pokusil připojit obraz #%s, ale nepodařilo se mu ho na "
+-#~ "serveru nalézt.\n"
+-#~ "\n"
+-#~ "Zkopírujte požadovaný obraz do sdíleného adresáře na serveru a zvolte "
+-#~ "'Znovu'. Chcete-li instalaci opustit, zvolte Ukončit."
+-
+-#~ msgid ""
+-#~ "The drive /dev/%s has more than 15 partitions on it.  The SCSI subsystem  "
+-#~ "in the Linux kernel does not allow for more than 15 partitions at this "
+-#~ "time.  You will not be able to make changes to the partitioning of this "
+-#~ "disk or use any partitions beyond /dev/%s15 in %s"
+-#~ msgstr ""
+-#~ "Zařízení /dev/%s obsahuje více než 15 oddílů. SCSI subsystém v jádře "
+-#~ "Linuxu zatím více, než 15 zařízení neupodporuje. Nebude možné provádět "
+-#~ "změny v rozdělení disku ani používat oddíly za 15. oddílem /dev/%s15 v %s."
+-
+-#~ msgid "Low Memory"
+-#~ msgstr "Nedostatek paměti"
+-
+-#~ msgid ""
+-#~ "As you don't have much memory in this machine, we need to turn on swap "
+-#~ "space immediately. To do this we'll have to write your new partition "
+-#~ "table to the disk immediately. Is that OK?"
+-#~ msgstr ""
+-#~ "Protože na počítači není dostatek paměti, je nutné aktivovat odkládací "
+-#~ "prostor (swap). Proto je nutné zapsat novou tabulku oddílů na disk již "
+-#~ "nyní. Souhlasíte?"
+-
+-#~ msgid "Save to Remote Host"
+-#~ msgstr "Uložit na vzdálený počítač"
+-
+-#~ msgid "Save Crash Dump"
+-#~ msgstr "Uložit záznam havárie"
+-
+-#~ msgid "Searching"
+-#~ msgstr "Vyhledávání"
+-
+-#~ msgid "Searching for %s installations..."
+-#~ msgstr "Vyhledávání systémů %s..."
+-
+-#~ msgid "Connecting..."
+-#~ msgstr "Připojování..."
+-
+-#~ msgid ""
+-#~ "The file %s cannot be opened.  This is due to a missing file or perhaps a "
+-#~ "corrupt package.  Please verify your mirror contains all required "
+-#~ "packages, and try using a different one.\n"
+-#~ "\n"
+-#~ "If you exit, your system will be left in an inconsistent state that will "
+-#~ "likely require reinstallation.\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Nelze otevřít soubor %s, protože nebyl nalezen nebo je soubor s balíčkem "
+-#~ "poškozen. Zkontrolujte, zda zdrojový adresář obsahuje všechny požadované "
+-#~ "balíčky nebo zkuste jako zdroj použít jiné umístění.\n"
+-#~ "\n"
+-#~ "Ukončíte-li instalaci, zůstane systém v nekonzistentním stavu, který bude "
+-#~ "zřejmě vyžadovat reinstalaci.\n"
+-#~ "\n"
+-
+-#~ msgid "VNC Password Error"
+-#~ msgstr "Chyba VNC Hesla"
+-
+-#~ msgid ""
+-#~ "You need to specify a vnc password of at least 6 characters long.\n"
+-#~ "\n"
+-#~ "Press <return> to reboot your system.\n"
+-#~ msgstr ""
+-#~ "Pro VNC zadejte heslo délky alespoň 6 znaků.\n"
+-#~ "\n"
+-#~ "Stisknutím <Enter> restartujte systém.\n"
+-
+-#~ msgid "Unable to set vnc password - using no password!"
+-#~ msgstr "Nelze nastavit VNC heslo - pokračuje se bez hesla!"
+-
+-#~ msgid "Make sure your password is at least 6 characters in length."
+-#~ msgstr "Zkontrolujte, zda je heslo dlouhé alespoň 6 znaků."
+-
+-#~ msgid "Please connect to %s to begin the install..."
+-#~ msgstr "Pro spuštění instalace se připojte k %s..."
+-
+-#~ msgid "Please connect to begin the install..."
+-#~ msgstr "Připojte se pro spuštění instalace..."
+-
+-#~ msgid "Set Root Password"
+-#~ msgstr "Nastavit heslo správce systému"
+-
+-#~ msgid "Advanced Boot Loader Configuration"
+-#~ msgstr "Pokročilé nastavení zavaděče systému"
+-
+-#~ msgid "Force LBA32"
+-#~ msgstr "Použít LBA32"
+-
+-#~ msgid "_Force LBA32 (not normally required)"
+-#~ msgstr "Použít _LBA32 (bez ohledu na autodetekci)"
+-
+-#~ msgid ""
+-#~ "If you wish to add default options to the boot command, enter them into "
+-#~ "the 'General kernel parameters' field."
+-#~ msgstr ""
+-#~ "Pokud si přejete, aby zavaděč při každém zavedení systému předal jádru "
+-#~ "nějaké parametry, vložte je do pole Implicitní parametry jádra."
+-
+-#~ msgid "_General kernel parameters"
+-#~ msgstr "_Implicitní parametry jádra: "
+-
+-#~ msgid "The %s boot loader will be installed on /dev/%s."
+-#~ msgstr "Zavaděč %s bude nainstalován na /dev/%s."
+-
+-#~ msgid "No boot loader will be installed."
+-#~ msgstr "Neinstalovat žádný zavaděč."
+-
+-#~ msgid "Configure advanced boot loader _options"
+-#~ msgstr "_Nastavení pokročilých voleb zavaděče"
+-
+-#~ msgid "Install Boot Loader record on:"
+-#~ msgstr "Instalovat zavaděč do:"
+-
+-#~ msgid "_Change Drive Order"
+-#~ msgstr "Z_měnit pořadí disků"
+-
+-#~ msgid ""
+-#~ "Arrange the drives to be in the same order as used by the BIOS. Changing "
+-#~ "the drive order may be useful if you have multiple SCSI adapters or both "
+-#~ "SCSI and IDE adapters and want to boot from the SCSI device.\n"
+-#~ "\n"
+-#~ "Changing the drive order will change where the installation program "
+-#~ "locates the Master Boot Record (MBR)."
+-#~ msgstr ""
+-#~ "Seřaďte disky tak, aby byly ve stejném pořadí, jaké používá BIOS. Změna "
+-#~ "pořadí disků muže být užitečná, pokud máte více SCSI řadičů, případně jak "
+-#~ "SCSI, tak IDE řadiče a chcete zavádět systém ze SCSI zařízení.\n"
+-#~ "\n"
+-#~ "Změna pořadí disků ovlivní, kam instalační program umístí zavaděč systému."
+-
+-#~ msgid "About to Install"
+-#~ msgstr "Zahájení instalace"
+-
+-#~ msgid "Click next to begin installation of %s."
+-#~ msgstr "Klikněte na 'Další' pro zahájení instalace distribuce %s."
+-
+-#~ msgid ""
+-#~ "A complete log of the installation can be found in the file '%s' after "
+-#~ "rebooting your system.\n"
+-#~ "\n"
+-#~ "A kickstart file containing the installation options selected can be "
+-#~ "found in the file '%s' after rebooting the system."
+-#~ msgstr ""
+-#~ "Záznam průběhu instalace najdete po restartu počítače v souboru '%s'.\n"
+-#~ "\n"
+-#~ "V souboru '%s' naleznete řídíci instrukce, které můžete použít pro "
+-#~ "opakované provedení stejné instalace."
+-
+-#~ msgid "About to Upgrade"
+-#~ msgstr "Aktualizace systému"
+-
+-#~ msgid "Click next to begin upgrade of %s."
+-#~ msgstr "Klikněte na 'Další' pro zahájení aktualizace distribuce %s."
+-
+-#~ msgid ""
+-#~ "A complete log of the upgrade can be found in the file '%s' after "
+-#~ "rebooting your system."
+-#~ msgstr ""
+-#~ "Záznam průběhu aktualizace najdete po restartu počítače v souboru '%s'."
+-
+-#~ msgid "Drive"
+-#~ msgstr "Disk"
+-
+-#~ msgid "Model"
+-#~ msgstr "Model"
+-
+-#~ msgid "Netmask"
+-#~ msgstr "Maska sítě"
+-
+-#~ msgid ""
+-#~ "You can configure the boot loader to boot other operating systems by "
+-#~ "selecting from the list. To add an operating systems that was not "
+-#~ "automatically detected, click 'Add.' To change the operating system "
+-#~ "booted by default, select 'Default' next to the desired operating system."
+-#~ msgstr ""
+-#~ "Zavaděč systému lze nastavit i pro zavádění jiných operačních systémů, "
+-#~ "které jsou v seznamu. Další operační systémy, které nejsou automaticky "
+-#~ "detekovány, můžete přidat pomocí tlačítka 'Přidat'. Zaškrtnutím políčka "
+-#~ "vedle seznamu můžete určit, který operační systém bude zaveden implicitně."
+-
+-#~ msgid "Leave _unchanged (preserve data)"
+-#~ msgstr "_Ponechat beze změny (zachovat data)"
+-
+-#~ msgid "_Format partition as:"
+-#~ msgstr "_Naformátovat jako:"
+-
+-#~ msgid "Check for _bad blocks?"
+-#~ msgstr "Zjišťovat při formátování vadné _bloky?"
+-
+-#~ msgid "Release notes are missing.\n"
+-#~ msgstr "Poznámky k vydání nejsou k dispozici.\n"
+-
+-#~ msgid "Release Notes"
+-#~ msgstr "Poznámky k vydání"
+-
+-#~ msgid "Installation to begin"
+-#~ msgstr "Zahájení instalace"
+-
+-#~ msgid ""
+-#~ "A complete log of your installation will be in %s after rebooting your "
+-#~ "system. You may want to keep this file for later reference."
+-#~ msgstr ""
+-#~ "Úplný protokol o instalaci bude po restartu počítače v %s. Soubor se může "
+-#~ "hodit pro pozdější referenci."
+-
+-#~ msgid "Upgrade to begin"
+-#~ msgstr "Zahájení aktualizace"
+-
+-#~ msgid ""
+-#~ "A complete log of your upgrade will be in %s after rebooting your system. "
+-#~ "You may want to keep this file for later reference."
+-#~ msgstr ""
+-#~ "Úplný protokol o aktualizaci bude po restartu počítače v %s. Soubor se "
+-#~ "může hodit pro pozdější referenci."
+-
+-#~ msgid "Check for bad blocks"
+-#~ msgstr "Při formátování zjišťovat vadné bloky"
+-
+-#~ msgid ""
+-#~ "No hard drives have been found.  You probably need to manually choose "
+-#~ "device drivers for the installation to succeed.  Would you like to select "
+-#~ "drivers now?"
+-#~ msgstr ""
+-#~ "Nebyly nalezeny žádné pevné disky. Pravděpodobně budete muset pro "
+-#~ "úspěšnou instalaci ručně zvolit ovladače zařízení. Chcete nyní vybrat "
+-#~ "ovladače?"
+-
+-#~ msgid "FAILED"
+-#~ msgstr "NEÚSPĚCH"
+-
+-#~ msgid ""
+-#~ "The image which was just tested has errors. This could be due to a "
+-#~ "corrupt download or a bad disc.  If applicable, please clean the disc and "
+-#~ "try again.  If this test continues to fail you should not continue the "
+-#~ "install."
+-#~ msgstr ""
+-#~ "Obraz, který byl právě testován, má chyby. To může být kvůli chybnému "
+-#~ "stažení nebo špatnému médiu. Je-li to třeba, očistěte médium a zkuste "
+-#~ "test znovu. Bude-li test nadále selhávat, neměli byste pokračovat v "
+-#~ "instalaci."
+-
+-#~ msgid "PASSED"
+-#~ msgstr "V POŘÁDKU"
+-
+-#~ msgid "It is OK to install from this media."
+-#~ msgstr "Médium lze použít pro instalaci."
+-
+-#~ msgid "No checksum information available, unable to verify media."
+-#~ msgstr "Kontrolní součty nejsou k dispozici, médium nelze prověřit."
+-
+-#~ msgid "Media Check Result"
+-#~ msgstr "Výsledek kontroly média"
+-
+-#~ msgid ""
+-#~ "%s for the image:\n"
+-#~ "\n"
+-#~ "   %s"
+-#~ msgstr ""
+-#~ "%s pro obraz:\n"
+-#~ "\n"
+-#~ "   %s"
+-
+-#~ msgid ""
+-#~ "The media check %s\n"
+-#~ "\n"
+-#~ "%s"
+-#~ msgstr ""
+-#~ "Kontrola média %s\n"
+-#~ "\n"
+-#~ "%s"
+-
+-#~ msgid ""
+-#~ "Please enter the following information:\n"
+-#~ "\n"
+-#~ "    o the name or IP number of your %s server\n"
+-#~ "    o the directory on that server containing\n"
+-#~ "      %s for your architecture\n"
+-#~ msgstr ""
+-#~ "Zadejte následující informace:\n"
+-#~ "\n"
+-#~ "    * jméno nebo IP adresu %s serveru\n"
+-#~ "    * adresář daného serveru obsahující\n"
+-#~ "      %s pro vaši architekturu\n"
+-
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
+-
+-#~ msgid "Web"
+-#~ msgstr "Web"
+-
+-#~ msgid "Web site name:"
+-#~ msgstr "Jméno WWW serveru:"
+-
+-#~ msgid "Use non-anonymous ftp"
+-#~ msgstr "Použít neanonymní ftp"
+-
+-#~ msgid "FTP Setup"
+-#~ msgstr "FTP instalace"
+-
+-#~ msgid "HTTP Setup"
+-#~ msgstr "HTTP instalace"
+-
+-#~ msgid ""
+-#~ "If you are using non anonymous ftp, enter the account name and password "
+-#~ "you wish to use below."
+-#~ msgstr ""
+-#~ "Nepoužíváte-li anonymní FTP, zadejte jméno uživatele a heslo, které "
+-#~ "chcete použít."
+-
+-#~ msgid "Account name:"
+-#~ msgstr "Jméno účtu:"
+-
+-#~ msgid "Further HTTP Setup"
+-#~ msgstr "Další nastavení HTTP"
+-
+-#~ msgid "_Release Notes"
+-#~ msgstr "Poznámky k _vydání"
+-
+-#~ msgid "Exception Info"
+-#~ msgstr "Informace o výjimce"
+-
+-#~ msgid "_Exception details"
+-#~ msgstr "_Podrobnosti o výjimce"
+-
+-#~ msgid "_Save to floppy"
+-#~ msgstr "Uložit na _disketu"
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/cy.po b/policycoreutils/po/cy.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/cy.po
++++ b/policycoreutils/po/cy.po
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
++
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
++
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
++
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
++
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
++
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
++
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
++
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
++
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
++
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -42085,7 +54683,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -43213,18 +55811,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -43265,7 +55859,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -43274,25 +55867,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -43304,58 +55891,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -43363,169 +55950,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -43533,63 +56103,49 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils-2.0.85/po/da.po
---- nsapolicycoreutils/po/da.po        2011-02-17 15:11:25.544727951 -0500
-+++ policycoreutils-2.0.85/po/da.po    2011-02-18 16:03:41.347975597 -0500
-@@ -1,24 +1,43 @@
+diff --git a/policycoreutils/po/da.po b/policycoreutils/po/da.po
+index 7dc47b5..b7e84be 100644
+--- a/policycoreutils/po/da.po
++++ b/policycoreutils/po/da.po
+@@ -1,25 +1,25 @@
 -# translation of da.po to
 -# Danish messages for policycoreutils.
-+# Danish translation of policycoreutils.
- # Copyright (C) 2006 Christian Rose.
+-# Copyright (C) 2006 Christian Rose.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
  #
 -# $Id: da.po,v 1.15 2008/09/09 17:25:39 dwalsh Exp $
++# Translators:
  # Christian Rose <menthos@menthos.com>, 2006.
  # Keld Simonsen <keld@dkuug.dk>, 2006.
  # Keld Simonsen <keld@rap.dk>, 2007.
+-#
 +# Kris Thomsen <lakristho@gmail.com>, 2009, 2010.
-+#
-+# Konventioner:
-+#     policy => regelsæt
- #
  msgid ""
  msgstr ""
 -"Project-Id-Version: da\n"
-+"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2007-04-15 09:36+0200\n"
 -"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
 -"Language-Team:  <da@li.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-12-21 20:00+0100\n"
-+"Last-Translator: Kris Thomsen <lakristho@gmail.com>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
 +"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
++"Language: da\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
 -"X-Generator: KBabel 1.10.2\n"
-+"Language: da\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Konfigurér SELinux i et grafisk miljø"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Håndtering af SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Generér SELinux-regelsætmodul"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Regelsætgenereringsværktøj til SELinux"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -27,18 +46,18 @@
+@@ -28,18 +28,18 @@ msgid ""
  "         <args ...> are the arguments to that script."
  msgstr ""
  "BRUG: run_init <skript> <args ...>\n"
@@ -43598,7 +56154,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"  hvor: <skript> er navnet på init-skriptet som skal køres,\n"
 +"         <args ...> er argumenterne til dette skript."
  
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
  #, c-format
  msgid "failed to initialize PAM\n"
 -msgstr "kunne ikke initiere PAM\n"
@@ -43610,18 +56166,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 -msgstr "kunne ikke få fat i konto-information.\n"
 +msgstr "kunne ikke hente kontoinformation\n"
  
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
  msgid "Password:"
-@@ -47,7 +66,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
+@@ -48,7 +48,7 @@ msgstr "Adgangskode:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
  #, c-format
  msgid "Cannot find your entry in the shadow passwd file.\n"
 -msgstr "Kan ikke finde din post i skyggeadgangskodesfilen.\n"
 +msgstr "Kan ikke finde din post i skyggeadgangskode-filen.\n"
  
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
  #, c-format
-@@ -72,12 +91,12 @@
+@@ -73,12 +73,12 @@ msgstr "Ingen kontekst i filen %s\n"
  #: ../run_init/run_init.c:361
  #, c-format
  msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
@@ -43634,12 +56190,12 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 -msgstr "autentisering mislykkedes.\n"
 +msgstr "godkendelse mislykkedes.\n"
  
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
  #, c-format
-@@ -85,61 +104,57 @@
+@@ -86,79 +86,72 @@ msgid "Could not set exec context to %s.\n"
  msgstr "Kunne ikke sætte kørselskontekst til %s.\n"
  
- #: ../audit2allow/audit2allow:217
+ #: ../audit2allow/audit2allow:230
 -#, fuzzy
  msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
@@ -43647,1438 +56203,1150 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 -"********************* VIGTIGT ************************\n"
 +msgstr "********************* VIGTIGT ************************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
 -msgstr ""
 +msgstr "For at gøre denne regelsætpakke aktiv, kør:"
  
- #: ../semanage/seobject.py:48
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "global"
+ #: ../semanage/seobject.py:222
 -#, fuzzy
  msgid "Could not create semanage handle"
 -msgstr "Kunne ikke starte semanage-transaktion"
 +msgstr "Kunne ikke oprette semanage-håndtering"
  
- #: ../semanage/seobject.py:55
+ #: ../semanage/seobject.py:230
  msgid "SELinux policy is not managed or store cannot be accessed."
 -msgstr "SELinux policy er ikke håndteret, eller der er ikke adgang til lager."
 +msgstr "SELinux regelsæt er ikke håndteret, eller lager kan ikke tilgåes."
  
- #: ../semanage/seobject.py:60
+ #: ../semanage/seobject.py:235
  msgid "Cannot read policy store."
 -msgstr "Kan ikke læse policylager."
 +msgstr "Kan ikke læse regelsætlager."
  
- #: ../semanage/seobject.py:65
+ #: ../semanage/seobject.py:240
  msgid "Could not establish semanage connection"
 -msgstr "Kunne ikke sætte en semanage-opkobling op"
 +msgstr "Kunne ikke starte en semanage-forbindelse"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
 -msgstr "Kunne ikke sætte MLS-interval for %s"
 +msgstr "Kunne ikke teste MLS-aktiveret status"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "global"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Kan ikke åbne %s: oversættelser understøttes ikke på maskiner som ikke har "
--"MLS"
-+"Kan ikke åbne %s: oversættelser understøttes ikke på maskiner, som ikke har "
-+"MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Niveau"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Oversættelse"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "oversættelser kan ikke indeholde mellemrum \"%s\" "
-+msgstr "Oversættelser kan ikke indeholde mellemrum \"%s\" "
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -158,788 +173,788 @@
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
 +msgstr "Ikke implementeret endnu"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "Semanage-transaktion er allerede i gang"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
  msgstr "Kunne ikke starte semanage-transaktion"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
 -msgstr "Kunne ikke starte semanage-transaktion"
 +msgstr "Kunne ikke sende semanage-transaktion"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "Semanage-transaktion er ikke i gang"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
 -msgstr "Kan ikke liste SELinuxtbrugere"
 +msgstr "Kunne ikke liste SELinux-moduler"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
 -msgstr ""
-+msgstr "Tilladelsestyper"
++msgstr "Version"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Deaktiveret"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:322
+ #, python-format
+@@ -166,9 +159,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Kunne ikke tilføje rolle %s for %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -191,11 +184,12 @@ msgstr ""
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
 +"Kunne ikke indstille tilladelsesdomæne %s (installation af modul fejlede)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
 +msgstr "Kunne ikke fjerne tilladelsesdomæne %s (fjernelse fejlede)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -206,48 +200,48 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
 -msgstr "Kunne ikke oprette en nøgle for %s"
 +msgstr "Kunne ikke oprette en nøgle til %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
 -msgstr "Kunne ikke kontrollere om indlogningskortlægning for %s er defineret"
 +msgstr "Kunne ikke kontrollere om indlogningtilknytning for %s er defineret"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "Indlogningskortlægning for %s er allerede defineret"
-+msgstr "Indlogningstilknytning for %s er allerede defineret"
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
 -msgstr "Linuxbruger %s findes ikke"
 +msgstr "Linux-gruppe %s findes ikke"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
  msgid "Linux User %s does not exist"
 -msgstr "Linuxbruger %s findes ikke"
 +msgstr "Linux-bruger %s findes ikke"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
 -msgstr "Kunne ikke oprette indlogningskortlægning for %s"
 +msgstr "Kunne ikke oprette indlogningtilknytning for %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
 -msgstr "Kunne ikke sætte navn for %s"
 +msgstr "Kunne ikke indstille navn for %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
 -msgstr "Kunne ikke sætte MLS-interval for %s"
 +msgstr "Kunne ikke indstille MLS-interval for %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
 -msgstr "Kunne ikke sætte SELinux-bruger for %s"
 +msgstr "Kunne ikke indstille SELinux-bruger for %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
 -msgstr "Kunne ikke tilføje indlogningskortlægning for %s"
 +msgstr "Kunne ikke tilføje indlogningstilknytning for %s"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
--#, fuzzy
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "Kunne ikke tilføje SELinux-bruger %s"
-+msgstr "tilføj SELinux-brugertilknytning"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Kræver seuser eller serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+@@ -256,7 +250,7 @@ msgstr "Kræver seuser eller serange"
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
 -msgstr "Indlogningskortlægning for %s er ikke defineret"
 +msgstr "Indlogningstilknytning for %s er ikke defineret"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Kunne ikke forespørge seuser om %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+@@ -266,36 +260,41 @@ msgstr "Kunne ikke forespørge seuser om %s"
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
 -msgstr "Kunne ikke ændre indlognings-kortlægning for %s"
 +msgstr "Kunne ikke ændre indlogningstilknytning for %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
 -msgstr "Indlogningskortlægning for %s er defineret i policy, kan ikke fjernes"
 +msgstr ""
 +"Indlogningstilknytning for %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
 -msgstr "Kunne ikke fjerne indlogningkortlægning for %s"
 +msgstr "Kunne ikke slette indlogningstilknytning for %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
 -msgstr "Kunne ikke liste indlogningskortlægninger"
 +msgstr "Kunne ikke liste indlogningstilknytninger"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
 -msgstr ""
 +msgstr "Logindnavn"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 -#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr "SELinux Type kræves"
 +msgstr "SELinux-bruger"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
 -msgstr ""
 +msgstr "MLS/MCS-interval"
  
--#: ../semanage/seobject.py:594
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -308,12 +307,12 @@ msgstr "Kunne ikke kontrollere om SELinux-bruger %s er defineret"
+ #: ../semanage/seobject.py:866
+ #, python-format
+ msgid "Could not query user for %s"
+-msgstr "Kan ikke forespørge bruger om %s"
++msgstr "Kunne ikke forespørge bruger om %s"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
 -msgstr "Kunne ikke tilføje filkontekst for %s"
 +msgstr "Du skal tilføje mindst én rolle for %s"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Kunne ikke kontrollere om SELinux-bruger %s er defineret"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux-bruger %s er allerede defineret"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Kunne ikke oprette SELinux-bruger for %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+@@ -323,17 +322,17 @@ msgstr "Kunne ikke oprette SELinux-bruger for %s"
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
 -msgstr "Kunne ikke tilføje rolle %s for %s"
 +msgstr "Kunne ikke tilføje rolle %s til %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
 -msgstr "Kunne ikke sætte MLS-niveau for %s"
 +msgstr "Kunne ikke indstille MLS-niveau for %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
 -msgstr "Kunne ikke tilføje præfiks %s for %s"
 +msgstr "Kunne ikke tilføje præfiks %s til %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
- msgid "Could not extract key for %s"
- msgstr "Kunne ikke finde nøgle for %s"
+@@ -347,7 +346,7 @@ msgstr "Kunne ikke tilføje SELinux-bruger %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Kunne ikke tilføje SELinux-bruger %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
 -msgstr "Kræver præfiks, roller, niveau eller område"
 +msgstr "Kræver præfiks, roller, niveau eller interval"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
- msgstr "Kræver præfiks eller roller"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux-bruger %s er ikke defineret"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr "Kan ikke forespørge bruger om %s"
-+msgstr "Kunne ikke forespørge bruger om %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+@@ -361,63 +360,63 @@ msgstr "SELinux-bruger %s er ikke defineret"
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
 -msgstr "Kan ikke ændre SELinux-bruger %s"
 +msgstr "Kunne ikke ændre SELinux-bruger %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
 -msgstr "SELinux-bruger %s er defineret i policy, kan ikke fjernes"
 +msgstr "SELinux-bruger %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
 -msgstr "Kan ikke fjerne SELinuxtbruger %s"
 +msgstr "Kunne ikke fjerne SELinux-bruger %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
 -msgstr "Kan ikke liste SELinuxtbrugere"
 +msgstr "Kunne ikke liste SELinux-brugere"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
 -msgstr "Kan ikke liste roller for bruger %s"
 +msgstr "Kunne ikke liste roller for bruger %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
 -msgstr ""
 +msgstr "Mærkning"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
 -msgstr ""
 +msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
 -msgstr ""
 +msgstr "Præfiks"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
 -msgstr ""
 +msgstr "MCS-niveau"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
 -msgstr ""
 +msgstr "MCS-interval"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
 -msgstr ""
 +msgstr "SELinux-roller"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
 -msgstr "Protokol udp eller tcp kræves"
 +msgstr "Protokol udp eller tcp er påkrævet"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
 -msgstr "Port kræves"
 +msgstr "Port er påkrævet"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Ugyldigt præfiks %s"
++msgstr ""
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Kunne ikke oprette en nøgle for %s/%s"
+@@ -426,7 +425,7 @@ msgstr "Kunne ikke oprette en nøgle for %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
 -msgstr "Type kræves"
 +msgstr "Type er påkrævet"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Kunne ikke kontrollere om port %s/%s er defineret"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s allerede defineret"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+@@ -442,37 +441,37 @@ msgstr "Port %s/%s allerede defineret"
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
 -msgstr "Kunne ikke oprette port for %s/%s"
 +msgstr "Kunne ikke oprette port til %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
 -msgstr "Kunne ikke oprette kontekst for %s/%s"
 +msgstr "Kunne ikke oprette kontekst til %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
 -msgstr "Kunne ikke sætte bruger i port-kontekst for %s/%s"
 +msgstr "Kunne ikke indstille bruger i portkontekst for %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
 -msgstr "Kunne ikke sætte rolle i port-kontekst for %s/%s"
 +msgstr "Kunne ikke indstille rolle i portkontekst for %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
 -msgstr "Kunne ikke sætte type i port-kontekst for %s/%s"
 +msgstr "Kunne ikke indstille type i portkontekst for %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
 -msgstr "Kunne ikke sætte mls-felter i port-kontekst for %s/%s"
 +msgstr "Kunne ikke indstille MLS-felter i portkontekst for %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
 -msgstr "Kunne ikke sætte port-kontekst for %s/%s"
 +msgstr "Kunne ikke indstille portkontekst for %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Kunne ikke tilføje port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Kræver setype eller serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Kræver setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s er ikke defineret"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Kunne ikke forespørge port %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1033
  #, python-format
- msgid "Could not modify port %s/%s"
+@@ -504,24 +503,23 @@ msgid "Could not modify port %s/%s"
  msgstr "Kunne ikke ændre port %s/%s"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
 -msgstr "Kunne ikke liste porte"
 +msgstr "Kunne ikke liste portene"
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
 -msgstr "Kan ikke fjerne port %s/%s"
 +msgstr "Kunne ikke slette porten %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
 -msgstr "Port %s/%s er defineret i policy, kan ikke fjernes"
 +msgstr "Port %s/%s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
 -msgstr "Kan ikke fjerne port %s/%s"
 +msgstr "Kan ikke slette port %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr "Kunne ikke liste porte"
+@@ -529,29 +527,28 @@ msgstr "Kunne ikke liste porte"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
 -msgstr ""
 +msgstr "SELinux-porttype"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
 -msgstr ""
 +msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
 -msgstr ""
 +msgstr "Portnummer"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
 -msgstr "Port kræves"
 +msgstr "Knudeadresse er påkrævet"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Port kræves"
-+msgstr "Knude-netmaske er påkrævet"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "Ukendt eller manglende protokol"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
 -msgstr "SELinux Type kræves"
 +msgstr "SELinux-type er påkrævet"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -559,100 +556,98 @@ msgstr "SELinux Type kræves"
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
 -msgstr "Kunne ikke oprette nøgle for %s"
 +msgstr "Kunne ikke oprette nøgle til %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr "Kunne ikke kontrollere om port %s/%s er defineret"
 +msgstr "Kunne ikke kontrollere om adresse %s er defineret"
  
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Port %s/%s allerede defineret"
-+msgstr "Adresse %s allerede defineret"
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
 -msgstr "Kunne ikke oprette en nøgle for %s"
 +msgstr "Kunne ikke oprette adresse for %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
 -msgstr "Kunne ikke oprette-kontekst for %s"
 +msgstr "Kunne ikke oprette kontekst for %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
 -msgstr "Kunne ikke sætte navn for %s"
 +msgstr "Kunne ikke indstille maske for %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr "Kunne ikke sætte bruger i filkontekst for %s"
 +msgstr "Kunne ikke indstille bruger i adressekontekst for %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr "Kunne ikke sætte rolle i filkontekst for %s"
 +msgstr "Kunne ikke indstille rolle i adressekontekst for %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr "Kunne ikke sætte type i filkontekst for %s"
 +msgstr "Kunne ikke indstille type i adressekontekst for %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr "Kunne ikke sætte mls-felter i filkontekst for %s"
 +msgstr "Kunne ikke indstille MLS-felter i adressekontekst for %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
 -msgstr "Kunne ikke sætte filkontekst for %s"
 +msgstr "Kunne ikke indstille adressekontekst for %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
 -msgstr "Kunne ikke tilføje port %s/%s"
 +msgstr "Kunne ikke tilføje adresse %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
 -msgstr "Port %s/%s er ikke defineret"
 +msgstr "Adresse %s er ikke defineret"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
 -msgstr "Kunne ikke forespørge port %s/%s"
 +msgstr "Kunne ikke forespørge adresse %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
 -msgstr "Kunne ikke ændre port %s/%s"
 +msgstr "Kunne ikke ændre adresse %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr "Port %s/%s er defineret i policy, kan ikke fjernes"
 +msgstr "Adresse %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
 -msgstr "Kunne ikke fjerne grænsefladen %s"
 +msgstr "Kunne ikke slette adresse %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Kunne ikke fjerne indlogningkortlægning for %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
 -msgstr "Kunne ikke liste porte"
 +msgstr "Kunne ikke liste adresser"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
 -msgstr "Kunne ikke kontrollere om grænsefladen %s er defineret"
 +msgstr "Kunne ikke kontrollere om grænseflade %s er defineret"
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
+ #: ../semanage/seobject.py:1461
  #, python-format
- msgid "Interface %s already defined"
--msgstr "Grænsefladen %s er allerede defineret"
-+msgstr "Grænseflade %s er allerede defineret"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Kunne ikke oprette grænseflade for %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+@@ -662,37 +657,37 @@ msgstr "Kunne ikke oprette grænseflade for %s"
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
 -msgstr "Kunne ikke sætte bruger i grænseflade-kontekst for %s"
 +msgstr "Kunne ikke indstille bruger i grænsefladekontekst for %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
 -msgstr "Kunne ikke sætte rolle i grænseflade-kontekst for %s"
 +msgstr "Kunne ikke indstille rolle i grænsefladekontekst for %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
 -msgstr "Kan ikke sætte type i grænseflade-kontekst for %s"
 +msgstr "Kunne ikke indstille type i grænsefladekontekst for %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
 -msgstr "Kan ikke sætte mls-felt i grænseflade-kontekst for %s"
 +msgstr "Kunne ikke indstille MLS-felter i grænsefladekontekst for %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
 -msgstr "Kan ikke sætte grænseflade-kontekst for %s"
 +msgstr "Kunne ikke indstille grænsefladekontekst for %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
 -msgstr "Kan ikke sætte meddelelse-kontekst for %s"
 +msgstr "Kunne ikke indstille meddelelseskontekst for %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
 -msgstr "Kunne ikke tilføje grænsefladen %s"
 +msgstr "Kunne ikke tilføje grænseflade %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
- msgid "Interface %s is not defined"
- msgstr "Grænsefladen %s er ikke defineret"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+@@ -702,27 +697,26 @@ msgstr "Grænsefladen %s er ikke defineret"
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
 -msgstr "Kunne ikke spørge grænsefladen %s"
 +msgstr "Kunne ikke spørge grænseflade %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
 -msgstr "Kunne ikke ændre grænsefladen %s"
 +msgstr "Kunne ikke ændre grænseflade %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
 -msgstr "Grænseflade %s er defineret i policy, kan ikke fjernes"
 +msgstr "Grænseflade %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
 -msgstr "Kunne ikke fjerne grænsefladen %s"
 +msgstr "Kunne ikke slette grænseflade %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Kunne ikke fjerne grænsefladen %s"
++msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Kunne ikke liste grænseflader"
+@@ -730,16 +724,16 @@ msgstr "Kunne ikke liste grænseflader"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr ""
 +msgstr "SELinux-grænseflade"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
 -msgstr ""
 +msgstr "Kontekst"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Filkontekst for %s allerede defineret"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -747,28 +741,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linuxbruger %s findes ikke"
++msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
 -msgstr "Kunne ikke sætte bruger i filkontekst for %s"
 +msgstr "Kunne ikke indstille bruger i filkontekst for %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
 -msgstr "Kunne ikke sætte rolle i filkontekst for %s"
 +msgstr "Kunne ikke indstille rolle i filkontekst for %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
 -msgstr "Kunne ikke sætte mls-felter i filkontekst for %s"
 +msgstr "Kunne ikke indstille MLS-felter i filkontekst for %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
 -msgstr ""
 +msgstr "Ugyldig filangivelse"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -785,7 +779,7 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
 -msgstr "Kan ikke kontrollere om fil-kontekst for %s er defineret"
 +msgstr "Kunne ikke kontrollere om filkontekst for %s er defineret"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Filkontekst for %s allerede defineret"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
- msgid "Could not create file context for %s"
- msgstr "Kunne ikke oprette filkontekst for %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+@@ -795,13 +789,13 @@ msgstr "Kunne ikke oprette filkontekst for %s"
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
 -msgstr "Kunne ikke sætte type i filkontekst for %s"
 +msgstr "Kunne ikke indstille type i filkontekst for %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
 -msgstr "Kunne ikke sætte filkontekst for %s"
 +msgstr "Kunne ikke indstille filkontekst for %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
- msgid "Could not add file context for %s"
- msgstr "Kunne ikke tilføje filkontekst for %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Kræver setype, serange eller seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Filkontekst for %s er ikke defineret"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+@@ -820,7 +814,7 @@ msgstr "Filkontekst for %s er ikke defineret"
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
 -msgstr "Kunne ikke spørge filkontekst for %s"
 +msgstr "Kunne ikke forespørge filkontekst for %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
- msgid "Could not modify file context for %s"
+@@ -828,19 +822,18 @@ msgid "Could not modify file context for %s"
  msgstr "Kunne ikke ændre filkontekst for %s"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1839
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
  msgid "Could not list the file contexts"
 -msgstr "Kunne ikke liste filkontekst"
 +msgstr "Kunne ikke liste filkontekster"
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1853
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
  msgid "Could not delete the file context %s"
 -msgstr "Kunne ikke slette filkontekst for %s"
 +msgstr "Kunne ikke slette filkonteksten %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
 -msgstr "Filkontekst for %s er defineret i policy, kan ikke fjernes"
 +msgstr "Filkontekst for %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Kunne ikke slette filkontekst for %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Kunne ikke liste filkontekst"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Kunne ikke liste lokale filkontekster"
+@@ -857,11 +850,11 @@ msgstr "Kunne ikke liste lokale filkontekster"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
 -msgstr ""
 +msgstr "SELinux kontekst"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
 -msgstr ""
 +msgstr "type"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -879,12 +872,12 @@ msgstr ""
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
 -msgstr "Kunne ikke kontrollere om flaget %s er defineret"
 +msgstr "Kunne ikke kontrollere om boolesk %s er defineret"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
 -msgstr "Flaget %s er ikke defineret"
 +msgstr "Boolesk %s er ikke defineret"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
- msgid "Could not query file context %s"
+@@ -892,54 +885,54 @@ msgid "Could not query file context %s"
  msgstr "Kunne ikke forespørge filkontekst %s"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
 -msgstr "Du skal angive et præfiks"
 +msgstr "Du skal angive én af de følgende værdier: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr "Kunne ikke fjerne flag %s"
 +msgstr "Kunne ikke indstille aktiv værdi af boolesk %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
 -msgstr "Kunne ikke ændre flag %s"
 +msgstr "Kunne ikke ændre boolesk %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
 +msgstr "Dårligt format %s: Notér %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
 -msgstr "Flag %s er defineret i policy, kan ikke fjernes"
 +msgstr "Boolesk %s er defineret i regelsæt, kan ikke slettes"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
 -msgstr "Kunne ikke fjerne flag %s"
 +msgstr "Kunne ikke slette boolesk %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
 -msgstr "Kunne ikke liste flag"
 +msgstr "Kunne ikke liste boolesker"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "ukendt"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
 +msgstr "inaktiv"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
 -msgstr ""
 +msgstr "aktiv"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr ""
 +msgstr "SELinux boolesk"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+@@ -949,24 +942,25 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "Beskrivelse"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
  msgid "failed to set PAM_TTY\n"
 -msgstr "kunne ikke sætte PAM_TTY\n"
 +msgstr "kunne ikke indstille PAM_TTY\n"
  
- #: ../newrole/newrole.c:287
+ #: ../newrole/newrole.c:290
  #, c-format
  msgid "newrole: service name configuration hashtable overflow\n"
 -msgstr ""
 +msgstr "ny rolle: tjenestenavnskonfiguration overløb for hashtabel\n"
  
- #: ../newrole/newrole.c:297
+ #: ../newrole/newrole.c:300
  #, c-format
  msgid "newrole:  %s:  error on line %lu.\n"
 -msgstr ""
 +msgstr "ny rolle:  %s:  fejl på linje %lu.\n"
  
- #: ../newrole/newrole.c:436
+ #: ../newrole/newrole.c:439
  #, c-format
-@@ -949,27 +964,27 @@
- #: ../newrole/newrole.c:447
+@@ -976,22 +970,22 @@ msgstr "kan ikke finde gyldig indgang i passwd-filen.\n"
+ #: ../newrole/newrole.c:450
  #, c-format
  msgid "Out of memory!\n"
 -msgstr "Ikke mere hukommelse!\n"
 +msgstr "Løbet tør for hukommelse!\n"
  
- #: ../newrole/newrole.c:452
+ #: ../newrole/newrole.c:455
  #, c-format
  msgid "Error!  Shell is not valid.\n"
 -msgstr "Fejl! Skallen er ikke gyldig.\n"
 +msgstr "Fejl!  Skallen er ugyldig.\n"
  
- #: ../newrole/newrole.c:509
+ #: ../newrole/newrole.c:512
  #, c-format
  msgid "Unable to clear environment\n"
 -msgstr "Kunne ikke nulstille miljøet\n"
 +msgstr "Kunne ikke nulstille miljø\n"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Fejl ved initiering af kapabiliteter, afbryder.\n"
-+msgstr "Fejl ved initialisering af egenskaber, afbryder.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "Fejl ved indstilling af kapabiliteter, afbryder.\n"
-+msgstr "Fejl ved indstilling af egenskaber, afbryder.\n"
- #: ../newrole/newrole.c:570
- #, c-format
-@@ -979,12 +994,12 @@
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr "Fejl ved fjernelse af kapabiliteter, afbryder\n"
-+msgstr "Fejl ved fjernelse af egenskaber, afbryder\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
  #, c-format
  msgid "Error changing uid, aborting.\n"
 -msgstr "Fejl ved skift af uid, afbryder.\n"
 +msgstr "Fejl ved skift af UID, afbryder.\n"
  
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
-@@ -994,7 +1009,7 @@
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "Fejl ved fjernelse af SETUID kapabilitet, afbryder\n"
-+msgstr "Fejl ved fjernelse af SETUID-egenskab, afbryder\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
+ #: ../newrole/newrole.c:612
  #, c-format
-@@ -1004,27 +1019,27 @@
- #: ../newrole/newrole.c:701
+@@ -1001,27 +995,27 @@ msgstr "Fejl ved nulstilling af KEEPCAPS, afbryder\n"
+ #: ../newrole/newrole.c:635
  #, c-format
  msgid "Error connecting to audit system.\n"
 -msgstr "Fejl ved forbindelse til auditeringssystem.\n"
 +msgstr "Fejl ved forbindelse til revisionssystem.\n"
  
- #: ../newrole/newrole.c:707
+ #: ../newrole/newrole.c:641
  #, c-format
  msgid "Error allocating memory.\n"
 -msgstr "Fejl ved hukommelsesallokering.\n"
 +msgstr "Fejl ved allokering afhukommelse.\n"
  
- #: ../newrole/newrole.c:714
+ #: ../newrole/newrole.c:648
  #, c-format
  msgid "Error sending audit message.\n"
 -msgstr "Fejl ved sending af auditeringsmeddelelse.\n"
 +msgstr "Fejl ved afsendelse af revisionsmeddelelse.\n"
  
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
  #, c-format
  msgid "Could not determine enforcing mode.\n"
 -msgstr "Kunne ikke bestemme gennemtvingnings-tilstand.\n"
 +msgstr "Kunne ikke bestemme tvungentilstand.\n"
  
- #: ../newrole/newrole.c:765
+ #: ../newrole/newrole.c:699
  #, c-format
  msgid "Error!  Could not open %s.\n"
 -msgstr "Fejl! Kunne ikke åbne %s.\n"
 +msgstr "Fejl!  Kunne ikke åbne %s.\n"
  
- #: ../newrole/newrole.c:771
+ #: ../newrole/newrole.c:705
  #, c-format
-@@ -1034,7 +1049,7 @@
- #: ../newrole/newrole.c:781
+@@ -1031,7 +1025,7 @@ msgstr "%s!  Kunne ikke hente aktuel kontekst for %s, ommærker ikke tty.\n"
+ #: ../newrole/newrole.c:715
  #, c-format
  msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
 -msgstr "%s!  Kunne ikke få ny kontekst for %s, ommærker ikke tty.\n"
 +msgstr "%s!  Kunne ikke modtage ny kontekst for %s, ommærker ikke tty.\n"
  
- #: ../newrole/newrole.c:791
+ #: ../newrole/newrole.c:725
  #, c-format
-@@ -1044,17 +1059,17 @@
- #: ../newrole/newrole.c:838
+@@ -1041,17 +1035,17 @@ msgstr "%s!  Kunne ikke sætte ny kontekst for %s\n"
+ #: ../newrole/newrole.c:772
  #, c-format
  msgid "%s changed labels.\n"
 -msgstr "%s ændrede mærkninger.\n"
 +msgstr "%s ændrede mærker.\n"
  
- #: ../newrole/newrole.c:844
+ #: ../newrole/newrole.c:778
  #, c-format
  msgid "Warning! Could not restore context for %s\n"
 -msgstr "Advarsel!  Kunne ikke genetablere kontekst for %s\n"
 +msgstr "Advarsel! Kunne ikke genetablere kontekst for %s\n"
  
- #: ../newrole/newrole.c:901
+ #: ../newrole/newrole.c:835
  #, c-format
  msgid "Error: multiple roles specified\n"
 -msgstr "Fejl: flere roller specificeret\n"
 +msgstr "Fejl: flere roller angivet\n"
  
- #: ../newrole/newrole.c:909
+ #: ../newrole/newrole.c:843
  #, c-format
-@@ -1064,7 +1079,7 @@
- #: ../newrole/newrole.c:916
+@@ -1061,7 +1055,7 @@ msgstr "Fejl: flere typer angivet\n"
+ #: ../newrole/newrole.c:850
  #, c-format
  msgid "Sorry, -l may be used with SELinux MLS support.\n"
 -msgstr "Desværre, -l kan bruges med SELinux MLS understøttelse.\n"
 +msgstr "Beklager, -l skal bruges med SELinux MLS-understøttelse.\n"
  
- #: ../newrole/newrole.c:921
+ #: ../newrole/newrole.c:855
  #, c-format
-@@ -1075,26 +1090,27 @@
+@@ -1072,26 +1066,27 @@ msgstr "Fejl: flere niveauer angivet\n"
  #, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
  msgstr ""
 +"Fejl: du har ikke tilladelse til at ændre niveauer fra en usikker terminal \n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
  msgid "Couldn't get default type.\n"
 -msgstr "Kunne ikke få fat i standardtype.\n"
 +msgstr "Kunne ikke hente standardtype.\n"
  
- #: ../newrole/newrole.c:967
+ #: ../newrole/newrole.c:901
  #, c-format
  msgid "failed to get new context.\n"
 -msgstr "kunne ikke få fat i ny kontekst.\n"
 +msgstr "kunne ikke hente ny kontekst.\n"
  
- #: ../newrole/newrole.c:974
+ #: ../newrole/newrole.c:908
  #, c-format
  msgid "failed to set new role %s\n"
 -msgstr "kunne ikke sætte ny rolle %s\n"
 +msgstr "kunne ikke indstille ny rolle %s\n"
  
- #: ../newrole/newrole.c:981
+ #: ../newrole/newrole.c:915
  #, c-format
  msgid "failed to set new type %s\n"
 -msgstr "kunne ikke sætte ny type %s\n"
 +msgstr "kunne ikke indstille ny type %s\n"
  
- #: ../newrole/newrole.c:991
+ #: ../newrole/newrole.c:925
  #, c-format
-@@ -1104,7 +1120,7 @@
- #: ../newrole/newrole.c:996
+@@ -1101,7 +1096,7 @@ msgstr "kunne ikke bygge nyt interval med niveau %s\n"
+ #: ../newrole/newrole.c:930
  #, c-format
  msgid "failed to set new range %s\n"
 -msgstr "kunne ikke sætte nyt interval %s\n"
 +msgstr "kunne ikke indstille nyt interval %s\n"
  
- #: ../newrole/newrole.c:1004
+ #: ../newrole/newrole.c:938
  #, c-format
-@@ -1119,42 +1135,42 @@
- #: ../newrole/newrole.c:1016
+@@ -1116,42 +1111,42 @@ msgstr "%s er ikke en gyldig kontekst\n"
+ #: ../newrole/newrole.c:950
  #, c-format
  msgid "Unable to allocate memory for new_context"
 -msgstr "Kunne ikke tildele hukommelse for new_context"
 +msgstr "Kunne ikke allokere hukommelse for new_context"
  
- #: ../newrole/newrole.c:1042
+ #: ../newrole/newrole.c:976
  #, c-format
  msgid "Unable to obtain empty signal set\n"
 -msgstr "Kunne ikke hente tomt signal-samling\n"
 +msgstr "Kunne ikke hente tom signalsæt\n"
  
- #: ../newrole/newrole.c:1050
+ #: ../newrole/newrole.c:984
  #, c-format
  msgid "Unable to set SIGHUP handler\n"
 -msgstr "Kunne ikke sætte SIGHUP-behandler\n"
 +msgstr "Kunne ikke indstille SIGHUP-håndtering\n"
  
- #: ../newrole/newrole.c:1116
+ #: ../newrole/newrole.c:1053
  #, c-format
  msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
 -msgstr "Desværre, newrole kan kun bruges på en SELinux-kerne.\n"
 +msgstr "Beklager, newrole kan kun bruges på en SELinux-kerne.\n"
  
- #: ../newrole/newrole.c:1133
+ #: ../newrole/newrole.c:1070
  #, c-format
  msgid "failed to get old_context.\n"
 -msgstr "kunne ikke få fat i old_context.\n"
 +msgstr "kunne ikke modtage old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
 -msgstr "Fejl! Kunne ikke få fat på tty-information.\n"
 +msgstr "Fejl!  Kunne ikke hente tty-information.\n"
  
- #: ../newrole/newrole.c:1161
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr ""
 +msgstr "fejl ved læsning af servicekonfiguration af PAM.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
  msgid "newrole: incorrect password for %s\n"
 -msgstr "newrole: fejlagtig adgangskode for %s\n"
 +msgstr "newrole: forkert adgangskode for %s\n"
  
- #: ../newrole/newrole.c:1223
+ #: ../newrole/newrole.c:1160
  #, c-format
-@@ -1164,7 +1180,7 @@
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
+@@ -1161,7 +1156,7 @@ msgstr "newrole: fejl ved forgrening: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
  #, c-format
  msgid "Unable to restore tty label...\n"
 -msgstr "Kunne ikke genetablere tty-etikette...\n"
 +msgstr "Kunne ikke genetablere tty-mærke...\n"
  
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
  #, c-format
-@@ -1179,7 +1195,7 @@
- #: ../newrole/newrole.c:1314
+@@ -1176,7 +1171,7 @@ msgstr "Kunne ikke lukke deskriptorerne.\n"
+ #: ../newrole/newrole.c:1251
  #, c-format
  msgid "Error allocating shell's argv0.\n"
 -msgstr "Fejl ved tildeling af skallens argv0.\n"
 +msgstr "Fejl ved allokering af skallens argv0.\n"
  
- #: ../newrole/newrole.c:1346
+ #: ../newrole/newrole.c:1287
  #, c-format
-@@ -1188,27 +1204,27 @@
+@@ -1185,27 +1180,27 @@ msgstr "Kunne ikke genetablere miljøet, afbryder\n"
  
- #: ../newrole/newrole.c:1357
+ #: ../newrole/newrole.c:1298
  msgid "failed to exec shell\n"
 -msgstr "kunne ikke udføre skál\n"
 +msgstr "kunne ikke udføre skal\n"
@@ -45111,7 +57379,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
  
  #: ../scripts/chcat:92 ../scripts/chcat:169
  msgid "Requires at least one category"
-@@ -1217,12 +1233,12 @@
+@@ -1214,12 +1209,12 @@ msgstr "Kræver mindst én kategori"
  #: ../scripts/chcat:106 ../scripts/chcat:183
  #, c-format
  msgid "Can not modify sensitivity levels using '+' on %s"
@@ -45126,7 +57394,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
  
  #: ../scripts/chcat:188 ../scripts/chcat:198
  #, c-format
-@@ -1279,101 +1295,2231 @@
+@@ -1276,191 +1271,2106 @@ msgstr "Brug %s -L -l bruger"
  
  #: ../scripts/chcat:333
  msgid "Use -- to end option list.  For example"
@@ -45143,765 +57411,815 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 -msgstr "chcat -l +Hemmeligt juser"
 +msgstr "chcat -l +ForretningsHemmeligt juser"
  
- #: ../scripts/chcat:399
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
 -msgstr "Flagfejl %s "
 +msgstr "Tilvalgsfejl %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "oversættelser understøttes ikke på maskiner som ikke har MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Boolesk"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "alle"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Tilpasset"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Filmærkning"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "SELinux Type kræves"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Fil\n"
-+"angivelse"
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "SELinux Type kræves"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"SELinux\n"
-+"filtype"
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Fejl ved sending af auditeringsmeddelelse.\n"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Fil\n"
-+"type"
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Du skal angive en rolle"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Brugertilknytning"
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Du skal angive en rolle"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Logind\n"
-+"navn"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Du skal angive en rolle"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"bruger"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Genererer gennemtvingnings-type fil: %s.te"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS-interval"
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Grænsefladen %s er ikke defineret"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Logind \"%s\" er påkrævet"
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Filkontekst for %s er ikke defineret"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Regelsætmodul"
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux-bruger %s er ikke defineret"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Modulnavn"
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Kompilerer policy"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Version"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Autentifiserer %s.\n"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Deaktivér revisionsspor"
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux Type kræves"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Aktivér revisionsspor"
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Kunne ikke tilføje SELinux-bruger %s"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Indlæs regelsætmodul"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Kan ikke ændre SELinux-bruger %s"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Kan ikke åbne %s: oversættelser understøttes ikke på maskiner som ikke "
+-#~ "har MLS"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Kan ikke fjerne SELinuxtbruger %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Kan ikke ændre SELinux-bruger %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Kan ikke læse policylager."
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+"Kris Thomsen\n"
-+"\n"
-+"Dansk-gruppen <dansk@dansk-gruppen.dk>\n"
-+"Mere info: http://www.dansk-gruppen.dk"
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux Type kræves"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Dette værktøj kan bruges til at generere et rammeregelsæt, til at begrænse "
-+"programmer og brugere der bruger SELinux.   \n"
-+"\n"
-+"Værktøjet genererer:\n"
-+"Håndhævningsfil (te)\n"
-+"Grænseflade-fil (if)\n"
-+"Filkontekst-fil (fc)\n"
-+"Skalskript (sh) - brugt til at tolke og installere regelsættet. "
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Vælg typen af program/bruger-rollen som skal begrænses"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Programmer</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Standard init-dæmon er tjenester som startes under opstart via init-"
-+"skripter. Kræver normalt et skript i /etc/rc.d/init.d"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Standard init-dæmon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS-systemdæmon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet-tjenester-dæmon er tjenester som startes af xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet-tjenester-dæmon (inetd)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Internetprogrammer/skript (CGI) CGI-skripter startes af webserveren (apache)"
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Internetprogram/skript (CGI)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Brugerprogram er ethvert program, som du vil begrænse som er startet af en "
-+"bruger"
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Brugerprogram"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Logindbrugere</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "Ændr en eksisterende logindbrugers post."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Eksisterende brugerroller"
++msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Denne bruger vil kun logge ind på en maskine via en terminal eller "
-+"fjernindlogning. Som standard vil denne bruger ikke have setuid, intet "
-+"netværk, ingen su, ingen sudo."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Minimal terminalbrugerrolle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Denne bruger kan logge ind på en maskine via X eller terminal.  Som standard "
-+"vil denne bruger ikke have setuid, intet netværk, ingen sudo, ingen su"
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Minimal X Windows-brugerrolle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Bruger med fuldt netværk, ingen setuid-programmer uden overgang, ingen sudo, "
-+"ingen su."
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Brugerrolle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Bruger med fuldt netværk, ingen setuid-programmer uden overgang, ingen su, "
-+"kan bruge sudo til Root-administrationsroller"
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Administratorbrugerrolle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Administratorbrugere</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Vælg Root-administratorbrugerrolle, hvis denne bruger skal bruges til at "
-+"administrere maskinen som administrator (root).  Denne bruger vil ikke være "
-+"istand til at logge direkte ind i systemet."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Root-administratorbrugerrolle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Indtast navn på program- eller brugerrolle som skal begrænses"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Navn"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Indtast fuld sti til kørbar som skal begrænses."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "oversættelser kan ikke indeholde mellemrum \"%s\" "
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Indtast unikt navn for den begrænsede program- eller brugerrolle."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Kørbar"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Ugyldigt niveau \"%s\" "
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init-skript"
-+
-+#: ../gui/polgen.glade:901
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s er allerede defineret i oversættelser"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Indtast fuld sti til init-skript som bruges til at starte det begrænsede "
-+"program."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Vælg brugerroller som du vil tilpasse"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s er ikke defineret i oversættelser"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Indlogningskortlægning for %s er allerede defineret"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Kunne ikke tilføje SELinux-bruger %s"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux-bruger %s er allerede defineret"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Port kræves"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s allerede defineret"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Grænsefladen %s er allerede defineret"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Fejl ved initiering af kapabiliteter, afbryder.\n"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Fejl ved indstilling af kapabiliteter, afbryder.\n"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "Vælg brugerrollerne som overføres til disse programdomæner."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Vælg ekstra domæner, som disse brugerroller vil overføres til"
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "Vælg programdomænerne som du vil have denne brugerrolle overført til."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Vælg brugerroller som vil overføres til dette domæne"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Vælg ekstra domæner som denne brugerrolle vil administrere"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Fejl ved indstilling af KEEPCAPS, afbryder\n"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Fejl ved fjernelse af kapabiliteter, afbryder\n"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Fejl ved fjernelse af SETUID kapabilitet, afbryder\n"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Vælg domænerne som du vil have denne bruger til at administrere."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Vælg ekstra roller for denne bruger"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Indtast netværksporte som denne program-/brugerrolle vil lytte på"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Fejl ved frigivelse af caps\n"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "oversættelser understøttes ikke på maskiner som ikke har MLS"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "SELinux Type kræves"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "SELinux Type kræves"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Fejl ved sending af auditeringsmeddelelse.\n"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP-porte</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "Tillad begrænset program-/brugerrolle at forbinde til enhver UDP-port"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Du skal angive en rolle"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Du skal angive en rolle"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Alle"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port 600-"
-+"1024"
 +msgstr ""
-+"Tillad program-/brugerrolle at kalde bindresvport med 0. Forbinder til port "
-+"600-1024"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Du skal angive en rolle"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Genererer gennemtvingnings-type fil: %s.te"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Grænsefladen %s er ikke defineret"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Indtast en liste over UDP-porte og intervaller, adskilt af komma, som "
-+"program-/brugerroller forbinder til. For eksempel: 612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Filkontekst for %s er ikke defineret"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Ikke reserverede porte (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux-bruger %s er ikke defineret"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Vælg porte"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "Tillad program-/brugerrolle at forbinde til alle UDP-porte > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Kompilerer policy"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Autentifiserer %s.\n"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP-porte</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Indtast netværksporte som program-/brugerrolle forbinder til"
-+
-+#: ../gui/polgen.glade:1958
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux Type kræves"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Kunne ikke tilføje SELinux-bruger %s"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Kan ikke ændre SELinux-bruger %s"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Kan ikke fjerne SELinuxtbruger %s"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Indtast en liste over TCP-porte eller intervaller af porte, adskilt af "
-+"komma, som program-/brugerrolle forbinder til. For eksempel: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2111
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Kan ikke ændre SELinux-bruger %s"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Kan ikke læse policylager."
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Indtast en liste over UDP-porte eller intervaller af porte, adskilt af "
-+"komma, som program-/brugerrolle forbinder til. For eksempel: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Vælg almindelige karaktertræk for programmer"
-+
-+#: ../gui/polgen.glade:2202
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux Type kræves"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Kræver værdi"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Kræver 2 eller flere argumenter"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Skriver syslog-meddelser\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "%s not defined"
+-#~ msgstr "%s er ikke defineret"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Opret/Manipulér midlertidige filer i /tmp"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s ikke gyldig for %s objekt\n"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Bruger PAM til godkendelse"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "interval understøttes ikke af ikke-MLS maskiner"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Bruger nnswitch eller getpw* kald"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Ugyldigxt værdi %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "For at indlæse denne nye policy-pakke in i kernen,\n"
+-#~ "skal du køre \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Bruger dbus"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Flagfejl: %s "
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Send revisionssmeddelser"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Interagerer med terminalen"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Sender e-post"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Vælg filer/mapper som programmet håndterer"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Tilføj filer/mapper som programmet skal kunne \"Skrive\" til. PID-filer, log-"
-+"filer, /var/lib-filer ..."
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Vælg boolesker som programmet bruger"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "Tilføj/fjern boolesker som bruges til denne begrænsede program/bruger"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Vælg mappe at generere regelsæt i"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Regelsætmappe"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Genererede regelsætfiler"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Dette værktøj vil generere følgende: \n"
-+"Type tvang(te), filkontekst(fc), grænseflade(if), skalskript(sh)\n"
-+"Kør skalskript som administrator (root) for at tolke/installere og "
-+"genetiketere filer/mapper.  \n"
-+"Brug semanage eller useradd til at tilknytte Linux-indlogningsbrugere til "
-+"brugerroller.\n"
-+"Put maskinen i tolerant-tilstand (setenforce 0). \n"
-+"Logind som brugeren og test denne brugerrolle.\n"
-+"Brug audit2allow -R til at generere ekstra regler for te-filen.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +msgstr ""
-+"Dette værktøj vil generere følgende: \n"
-+"Type tvang(te), filkontekst(fc), grænseflade(if), skalskript(sh)\n"
-+"\n"
-+"Kør skalskript som for at tolke/installere og genmærke filer/mapper.  \n"
-+"Put maskinen i tolerant-tilstand (setenforce 0). \n"
-+"Logind som brugeren og test denne brugerrolle.\n"
-+"Brug audit2allow -R til at generere ekstra regler for te-filen.\n"
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Tilføj Boolesker-dialog"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Navn på boolesk"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Rolle"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Eksisterende _bruger"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Program"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s skal være en mappe"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Du skal vælge en bruger"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Vælg kørbar-fil som skal begrænses."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Vælg init-skript-fil som skal begrænses."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Vælg fil(er) som det begrænsede program opretter eller skriver"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "Vælg mappe(r) som det begrænsede program ejer eller skriver i"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Vælg mappe til at generere regelsætfiler i"
++msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Type %s_t allerede defineret i nuværende regelsæt.\n"
-+"Vil du fortsætte?"
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Verificér navn"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Modul %s.pp allerede indlæst i nuværende regelsæt.\n"
-+"Vil du fortsætte?"
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Du skal indtaste et navn"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Du skal indtaste en kørbar"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Konfigurér SELinux"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Porte skal have numre eller intervaller af numre fra 1 til %d "
++msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Du skal indtaste et navn for din begrænsede handling/bruger"
++msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER-typer er ikke tilladt kørbare"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Kun DAEMON-programmer kan bruge et init-skript"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog skal være en boolesk-værdi "
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER-typer får automatisk en tmp-type"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Du skal indtaste den kørbare sti til din begrænsede handling"
++msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Indtast tvangsfil"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Grænseflade-fil"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Filkontekst-fil"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Indstillingsskript"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Netværksport"
++msgstr ""
 +
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux\n"
-+"porttype"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protokol"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"niveau"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Portnummer \"%s\" er ikke gyldigt.  0 < PORT_NUMMER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Listevisning"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Gruppevisning"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -45949,26 +58267,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Tjenestebeskyttelse til SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Deaktivér SELinux beskyttelse for acct-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Administrator"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Tillad alle tjenester at skrive kernefiler til /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Tillad alle tjenester muligheden til at bruge uallokerede tty'er"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -45977,128 +58295,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Brugerprivilegier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad administrator-SELinux-brugerkonto at køre filer i hjemmemappe eller /"
-+"tmp"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad gæste-SELinux-brugerkonto at køre filer i hjemmemappe eller /tmp"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Hukommelsesbeskyttelse"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Tillad Java-kørbarstak"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Montér"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Tillad mount at montere enhver fil"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Tillad mount at montere enhver mappe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Tillad mplayer-kørbarstak"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Tillad SSH at køre ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad stabs-SELinux-brugerkonto at køre filer i hjemmemappe eller /tmp"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad systemadministrator-SELinux-brugerkonto at køre filer i hjemmemappe "
-+"eller /tmp"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Tillad ubegrænset-SELinux-brugerkonto at køre filer i hjemmemappe eller /tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Netværkskonfiguration"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Tillad umærkede pakker at flyde på netværket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad bruger-SELinux-brugerkonto at køre filer i hjemmemappe eller /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Tillad ubegrænset at dyntrans til unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Databaser"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Tillad bruger at forbinde til MySQL-sokkel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Tillad bruger at forbinde til Postgre-sokkel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "X-server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Tillad klienter at skrive til X-delt hukommelse"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillad xgæste-SELinux-brugerkonto at køre filer i hjemmemappe eller /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Tillad tjenester at køre med NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -46106,854 +58415,836 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Internetprogrammer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Overfør stab-SELinux-bruger til webbrowserdomæne"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Overfør systemadministrator-SELinux-bruger til webbrowserdomæne"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Overfør bruger-SELinux-bruger til webbrowserdomæne"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Overfør xgæste-SELinux-bruger til webbrowserdomæne"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Tillad stabs webbrowsere at skrive til hjemmemapper"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Deaktivér SELinux-beskyttelse for amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Deaktivér SELinux-beskyttelse for amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for apmd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for arpwatch-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for auditd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for automount-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Deaktivér SELinux-beskyttelse for avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for bluetooth-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for canna-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cardmgr-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Deaktivér SELinux-beskyttelse for Cluster-server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Tillad cdrecord at læse forskelligt indhold. nfs, samba, flytbare enheder, "
-+"bruger midlertidige og ikke betroet indhold-filer"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ciped-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for clamd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Deaktivér SELinux-beskyttelse for clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Deaktivér SELinux-beskyttelse for clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for comsat-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for courier-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cpucontrol-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cpuspeed-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for crond-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Udskrift"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Deaktivér SELinux-beskyttelse for cupsd-backend-server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cupsd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Deaktivér SELinux-beskyttelse for cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cvs-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cyrus-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dbskkd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dbusd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Deaktivér SELinux-beskyttelse for dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Deaktivér SELinux-beskyttelse for dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Deaktivér SELinux-beskyttelse for dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ddt-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for devfsd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dhcpc-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dhcp-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dictd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Tillad sysadm_t at starte tjenester direkte"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Deaktivér SELinux-beskyttelse for Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Spil"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Deaktivér SELinux-beskyttelse for spil"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Deaktivér SELinux-beskyttelse for webbrowsere"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Deaktivér SELinux-beskyttelse for Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for distccd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dmesg-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dnsmasq-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for dovecot-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for etropyd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Deaktivér SELinux-beskyttelse for fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for fingerd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for freshclam-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for fsdaemon-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for gpm-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for gss-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for Hal-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Kompatibilitet"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Gennemgå ikke ting, som vi ved er i stykker, men som ikke er "
-+"sikkerhedsfarlige"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for hostname-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for hotplug-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for howl-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for cups hplip-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Deaktivér SELinux-beskyttelse for httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Deaktivér SELinux-beskyttelse for http-suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for hwclock-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for i18n-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for imazesrv-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Deaktivér SELinux-beskyttelse for inetd-undertjenester"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for inetd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for innd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for iptables-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ircd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for irqbalance-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for iscsi-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for jabberd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for kadmind-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for klogd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for krb5kdc-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Deaktivér SELinux-beskyttelse for ktalk-tjenester"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for kudzu-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for locate-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for lpd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for lrrd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for lvm-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Deaktivér SELinux-beskyttelse for mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Tillad Evolution og Thunderbird at læse brugerfiler"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for mdadm-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for monopd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Tillad Mozilla-browseren at læse brugerfiler"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for mrtg-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for mysqld-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nagios-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Navnetjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for named-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nessusd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Deaktivér SELinux-beskyttelse for NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nfsd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nmbd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nrpe-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nscd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for nst-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ntpd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Deaktivér SELinux-beskyttelse for oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Deaktivér SELinux-beskyttelse for oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for openvpn-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for PAM-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Deaktivér SELinux-beskyttelse for pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for perdition-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for portmap-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for portslave-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Deaktivér SELinux-beskyttelse for postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for postgresql-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Tillad pppd at blive kørt for en almindelig bruger"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Deaktivér SELinux-beskyttelse for pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for prelink-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for privoxy-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ptal-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for pxe-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Deaktivér SELinux-beskyttelse for pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for quota-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for radiusd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for radvd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Deaktivér SELinux-beskyttelse for rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Deaktivér SELinux-beskyttelse for readahead"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Tillad programmer at læse filer i ikke-standard placeringer (standar_d)"
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Deaktivér SELinux-beskyttelse for restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for rhgb-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Deaktivér SELinux-beskyttelse for ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Deaktivér SELinux-beskyttelse for ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for rlogind-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for rpcd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Deaktivér SELinux-beskyttelse for rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for rsync-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Tillad ssh at køre fra inetd istedet for som en tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Tillad Samba at dele NFS-mapper"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL-godkendelsesserver"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Tillad SASL-godkendelsesserver at læse /etc/shadow"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Tillad X Windows-server at tilknytte en hukommelsesregion som både kørbar og "
-+"skrivbar"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for saslauthd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for scannerdaemon-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Tillad ikke overførsler til sysadm_t, sudo and su berørt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Tillad ikke nogen processer at indlæse kernemoduler"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Tillad ikke nogen processer at ændre kerne-SELinux-regelsæt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for sendmail-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Deaktivér SELinux-beskyttelse for setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for setroubleshoot-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for slapd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for slrnpull-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for smbd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for snmpd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for snort-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for soundd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for sound-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Beskyttelse mod spam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for spamd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Tillad spamd adgang til hjemmemapper"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Tillad Spam Assassin-tjeneste netværksadgang"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for speedmgmt-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Tillad squid-tjeneste at forbinde til netværket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for squid-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ssh-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Tillad ssh-indlogninger som sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Tillad stabsbrugere at søge i systemadministratorens hjemmemappe og "
-+"læsefiler (f.eks. ~/.bashrc)"
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Universel SSL-tunnel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for stunnel-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Tillad stunnel-tjeneste at køre for sig selv, udenfor xinetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for swat-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for sxid-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for syslogd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Deaktivér SELinux-beskyttelse for system cron-job"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for tcp-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for telnet-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for tftpd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for transproxy-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for udev-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for uml-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Tillad xinetd at køre ubegrænset, inklusiv enhver tjeneste den starter som "
-+"ikke har en domæneoverførsel eksplicit defineret"
 +
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Tillad rc-skripter at køre ubegrænset, inklusiv enhver tjeneste startet af "
-+"et rc-skript som ikke har en domæneoverførsel eksplicit defineret"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Tillad rpm at køre ubegrænset"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Tillad priviligerede værktøjer, som f.eks. hotplug og insmod at køre "
-+"ubegrænset"
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for updfstab-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for uptimed-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Tillad bruger at nå systemadministrator via su, sudo eller userhelper. "
-+"Normalt kan kun staben gøre sådan"
 +
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Tillad brugere at køre mount-kommandoen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "Tillad normale brugere direkte museadgang (kun tillad X-serveren)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Tillad brugere at køre dmesg-kommandoen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Tillad brugere at håndtere netværksgrænseflader (kræver også USERCTL=true)"
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Tillad normal bruger at køre ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Tillad bruger at læse/skrive noextattrfile (FAT, cd-rom, floppy)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Tillad brugere at læse/skrive til USB-enheder"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
@@ -46961,121 +59252,110 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Tillad brugere at køre TCP-servere (forbinde til porte og acceptér "
-+"forbindelse fra det samme domæne og brugere udenfor)  at deaktivere dette "
-+"tvinger FTP passivtilstand og kan ændre andre protokoller"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Tillad bruger at føre statisk over tty-filer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for uupcd-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for vmware-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for watchdog-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for windbind-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for xdm-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Tillad xdm-indlogninger som sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for xen-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Tillad xen at læse/skrive til fysiske diskenheder"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for xfs-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Deaktivér SELinux-beskyttelse for xen-kontrol"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ypbind-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for NIS-adgangskodetjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for ypserv-tjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Deaktivér SELinux-beskyttelse for NIS-overførselstjeneste"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Tillad SELinuc-webadministratorbrugeren at håndtere upriviligerede brugeres "
-+"hjemmemapper"
 +
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Tillad SELinux-webadministratorbrugeren at læse upriviligerede brugeres "
-+"hjemmemapper"
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Er du sikker på at du vil slette %s \"%s\"?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Slet %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Tilføj %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Ændr %s"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Tolerant"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Gennemtving"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Deaktiveret"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Status"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -47083,9 +59363,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"At ændre regelsættypen vil resultere i en ommærkning af hele filsystemet ved "
-+"næste opstart. Ommærkning tager lang tid, alt efter størrelsen på "
-+"filsystemet.  Vil du fortsætte?"
 +
 +#: ../gui/statusPage.py:147
 +msgid ""
@@ -47096,12 +59373,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"At ændre til SELinux deaktiveret kræver en genstart.  Dette er ikke "
-+"anbefalet.  Hvis du senere vælger at aktivere SELinux igen, vil systemet "
-+"kræver en ommærkning.  Hvis du bare ønsker at se om SELinux er skyld i et "
-+"problem på dit system, kan du gå i tolerant-tilstand, som kun vil logge fejl "
-+"og ikke tvinge SELinux-regelsæt  Tolerant-tilstand kræver ikke en "
-+"genstart    Vil du fortsætte?"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -47109,54 +59380,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"At ændre til SELinux aktiveret vil resultere i en ommærkning af hele "
-+"filsystemet ved næste opstart. Ommærkning tager lang tid, alt efter "
-+"størrelsen på filsystemet.  Vil du fortsætte?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Ophavsret (c) 2006 Red Hat, Inc.\n"
-+"Ophavsret (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Tilføj SELinux-indlogningstilknytning"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Tilføj SELinux-netværksporte"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux-type"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"niveau"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Filangivelse"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Filtype"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -47167,334 +59424,271 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"alle filer\n"
-+"standardfil\n"
-+"mappekarakterenhed\n"
-+"blokenhed\n"
-+"sokkel\n"
-+"symbolsk henvisning\n"
-+"navngivet kanal\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Tilføj SELinux-bruger"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Administration af SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Tilføj"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Indstillinger"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Slet"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Vælg håndteringsobjekt"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Vælg:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Tvangstilstand som systemstandard"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Deaktiveret\n"
-+"Tolerant\n"
-+"Gennemtving\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Nuværende tvangstilstand"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Regelsættype som systemstandard: "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Vælg hvis du vil ommærke hele filsystemet ved næste genstart.  Ommærkning "
-+"kan tage meget lang tid, alt efter størrelsen på systemet.  Hvis du ændrer "
-+"regelsættyper eller går fra deaktiveret til gennemtving, er en ommærkning "
-+"påkrævet."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Ommærk ved næste genstart."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "etiket37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Sæt boolesk-indstilling til systemstandard"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Skift mellem Tilpasset og Alle boolesk"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Kør boolesk-nedlukningsguide"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Luk ned..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filter"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "etiket50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Tilføj filkontekst"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Ændr filkontekst"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Slet filkontekst"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Skift mellem alle og tilpasset filkontekst"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "etiket38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Tilføj SELinux-brugertilknytning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Ændr SELinux-brugertilknytning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Slet SELinux-brugertilknytning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "etiket39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Tilføj bruger"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Ændr bruger"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Slet bruger"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "etiket41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Tilføj oversættelse"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Ændr oversættelse"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Slet oversættelse"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "etiket40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Tilføj netværksport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Redigér netværksport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Slet netværksport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Skift mellem Tilpasset og Alle porte"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "etiket42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Generér nyt regelsætmodul"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Kan ikke indlæse regelsætlager"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Fjern indlæsbart regelsætmodul"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Aktivér/deaktivér ekstra revisionsregler, som ikke normalt er rapporteret i "
-+"logfilerne."
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "etiket44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Ændr procestilstand til tolerant."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Ændr procestilstand til gennemtving"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Procesdomæne"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "etiket159"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux-bruger \"%s\" er påkrævet"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Følsomhedsniveau"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "oversættelser understøttes ikke på maskiner som ikke har MLS"
- #~ msgid "Requires value"
- #~ msgstr "Kræver værdi"
-@@ -1403,7 +3549,7 @@
- #~ "semodule -i %s.pp\n"
- #~ "\n"
- #~ msgstr ""
--#~ "For at indlæse denne nye policy-pakke in i kernen,\n"
-+#~ "For at indlæse denne nye regelsætpakke in i kernen,\n"
- #~ "skal du køre \n"
- #~ "\n"
- #~ "semodule -i %s.pp\n"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils-2.0.85/po/de.po
---- nsapolicycoreutils/po/de.po        2011-02-17 15:11:25.933721523 -0500
-+++ policycoreutils-2.0.85/po/de.po    2011-02-18 16:03:41.347975597 -0500
-@@ -1,28 +1,50 @@
++msgstr ""
+diff --git a/policycoreutils/po/de.po b/policycoreutils/po/de.po
+index 617cac8..5d927f5 100644
+--- a/policycoreutils/po/de.po
++++ b/policycoreutils/po/de.po
+@@ -1,29 +1,30 @@
 -# translation of policycoreutils.HEAD.de.po to German
-+# translation of policycoreutils.HEAD.po to
-+# translation of policycoreutils.HEAD.de.po to
- # German translation of policycoreutils.
+-# German translation of policycoreutils.
 -# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
-+# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
- #
+-#
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
  #
++# Translators:
++# Daniela Kugelmann <dkugelma@redhat.com >, 2008.
++# Fabian Affolter <fab@fedoraproject.org>, 2008, 2009.
++# Hedda Peters <hpeters@redhat.com>, 2009.
  # Holger Wansing <linux@wansing-online.de>, 2006.
- # Timo Trinks <ttrinks@redhat.com>, 2006, 2007.
+-# Timo Trinks <ttrinks@redhat.com>, 2006, 2007.
++# Michael Münch <micm@fedoraproject.org.org>, 2009.
  # Michael Schönitzer <michael@schoenitzer.de>, 2007.
 -# Fabian Affolter <fab@fedoraproject.org>, 2008.
-+# Fabian Affolter <fab@fedoraproject.org>, 2008,2009.
- # Timo Trinks <ttrinks@redhat.com>, 2008.
- # Daniela Kugelmann <dkugelma@redhat.com >, 2008.
-+# Michael Münch <micm@fedoraproject.org.org>, 2009.
-+# Hedda Peters <hpeters@redhat.com>, 2009.
+-# Timo Trinks <ttrinks@redhat.com>, 2008.
+-# Daniela Kugelmann <dkugelma@redhat.com >, 2008.
++# Roman Spirgi <bigant@fedoraproject.org>, 2012.
 +# sknirT omiT <moc.tahder@sknirtt>, 2010.
++# Timo Trinks <ttrinks@redhat.com>, 2006, 2007, 2008.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD.de\n"
+-"Project-Id-Version: policycoreutils.HEAD.de\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2008-09-11 10:30+1000\n"
 -"Last-Translator: Daniela Kugelmann <dkugelma@redhat.com >\n"
 -"Language-Team: German <i18@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 11:31+1000\n"
-+"Last-Translator: \n"
-+"Language-Team:  <en@li.org>\n"
-+"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-13 08:22+0000\n"
++"Last-Translator: Roman Spirgi <bigant@fedoraproject.org>\n"
++"Language-Team: German <trans-de@lists.fedoraproject.org>\n"
+ "Language: de\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
 -"X-Generator: KBabel 1.11.4\n"
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
- "X-Poedit-Language: German\n"
-+"X-Generator: KBabel 1.11.4\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux in einer grafischen Einstellung konfigurieren"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux-Management"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux Richtlinien-Module generieren"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Tool zur Erstellung von SELinux-Richtlinien"
+-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+-"X-Poedit-Language: German\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -77,9 +99,7 @@
+@@ -78,9 +79,7 @@ msgstr "Kein Kontext in Datei %s\n"
  #: ../run_init/run_init.c:361
  #, c-format
  msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
@@ -47505,972 +59699,384 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
  
  #: ../run_init/run_init.c:380
  #, c-format
-@@ -97,7 +117,7 @@
+@@ -98,7 +97,7 @@ msgstr "******************** WICHTIG ***********************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
 -msgstr "Um dieses Richtlinien-Paket zu aktivieren, führen sie folgendes aus:"
 +msgstr "Um dieses Richtlinien-Paket zu aktivieren, führen Sie folgendes aus:"
  
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
-@@ -118,9 +138,8 @@
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+@@ -123,9 +122,8 @@ msgid "Could not establish semanage connection"
  msgstr "Konnte semanage-Verbindung nicht herstellen"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
 -msgstr "MLS-Bereich für %s konnte nicht gesetzt werden"
 +msgstr "MLS-Status konnte nicht auf Aktivierung überprüft werden"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -137,7 +156,8 @@
- msgid "Level"
- msgstr "Level"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Übersetzung"
-@@ -167,7 +187,7 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -133,7 +131,7 @@ msgstr "Noch nicht implementiert"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "Semanage-Transaktion bereits im Gang"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
-@@ -179,7 +199,7 @@
+@@ -145,53 +143,50 @@ msgstr "semanage-Transaktion konnte nicht gestartet werden"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "Semanage-Transaktion nicht im Gang"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
-@@ -189,749 +209,756 @@
- msgid "Permissive Types"
- msgstr "Permissive Typen"
+ msgstr "Konnte SELinux-Module nicht auflisten"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
- "Konnte permissive Domain %s nicht setzen (Modul-Installation fehlgeschlagen)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "Konnte permissive Domain %s nicht entfernen (Entfernen fehlgeschlagen)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Konnte keinen Schlüssel für %s erstellen"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Konnte nicht überprüfen ob die Login-Zuweisung für %s zugewiesen ist"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Login-Zuordung für %s ist bereits festgelegt"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux-Gruppe %s existiert nicht"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux-Benutzer %s existiert nicht"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Login-Zuweisung für %s konnte nicht erstellt werden"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Bezeichnung für %s konnte nicht gesetzt werden"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Modul-Name"
++msgstr "Modulname"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "MLS-Bereich für %s konnte nicht gesetzt werden"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Version"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "SELinux-Benutzer für %s konnte nicht gesetzt werden"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Deaktiviert"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Login-Zuweisung für %s konnte nicht hinzugefügt werden"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux-Benutzerzuordnung hinzufügen"
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "Konnte permissive Domain %s nicht entfernen (Entfernen fehlgeschlagen)"
++msgstr "Konnte Modul %s nicht deaktivieren (Entfernen fehlgeschlagen)"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Benötigt seuser oder serange"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Konnte permissive Domain %s nicht entfernen (Entfernen fehlgeschlagen)"
++msgstr "Konnte Modul %s nicht aktivieren (Entfernen fehlgeschlagen)"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Login-Zuordnung für %s ist nicht definiert"
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "Konnte permissive Domain %s nicht entfernen (Entfernen fehlgeschlagen)"
++msgstr "Konnte Modul %s nicht entfernen (Entfernen fehlgeschlagen)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Konnte seuser für %s nicht abfragen"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "Dontaudit benötigt entweder »on« oder »off«"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Konnte Login-Zuweisung für %s nicht ändern"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissive Typen"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Login-Zuordnung für %s ist in der Richtlinie festgelegt und kann nicht "
- "entfernt werden"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissive Typen"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Konnte Login-Zuweisung für %s nicht löschen"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -293,17 +288,22 @@ msgid "Could not list login mappings"
  msgstr "Konnte Login-Zuweisungen nicht anzeigen"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr "Benutzername:"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr "SELinux-User"
 +msgstr "SELinux-Benutzer"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
 -msgstr "MLS/MCS Bereich"
 +msgstr "MLS/MCS-Bereich"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr "Sie müssen mindestens eine Rolle für %s hinzufügen"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Konnte nicht überprüfen ob SELinux-Benutzer %s definiert ist"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux-Benutzer %s ist bereits angelegt"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Konnte SELinux-Benutzer für %s nicht erstellen"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Konnte Funktion %s für %s nicht hinzufügen"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Konnte MLS-Level für %s nicht setzen"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Konnte Präfix %s für %s nicht hinzufügen"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Konnte Schlüssel für %s nicht extrahieren"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Konnte SELinux-Benutzer %s nicht hinzufügen"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Benötigt Präfix, Funktionen, Level oder Bereich"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Benötigt Präfix oder Funktionen"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux-Benutzer %s ist nicht definiert"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Konnte Benutzer für %s nicht abfragen"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Konnte SELinux-Benutzer %s nicht ändern"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "SELinux-Benutzer %s ist in der Richtlinie definiert und kann nicht entfernt "
- "werden"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Konnte SELinux-Benutzer %s nicht löschen"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Konnte SELinux-Benutzer nicht auflisten"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Konnte Funktionen für Benutzer %s nicht auflisten"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Kennzeichnung"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Präfix"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS-Stufe"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -413,6 +413,7 @@ msgid "MCS Range"
  msgstr "MCS-Bereich"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr "SELinux-Rollen"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Protokoll UDP oder TCP wird benötigt"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Port wird benötigt"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Konnte Schlüssel für %s/%s nicht erstellen"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Typ wird benötigt"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Konnte nicht prüfen, ob Port %s/%s definiert ist"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s ist bereits definiert"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Konnte Port für %s/%s nicht erstellen"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Konnte Kontext für %s/%s nicht erstellen"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Konnte Benutzer in Port-Kontext für %s/%s nicht setzen"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Konnte Funktion in Port-Kontext für %s/%s nicht setzen"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Konnte Typ in Port-Kontext für %s/%s nicht setzen"
+@@ -426,7 +427,7 @@ msgstr "Port wird benötigt"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Konnte MLS-Felder in Port-Kontext für %s/%s nicht setzen"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Konnte Port-Kontext für %s/%s nicht setzen"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Konnte Port %s/%s nicht hinzufügen"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Benötigt setype oder serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Benötigt setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s ist nicht definiert"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Konnte Port %s/%s nicht abfragen"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Konnte Port %s/%s nicht ändern"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Konnte Ports nicht auflisten"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "Konnte Port %s nicht löschen"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
- "Port %s/%s ist in der Richtlinie festgelegt und kann nicht entfernt werden"
+ #: ../semanage/seobject.py:975
+ msgid "Invalid Port"
+-msgstr ""
++msgstr "Ungültiger Port"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Konnte Port %s/%s nicht löschen"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Konnte Ports nicht auflisten"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux Port-Typ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -544,7 +545,7 @@ msgstr "SELinux Port-Typ"
  msgid "Proto"
  msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr "Port-Nummer"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr "Node-Adresse wird benötigt"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr "Node-Netzmaske wird benötigt"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr "Unbekanntes oder fehlendes Protokoll"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux-Typ wird benötigt"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Konnte Schlüssel für %s nicht kreieren"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr "Konnte nicht prüfen, ob addr %s definiert ist"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr "Addr %s ist bereits definiert"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr "Konnte keine addr für %s erstellen"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Konnte keinen Kontext für %s kreieren"
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr "Maske für %s konnte nicht gesetzt werden"
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr "Konnte Benutzer in Addr-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr "Konnte Aufgabe in addr-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr "Konnte Typ in addr-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr "Konnte die mls-Felder in addr-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr "Konnte addr-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr "Konnte addr %s nicht hinzufügen"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr "Addr %s ist nicht definiert"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr "Konnte addr %s nicht abfragen"
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr "Konnte addr %s nicht ändern"
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
- "Addr %s ist in der Richtlinie festgelegt und kann nicht entfernt werden"
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
+@@ -648,9 +649,8 @@ msgid "Could not delete addr %s"
  msgstr "Konnte addr %s nicht löschen"
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr "Konnte addrs nicht auflisten"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Konnte nicht überprüfen, ob die Schnittstelle %s definiert ist"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Schnittstelle %s ist bereits definiert"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Konnte keine Schnittstelle für %s kreieren"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Konnte Login-Zuweisung für %s nicht löschen"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1394
+ msgid "Could not list addrs"
+@@ -670,27 +670,27 @@ msgstr "Konnte keine Schnittstelle für %s kreieren"
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
 -msgstr "Konnte Benutzer in Schnittstellen-Kontext für %s nicht setzen"
 +msgstr "Konnte Benutzer in Schnittstellenkontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
 -msgstr "Konnte Aufgabe in Schnittstellen-Kontext für %s nicht setzen"
 +msgstr "Konnte Aufgabe in Schnittstellenkontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
 -msgstr "Konnte Typ in Schnittstellen-Kontext für %s nicht setzen"
 +msgstr "Konnte Typ in Schnittstellenkontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
 -msgstr "Konnte die mls-Felder in Schnittstellen-Kontext für %s nicht setzen"
 +msgstr "Konnte die mls-Felder in Schnittstellenkontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
 -msgstr "Konnte Schnittstellen-Kontext für %s nicht setzen"
 +msgstr "Konnte Schnittstellenkontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
- msgid "Could not set message context for %s"
- msgstr "Konnte Nachricht-Kontext für %s nicht setzen"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Konnte Schnittstelle %s nicht hinzufügen"
+@@ -730,9 +730,8 @@ msgid "Could not delete interface %s"
+ msgstr "Konnte Schnittstelle %s nicht löschen"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Schnittstelle %s ist nicht definiert"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Konnte Schnittstelle %s nicht löschen"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Konnte Schnittstelle %s nicht abfragen"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -747,9 +746,9 @@ msgid "Context"
+ msgstr "Inhalt"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Konnte Schnittstelle %s nicht modifizieren"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Datei-Kontext für %s ist bereits definiert"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
+@@ -757,24 +756,24 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
- "Schnittstelle %s ist in der Richtlinie festgelegt und kann nicht entfernt "
- "werden"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Konnte Schnittstelle %s nicht löschen"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Konnte Schnittstellen nicht auflisten"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux-Schnittstelle"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Inhalt"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux-Benutzer %s existiert nicht"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
 -msgstr "Konnte Benutzer in Datei-Kontext für %s nicht setzen"
 +msgstr "Konnte Benutzer in Dateikontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
 -msgstr "Konnte Aufgabe in Datei-Kontext für %s nicht setzen"
 +msgstr "Konnte Aufgabe in Dateikontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
 -msgstr "Konnte die mls-Felder in Datei-Kontext für %s nicht setzen"
 +msgstr "Konnte die mls-Felder in Dateikontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr "Ungültige Dateiangabe"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+@@ -795,28 +794,28 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
 -msgstr "Konnte nicht überprüfen, ob Datei-Kontext für %s definiert ist"
 +msgstr "Konnte nicht überprüfen, ob Dateikontext für %s definiert ist"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "Datei-Kontext für %s ist bereits definiert"
-+msgstr "Dateikontext für %s ist bereits definiert"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht kreieren"
 +msgstr "Konnte Dateikontext für %s nicht kreieren"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
 -msgstr "Konnte Typ in Datei-Kontext für %s nicht setzen"
 +msgstr "Konnte Typ in Dateikontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht setzen"
 +msgstr "Konnte Dateikontext für %s nicht setzen"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht hinzufügen"
 +msgstr "Konnte Dateikontext für %s nicht hinzufügen"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr "Benötigt setype, serange oder seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+@@ -825,26 +824,26 @@ msgstr "Benötigt setype, serange oder seuser"
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
 -msgstr "Datei-Kontext für %s ist nicht definiert"
 +msgstr "Dateikontext für %s ist nicht definiert"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht abfragen"
 +msgstr "Konnte Dateikontext für %s nicht abfragen"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht erneuern"
 +msgstr "Konnte Dateikontext für %s nicht erneuern"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
 -msgstr "Konnte Datei-Kontexte nicht auflisten"
 +msgstr "Konnte Dateikontexte nicht auflisten"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
 -msgstr "Konnte Datei-Kontext für %s nicht löschen"
 +msgstr "Konnte Dateikontext für %s nicht löschen"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Der Kontext für Datei %s ist in der Richtlinie festgelegt und kann nicht "
- "entfernt werden"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+@@ -856,15 +855,15 @@ msgstr ""
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
 -msgstr "Konnte Datei-Kontext für %s nicht löschen"
 +msgstr "Konnte Dateikontext für %s nicht löschen"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
 -msgstr "Konnte Datei-Kontexte nicht auflisten"
 +msgstr "Konnte Dateikontexte nicht auflisten"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
 -msgstr "Konnte lokale Datei-Kontexte nicht auflisten"
 +msgstr "Konnte lokale Dateikontexte nicht auflisten"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr "SELinux-fcontext"
+@@ -881,27 +880,26 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "Typ"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux-fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
 -msgstr "Konnte nicht überprüfen, ob Boolesch %s definiert ist"
 +msgstr "Konnte nicht überprüfen, ob Boolesche Variable %s definiert ist"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
 -msgstr "Boolescher Wert %s ist nicht definiert"
 +msgstr "Boolesche Variable %s ist nicht definiert"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
 -msgstr "Konnte den Datei-Kontext %s nicht abfragen"
 +msgstr "Konnte den Dateikontext %s nicht abfragen"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
+ #: ../semanage/seobject.py:1999
  #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "Sie müssen einen der folgenden Werte angeben: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
+@@ -911,12 +909,12 @@ msgstr "Sie müssen einen der folgenden Werte angeben: %s"
+ #: ../semanage/seobject.py:2004
  #, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr "Konnte Boolesch %s nicht auf aktiv setzen"
 +msgstr "Konnte Boolesche Variable %s nicht auf aktiv setzen"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
 -msgstr "Konnte Boolesch %s nicht erneuern"
 +msgstr "Konnte Boolesche Variable %s nicht ändern"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "Ungültiges Format %s: Auszeichnung %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+@@ -927,17 +925,17 @@ msgstr "Ungültiges Format %s: Auszeichnung %s"
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
  msgstr ""
@@ -48479,105 +60085,83 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 +"Boolesche Variable %s ist in der Richtlinie festgelegt und kann nicht "
 +"gelöscht werden"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
 -msgstr "Konnte Boolesch %s nicht löschen"
 +msgstr "Konnte Boolesche Variable %s nicht löschen"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
 -msgstr "Konnte Boolesche Werte nicht auflisten"
 +msgstr "Konnte Boolesche Variablen nicht auflisten"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr "unbekannt"
+@@ -953,18 +951,18 @@ msgstr "ein"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "aus"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ein"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr "SELinux Wahrheitswert"
 +msgstr "SELinux Boolesche Variablen"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+ msgstr "Status"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Standard"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
  msgstr "Beschreibung"
  
-@@ -954,7 +981,7 @@
- #: ../newrole/newrole.c:436
+@@ -987,7 +985,7 @@ msgstr "newrole:  %s:  Fehler in Zeile %lu.\n"
+ #: ../newrole/newrole.c:439
  #, c-format
  msgid "cannot find valid entry in the passwd file.\n"
 -msgstr "Kann keinen gültigen Eintrag in der \"passwd\"-Datei finden.\n"
 +msgstr "Kann keinen gültigen Eintrag in der passwd-Datei finden.\n"
  
- #: ../newrole/newrole.c:447
+ #: ../newrole/newrole.c:450
  #, c-format
-@@ -972,14 +999,14 @@
- msgstr "Kann Umgebung nicht löschen\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Fehler bei der Funktions-Initialisierung, Abbruch.\n"
-+msgstr "Fehler bei der Funktionsinitialisierung, Abbruch.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "Fehler bei der Leistungsinitialisierung, Abbruch.\n"
-+msgstr "Fehler bei der Leistungsinitialisierung, Abbruch\n"
- #: ../newrole/newrole.c:570
- #, c-format
-@@ -999,7 +1026,7 @@
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
+@@ -1012,7 +1010,7 @@ msgstr "Fehler beim Ändern der Benutzerkennung (uid), Abbruch.\n"
+ #: ../newrole/newrole.c:612
  #, c-format
  msgid "Error resetting KEEPCAPS, aborting\n"
 -msgstr "Fehler beim zurücksetzen von KEEPCAPS, Abbruch\n"
 +msgstr "Fehler beim Zurücksetzen von KEEPCAPS, Abbruch\n"
  
- #: ../newrole/newrole.c:597
+ #: ../newrole/newrole.c:635
  #, c-format
-@@ -1053,7 +1080,7 @@
- #: ../newrole/newrole.c:791
+@@ -1056,7 +1054,7 @@ msgstr ""
+ #: ../newrole/newrole.c:725
  #, c-format
  msgid "%s!  Could not set new context for %s\n"
 -msgstr "%s! Konnte neuen Kontext für »%s« nicht setzen.\n"
 +msgstr "%s! Konnte neuen Kontext für %s nicht setzen.\n"
  
- #: ../newrole/newrole.c:838
+ #: ../newrole/newrole.c:772
  #, c-format
-@@ -1068,24 +1095,22 @@
- #: ../newrole/newrole.c:901
+@@ -1071,24 +1069,22 @@ msgstr "Warnung! Kontext für %s nicht wiederherstellbar\n"
+ #: ../newrole/newrole.c:835
  #, c-format
  msgid "Error: multiple roles specified\n"
 -msgstr "Fehler: Mehrere Funktionen festgelegt\n"
 +msgstr "Fehler: mehrere Funktionen angegeben\n"
  
- #: ../newrole/newrole.c:909
+ #: ../newrole/newrole.c:843
  #, c-format
  msgid "Error: multiple types specified\n"
 -msgstr "Fehler: mehrere Typen festgelegt\n"
 +msgstr "Fehler: mehrere Typen angegeben\n"
  
- #: ../newrole/newrole.c:916
+ #: ../newrole/newrole.c:850
  #, c-format
  msgid "Sorry, -l may be used with SELinux MLS support.\n"
 -msgstr ""
@@ -48585,65 +60169,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -"werden.\n"
 +msgstr "Sorry, -l darf nur mit SELinux-MLS-Unterstützung benutzt werden.\n"
  
- #: ../newrole/newrole.c:921
+ #: ../newrole/newrole.c:855
  #, c-format
  msgid "Error: multiple levels specified\n"
 -msgstr "Fehler: mehrere Ebenen festgelegt\n"
 +msgstr "Fehler: mehrere Stufen angegeben\n"
  
- #: ../newrole/newrole.c:931
+ #: ../newrole/newrole.c:865
  #, c-format
-@@ -1096,17 +1121,17 @@
- #: ../newrole/newrole.c:957
+@@ -1099,17 +1095,17 @@ msgstr ""
+ #: ../newrole/newrole.c:891
  #, c-format
  msgid "Couldn't get default type.\n"
 -msgstr "Konnte Standardtyp nicht feststellen.\n"
 +msgstr "Standardtyp konnte nicht abgerufen werden.\n"
  
- #: ../newrole/newrole.c:967
+ #: ../newrole/newrole.c:901
  #, c-format
  msgid "failed to get new context.\n"
 -msgstr "Erwerb des neuen Kontexts fehlgeschlagen.\n"
 +msgstr "Erhalt des neuen Kontexts fehlgeschlagen.\n"
  
- #: ../newrole/newrole.c:974
+ #: ../newrole/newrole.c:908
  #, c-format
  msgid "failed to set new role %s\n"
 -msgstr "Setzen einer neuen Funktion %s fehlgeschlagen\n"
 +msgstr "Setzen der neuen Rolle %s fehlgeschlagen\n"
  
- #: ../newrole/newrole.c:981
+ #: ../newrole/newrole.c:915
  #, c-format
-@@ -1116,7 +1141,7 @@
- #: ../newrole/newrole.c:991
+@@ -1119,7 +1115,7 @@ msgstr "Setzen des neuen Typs %s fehlgeschlagen\n"
+ #: ../newrole/newrole.c:925
  #, c-format
  msgid "failed to build new range with level %s\n"
 -msgstr "Erstellung von neuem Bereich mit Level %s fehlgeschlagen\n"
 +msgstr "Erstellung von neuem Bereich mit Stufe %s fehlgeschlagen\n"
  
- #: ../newrole/newrole.c:996
+ #: ../newrole/newrole.c:930
  #, c-format
-@@ -1126,8 +1151,7 @@
- #: ../newrole/newrole.c:1004
+@@ -1129,8 +1125,7 @@ msgstr "Setzen von neuem Bereich %s fehlgeschlagen\n"
+ #: ../newrole/newrole.c:938
  #, c-format
  msgid "failed to convert new context to string\n"
 -msgstr ""
 -"Konvertieren des neuen Kontexts in Zeichenfolge (String) fehlgeschlagen\n"
 +msgstr "Konvertierung des neuen Kontexts in String fehlgeschlagen\n"
  
- #: ../newrole/newrole.c:1009
+ #: ../newrole/newrole.c:943
  #, c-format
-@@ -1137,7 +1161,7 @@
- #: ../newrole/newrole.c:1016
+@@ -1140,7 +1135,7 @@ msgstr "%s ist kein gültiger Kontext\n"
+ #: ../newrole/newrole.c:950
  #, c-format
  msgid "Unable to allocate memory for new_context"
 -msgstr "Kann keinen Speicher für new_context zuweisen"
 +msgstr "Kann new_context keinen Speicher zuweisen"
  
- #: ../newrole/newrole.c:1042
+ #: ../newrole/newrole.c:976
  #, c-format
-@@ -1152,14 +1176,12 @@
- #: ../newrole/newrole.c:1116
+@@ -1155,14 +1150,12 @@ msgstr "Kann SIGHUP-Handler nicht setzen\n"
+ #: ../newrole/newrole.c:1053
  #, c-format
  msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
 -msgstr ""
@@ -48651,45 +60235,45 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -"benutzt werden.\n"
 +msgstr "Sorry, newrole darf nur auf einem SELinux-Kernel benutzt werden.\n"
  
- #: ../newrole/newrole.c:1133
+ #: ../newrole/newrole.c:1070
  #, c-format
  msgid "failed to get old_context.\n"
 -msgstr "Konnte alten Kontext nicht bekommen.\n"
 +msgstr "Erhalt von old_context fehlgeschlagen.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
  #, c-format
-@@ -1169,12 +1191,12 @@
- #: ../newrole/newrole.c:1161
+@@ -1172,12 +1165,12 @@ msgstr "Warnung! Konnte tty-Informationen nicht abrufen.\n"
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr "Fehler beim Lesen der PAM-Dienst Konfiguration.\n"
 +msgstr "Fehler beim Lesen der PAM-Dienstkonfiguration.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
  msgid "newrole: incorrect password for %s\n"
 -msgstr "Neue Eingabe: falsches Passwort für %s\n"
 +msgstr "newrole: falsches Passwort für %s\n"
  
- #: ../newrole/newrole.c:1223
+ #: ../newrole/newrole.c:1160
  #, c-format
-@@ -1184,12 +1206,12 @@
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
+@@ -1187,12 +1180,12 @@ msgstr "newrole: Fork fehlgeschlagen: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
  #, c-format
  msgid "Unable to restore tty label...\n"
 -msgstr "Kann TTY-Label nicht wiederherstellen...\n"
 +msgstr "Kann tty-Label nicht wiederherstellen ...\n"
  
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
  #, c-format
  msgid "Failed to close tty properly\n"
 -msgstr "Schliessen von TTY fehlgeschlagen\n"
 +msgstr "Ordnungsgemässes Schliessen von tty fehlgeschlagen\n"
  
- #: ../newrole/newrole.c:1287
+ #: ../newrole/newrole.c:1224
  #, c-format
-@@ -1218,27 +1240,28 @@
+@@ -1221,27 +1214,28 @@ msgstr "Verwendung:  %s [-qi]\n"
  #: ../load_policy/load_policy.c:71
  #, c-format
  msgid "%s:  Policy is already loaded and initial load requested\n"
@@ -48723,7 +60307,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
  
  #: ../scripts/chcat:110
  #, c-format
-@@ -1254,10 +1277,9 @@
+@@ -1257,10 +1251,9 @@ msgstr "%s ist nicht in %s"
  msgid "Can not combine +/- with other types of categories"
  msgstr "Kann +/- nicht mit anderen Kategorietypen kombinieren"
  
@@ -48735,7 +60319,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
  
  #: ../scripts/chcat:325
  #, c-format
-@@ -1282,7 +1304,7 @@
+@@ -1285,7 +1278,7 @@ msgstr "Verwendung %s -l [[+|-]KATEGORIE],...]q Benutzer ..."
  #: ../scripts/chcat:329
  #, c-format
  msgid "Usage %s -d File ..."
@@ -48744,7 +60328,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
  
  #: ../scripts/chcat:330
  #, c-format
-@@ -1292,20 +1314,20 @@
+@@ -1295,1785 +1288,2125 @@ msgstr "Verwendung %s -l -d Benutzer ..."
  #: ../scripts/chcat:331
  #, c-format
  msgid "Usage %s -L"
@@ -48769,12 +60353,157 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
  
  #: ../scripts/chcat:335
  msgid "chcat -l +CompanyConfidential juser"
-@@ -1314,1714 +1336,2270 @@
- #: ../scripts/chcat:399
- #, c-format
+ msgstr "chcat -l +Vertraulich juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
 -msgstr "Optionsfehler %s"
++msgstr "Optionenfehler %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Öffnen von %s fehlgeschlagen: Übersetzungen auf Nicht-MLS Machinen werden "
+-#~ "nicht unterstützt: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr "Boolean"
+-#~ msgid "Level"
+-#~ msgstr "Level"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr "Alle"
+-#~ msgid "Translation"
+-#~ msgstr "Übersetzung"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr "Benutzerdefiniert"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Übersetzungen können keine Leerfelder enthalten '%s'"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Ungültiges Level '%s'"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++"Datei\n"
++"Spezifikation"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ist bereits in Übersetzungen festgelegt"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++"Selinux\n"
++"Dateityp"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s ist nicht in Übersetzungen festgelegt"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++"Datei\n"
++"Typ"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Login-Zuordung für %s ist bereits festgelegt"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr "Benutzer-Mapping"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux-Benutzerzuordnung hinzufügen"
 -
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux-Benutzer %s ist bereits angelegt"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++"Login\n"
++"Name"
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Node-Netzmaske wird benötigt"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
++"SELinux\n"
++"Benutzer"
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Addr %s ist bereits definiert"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Schnittstelle %s ist bereits definiert"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr "Login »%s« wird benötigt"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Fehler bei der Funktions-Initialisierung, Abbruch.\n"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr "Policy-Modul"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Fehler bei der Leistungsinitialisierung, Abbruch.\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr "Modulname"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Fehler bei der KEEPCAPS-Einrichtung, Abbruch\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr "Audit deaktivieren"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Fehler beim Verwerfen von Funktionen.\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr "Audit aktivieren"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Fehler beim Verwerfen der SETUID-Funktion, Abbruch.\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr "Lade Policy-Modul"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Fehler beim Lösen von Caps\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
 -#~ msgid ""
 -#~ "\n"
 -#~ "\n"
@@ -48785,53 +60514,91 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "\n"
 -#~ "semodule -i %s\n"
 -#~ "\n"
--
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr "Red Hat 2007"
 -#~ msgid "translations not supported on non-MLS machines"
 -#~ msgstr "Übersetzungen auf Nicht-MLS Machinen werden nicht unterstützt"
--
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr "GPL"
 -#~ msgid "Boolean"
 -#~ msgstr "Boolesche"
--
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr "Übersetzer"
 -#~ msgid "all"
 -#~ msgstr "alle"
--
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr "SELinux Policy-Erstellungswerkzeug"
 -#~ msgid "Customized"
 -#~ msgstr "Angepasst"
--
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#~ msgid "File Labeling"
 -#~ msgstr "Dateikennzeichnung"
--
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr "<b>Anwendungen</b>"
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
 -#~ msgstr ""
 -#~ "Datei\n"
 -#~ "Spezifikation"
--
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr ""
 -#~ "SELinux\n"
 -#~ "Datei-Typ"
--
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Type"
 -#~ msgstr ""
 -#~ "Datei\n"
 -#~ "Typ"
--
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
 -#~ msgid "User Mapping"
 -#~ msgstr "Benutzerzuordnung"
--
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 -#~ msgid ""
 -#~ "Login\n"
 -#~ "Name"
 -#~ msgstr ""
 -#~ "Anmelden\n"
 -#~ "Name"
--
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
 -#~ msgid ""
 -#~ "SELinux\n"
 -#~ "User"
@@ -48852,12 +60619,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ msgid "Policy Module"
 -#~ msgstr "Richtlinien-Modul"
 -
--#~ msgid "Module Name"
--#~ msgstr "Modul-Name"
--
--#~ msgid "Version"
--#~ msgstr "Version"
--
 -#~ msgid "Disable Audit"
 -#~ msgstr "Audit deaktivieren"
 -
@@ -48925,13 +60686,25 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ msgstr ""
 -#~ "Erlaubt einer eingeschränkten Applikationsrolle/einem eingeschränkten "
 -#~ "Benutzer-Rolle sich mit jedem beliebigen UDP-Port zu verbinden"
--
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
 -#~ msgid "Boolean Name"
 -#~ msgstr "Boolean-Name:"
--
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 -#~ msgid "Create/Manipulate temporary files in /tmp"
 -#~ msgstr "Erstelle/ändert temporäre Dateien in /tmp"
--
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
@@ -48939,7 +60712,10 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "Geben Sie eine durch Kommas getrennte Liste von TCP-Ports oder einen "
 -#~ "Bereich an, an welche Applikation/Benutzer-Rollen gebunden werden. "
 -#~ "Beispiel: 612, 650-660"
--
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
@@ -48947,33 +60723,53 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "Geben Sie eine durch Kommas getrennte Liste von UDP-Ports oder einen "
 -#~ "Bereich an, an welche Applikation/Benutzer-Rollen gebunden werden. "
 -#~ "Beispiel: 612, 650-660"
--
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Geben Sie eine durch Kommas getrennte Liste von UDP-Ports an, mit denen "
 -#~ "sich die Applikation/der Benutzer verbindet. Beispiel: 612, 650-660"
--
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
 -#~ msgid "Enter complete path for executable to be confined."
 -#~ msgstr ""
 -#~ "Geben Sie den vollständigen Pfad der ausführbaren Datei ein, die "
 -#~ "eingeschränkt werden soll."
--
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
 -#~ msgid ""
 -#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
 -#~ "Geben Sie einen vollständigen Pfad zum Init-Skript ein, das verwendet "
 -#~ "wird, um die eingeschränkte Applikation zu starten."
--
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
 -#~ msgid "Enter name of application or user role to be confined"
 -#~ msgstr "Geben Sie die einzuschränkende Applikation oder Benutzerrollen ein."
--
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
 -#~ "Geben Sie die Netzwerkports an, mit denen sich die Applikation/der "
 -#~ "Benutzer verbinden können"
--
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
 -#~ msgid "Enter network ports that application/user role listens to"
 -#~ msgstr ""
 -#~ "Geben Sie die Netzwerksports an, auf denen Applikation/Benutzer hören"
@@ -49248,29 +61044,10 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -
 -#~ msgid "translator-credits"
 -#~ msgstr "N/A"
-+msgstr "Optionenfehler %s "
+-
 -#~ msgid "Role"
 -#~ msgstr "Funktion"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Boolesche Variablen"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "Alle"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Angepasst"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Dateikennzeichnung"
+-
 -#~ msgid "Existing_User"
 -#~ msgstr "Bestehender_Benutzer"
 -
@@ -49299,91 +61076,167 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ msgstr ""
 -#~ "Wählen Sie das/die Verzeichnis(se), die die eingeschränkte Applikation "
 -#~ "besitzt und in die sie schreibt"
--
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
 -#~ msgid "Select directory to generate policy files in"
 -#~ msgstr ""
 -#~ "Wählen Sie das Verzeichnis, in das die Richtliniendateien generiert "
 -#~ "werden sollen"
--
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
 -#~ msgid ""
 -#~ "Type %s_t already defined in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
 -#~ "Typ %s_t bereits definiert in aktueller Richtlinie.\n"
 -#~ "Wollen Sie fortfahren?"
--
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
 -#~ msgid "Verify Name"
 -#~ msgstr "Überprüfe Name"
--
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
 -#~ msgid ""
 -#~ "Module %s.pp already loaded in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
 -#~ "Modul %s.pp bereits geladen in aktueller Richtlinie.\n"
 -#~ "Wollen Sie fortfahren?"
--
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
 -#~ msgid "You must enter a name"
 -#~ msgstr "Sie müssen einen Namen angeben"
--
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
 -#~ msgid "You must enter a executable"
 -#~ msgstr "Sie müssen eine ausführbare Datei angeben"
--
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
 -#~ msgid "Configue SELinux"
 -#~ msgstr "SELinux konfigurieren"
--
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
 -#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 -#~ msgstr "Ports müssen Zahlen zwischen 1 und %d sein"
--
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
 -#~ msgid "You must enter a name for your confined process/user"
 -#~ msgstr ""
 -#~ "Sie müssen einen Pfad für Ihren eingeschränkten Prozess/Benutzer eingeben"
--
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 -#~ msgid "USER Types are not allowed executables"
 -#~ msgstr "USER-Types sind keine erlaubten ausführbaren Dateien"
--
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 -#~ msgid "Only DAEMON apps can use an init script"
 -#~ msgstr "Nur DAEMON-Applikationen können ein Init-Skript verwenden"
--
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
 -#~ msgid "use_syslog must be a boolean value "
 -#~ msgstr "use_syslog muss ein Boolescher Wert sein"
--
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
 -#~ msgid "USER Types automatically get a tmp type"
 -#~ msgstr "USER-Types erhalten automatisch ein tmp-Type"
--
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
 -#~ msgid "You must enter the executable path for your confined process"
 -#~ msgstr ""
 -#~ "Sie müssen einen ausführbaren Pfad für Ihren eingeschränkten Prozess "
 -#~ "eingeben"
--
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
 -#~ msgid "Type Enforcement file"
 -#~ msgstr "Type Enforcement Datei"
--
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
 -#~ msgid "Interface file"
 -#~ msgstr "Schnittstellendatei"
--
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
 -#~ msgid "File Contexts file"
 -#~ msgstr "Datei-Kontexte-Datei"
--
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
 -#~ msgid "Setup Script"
 -#~ msgstr "Skript für das Einrichten"
--
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 -#~ msgid ""
 -#~ "SELinux Port\n"
 -#~ "Type"
 -#~ msgstr ""
 -#~ "SELinux Port\n"
 -#~ "Typ"
--
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
 -#~ msgid "Protocol"
 -#~ msgstr "Protokoll"
--
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 -#~ msgid ""
 -#~ "MLS/MCS\n"
 -#~ "Level"
 -#~ msgstr ""
 -#~ "MLS/MCS\n"
 -#~ "Level"
--
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
 -#~ msgid "Port"
 -#~ msgstr "Port"
 -
@@ -49392,244 +61245,218 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -
 -#~ msgid "List View"
 -#~ msgstr "Listenansicht"
--
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
 -#~ msgid "Group View"
 -#~ msgstr "Gruppenansicht"
--
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
 -#~ msgid "SELinux Service Protection"
 -#~ msgstr "SELinux-Dienst-Schutz"
--
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
 -#~ msgid "Disable SELinux protection for acct daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für acct daemon"
--
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
 -#~ msgid "Admin"
 -#~ msgstr "Administrator"
--
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 -#~ msgid "Allow all daemons to write corefiles to /"
 -#~ msgstr "Allen Daemons erlauben, 'corefiles' nach \"/\" zu schreiben"
--
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
 -#~ msgid "Allow all daemons the ability to use unallocated ttys"
 -#~ msgstr ""
 -#~ "Allen Daemons die Fähigkeit geben, nicht zugewiesene TTYs zu verwenden"
--
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 -#~ msgid "User Privs"
 -#~ msgstr "Benutzer-Privs"
--
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "gadmin-SELinux-Benutzer erlauben, Dateien in seinem Stammverzeichnis "
 -#~ "oder /tmp auszuführen"
--
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "SELinux Gast-Benutzerkonten erlauben, Dateien in ihrem Stammverzeichnis "
 -#~ "oder /tmp auszuführen"
--
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 -#~ msgid "Memory Protection"
 -#~ msgstr "Speicherschutz"
--
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 -#~ msgid "Allow java executable stack"
 -#~ msgstr "Ausführbaren Java-Stapel erlauben"
--
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 -#~ msgid "Mount"
 -#~ msgstr "Einhängen"
--
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
 -#~ msgid "Allow mount to mount any file"
 -#~ msgstr "'mount' gestatten, jede beliebige Datei einzuhängen"
--
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 -#~ msgid "Allow mount to mount any directory"
 -#~ msgstr "'mount' gestatten, jedes beliebige Verzeichnis einzuhängen"
--
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
 -#~ msgid "Allow mplayer executable stack"
 -#~ msgstr "'mplayer' einen ausführbaren Stapel erlauben"
--
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
--
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
 -#~ msgid "Allow ssh to run ssh-keysign"
 -#~ msgstr "SSH gestatten, 'ssh-keysign' auszuführen"
--
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "staff-SELinux-Benutzerkonten gestatten, Dateien in ihren "
 -#~ "Stammverzeichnissen oder /tmp auszuführen"
--
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
 -#~ "sysadm-SELinux-Benutzerkonten gestatten, Dateien in ihren "
 -#~ "Stammverzeichnissen oder /tmp auszuführen"
--
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
 -#~ "or /tmp"
 -#~ msgstr ""
 -#~ "Uneingeschränkten SELinux-Benutzerkonten gestatten, Dateien in ihren "
 -#~ "Stammverzeichnissen oder /tmp auszuführen"
--
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 -#~ msgid "Network Configuration"
 -#~ msgstr "Netzwerkkonfiguration"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
 +msgstr ""
-+"Datei-\n"
-+"spezifikation"
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
 -#~ msgstr ""
 -#~ "Nicht gekennzeichneten Paketen gestatten, sich durch das Netzwerk "
 -#~ "fortzubewegen"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Selinux-\n"
-+"Dateityp"
  
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
 -#~ msgstr ""
 -#~ "user-SELinux-Benutzerkonten gestatten, Dateien in ihren "
 -#~ "Stammverzeichnissen oder /tmp auszuführen"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+"Datei-\n"
-+"typ"
  
 -#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
 -#~ msgstr "'unconfined' zu 'dyntrans' zu 'unconfined_execmem' gestatten"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Benutzerzuordnung"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
 -#~ msgid "Databases"
 -#~ msgstr "Datenbanken"
-+#: ../gui/loginsPage.py:52
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Login\n"
-+"Name"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Benutzer-\n"
-+"name"
  
 -#~ msgid "Allow user to connect to mysql socket"
 -#~ msgstr "Benutzer gestatten, sich mit dem MySQL-Socket zu verbinden"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"SELinux-\n"
-+"Benutzer"
  
 -#~ msgid "Allow user to connect to postgres socket"
 -#~ msgstr "Benutzer gestatten, sich mit dem Postgres-Socket zu verbinden"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"MLS/\n"
-+"MCS Range"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"MLS/\n"
-+"MCS-Bereich"
  
 -#~ msgid "XServer"
 -#~ msgstr "X-Server"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Anmeldung mit '%s' wird benötigt"
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Richtlinienmodul"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Modulname"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Version"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Audit deaktivieren"
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Audit aktivieren"
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Lade Richtlinienmodul"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"Holger Wansing <linux@wansing-online.de>, 2006.\n"
-+"Timo Trinks <ttrinks@redhat.com>, 2006, 2007.\n"
-+"Michael Schönitzer <michael@schoenitzer.de>, 2007.\n"
-+"Fabian Affolter <fab@fedoraproject.org>, 2008,2009.\n"
-+"Timo Trinks <ttrinks@redhat.com>, 2008.\n"
-+"Daniela Kugelmann <dkugelma@redhat.com >, 2008.\n"
-+"Hedda Peters <hpeters@redhat.com>, 2009."
  
 -#~ msgid "Allow clients to write to X shared memory"
 -#~ msgstr ""
 -#~ "Clients gestatten, in von X gemeinsam genutzten Speicher zu schreiben"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Dieses Tool kann dazu verwendet werden, ein Richtlinien-Framework zur "
-+"Einschränkung von Anwendungen oder Benutzer mit SELinux zu erstellen.   \n"
-+"\n"
-+"Dieses Tool erzeugt:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - zum Kompilieren und Installieren der Richtlinie. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Wählen Sie den Typ der einzuschränkenden Anwendung oder Benutzerrolle"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Anwendungen</b>"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
@@ -49637,166 +61464,125 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ msgstr ""
 -#~ "xguest-SELinux-Benutzerkonten gestatten, Dateien in ihren "
 -#~ "Stammverzeichnissen oder /tmp auszuführen"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
 +msgstr ""
-+"Standard-Init-Daemons sind Daemons, die beim Booten mittels Init-Skripten "
-+"gestartet werden. Erfordert normalerweise ein Skript in /etc/rc.d/init.d"
  
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Standard-Init-Daemon"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
 -#~ msgid "Allow daemons to run with NIS"
 -#~ msgstr "Daemons gestatten, mit NIS zu laufen"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS-System-Daemon"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
 -#~ msgid "Web Applications"
 -#~ msgstr "Web-Applikationen"
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon sind von xinited gestartete Daemons"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
 -#~ msgid "Transition staff SELinux user to Web Browser Domain"
 -#~ msgstr "'staff'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
 -#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
 -#~ msgstr "'sysadmin'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
 +msgstr ""
-+"Web-Applikationen/Skript (CGI) CGI-Skripte, die vom Web-Server (Apache) "
-+"gestartet werden"
  
 -#~ msgid "Transition user SELinux user to Web Browser Domain"
 -#~ msgstr "'user'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Web-Applikation/Skript (CGI)"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
 -#~ msgid "Transition xguest SELinux user to Web Browser Domain"
 -#~ msgstr "'xguest'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
 +msgstr ""
-+"Eine Benutzeranwendung ist eine beliebige Anwendung, die von einem Benutzer "
-+"gestartet wird und die Sie einschränken möchten"
  
 -#~ msgid "Allow staff Web Browsers to write to home directories"
 -#~ msgstr "'staff'-Web-Browsern gestatten, in Stammverzeichnisse zu schreiben"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Benutzeranwendung"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amanda"
 -#~ msgstr "Deaktiviere SELinux Schutz für amanda"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Login-Benutzer</b>"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amavis"
 -#~ msgstr "Deaktiviere SELinux Schutz für amavis"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Ändere einen existierenden Benutzerdatensatz."
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for apmd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für apmd daemon"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Vorhandene Benutzerrollen"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for arpwatch daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für arpwatch daemon"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"Dieser Benutzer meldet sich auf einem Rechner nur via Terminal oder Remote-"
-+"Login an. Standardmässig besitzt dieser Benutzer kein setuid, kein Netzwerk, "
-+"kein su und kein sudo."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Minimale Terminal-Benutzerrolle"
  
 -#~ msgid "Disable SELinux protection for auditd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für auditd daemon"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+"Dieser Benutzer kann sich via X oder Terminal an einem Rechner anmelden. "
-+"Standardmässig besitzt dieser Benutzer kein setuid, kein Netzwerk, kein sudo "
-+"und kein su."
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Minimale X-Windows-Benutzerrolle"
  
 -#~ msgid "Disable SELinux protection for automount daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für automount daemon"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+"Benutzer mit vollem Zugriff auf das Netzwerk, keine setuid-Anwendung ohne "
-+"Übertragung, kein sudo, kein su."
  
 -#~ msgid "Disable SELinux protection for avahi"
 -#~ msgstr "Deaktiviere SELinux Schutz für avahi"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Benutzerrolle"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for bluetooth daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für bluetooth daemon"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
 +msgstr ""
-+"Benutzer mit vollem Zugriff auf das Netzwerk, keine setuid-Anwendung ohne "
-+"Übertragung, kein su, kann mit sudo in Root-Administrationsrolle wechseln"
  
 -#~ msgid "Disable SELinux protection for canna daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für canna daemon"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Admin-Benutzerrolle"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cardmgr daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cardmgr daemon"
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root-Benutzer</b>"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Cluster Server"
 -#~ msgstr "Deaktiviere SELinux Schutz für Cluster Server"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
 +msgstr ""
-+"Wählen Sie Root-Administrator-Benutzerrolle, wenn dieser Benutzer zur "
-+"Verwaltung des Rechners als Root-Benutzer verwendet wird. Dieser Benutzer "
-+"kann sich nicht direkt auf dem System einloggen."
  
 -#~ msgid ""
 -#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
@@ -49805,589 +61591,268 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "'cdrecord' gestatten, verschiedenen Inhalt zu lesen. NFS, SAMBA, "
 -#~ "entfernbare Geräte, temporäre Benutzerverzeichnisse und nicht "
 -#~ "vertrauenswürdige Inhaltsdateien"
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root-Admin-Benutzerrolle"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for ciped daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für ciped daemon"
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
 +msgstr ""
-+"Geben Sie den Namen der einzuschränkenden Anwendung oder Benutzerrolle ein"
  
 -#~ msgid "Disable SELinux protection for clamd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für clamd daemon"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Name"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for clamscan"
 -#~ msgstr "Deaktiviere SELinux Schutz für clamscan"
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
 +msgstr ""
-+"Geben Sie den vollständigen Pfad der ausführbaren Datei ein, die "
-+"eingeschränkt werden soll."
  
 -#~ msgid "Disable SELinux protection for clvmd"
 -#~ msgstr "Deaktiviere SELinux Schutz für clvmd"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for comsat daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für comsat daemon"
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"Geben Sie einen eindeutigen Namen für die eingeschränkte Anwendung oder "
-+"Benutzerrolle ein."
  
 -#~ msgid "Disable SELinux protection for courier daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für courier daemon"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Ausführbare Datei"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cpucontrol daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cpucontrol daemon"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init-Skript"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cpuspeed daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cpuspeed daemon"
-+#: ../gui/polgen.glade:901
++#: ../gui/polgengui.py:649
++#, python-format
 +msgid ""
-+"Enter complete path to init script used to start the confined application."
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"Geben Sie einen vollständigen Pfad zum Init-Skript ein, das verwendet wird, "
-+"um die eingeschränkte Anwendung zu starten."
  
 -#~ msgid "Cron"
 -#~ msgstr "Cron"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Wählen Sie die Benutzerrolle(n), die Sie anpassen möchten"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for crond daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für crond daemon"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"Wählen Sie die Benutzerrolle(n), die auf diese Anwendungs-Domains wechseln "
-+"sollen."
  
 -#~ msgid "Printing"
 -#~ msgstr "Drucken"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+"Wählen Sie zusätzliche Domains, in die diese Benutzerrolle wechseln soll"
  
 -#~ msgid "Disable SELinux protection for cupsd back end server"
 -#~ msgstr "Deaktiviere SELinux-Schutz für cupsd backend-Server"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
 +msgstr ""
-+"Wählen Sie die Anwendungs-Domains, in die diese Benutzerrolle wechseln soll."
  
 -#~ msgid "Disable SELinux protection for cupsd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cupsd daemon"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Wählen Sie die Benutzerrolle(n), die in diese Domain wechseln sollen."
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd_lpd"
 -#~ msgstr "Deaktiviere SELinux Schutz für cupsd_lpd"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Wählen Sie zusätzliche Domains, die dieser Benutzer verwalten soll."
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
 -#~ msgid "CVS"
 -#~ msgstr "CVS"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Wählen Sie die Domains, die dieser Benutzer verwalten soll."
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cvs daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cvs daemon"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Wählen Sie zusätzliche Rollen für diesen Benutzer"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cyrus daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für cyrus daemon"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+"Geben Sie die Netzwerk-Ports an, auf denen die Anwendung/Benutzerrolle "
-+"horchen soll"
  
 -#~ msgid "Disable SELinux protection for dbskkd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dbskkd daemon"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP-Ports</b>"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dbusd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dbusd daemon"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
-+"Erlaubt einer eingeschränkten Anwendung/Benutzerrolle, sich mit jedem "
-+"beliebigen UPD-Port zu verbinden"
  
 -#~ msgid "Disable SELinux protection for dccd"
 -#~ msgstr "Deaktiviere SELinux Schutz für dccd"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Alle"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccifd"
 -#~ msgstr "Deaktiviere SELinux Schutz für dccifd"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
 +msgstr ""
-+"Erlaubt Anwendungen/Benutzerrollen, bindresvport mit 0 aufzurufen. Verbinde "
-+"mit Ports 600-1024"
  
 -#~ msgid "Disable SELinux protection for dccm"
 -#~ msgstr "Deaktiviere SELinux Schutz für dccm"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for ddt daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für ddt daemon"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
 +msgstr ""
-+"Geben Sie eine kommagetrennte Liste von UDP-Ports oder Port-Bereiche an, mit "
-+"denen sich Anwendungen/Benutzerrollen verbinden sollen. Beispiel: 612, "
-+"650-660"
  
 -#~ msgid "Disable SELinux protection for devfsd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für devfsd daemon"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Nicht reservierte Ports (>1024)"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dhcpc daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dhcpc daemon"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Ports auswählen"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dhcpd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dhcpd daemon"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
 +msgstr ""
-+"Erlaubt Anwendungen/Benutzerrollen, sich mit einem beliebigen UDP-Port > "
-+"1024 zu verbinden"
  
 -#~ msgid "Disable SELinux protection for dictd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dictd daemon"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP-Ports</b>"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
  
 -#~ msgid "Allow sysadm_t to directly start daemons"
 -#~ msgstr "'sysadm_t' gestatten, Daemons direkt zu starten"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
 +msgstr ""
-+"Geben Sie Netzwerk-Ports an, mit denen sich die Anwendungen/Benutzerrollen "
-+"verbinden können"
  
 -#~ msgid "Disable SELinux protection for Evolution"
 -#~ msgstr "Deaktiviere SELinux Schutz für Evolution"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
 +msgstr ""
-+"Geben Sie eine kommagetrennte Liste von TCP-Ports oder Port-Bereiche an, mit "
-+"denen sich Anwendungen/Benutzerrollen verbinden sollen. Beispiel: 612, "
-+"650-660"
  
 -#~ msgid "Games"
 -#~ msgstr "Spiele"
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.py:1290
++#, python-format
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
 +msgstr ""
-+"Geben Sie eine kommagetrennte Liste von UPD-Ports oder Port-Bereiche an, mit "
-+"denen sich Anwendungen/Benutzerrollen verbinden sollen. Beispiel: 612, "
-+"650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Wählen Sie allgemeine Anwendungseigenschaften"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Schreibt Syslog-Nachrichten\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Erstellt/Ändert temporäre Dateien in /tmp"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Benutzt Pam zur Authentifizierung"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Benutzt nsswitch- oder getpw*-Aufrufe"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Benutzt dbus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Sendet Audit-Meldungen"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Interagiert mit dem Terminal"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Sendet E-Mail"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Wählt die Dateien/Verzeichnisse, welche die Anwendung verwaltet"
  
 -#~ msgid "Disable SELinux protection for games"
 -#~ msgstr "Deaktiviere SELinux Schutz für games"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
 +msgstr ""
-+"Fügt Dateien/Verzeichnisse hinzu, in welche die Anwendung schreiben muss. "
-+"Pid-Dateien, Protokolldateien, /var/lib-Dateien usw."
  
 -#~ msgid "Disable SELinux protection for the web browsers"
 -#~ msgstr "Deaktiviere SELinux Schutz für the web browsers"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Wählt Boolesche Variablen aus, welche die Anwendung verwendet"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Thunderbird"
 -#~ msgstr "Deaktiviere SELinux Schutz für Thunderbird"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
 +msgstr ""
-+"Hinzufügen/Entfernen von Booleschen Variablen, die für diese eingeschränkte "
-+"Anwendung/Benutzer verwendet werden"
  
 -#~ msgid "Disable SELinux protection for distccd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für distccd daemon"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Wählt das Verzeichnis, in dem die Richtlinie generiert wird"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dmesg daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dmesg daemon"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Richtlinienverzeichnis"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dnsmasq daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dnsmasq daemon"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Erstellte Richtliniendateien"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dovecot daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für dovecot daemon"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Dieses Tool erstellt Folgendes: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Führen Sie das Shell-Skript als Root aus, um Dateien/Verzeichnisse zu "
-+"kompilieren, installieren und neu zu kennzeichnen. \n"
-+"Verwenden Sie semanage oder useradd, um Linux-Login-Benutzer den "
-+"Benutzerrollen zuzuordnen.\n"
-+"Versetzen Sie den Rechner in 'permissive' Modus (setenforce 0). \n"
-+"Melden Sie sich als der Benutzer an und testen diese Benutzerrolle.\n"
-+"Verwenden Sie audit2allow -R, um zusätzliche Regeln für die te-Datei zu "
-+"erstellen.\n"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for entropyd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für entropyd daemon"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Dieses Tool erstellt Folgendes: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Führen Sie das Shell-Skript als Root aus, um Dateien/Verzeichnisse zu "
-+"kompilieren, installieren und neu zu kennzeichnen.  \n"
-+"Versetzen Sie den Rechner in 'permissive' Modus (setenforce 0). \n"
-+"Führen Sie die Anwendung aus bzw. starten diese neu, um avc-Meldungen zu "
-+"generieren.\n"
-+"Verwenden Sie audit2allow -R, um zusätzliche Regeln für die te-Datei zu "
-+"erstellen.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Dialog zum Hinzufügen Boolescher Variablen"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Boolescher Variablenname"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Rolle"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Bestehender_Benutzer"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Anwendung"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s muss ein Verzeichnis sein"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Sie müssen einen Benutzer auswählen"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Wählen Sie eine ausführbare Datei, die eingeschränkt werden soll."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Wählen Sie eine Init-Skript-Datei, die eingeschränkt werden soll."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+"Wählen Sie die Datei(en), die eine eingeschränkte Anwendung erstellt oder "
-+"schreibt"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
++#: ../gui/portsPage.py:252
++msgid "List View"
 +msgstr ""
-+"Wählen Sie das/die Verzeichnis(se), die die eingeschränkte Anwendung besitzt "
-+"und beschreibt"
  
 -#~ msgid "Disable SELinux protection for fetchmail"
 -#~ msgstr "Deaktiviere SELinux Schutz für fetchmail"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
 +msgstr ""
-+"Wählen Sie das Verzeichnis, in dem die Richtliniendateien generiert werden "
-+"sollen"
  
 -#~ msgid "Disable SELinux protection for fingerd daemon"
 -#~ msgstr "Deaktiviere SELinux Schutz für fingerd daemon"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Typ %s_t ist in aktueller Richtlinie bereits definiert.\n"
-+"Wollen Sie fortfahren?"
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für freshclam daemon"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Überprüfe Namen"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für fsdaemon daemon"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Modul %s.pp ist in aktueller Richtlinie bereits geladen.\n"
-+"Wollen Sie fortfahren?"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für gpm daemon"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Sie müssen einen Namen angeben"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Sie müssen eine ausführbare Datei angeben"
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für gss daemon"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux konfigurieren"
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Deaktiviere SELinux-Schutz für Hal-Daemon"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Ports müssen Nummern oder Nummernbereiche von 1 bis %d sein"
--#~ msgid "Compatibility"
--#~ msgstr "Kompatibilität"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+"Sie müssen einen Namen für Ihren eingeschränkten Prozess/Benutzer angeben"
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Dinge, die als defekt bekannt sind, aber keine Gefährdung der Sicherheit "
--#~ "darstellen, nicht überprüfen"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER-Typen sind keine zulässigen ausführbaren Dateien"
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für hostname daemon"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Nur DAEMON-Anwendungen können ein Init-Skript verwenden"
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für hotplug daemon"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog muss ein Boolescher Wert sein"
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für howl daemon"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER-Typen erhalten automatisch einen tmp-Typ"
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für hplip daemon"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+"Sie müssen einen ausführbaren Pfad für Ihren eingeschränkten Prozess eingeben"
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Deaktiviere SELinux Schutz für httpd rotatelogs"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Typ-Enforcement-Datei"
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD-Dienst"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Schnittstellendatei"
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Deaktiviere SELinux Schutz für http suexec"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Dateikontextdatei"
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für hwclock daemon"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Skript zum Einrichten"
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für i18n daemon"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Netzwerk-Port"
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für imazesrv daemon"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"SELinux Port-\n"
-+"Typ"
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Deaktiviere SELinux Schutz für inetd child daemons"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protokoll"
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für inetd daemon"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"MLS/MCS-\n"
-+"Stufe"
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für innd daemon"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Port-Nummer \"%s\" ist ungültig.  0 < PORT_NUMMER < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Listenansicht"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Gruppenansicht"
-+
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -50434,27 +61899,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux-Dienstschutz"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für freshclam daemon"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "SELinux-Schutz für acct-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für fsdaemon daemon"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für gpm daemon"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Allen Daemons erlauben, corefiles nach / zu schreiben"
-+
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Allen Daemons erlauben, nicht zugewiesene TTYs zu verwenden"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für gss daemon"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -50462,1324 +61937,1206 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Benutzerprivilegien"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für iptables daemon"
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Deaktiviere SELinux-Schutz für Hal-Daemon"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin-SELinux-Benutzer erlauben, Dateien im Benutzerverzeichnis oder /tmp "
-+"auszuführen"
  
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ircd daemon"
+-#~ msgid "Compatibility"
+-#~ msgstr "Kompatibilität"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"SELinux Gast-Benutzerkonten erlauben, Dateien im Benutzerverzeichnis oder /"
-+"tmp auszuführen"
  
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für irqbalance daemon"
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Dinge, die als defekt bekannt sind, aber keine Gefährdung der Sicherheit "
+-#~ "darstellen, nicht überprüfen"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Speicherschutz"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für hostname daemon"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Ausführbaren Java-Stapel erlauben"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für hotplug daemon"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Einhängen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für howl daemon"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "'mount' erlauben, jede beliebige Datei einzuhängen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für hplip daemon"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "'mount' erlauben, jedes beliebige Verzeichnis einzuhängen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Deaktiviere SELinux Schutz für httpd rotatelogs"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Ausführbaren 'mplayer'-Stapel erlauben"
-+
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD-Dienst"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Deaktiviere SELinux Schutz für http suexec"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "'ssh' erlauben, ssh-keyrun auszuführen"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für iscsi daemon"
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für hwclock daemon"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"staff-SELinux-Benutzerkonten erlauben, Dateien im Benutzerverzeichnis oder /"
-+"tmp auszuführen"
  
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für jabberd daemon"
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für i18n daemon"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm-SELinux-Benutzerkonto erlauben, Dateien im Benutzerverzeichnis oder /"
-+"tmp auszuführen"
  
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für imazesrv daemon"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"unconfined-SELinux-Benutzerkonto erlauben, Dateien im Benutzerverzeichnis "
-+"oder /tmp auszuführen"
  
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für kadmind daemon"
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Deaktiviere SELinux Schutz für inetd child daemons"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Netzwerkkonfiguration"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für klogd daemon"
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für inetd daemon"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+"Nicht gekennzeichneten Paketen erlauben, sich durch das Netzwerk "
-+"fortzubewegen"
  
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für krb5kdc daemon"
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für innd daemon"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"user-SELinux-Benutzerkonto erlauben, Dateien im Benutzerverzeichnis oder /"
-+"tmp auszuführen"
  
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Deaktiviere SELinux Schutz für ktalk daemons"
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für iptables daemon"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"Unbeschränkten einen dynamischen Wechsel zu 'unconfined_execmem' erlauben"
  
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für kudzu daemon"
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ircd daemon"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Datenbanken"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für locate daemon"
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für irqbalance daemon"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Erlaube Benutzer, auf mysql-Socket zu verbinden"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für lpd daemon"
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für iscsi daemon"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Erlaube Benutzer, auf postgres-Socket zu verbinden"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für lrrd daemon"
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für jabberd daemon"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für lvm daemon"
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Clients erlauben, in von X gemeinsam genutzten Speicher zu schreiben"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Deaktiviere SELinux Schutz für mailman"
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für kadmind daemon"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest-SELinux-Benutzerkonto erlauben, Dateien im Benutzerverzeichnis oder /"
-+"tmp auszuführen"
  
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Evolution und Thunderbird gestatten, Benutzerdateien zu lesen"
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für klogd daemon"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für krb5kdc daemon"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Daemons erlauben, mit NIS zu laufen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Deaktiviere SELinux Schutz für ktalk daemons"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web-Anwendungen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für kudzu daemon"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "'staff'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für locate daemon"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "'sysadmin'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für lpd daemon"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "'user'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für lrrd daemon"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "'xguest'-SELinux-Benutzer auf Web-Browser-Domain übertragen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für lvm daemon"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "'staff'-Web-Browsern erlauben, in Benutzerverzeichnisse zu schreiben"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Deaktiviere SELinux Schutz für mailman"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "SELinux-Schutz für amanda deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Evolution und Thunderbird gestatten, Benutzerdateien zu lesen"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "SELinux-Schutz für amavis deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für mdadm daemon"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "SELinux-Schutz für apmd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für monopd daemon"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "SELinux-Schutz für apmd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Dem Mozilla-Browser gestatten, Benutzerdateien zu lesen"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "SELinux-Schutz für auditd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für mrtg daemon"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "SELinux-Schutz für automount-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für mysqld daemon"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "SELinux-Schutz für avahi deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nagios daemon"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "SELinux-Schutz für bluetooth-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Name Service"
+-#~ msgstr "Name-Dienst"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "SELinux-Schutz für canna-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für named daemon"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "SELinux-Schutz für cardmgr-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nessusd daemon"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "SELinux-Schutz für Cluster-Server deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für mdadm daemon"
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Deaktiviere SELinux Schutz für NetworkManager"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"'cdrecord' erlauben, verschiedenen Inhalt zu lesen. NFS, SAMBA, entfernbare "
-+"Geräte, temporäre Benutzerdateien und nicht vertrauenswürdige Inhaltsdateien"
  
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für monopd daemon"
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nfsd daemon"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "SELinux-Schutz für cardmgr-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "SELinux-Schutz für clamd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nmbd daemon"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "SELinux-Schutz für clamscan deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nrpe daemon"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "SELinux-Schutz für clvmd deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nscd daemon"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "SELinux-Schutz für comsat-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für nsd daemon"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "SELinux-Schutz für courier-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ntpd daemon"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "SELinux-Schutz für cpucontrol-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Deaktiviere SELinux Schutz für oddjob"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "SELinux-Schutz für cpuspeed-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Deaktiviere SELinux Schutz für oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für openvpn daemon"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "SELinux-Schutz für crond-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für pam daemon"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Drucken"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Deaktiviere SELinux Schutz für pegasus"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "SELinux-Schutz für cupsd Backend-Server deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für perdition daemon"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "SELinux-Schutz für cupsd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für portmap daemon"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "SELinux-Schutz für cupsd_lpd deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für portslave daemon"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Deaktiviere SELinux Schutz für postfix"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "SELinux-Schutz für cvs-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für postgresql daemon"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "SELinux-Schutz für cyrus-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "SELinux-Schutz für dbskkd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Gestatten, dass 'pppd' für einen regulären Benutzer ausgeführt wird"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "SELinux-Schutz für dbusd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Deaktiviere SELinux Schutz für pptp"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "SELinux-Schutz für dccd deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für prelink daemon"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "SELinux-Schutz für dccifd deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für privoxy daemon"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "SELinux-Schutz für dccm deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ptal daemon"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "SELinux-Schutz für ddt-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für pxe daemon"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "SELinux-Schutz für devfsd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Deaktiviere SELinux Schutz für pyzord"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "SELinux-Schutz für dhcpc-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für quota daemon"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "SELinux-Schutz für dhcpd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für radiusd daemon"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "SELinux-Schutz für dictd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für radvd daemon"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Erlaube sysadm_t Daemons direkt zu starten"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Deaktiviere SELinux Schutz für rdisc"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "SELinux-Schutz für Evolution deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Deaktiviere SELinux Schutz für readahead"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Spiele"
-+
++msgstr ""
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Programmen gestatten, Dateien an nicht standardmässigen Orten zu lesen "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "SELinux-Schutz für Spiele deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Deaktiviere SELinux Schutz für restorecond"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "SELinux-Schutz für die Webbrowser deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für rhgb daemon"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "SELinux-Schutz für Thunderbird deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Deaktiviere SELinux Schutz für ricci"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "SELinux-Schutz für distccd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Deaktiviere SELinux Schutz für ricci_modclusterd"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "SELinux-Schutz für dmesg-Daemon deaktivieren"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "SELinux-Schutz für dnsmasq-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für rlogind daemon"
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für rpcd daemon"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "SELinux-Schutz für dovecot-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Deaktiviere SELinux Schutz für rshd"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "SELinux-Schutz für entropyd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "SELinux-Schutz für fetchmail deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für rsync daemon"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "SELinux-Schutz für fingerd-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr ""
+-#~ "SSH gestatten, von 'inetd' aus gestartet zu werden, anstatt als Daemon"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "SELinux-Schutz für freshclam-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba gestatten, NFS-Verzeichnisse freizugeben"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "SELinux-Schutz für fsdaemon-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL-Authentifizierungs-Server"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "SELinux-Schutz für gpm-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "SASL-Authentifizierungs-Server gestatten, /etc/shadow zu lesen"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Dem X-Windows-Server gestatten, einen Speicherbereich sowohl als "
+-#~ "ausführbar, als auch beschreibbar auszuweisen"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "SELinux-Schutz für gss-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für saslauthd daemon"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "SELinux-Schutz für Hal-Daemon deaktivieren"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für scannerdaemon daemon"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Kompatibilität"
++msgstr ""
  
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Dem Mozilla-Browser gestatten, Benutzerdateien zu lesen"
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr ""
+-#~ "Wechsel zu 'sysadm_t' nicht gestatten. Davon betroffen sind 'sudo' und "
+-#~ "'su'"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Dinge, die als defekt bekannt sind, aber keine Gefährdung der Sicherheit "
-+"darstellen, nicht überprüfen"
  
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für mrtg daemon"
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Keinem Prozess gestatten, Kernel-Module zu laden"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "SELinux-Schutz für hostname-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für mysqld daemon"
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Keinem Prozess gestatten, die Kernel SELinux-Richtlinien zu verändern"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "SELinux-Schutz für hotplug-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nagios daemon"
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für sendmail daemon"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "SELinux-Schutz für howl-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Name Service"
--#~ msgstr "Name-Dienst"
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Deaktiviere SELinux Schutz für setrans"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "SELinux-Schutz für cups hplip-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für named daemon"
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Deaktiviere SELinux-Schutz für setroubleshoot-Daemon"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "SELinux-Schutz für httpd rotatelogs deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nessusd daemon"
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für slapd daemon"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD-Dienst"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Deaktiviere SELinux Schutz für NetworkManager"
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für slrnpull daemon"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "SELinux-Schutz für http suexec deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nfsd daemon"
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für smbd daemon"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "SELinux-Schutz für hwclock-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Samba"
--#~ msgstr "Samba"
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für snmpd daemon"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "SELinux-Schutz für i18n-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nmbd daemon"
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für snort daemon"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "SELinux-Schutz für imazesrv-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nrpe daemon"
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für soundd daemon"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "SELinux-Schutz für inetd-Kind-Daemons deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nscd daemon"
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für sound daemon"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "SELinux-Schutz für inetd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für nsd daemon"
+-#~ msgid "Spam Protection"
+-#~ msgstr "Spam-Schutz"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "SELinux-Schutz für innd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ntpd daemon"
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für spamd daemon"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "SELinux-Schutz für iptables-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Deaktiviere SELinux Schutz für oddjob"
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "'spamd' Zugriff auf Stammverzeichnisse gestatten"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "SELinux-Schutz für ircd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Deaktiviere SELinux Schutz für oddjob_mkhomedir"
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Dem Spamassassin-Daemon Netzwerkzugriff gestatten"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "SELinux-Schutz für irqbalance-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für openvpn daemon"
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für speedmgmt daemon"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "SELinux-Schutz für iscsi-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für pam daemon"
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "SELinux-Schutz für jabberd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Deaktiviere SELinux Schutz für pegasus"
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Dem Squid-Daemon gestatten, sich mit dem Netzwerk zu verbinden"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für perdition daemon"
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für squid daemon"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "SELinux-Schutz für kadmind-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für portmap daemon"
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ssh daemon"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "SELinux-Schutz für klogd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für portslave daemon"
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "SSH-Logins als 'sysadm_r:sysadm_t' gestatten"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "SELinux-Schutz für krb5kdc-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Deaktiviere SELinux Schutz für postfix"
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "'staff_r'-Benutzern gestatten, das 'sysadm'-Stammverzeichnis zu "
+-#~ "durchsuchen und Dateien zu lesen (z.B. ~/.bashrc)"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "SELinux-Schutz für ktalk-Daemons deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für postgresql daemon"
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Universeller SSL-Tunnel"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "SELinux-Schutz für kudzu-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "pppd"
--#~ msgstr "pppd"
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für stunnel daemon"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "SELinux-Schutz für locate-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Gestatten, dass 'pppd' für einen regulären Benutzer ausgeführt wird"
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Dem stunnel-Daemon gestatten, als \"standalone\" zu laufen, ausserhalb "
+-#~ "von 'xinetd'"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "SELinux-Schutz für lpd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Deaktiviere SELinux Schutz für pptp"
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für swat daemon"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "SELinux-Schutz für lrrd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für prelink daemon"
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für sxid daemon"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "SELinux-Schutz für lvm-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für privoxy daemon"
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für syslogd daemon"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "SELinux-Schutz für mailman deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ptal daemon"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Deaktiviere SELinux Schutz für system cron jobs"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Evolution und Thunderbird erlauben Benutzerdateien zu lesen"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für pxe daemon"
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für tcp daemon"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "SELinux-Schutz für mdadm-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Deaktiviere SELinux Schutz für pyzord"
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für telnet daemon"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "SELinux-Schutz für monopd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für quota daemon"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für tftpd daemon"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Dem Mozilla-Browser erlauben Benutzerdateien zu lesen"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für radiusd daemon"
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für transproxy daemon"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "SELinux-Schutz für mrtg-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für radvd daemon"
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für udev daemon"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "SELinux-Schutz für mysqld-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Deaktiviere SELinux Schutz für rdisc"
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für uml daemon"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "SELinux-Schutz für nagios-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Deaktiviere SELinux Schutz für readahead"
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "'xinetd' gestatten, uneingeschränkt zu laufen, inklusive einiger Dienste, "
+-#~ "die gestartet werden, die keine Domain-Übertragung explizit definiert "
+-#~ "haben."
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Namensdienst"
++msgstr ""
  
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
 -#~ msgstr ""
--#~ "Programmen gestatten, Dateien an nicht standardmässigen Orten zu lesen "
--#~ "(default_t)"
+-#~ "rc-Skripten gestatten, uneingeschränkt zu laufen, inklusive beliebiger "
+-#~ "Daemons, die von einem rc-Skript gestartet werden, das keine Domain-"
+-#~ "Übertragung explizit definiert hat"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "SELinux-Schutz für named-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Deaktiviere SELinux Schutz für restorecond"
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "'rpm' gestatten, ohne Einschränkungen zu laufen"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "SELinux-Schutz für nessusd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für rhgb daemon"
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Privilegierten Dienstprogrammen wie 'hotplug' und 'insmod' gestatten, "
+-#~ "ohne Einschränkung zu laufen"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "SELinux-Schutz für NetworkManager deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Deaktiviere SELinux Schutz für ricci"
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für updfstab daemon"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "SELinux-Schutz für nfsd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Deaktiviere SELinux Schutz für ricci_modclusterd"
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für uptimed daemon"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für rlogind daemon"
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "'user_r' gestatten, 'sysadm_r'-Rechte via 'su', 'sudo' oder 'userhelper' "
+-#~ "zu erlangen. Ansonsten ist dies lediglich 'staff_r' gestattet"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "SELinux-Schutz für nmbd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für rpcd daemon"
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Benutzern gestatten, den Befehl 'mount' auszuführen"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "SELinux-Schutz für nrpe-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Deaktiviere SELinux Schutz für rshd"
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Regulären Benutzern direkten Zugriff auf die Maus gestatten (nur dem X-"
+-#~ "Server gestatten)"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "SELinux-Schutz für nscd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "rsync"
--#~ msgstr "rsync"
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Benutzern gestatten, den Befehl 'dmesg' auszuführen"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "SELinux-Schutz für nsd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für rsync daemon"
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Benutzern gestatten, Netzwerkschnittstellen zu kontrollieren (setzt "
+-#~ "ebenfalls USERCTL=true voraus)"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "SELinux-Schutz für ntpd-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr ""
--#~ "SSH gestatten, von 'inetd' aus gestartet zu werden, anstatt als Daemon"
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Einem normalen Benutzer gestatten, 'ping' auszuführen"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "SELinux-Schutz für oddjob deaktivieren"
++msgstr ""
  
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba gestatten, NFS-Verzeichnisse freizugeben"
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "Benutzer r/w noextattrfile (FAT, CDROM, FLOPPY) gestatten"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "SELinux-Schutz für oddjob_mkhomedir deaktivieren"
++msgstr ""
  
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL-Authentifizierungs-Server"
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Benutzern gestatten, USB-Geräte zu lesen/beschreiben"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "SELinux-Schutz für openvpn-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "SASL-Authentifizierungs-Server gestatten, /etc/shadow zu lesen"
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Benutzern gestatten, TCP-Server auszuführen (Verbindung zu Ports und "
+-#~ "Annahme der Verbindung aus derselben Domain und ausserhalb 'users'). Wird "
+-#~ "dies verweigert, muss FTP im Passiv-Modus laufen und verändert ggf. auch "
+-#~ "andere Protokolle"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "SELinux-Schutz für pam-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Dem X-Windows-Server gestatten, einen Speicherbereich sowohl als "
--#~ "ausführbar, als auch beschreibbar auszuweisen"
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Benutzer gestatten, 'ttyfiles' statistisch anzusehen"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "SELinux-Schutz für pegasus deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für saslauthd daemon"
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für uucpd daemon"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für vmware daemon"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für watchdog daemon"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für winbind daemon"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für xdm daemon"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "'xdm' Logins als 'sysadm_r:sysadm_t' gestatten"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für xen daemon"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "'xen' gestatten, physikalische Plattengeräte zu lesen/beschreiben"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für xfs daemon"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Deaktiviere SELinux-Schutz für xen-Daemon"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ypbind daemon"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für NIS Password Daemon"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "SELinux-Schutz für perdition-Daemon deaktivieren"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für scannerdaemon daemon"
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für ypserv daemon"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Deaktiviere SELinux Schutz für NIS Transfer Daemon"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Dem SELinux-Benutzer webadm gestatten, nicht privilegierte "
+-#~ "Benutzerverzeichnisse zu verwalten"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "SELinux-Schutz für portmap-Daemon deaktivieren"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr ""
--#~ "Wechsel zu 'sysadm_t' nicht gestatten. Davon betroffen sind 'sudo' und "
--#~ "'su'"
++msgstr ""
++
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "SELinux-Schutz für portslave-Daemon deaktivieren"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Keinem Prozess gestatten, Kernel-Module zu laden"
++msgstr ""
++
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "SELinux-Schutz für postfix deaktivieren"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Keinem Prozess gestatten, die Kernel SELinux-Richtlinien zu verändern"
++msgstr ""
++
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "SELinux-Schutz für postgresql-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für sendmail daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Deaktiviere SELinux Schutz für setrans"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "'pppd' erlauben, für einen regulären Benutzer ausgeführt zu werden"
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Deaktiviere SELinux-Schutz für setroubleshoot-Daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "SELinux-Schutz für pptp deaktivieren"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für slapd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "SELinux-Schutz für prelink-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für slrnpull daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "SELinux-Schutz für privoxy-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für smbd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "SELinux-Schutz für ptal-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für snmpd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "SELinux-Schutz für pxe-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für snort daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "SELinux-Schutz für pyzord deaktivieren"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für soundd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "SELinux-Schutz für quota-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für sound daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "SELinux-Schutz für radiusd-Daemon deaktivieren"
--#~ msgid "Spam Protection"
--#~ msgstr "Spam-Schutz"
++msgstr ""
++
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "SELinux-Schutz für radvd-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für spamd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "SELinux-Schutz für rdisc deaktivieren"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "'spamd' Zugriff auf Stammverzeichnisse gestatten"
++msgstr ""
++
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "SELinux-Schutz für readahead deaktivieren"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Dem Spamassassin-Daemon Netzwerkzugriff gestatten"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Programmen erlauben, Dateien an nicht standardmässigen Orten zu lesen "
-+"(default_t)"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für speedmgmt daemon"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "SELinux-Schutz für restorecond deaktivieren"
--#~ msgid "Squid"
--#~ msgstr "Squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "SELinux-Schutz für rhgb-Daemon deaktivieren"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Dem Squid-Daemon gestatten, sich mit dem Netzwerk zu verbinden"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "SELinux-Schutz für ricci deaktivieren"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für squid daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "SELinux-Schutz für ricci_modclusterd deaktivieren"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ssh daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "SELinux-Schutz für rlogind-Daemon deaktivieren"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "SSH-Logins als 'sysadm_r:sysadm_t' gestatten"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "SELinux-Schutz für rpcd-Daemon deaktivieren"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "'staff_r'-Benutzern gestatten, das 'sysadm'-Stammverzeichnis zu "
--#~ "durchsuchen und Dateien zu lesen (z.B. ~/.bashrc)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "SELinux-Schutz für rshd-Daemon deaktivieren"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Universeller SSL-Tunnel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für stunnel daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "SELinux-Schutz für rsync-Daemon deaktivieren"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Dem stunnel-Daemon gestatten, als \"standalone\" zu laufen, ausserhalb "
--#~ "von 'xinetd'"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "SSH erlauben von inetd anstatt als Daemon zu laufen"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für swat daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba erlauben nfs-Verzeichnisse freizugeben"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für sxid daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL-Authentifizierungs-Server"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für syslogd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "SASL-Authentifizierungs-Server erlauben, /etc/shadow zu lesen"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Deaktiviere SELinux Schutz für system cron jobs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Dem X-Windows-Server erlauben, einen Speicherbereich sowohl als ausführbar, "
-+"als auch beschreibbar auszuweisen"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für tcp daemon"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "SELinux-Schutz für saslauthd-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für telnet daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "SELinux-Schutz für scannerdaemon-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für tftpd daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+"Wechsel zu 'sysadm_t' nicht erlauben. Davon betroffen sind 'sudo' und 'su'"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für transproxy daemon"
++
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Keinen Prozessen erlauben, Kernelmodule zu laden"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für udev daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Keinem Prozess erlauben, die Kernel-SELinux-Richtlinie zu verändern"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für uml daemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "SELinux-Schutz für sendmail-Daemon deaktivieren"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "'xinetd' gestatten, uneingeschränkt zu laufen, inklusive einiger Dienste, "
--#~ "die gestartet werden, die keine Domain-Übertragung explizit definiert "
--#~ "haben."
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "SELinux-Schutz für setrans deaktivieren"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "rc-Skripten gestatten, uneingeschränkt zu laufen, inklusive beliebiger "
--#~ "Daemons, die von einem rc-Skript gestartet werden, das keine Domain-"
--#~ "Übertragung explizit definiert hat"
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "SELinux-Schutz für setroubleshoot-Daemon deaktivieren"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "'rpm' gestatten, ohne Einschränkungen zu laufen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "SELinux-Schutz für slapd-Daemon deaktivieren"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Privilegierten Dienstprogrammen wie 'hotplug' und 'insmod' gestatten, "
--#~ "ohne Einschränkung zu laufen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "SELinux-Schutz für slrnpull-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für updfstab daemon"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "SELinux-Schutz für smbd-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für uptimed daemon"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "SELinux-Schutz für snmpd-Daemon deaktivieren"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "'user_r' gestatten, 'sysadm_r'-Rechte via 'su', 'sudo' oder 'userhelper' "
--#~ "zu erlangen. Ansonsten ist dies lediglich 'staff_r' gestattet"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "SELinux-Schutz für snort-Daemon deaktivieren"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Benutzern gestatten, den Befehl 'mount' auszuführen"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "SELinux-Schutz für soundd-Daemon deaktivieren"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Regulären Benutzern direkten Zugriff auf die Maus gestatten (nur dem X-"
--#~ "Server gestatten)"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "SELinux-Schutz für sound-Daemon deaktivieren"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Benutzern gestatten, den Befehl 'dmesg' auszuführen"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Spam-Schutz"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Benutzern gestatten, Netzwerkschnittstellen zu kontrollieren (setzt "
--#~ "ebenfalls USERCTL=true voraus)"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "SELinux-Schutz für spamd-Daemon deaktivieren"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Einem normalen Benutzer gestatten, 'ping' auszuführen"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "'spamd' Zugriff auf Benutzerverzeichnisse erlauben"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "Benutzer r/w noextattrfile (FAT, CDROM, FLOPPY) gestatten"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Dem Spam-Assassin-Daemon Netzwerkzugriff erlauben"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Benutzern gestatten, USB-Geräte zu lesen/beschreiben"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "SELinux-Schutz für speedmgmt-Daemon deaktivieren"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Benutzern gestatten, TCP-Server auszuführen (Verbindung zu Ports und "
--#~ "Annahme der Verbindung aus derselben Domain und ausserhalb 'users'). Wird "
--#~ "dies verweigert, muss FTP im Passiv-Modus laufen und verändert ggf. auch "
--#~ "andere Protokolle"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Benutzer gestatten, 'ttyfiles' statistisch anzusehen"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Dem Squid-Daemon erlauben, sich mit dem Netzwerk zu verbinden"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für uucpd daemon"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "SELinux-Schutz für squid-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für vmware daemon"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "SELinux-Schutz für ssh-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für watchdog daemon"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "SSH-Logins als 'sysadm_r:sysadm_t' erlauben"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für winbind daemon"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"'staff_r'-Benutzern erlauben, das 'sysadm'-Benutzerverzeichnis zu "
-+"durchsuchen und Dateien zu lesen (z.B. ~/.bashrc)"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für xdm daemon"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Universeller SSL-Tunnel"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "'xdm' Logins als 'sysadm_r:sysadm_t' gestatten"
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "SELinux-Schutz für stunnel-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für xen daemon"
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"Dem stunnel-Daemon erlauben, eigenständig ausserhalb von 'xinetd' zu laufen"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "SELinux-Schutz für swat-Daemon deaktivieren"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "'xen' gestatten, physikalische Plattengeräte zu lesen/beschreiben"
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "SELinux-Schutz für sxid-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für xfs daemon"
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "SELinux-Schutz für syslogd-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Deaktiviere SELinux-Schutz für xen-Daemon"
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "SELinux-Schutz für System cron-Dienst deaktivieren"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ypbind daemon"
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "SELinux-Schutz für tcp-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für NIS Password Daemon"
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "SELinux-Schutz für telnet-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für ypserv daemon"
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "SELinux-Schutz für tftpd-Daemon deaktivieren"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Deaktiviere SELinux Schutz für NIS Transfer Daemon"
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "SELinux-Schutz für transproxy-Daemon deaktivieren"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Dem SELinux-Benutzer webadm gestatten, nicht privilegierte "
--#~ "Benutzerverzeichnisse zu verwalten"
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "SELinux-Schutz für udev-Daemon deaktivieren"
  
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to read unprivileged users home directories"
 -#~ msgstr ""
 -#~ "Dem SELinux-Benutzer webadm gestatten, nicht privilegierte "
 -#~ "Benutzerverzeichnisse zu lesen"
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "SELinux-Schutz für uml-Daemon deaktivieren"
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr ""
  
 -#~ msgid "Are you sure you want to delete %s '%s'?"
 -#~ msgstr "Möchten Sie %s '%s' wirklich löschen?"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+"'xinetd' erlauben, uneingeschränkt zu laufen, inklusive einiger Dienste, die "
-+"gestartet werden, welche Domain-Übertragung nicht explizit definiert haben."
  
 -#~ msgid "Delete %s"
 -#~ msgstr "%s löschen"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+"rc-Skripten erlauben, uneingeschränkt zu laufen, inklusive beliebiger "
-+"Daemons, die von einem rc-Skript gestartet werden, das Domain-Übertragung "
-+"nicht explizit definiert hat"
  
 -#~ msgid "Add %s"
 -#~ msgstr "Hinzufügen von %s"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "'rpm' erlauben, ohne Einschränkungen zu laufen"
+-
 -#~ msgid "Modify %s"
 -#~ msgstr "%s ändern"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
 +msgstr ""
-+"Privilegierten Dienstprogrammen wie 'hotplug' und 'insmod' erlauben, ohne "
-+"Einschränkung zu laufen"
  
 -#~ msgid "Permissive"
 -#~ msgstr "Permissive"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "SELinux-Schutz für updfstab-Daemon deaktivieren"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
  
 -#~ msgid "Enforcing"
 -#~ msgstr "Enforcing"
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "SELinux-Schutz für uptimed-Daemon deaktivieren"
--#~ msgid "Disabled"
--#~ msgstr "Deaktiviert"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"'user_r' erlauben, 'sysadm_r'-Rechte via 'su', 'sudo' oder 'userhelper' zu "
-+"erlangen. Andernfalls ist dies lediglich 'staff_r' gestattet"
--#~ msgid "Status"
--#~ msgstr "Status"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Benutzern erlauben, den mount-Befehl auszuführen"
+-
 -#~ msgid ""
 -#~ "Changing the policy type will cause a relabel of the entire file system "
 -#~ "on the next boot. Relabeling takes a long time depending on the size of "
@@ -51788,11 +63145,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "Wenn der Richtlinientyp geändert wird, muss beim nächsten Neustart das "
 -#~ "vollständige Dateisystem neu beschriftet werden. Das Neubeschriften wird, "
 -#~ "je nach Grösse des Dateisystems, sehr lange dauern. Wollen Sie fortfahren?"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
 +msgstr ""
-+"Regulären Benutzern direkten Zugriff auf die Maus erlauben (nur dem X-Server "
-+"erlauben)"
  
 -#~ msgid ""
 -#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
@@ -51809,9 +63164,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "können Sie in den 'permissive' Modus wechseln, in dem Fehler lediglich "
 -#~ "protokolliert, die SELinux-Richtlinien jedoch nicht erzwungen werden. Der "
 -#~ "'permissive' Modus erfordert keinen Neustart. Möchten Sie fortfahren?"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Benutzern erlauben den dmesg-Befehl auszuführen"
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Changing to SELinux enabled will cause a relabel of the entire file "
@@ -51822,73 +63177,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "gesamten Dateisystems beim nächsten Neustart nach sich. Das Neu-"
 -#~ "Kennzeichnen dauert sehr lange, abhängig von der Grösse des Dateisystems. "
 -#~ "Möchten Sie fortfahren?"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+"Benutzern erlauben, Netzwerkschnittstellen zu kontrollieren (setzt zudem "
-+"USERCTL=true voraus)"
  
 -#~ msgid "<b>Select:</b>"
 -#~ msgstr "<b>Wählen Sie aus:</b>"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Normalen Benutzern erlauben, 'ping' auszuführen"
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
  
 -#~ msgid "Add"
 -#~ msgstr "Hinzufügen"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+"Benutzern erlauben, 'noextattrfile' (FAT, CDROM, FLOPPY) zu lesen/beschreiben"
  
 -#~ msgid "Add File Context"
 -#~ msgstr "Dateikontext hinzufügen"
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Benutzern erlauben, USB-Geräte zu lesen/beschreiben"
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr ""
  
 -#~ msgid "Add Network Port"
 -#~ msgstr "Netzwerk-Port hinzufügen"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+"Benutzern erlauben, TCP-Server auszuführen (Verbindung zu Ports und Annahme "
-+"der Verbindung aus derselben Domain und ausserhalb 'users'). Wird dies "
-+"verweigert, muss FTP im Passiv-Modus laufen und verändert ggf. auch andere "
-+"Protokolle"
  
 -#~ msgid "Add SELinux Login Mapping"
 -#~ msgstr "SELinux Login-Zuweisung hinzufügen"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Benutzer erlauben, 'ttyfiles' statistisch anzusehen"
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
  
 -#~ msgid "Add SELinux Network Ports"
 -#~ msgstr "SELinux Netzwerk-Ports hinzufügen"
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "SELinux-Schutz für uucpd-Daemon deaktivieren"
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
  
 -#~ msgid "Add SELinux User"
 -#~ msgstr "SELinux-Benutzer hinzufügen"
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "SELinux-Schutz für vmware-Daemon deaktivieren"
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
  
 -#~ msgid "Add SELinux User Mapping"
 -#~ msgstr "SELinux Benutzerzuweisung hinzufügen"
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "SELinux-Schutz für watchdog-Daemon deaktivieren"
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
  
 -#~ msgid "Add Translation"
 -#~ msgstr "Übersetzung hinzufügen"
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "SELinux-Schutz für winbind-Daemon deaktivieren"
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Copyright (c)2006 Red Hat, Inc.\n"
@@ -51896,40 +63243,22 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ msgstr ""
 -#~ "Copyright (c)2006 Red Hat, Inc.\n"
 -#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "SELinux-Schutz für xdm-Daemon deaktivieren"
+-
 -#~ msgid "Current Enforcing Mode"
 -#~ msgstr "Derzeitiger Enforcing-Modus"
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "'xdm' Logins als 'sysadm_r:sysadm_t' erlauben"
+-
 -#~ msgid "Delete File Context"
 -#~ msgstr "Dateikontext löschen"
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "SELinux-Schutz für xen-Daemon deaktivieren"
+-
 -#~ msgid "Delete Network Port"
 -#~ msgstr "Netzwerk-Port löschen"
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
+-
 -#~ msgid "Delete SELinux User Mapping"
 -#~ msgstr "SELinux-Benutzerzuordnung löschen"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "'xen' erlauben, physische Festplatten zu lesen/beschreiben"
+-
 -#~ msgid "Delete Translation"
 -#~ msgstr "Übersetzung löschen"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "SELinux-Schutz für xfs-Daemon deaktivieren"
+-
 -#~ msgid ""
 -#~ "Disabled\n"
 -#~ "Permissive\n"
@@ -51938,122 +63267,360 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 -#~ "Deaktiviert\n"
 -#~ "Permissive\n"
 -#~ "Enforcing\n"
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "SELinux-Schutz für xen-Steuerung deaktivieren"
+-
 -#~ msgid "Edit Network Port"
 -#~ msgstr "Netzwerk-Port bearbeiten"
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "SELinux-Schutz für ypbind-Daemon deaktivieren"
+-
 -#~ msgid ""
 -#~ "Enable/Disable additional audit rules, that are normally not reported in "
 -#~ "the log files."
 -#~ msgstr ""
 -#~ "Zusätzliche Prüfregeln aktivieren/deaktivieren, die normalerweise nicht "
 -#~ "in den Protokolldateien erscheinen."
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "SELinux-Schutz für NIS-Passwort-Daemon deaktivieren"
+-
 -#~ msgid "File Specification"
 -#~ msgstr "Dateispezifikation"
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "SELinux-Schutz für ypserv-Daemon deaktivieren"
+-
 -#~ msgid "File Type"
 -#~ msgstr "Dateityp"
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "SELinux-Schutz für NIS-Transfer-Daemon deaktivieren"
+-
 -#~ msgid "Filter"
 -#~ msgstr "Filter"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Dem SELinux-Benutzer webadm erlauben, nicht privilegierte "
-+"Benutzerverzeichnisse zu verwalten"
+-
 -#~ msgid "Generate new policy module"
 -#~ msgstr "Neues Richtlinienmodul generieren"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Dem SELinux-Benutzer webadm erlauben, nicht privilegierte "
-+"Benutzerverzeichnisse zu lesen"
+-
 -#~ msgid "Load policy module"
 -#~ msgstr "Richtlinienmodul laden"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Wollen Sie %s '%s' wirklich löschen?"
+-
 -#~ msgid "Lockdown..."
 -#~ msgstr "Abriegelung..."
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s löschen"
+-
 -#~ msgid "MLS"
 -#~ msgstr "MLS"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s hinzufügen"
+-
 -#~ msgid "Modify File Context"
 -#~ msgstr "Datei-Kontext ändern"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s bearbeiten"
+-
 -#~ msgid "Modify SELinux User"
 -#~ msgstr "SELinux-Benutzer modifizieren"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Permissive"
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
  
 -#~ msgid "Modify SELinux User Mapping"
 -#~ msgstr "SELinux-Benutzer Benutzerzuordnung"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Enforcing"
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
  
 -#~ msgid "Modify Translation"
 -#~ msgstr "Übersetzung bearbeiten"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Deaktiviert"
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
  
 -#~ msgid "Relabel on next reboot."
 -#~ msgstr "Beim nächsten Neustart neu kennzeichnen."
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Status"
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr ""
  
 -#~ msgid "Remove loadable policy module"
 -#~ msgstr "Ladbares Richtlinienmodul entfernen"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+"Wenn der Richtlinientyp geändert wird, muss beim nächsten Neustart das "
-+"vollständige Dateisystem neu gekennzeichnet werden. Die Neukennzeichnung "
-+"kann je nach Grösse des Dateisystems sehr lange dauern. Wollen Sie "
-+"fortfahren?"
  
 -#~ msgid "Revert boolean setting to system default"
 -#~ msgstr ""
 -#~ "Boolsche Einstellungen auf Standardeinstellungen des Systems zurücksetzen"
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr ""
+-#~ msgid "Run booleans lockdown wizard"
+-#~ msgstr "Führe Boolean Abrieglungs-Konfigurationsassistenten aus"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux-Administration"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux-Typ"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Management-Objekt auswählen"
+-
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Wählen Sie aus, ob Sie das gesamte Dateisystem beim nächsten Neustart neu "
+-#~ "kennzeichnen möchten. Das Neu-Kennzeichnen kann sehr lange dauern, "
+-#~ "abhängig von der Grösse des Systems. Falls Sie die Richtlinientypen "
+-#~ "ändern oder vom Zustand 'disabled' zu 'enforcing' wechseln, ist eine Neu-"
+-#~ "Kennzeichnung erforderlich."
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Standard-Enforcing-Modus des Systems"
+-
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Systemstandard-Richtlinientyp: "
+-
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Zwischen 'Angepasst' und 'Alles Boolsche Werte' auswählen"
+-
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Zwischen 'Angepasst' und 'Alle Ports' auswählen"
+-
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Zwischen 'Alles' oder 'Angepasstem Dateikontext' auswählen"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Löschen"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Einstellungen"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "alle Dateien\n"
+-#~ "reguläre Datei\n"
+-#~ "Verzeichnis\n"
+-#~ "Zeichengerät\n"
+-#~ "Blockgerät\n"
+-#~ "Socket\n"
+-#~ "symbolischer Link\n"
+-#~ "Named-Pipe\n"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Empfindlichkeitsstufe"
+-
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux-Benutzer '%s' wird benötigt"
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
++
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
++
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
++
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
++
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr ""
++
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
++
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr ""
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr ""
++
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
++msgstr ""
++
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
++msgstr ""
++
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
++
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
++
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -52063,95 +63630,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Das Deaktivieren von SELinux erfordert einen Neustart. Es wird nicht "
-+"empfohlen. Falls Sie nachträglich entscheiden, SELinux wieder zu aktivieren, "
-+"muss das System neu gekennzeichnet werden. Falls Sie nur überprüfen möchten, "
-+"ob SELinux ein Problem auf Ihrem System verursacht, können Sie in den "
-+"'permissive' Modus wechseln, in dem Fehler lediglich protokolliert, die "
-+"SELinux-Richtlinien jedoch nicht erzwungen werden. Der 'permissive' Modus "
-+"erfordert keinen Neustart. Möchten Sie fortfahren?"
--#~ msgid "Run booleans lockdown wizard"
--#~ msgstr "Führe Boolean Abrieglungs-Konfigurationsassistenten aus"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Das Aktivieren von SELinux führt beim nächsten Neustart zu einer kompletten "
-+"Neukennzeichnung des gesamten Dateisystems. Die Neukennzeichnung kann je "
-+"nach Grösse des Dateisystems sehr lange dauern. Wollen Sie fortfahren?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux-Administration"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux-Login-Zuordnung hinzufügen"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux-Netzwerk-Ports hinzufügen"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux-Typ"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux-Typ"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS-\n"
-+"Stufe"
--#~ msgid "Select Management Object"
--#~ msgstr "Management-Objekt auswählen"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Dateispezifikation"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Wählen Sie aus, ob Sie das gesamte Dateisystem beim nächsten Neustart neu "
--#~ "kennzeichnen möchten. Das Neu-Kennzeichnen kann sehr lange dauern, "
--#~ "abhängig von der Grösse des Systems. Falls Sie die Richtlinientypen "
--#~ "ändern oder vom Zustand 'disabled' zu 'enforcing' wechseln, ist eine Neu-"
--#~ "Kennzeichnung erforderlich."
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Dateityp"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Standard-Enforcing-Modus des Systems"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -52162,353 +63681,280 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"alle Dateien\n"
-+"reguläre Datei\n"
-+"Verzeichnis\n"
-+"Zeichengerät\n"
-+"Blockgerät\n"
-+"Socket\n"
-+"symbolischer Link\n"
-+"Named-Pipe\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux-Benutzer hinzufügen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux-Administration"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Hinzufügen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Eigenschaften"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Löschen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Management-Objekt auswählen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Auswählen:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Systemstandard Enforcing-Modus"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Systemstandard-Richtlinientyp: "
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Deaktiviert\n"
-+"Permissive\n"
-+"Enforcing\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Derzeitiger Enforcing-Modus"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Systemstandard-Richtlinientyp: "
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Zwischen 'Angepasst' und 'Alles Boolsche Werte' auswählen"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Wählen Sie aus, ob Sie das gesamte Dateisystem beim nächsten Neustart neu "
-+"kennzeichnen möchten.  Die Neukennzeichnung kann je nach Grösse des "
-+"Dateisystems sehr lange dauern. Falls Sie die Richtlinientypen ändern oder "
-+"vom Zustand 'disabled' zu 'enforcing' wechseln, ist eine Neukennzeichnung "
-+"erforderlich."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Beim nächsten Neustart neu kennzeichnen."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+"Einstellungen der Booleschen Variablen auf Standardeinstellungen des Systems "
-+"zurücksetzen"
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Zwischen 'Angepasst' und 'Alle' Boolschen Variablen wechseln"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Sperr-Assistenten für Boolesche Variablen ausführen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Sperren..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filter"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Dateikontext hinzufügen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Dateikontext ändern"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Dateikontext löschen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Zwischen 'Angepassten' und 'Allen' Dateikontexten wechseln"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Zwischen 'Angepasst' und 'Alle Ports' auswählen"
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux-Benutzerzuordnung hinzufügen"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Zwischen 'Alles' oder 'Angepasstem Dateikontext' auswählen"
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux-Benutzerzuordnung ändern"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux-Benutzerzuordnung löschen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Benutzer hinzufügen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Benutzer bearbeiten"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Benutzer löschen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Übersetzung hinzufügen"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Übersetzung ändern"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Übersetzung löschen"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Netzwerk-Port hinzufügen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Netzwerk-Port bearbeiten"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Netzwerk-Port löschen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Zwischen 'Angepassten' und 'Allen' Ports wechseln"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Neues Richtlinienmodul erstellen"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Richtlinienmodul laden"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Ladbares Richtlinienmodul löschen"
--#~ msgid "_Delete"
--#~ msgstr "_Löschen"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Zusätzliche Audit-Regeln aktivieren/deaktivieren, die normalerweise nicht in "
-+"den Protokolldateien erscheinen."
--#~ msgid "_Properties"
--#~ msgstr "_Einstellungen"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "alle Dateien\n"
--#~ "reguläre Datei\n"
--#~ "Verzeichnis\n"
--#~ "Zeichengerät\n"
--#~ "Blockgerät\n"
--#~ "Socket\n"
--#~ "symbolischer Link\n"
--#~ "Named-Pipe\n"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Prozessmodus in 'permissive' ändern."
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Prozessmodus in 'enforcing' ändern"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Prozess-Domainn"
--#~ msgid "Sensitvity Level"
--#~ msgstr "Empfindlichkeitsstufe"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux-Benutzer '%s' wird benötigt"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux-Benutzer '%s' wird benötigt"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils-2.0.85/po/el.po
---- nsapolicycoreutils/po/el.po        2011-02-17 15:11:25.850722895 -0500
-+++ policycoreutils-2.0.85/po/el.po    2011-02-18 16:03:41.355975653 -0500
-@@ -1,22 +1,43 @@
- # translation of el.po to Greek
++msgstr ""
+diff --git a/policycoreutils/po/el.po b/policycoreutils/po/el.po
+index a86ac32..63b5522 100644
+--- a/policycoreutils/po/el.po
++++ b/policycoreutils/po/el.po
+@@ -1,23 +1,25 @@
+-# translation of el.po to Greek
++# SOME DESCRIPTIVE TITLE.
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
--#
- # Simos Xenitellis <simos@gnome.org>, 2006.
+ #
+-# Simos Xenitellis <simos@gnome.org>, 2006.
++# Translators:
  # Dimitris Glezos <dimitris@glezos.com>, 2006.
-+# Thalia Papoutsaki <saliyath@gmail.com>, 2010.
 +# Nikos Charonitakis <nikcha@ovi.com>, 2010.
++# Simos Xenitellis <simos@gnome.org>, 2006.
++# Thalia Papoutsaki <saliyath@gmail.com>, 2010.
  msgid ""
  msgstr ""
- "Project-Id-Version: el\n"
+-"Project-Id-Version: el\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2006-09-18 14:49+0100\n"
 -"Last-Translator: Dimitris Glezos <dimitris@glezos.com>\n"
 -"Language-Team: Greek <fedora-trans-el@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-03-10 19:39+0300\n"
-+"Last-Translator: Nikos Charonitakis <nikcha@ovi.com>\n"
-+"Language-Team: Greek\n"
-+"Language: el\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Greek <trans-el@lists.fedoraproject.org>\n"
+ "Language: el\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
 -"X-Generator: KBabel 1.11.4\n"
 -"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Virtaal 0.5.1\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Αδυναμία δημιουργίας συσκευής αναπαραγωγής"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -56,14 +77,14 @@
+@@ -27,16 +29,15 @@ msgid ""
+ msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to initialize PAM\n"
+-msgstr "Αδυναμία αρχικοποίησης φωνών\n"
++msgstr ""
+ #: ../run_init/run_init.c:139
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get account information\n"
+-msgstr "Αποτυχία ορισμού εύρεσης κειμένου: %s."
++msgstr ""
+-# #-#-#-#-#  gdm2.gnome-2-14.el.po (el)  #-#-#-#-#
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+ msgstr "Συνθηματικό:"
+@@ -57,14 +58,14 @@ msgid "run_init: incorrect password for %s\n"
  msgstr "run_init: λανθασμένο συνθηματικό για %s\n"
  
  #: ../run_init/run_init.c:309
@@ -52527,1039 +63973,1360 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
  
  #: ../run_init/run_init.c:361
  #, c-format
-@@ -82,7 +103,7 @@
+@@ -77,13 +78,13 @@ msgid "authentication failed.\n"
+ msgstr "αποτυχία πιστοποίησης.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, fuzzy, c-format
++#, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Αδυναμία εκτέλεσης '%s': %s\n"
++msgstr ""
  
- #: ../audit2allow/audit2allow:217
+ #: ../audit2allow/audit2allow:230
  msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
 +msgstr "******************** ΣΗΜΑΝΤΙΚΟ ***********************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
-@@ -127,11 +148,12 @@
+@@ -94,28 +95,24 @@ msgid "global"
+ msgstr ""
  
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Επίπεδο"
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Αδυναμία έναρξης αλληλουχίας κατάστασης: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Μετάφραση"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+ msgstr ""
  
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, fuzzy, python-format
-@@ -139,9 +161,9 @@
- msgstr "Ο φάκελος δεν είναι δυνατό να περιέχει το χαρακτήρα '/'"
+ #: ../semanage/seobject.py:235
+-#, fuzzy
+ msgid "Cannot read policy store."
+-msgstr "Αδυναμία δημιουργίας συσκευής αναπαραγωγής"
++msgstr ""
  
- #: ../semanage/seobject.py:250
--#, fuzzy, python-format
-+#, python-format
- msgid "Invalid Level '%s' "
--msgstr "Μη έγκυρη στρατηγική '%s'"
-+msgstr "Μη έγκυρο επίπεδο '%s'"
+ #: ../semanage/seobject.py:240
+-#, fuzzy
+ msgid "Could not establish semanage connection"
+-msgstr "Αδυναμία δημιουργίας σύνδεσης σε “%s” ."
++msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
- #: ../semanage/seobject.py:253
- #, fuzzy, python-format
-@@ -184,553 +206,558 @@
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -126,35 +123,32 @@ msgid "Semanage transaction already in progress"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+ #: ../semanage/seobject.py:264
+-#, fuzzy
+ msgid "Could not start semanage transaction"
+-msgstr "Αδυναμία έναρξης αλληλουχίας κατάστασης: %s"
++msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Αδυναμία έναρξης αλληλουχίας κατάστασης: %s"
++msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+ msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Αδυναμία εκκίνησης Sound Juicer"
++msgstr ""
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "Έκδοση"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Ανενεργό"
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+@@ -162,9 +156,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -200,69 +194,69 @@ msgstr ""
+ #: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+ #: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+ #: ../semanage/seobject.py:2037
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
 +#, python-format
  msgid "Could not create a key for %s"
 -msgstr "Αδυναμία δημιουργίας cache για %s"
 +msgstr "Αδυναμία δημιουργίας κλειδιού για %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, fuzzy, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
 -msgstr "Ο φάκελος `%s' δεν υπάρχει."
 +msgstr "Η Ομάδα Linux  %s  δεν υπάρχει"
  
--#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:497
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:422
 +#, python-format
  msgid "Linux User %s does not exist"
 -msgstr "Ο φάκελος `%s' δεν υπάρχει."
 +msgstr "Ο χρήστης Linux %s δεν υπάρχει"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:501
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create login mapping for %s"
- msgstr "Αδυναμία δημιουργίας journal για %s"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set name for %s"
- msgstr "Δεν ήταν δυνατή η μετονομασία του φακέλου : %s"
+-msgstr "Δεν ήταν δυνατή η μετονομασία του φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set MLS range for %s"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:514
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set SELinux user for %s"
- msgstr "Αδυναμία δημιουργίας journal για %s"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:518
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add login mapping for %s"
- msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- #, fuzzy
- msgid "add SELinux user mapping"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
  msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, fuzzy, python-format
++#, python-format
  msgid "Login mapping for %s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:563
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query seuser for %s"
- msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
+-msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:577
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
+-msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
+@@ -270,97 +264,98 @@ msgid "Login mapping for %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:615
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "Αδυναμία δημιουργίας journal για %s"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- #, fuzzy
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
+-#, fuzzy
  msgid "Could not list login mappings"
- msgstr "Αποτυχία δημιουργίας δεσμού στο pipeline"
+-msgstr "Αποτυχία δημιουργίας δεσμού στο pipeline"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 -#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr "Χρειάζεται ένας διοργανωτής."
 +msgstr "Χρήστης SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
 +#, python-format
  msgid "Could not check if SELinux user %s is defined"
 -msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
 +msgstr "Δεν ήταν δυνατό να ελεγχθεί αν ο χρήστης SELinux %s έχει καθοριστεί"
  
--#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:600
 +#, python-format
- msgid "SELinux user %s is already defined"
--msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
-+msgstr "Ο χρήστης SELinux %s έχει ήδη καθορισθεί"
+ msgid "Could not query user for %s"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:737
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:604
 +#, python-format
  msgid "Could not create SELinux user for %s"
 -msgstr "Αδυναμία δημιουργίας journal για %s"
 +msgstr "Αδυναμία δημιουργίας χρήστη SELinux για %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:746
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add role %s for %s"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
  
- #
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, fuzzy, python-format
+-#
+ #: ../semanage/seobject.py:755
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set MLS level for %s"
- msgstr "Αποτυχία ρύθμισης των διαπιστευτηρίων για %s"
+-msgstr "Αποτυχία ρύθμισης των διαπιστευτηρίων για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:758
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add prefix %s for %s"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:761
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not extract key for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:765
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add SELinux user %s"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
  msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- #, fuzzy
+ #: ../semanage/seobject.py:789
+-#, fuzzy
  msgid "Requires prefix or roles"
- msgstr "_Απαιτούμενα άτομα"
+-msgstr "_Απαιτούμενα άτομα"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
 +#, python-format
  msgid "SELinux user %s is not defined"
 -msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
 +msgstr "Ο χρήστης SELinux %s δεν έχει ορισθεί"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, fuzzy, python-format
- msgid "Could not query user for %s"
- msgstr "Αδυναμία δημιουργίας journal για %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:828
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify SELinux user %s"
- msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
+-msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
+@@ -368,19 +363,18 @@ msgid "SELinux user %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:873
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete SELinux user %s"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- #, fuzzy
+ #: ../semanage/seobject.py:911
+-#, fuzzy
  msgid "Could not list SELinux users"
- msgstr "Αδυναμία εκκίνησης Sound Juicer"
+-msgstr "Αδυναμία εκκίνησης Sound Juicer"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:917
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not list roles for user %s"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr ""
+@@ -388,11 +382,11 @@ msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
 -msgstr ""
 +msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
 -msgstr ""
 +msgstr "Prefix"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
+@@ -403,84 +397,81 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- #, fuzzy
+ #: ../semanage/seobject.py:963
+-#, fuzzy
  msgid "Protocol udp or tcp is required"
- msgstr "Δεν υποστηρίζεται το πρωτόκολλο"
+-msgstr "Δεν υποστηρίζεται το πρωτόκολλο"
++msgstr ""
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- #, fuzzy
+ #: ../semanage/seobject.py:965
+-#, fuzzy
  msgid "Port is required"
- msgstr "Απαιτείται κωδικός."
+-msgstr "Απαιτείται κωδικός."
++msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Μη έγκυρη τιμή VGA"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:979
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create a key for %s/%s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- #, fuzzy
+ #: ../semanage/seobject.py:990
+-#, fuzzy
  msgid "Type is required"
- msgstr "Απαιτείται πληρωμή"
+-msgstr "Απαιτείται πληρωμή"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
+-msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:998
+-#, fuzzy, python-format
++#, python-format
  msgid "Port %s/%s already defined"
- msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
++msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1002
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create port for %s/%s"
- msgstr "Αδυναμία δημιουργίας journal για %s"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1008
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create context for %s/%s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1012
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr "Δεν ήταν δυνατό το κλείσιμο του φακέλου πηγής %s: %s"
+-msgstr "Δεν ήταν δυνατό το κλείσιμο του φακέλου πηγής %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1016
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
+-msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1020
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr "Αδυναμία συγχρονισμού φακέλου spool %s: %s"
+-msgstr "Αδυναμία συγχρονισμού φακέλου spool %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1025
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Δεν ήταν δυνατή η δημιουργία αρχείου κλειδώματος για %s: %s"
+-msgstr "Δεν ήταν δυνατή η δημιουργία αρχείου κλειδώματος για %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1029
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set port context for %s/%s"
- msgstr "Δεν ήταν δυνατό το κλείσιμο του φακέλου πηγής %s: %s"
+-msgstr "Δεν ήταν δυνατό το κλείσιμο του φακέλου πηγής %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1033
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add port %s/%s"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
+@@ -488,34 +479,32 @@ msgid "Requires setype or serange"
  msgstr ""
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- #, fuzzy
+ #: ../semanage/seobject.py:1049
+-#, fuzzy
  msgid "Requires setype"
- msgstr "_Απαιτούμενα άτομα"
+-msgstr "_Απαιτούμενα άτομα"
++msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, fuzzy, python-format
++#, python-format
  msgid "Port %s/%s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1061
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query port %s/%s"
- msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
+-msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1072
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify port %s/%s"
- msgstr "Δεν ήταν δυνατή η δικράνωση: %s"
+-msgstr "Δεν ήταν δυνατή η δικράνωση: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
+-msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
+@@ -523,14 +512,13 @@ msgid "Port %s/%s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1122
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete port %s/%s"
- msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
+-msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
++msgstr ""
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- #, fuzzy
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-#, fuzzy
  msgid "Could not list ports"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -540,186 +528,176 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "Απαιτείται κωδικός."
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Απαιτείται κωδικός."
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+-msgstr "Απαιτείται κωδικός."
++msgstr ""
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "άγνωστο ή χαμένο πρωτόκολλο"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- #, fuzzy
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+-#, fuzzy
  msgid "SELinux Type is required"
- msgstr "Χρειάζεται ένας διοργανωτής."
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, fuzzy, python-format
+-msgstr "Χρειάζεται ένας διοργανωτής."
++msgstr ""
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+ #: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+ #: ../semanage/seobject.py:1728
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create key for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create context for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Δεν ήταν δυνατή η μετονομασία του φακέλου : %s"
+-msgstr "Δεν ήταν δυνατή η μετονομασία του φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
+-msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
+-msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Αδυναμία αποθήκευσης του αρχείου  %s."
+-msgstr "Αδυναμία αποθήκευσης του αρχείου  %s."
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
+-msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
+-msgstr "Δεν ήταν δυνατή η φόρτωση της περίληψης για  %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Δεν ήταν δυνατή η δικράνωση: %s"
+-msgstr "Δεν ήταν δυνατή η δικράνωση: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Οι φάκελοι spool δε μπορούν να διαγραφούν"
+-msgstr "Οι φάκελοι spool δε μπορούν να διαγραφούν"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Αδυναμία δημιουργίας journal για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "Αδυναμία σύνδεσης στο περιβάλλον χρήσης '%s'"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, fuzzy, python-format
- msgid "Interface %s already defined"
- msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-msgstr "Αδυναμία σύνδεσης στο περιβάλλον χρήσης '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1461
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create interface for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1470
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in interface context for %s"
- msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
+-msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1474
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in interface context for %s"
- msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
+-msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1478
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in interface context for %s"
- msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
+-msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1483
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
+-msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1487
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set interface context for %s"
- msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
+-msgstr "Αδυναμία ανάλυσης ονόματος διεπαφής από  '%s'"
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1491
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set message context for %s"
- msgstr "Δεν είναι δυνατή η αποστολή του μηνύματος : %s"
+-msgstr "Δεν είναι δυνατή η αποστολή του μηνύματος : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1495
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add interface %s"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, fuzzy, python-format
++#, python-format
  msgid "Interface %s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1522
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query interface %s"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1533
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify interface %s"
  msgstr ""
-@@ -741,210 +768,211 @@
- "#-#-#-#-#  gnome-volume-manager.HEAD.el.po (el)  #-#-#-#-#\n"
- "Αδυναμία φόρτωσης κύριας διεπαφής"
+-"#-#-#-#-#  gnome-control-center.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-"Αδυναμία φόρτωσης της κύριας επιφάνειας χρήστη\n"
+-"#-#-#-#-#  gnome-screensaver.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-"Αδυναμία φόρτωση της κύριας επιφάνειας χρήσης\n"
+-"#-#-#-#-#  gnome-volume-manager.HEAD.el.po (el)  #-#-#-#-#\n"
+-"Αδυναμία φόρτωσης κύριας διεπαφής"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
+@@ -727,32 +705,30 @@ msgid "Interface %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1562
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete interface %s"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- #, fuzzy
+ #: ../semanage/seobject.py:1588
+-#, fuzzy
  msgid "Could not list interfaces"
- msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr ""
 +msgstr "Περιβάλλον SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
  msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -760,24 +736,24 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Ο φάκελος `%s' δεν υπάρχει."
++msgstr ""
+ #: ../semanage/seobject.py:1692
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in file context for %s"
- msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
+-msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1696
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in file context for %s"
- msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
+-msgstr "Αδυναμία αναγνώρισης τύπου αρχείου %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
+-msgstr "Δεν είναι δυνατή η ανάγνωση πληροφοριών συμβολικού δεσμού για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, fuzzy, python-format
+@@ -796,60 +772,58 @@ msgstr ""
+ #: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+ #: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+ #: ../semanage/seobject.py:1876
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, fuzzy, python-format
- msgid "File context for %s already defined"
- msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1745
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create file context for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1753
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in file context for %s"
- msgstr "Αδυναμία αποθήκευσης του αρχείου  %s."
+-msgstr "Αδυναμία αποθήκευσης του αρχείου  %s."
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set file context for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1767
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add file context for %s"
- msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
+-msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
  msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, fuzzy, python-format
++#, python-format
  msgid "File context for %s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1800
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query file context for %s"
- msgstr "Αδυναμία δημιουργίας cache για %s"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1826
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify file context for %s"
- msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
+-msgstr "Αδυναμία φόρτωσης εικονιδίου για %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "Αδυναμία προβολής περιεχομένου."
+-msgstr "Αδυναμία προβολής περιεχομένου."
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
  msgstr ""
- "Δεν ήταν δυνατή η διαγραφή του αρχείου περιεχομένων του φακέλου `%s': %s"
+-"Δεν ήταν δυνατή η διαγραφή του αρχείου περιεχομένων του φακέλου `%s': %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
+@@ -857,28 +831,25 @@ msgid "File context for %s is defined in policy, cannot be deleted"
  msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1884
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete file context for %s"
  msgstr ""
- "Δεν ήταν δυνατή η διαγραφή του αρχείου περιεχομένων του φακέλου `%s': %s"
+-"Δεν ήταν δυνατή η διαγραφή του αρχείου περιεχομένων του φακέλου `%s': %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- #, fuzzy
+ #: ../semanage/seobject.py:1899
+-#, fuzzy
  msgid "Could not list file contexts"
- msgstr "Αδυναμία προβολής περιεχομένου."
+-msgstr "Αδυναμία προβολής περιεχομένου."
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- #, fuzzy
+ #: ../semanage/seobject.py:1903
+-#, fuzzy
  msgid "Could not list local file contexts"
- msgstr "Αδυναμία προβολής περιεχομένου."
+-msgstr "Αδυναμία προβολής περιεχομένου."
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
 -msgstr ""
 +msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
 -msgstr ""
 +msgstr "τύπος"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -894,34 +865,34 @@ msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
+-msgstr "Δεν ήταν δυνατό να ελεγχθεί το αρχείο μηνυμάτων %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, fuzzy, python-format
++#, python-format
  msgid "Boolean %s is not defined"
- msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1994
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query file context %s"
- msgstr "Δεν είναι δυνατό το άνοιγμα του αρχείου: %s: %s"
+-msgstr "Δεν είναι δυνατό το άνοιγμα του αρχείου: %s: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Θα πρέπει να καθορίσετε ένα μοτίβο"
+-msgstr "Θα πρέπει να καθορίσετε ένα μοτίβο"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
+-msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2007
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify boolean %s"
- msgstr "Αδυναμία ανοίγματος \"%s\""
+-msgstr "Αδυναμία ανοίγματος \"%s\""
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
- msgid "Bad format %s: Record %s"
+@@ -929,23 +900,22 @@ msgid "Bad format %s: Record %s"
  msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2048
+-#, fuzzy, python-format
++#, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Οι φάκελοι spool δε μπορούν να διαγραφούν"
+-msgstr "Οι φάκελοι spool δε μπορούν να διαγραφούν"
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2052
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete boolean %s"
- msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
+-msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου `%s': %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- #, fuzzy
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-#, fuzzy
  msgid "Could not list booleans"
- msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
+-msgstr "Αδυναμία αποθήκευσης φακέλου : %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "άγνωστο"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+@@ -957,7 +927,7 @@ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr ""
 +msgstr "SELinux boolean"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+@@ -967,15 +937,15 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "Περιγραφή"
  
- #
- #: ../newrole/newrole.c:198
-@@ -968,9 +996,9 @@
+-#
+ #: ../newrole/newrole.c:201
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "Αποτυχία ορίσματος του PAM_TTY=%s"
++msgstr ""
+ #: ../newrole/newrole.c:290
+ #, c-format
+@@ -993,9 +963,9 @@ msgid "cannot find valid entry in the passwd file.\n"
  msgstr ""
  
- #: ../newrole/newrole.c:447
+ #: ../newrole/newrole.c:450
 -#, fuzzy, c-format
 +#, c-format
  msgid "Out of memory!\n"
 -msgstr "Η μνήμη εξαντλήθηκε"
 +msgstr "Ανεπάρκεια μνήμης!\n"
  
- #: ../newrole/newrole.c:452
+ #: ../newrole/newrole.c:455
  #, c-format
-@@ -1217,9 +1245,9 @@
- msgstr "Αποτυχία εκτέλεσης gpg: %s"
+@@ -1007,59 +977,55 @@ msgstr ""
+ msgid "Unable to clear environment\n"
+ msgstr ""
  
- #: ../load_policy/load_policy.c:22
+-#
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
 -#, fuzzy, c-format
 +#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "Χρήση: %s\n"
-+msgstr "Χρήση:  %s [-qi]\n"
+ msgid "Error changing uid, aborting.\n"
+-msgstr "Σφάλμα στην ανάγνωση... ματαίωση"
++msgstr ""
+ #: ../newrole/newrole.c:612
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr "Σφάλμα διαγραφής εικόνας boot"
++msgstr ""
+ #: ../newrole/newrole.c:635
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "Σφάλμα εγγραφής στο δίσκο"
++msgstr ""
+ #: ../newrole/newrole.c:641
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error allocating memory.\n"
+-msgstr "Σφάλμα φόρτωσης λίστας memo"
++msgstr ""
+ #: ../newrole/newrole.c:648
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "Σφάλμα ανάκτησης μηνύματος"
++msgstr ""
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, fuzzy, c-format
++#, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Αδύνατος ο προσδιορισμός της τρέχουσας γεωμετρίας δισκέτας."
++msgstr ""
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+ msgstr "Σφάλμα! Αδυναμία ανοίγματος %s.\n"
+-#
+ #: ../newrole/newrole.c:705
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr "%s: Αποτυχία δημιουργίας περιβάλλοντος για %s. Διακοπή."
++msgstr ""
+-#
+ #: ../newrole/newrole.c:715
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr "%s: Αποτυχία δημιουργίας περιβάλλοντος για %s. Διακοπή."
++msgstr ""
+-#
+ #: ../newrole/newrole.c:725
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s: Αποτυχία δημιουργίας νέου αρχείου cookie σε %s"
++msgstr ""
+ #: ../newrole/newrole.c:772
+ #, c-format
+@@ -1067,14 +1033,14 @@ msgid "%s changed labels.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:778
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Αδυναμία δημιουργίας cache για %s"
++msgstr ""
+ #: ../newrole/newrole.c:835
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "Να επιτρέπεται η επιλογή πολλαπλών γραμμών"
++msgstr ""
+ #: ../newrole/newrole.c:843
+ #, c-format
+@@ -1097,24 +1063,24 @@ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr ""
+ #: ../newrole/newrole.c:891
+-#, fuzzy, c-format
++#, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Δεν ήταν δυνατή η λήψη μηνύματος"
++msgstr ""
+ #: ../newrole/newrole.c:901
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get new context.\n"
+-msgstr "Αποτυχία ορισμού εύρεσης κειμένου: %s."
++msgstr ""
+ #: ../newrole/newrole.c:908
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "Αποτυχία ορισμού τιμής: %s."
++msgstr ""
+ #: ../newrole/newrole.c:915
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "Αποτυχία ορισμού εύρεσης κειμένου: %s."
++msgstr ""
+ #: ../newrole/newrole.c:925
+ #, c-format
+@@ -1122,19 +1088,19 @@ msgid "failed to build new range with level %s\n"
+ msgstr ""
+ #: ../newrole/newrole.c:930
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "Αποτυχία ορισμού γλώσσας: %s."
++msgstr ""
+ #: ../newrole/newrole.c:938
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "αποτυχία αποστολής επόμενου αλφαριθμητικού \"%s\" στην ομιλία"
++msgstr ""
+ #: ../newrole/newrole.c:943
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s is not a valid context\n"
+-msgstr "Το %s δεν είναι έγκυρη τοποθεσία"
++msgstr ""
+ #: ../newrole/newrole.c:950
+ #, c-format
+@@ -1157,14 +1123,14 @@ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1070
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "Αποτυχία ορισμού αρίθμησης: %s."
++msgstr ""
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Αδυναμία ανάκτησης δεδομένων μετοχών."
++msgstr ""
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1172,9 +1138,9 @@ msgid "error on reading PAM service configuration.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1133
+-#, fuzzy, c-format
++#, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "Εισάγετε συνθηματικό για %s"
++msgstr ""
+ #: ../newrole/newrole.c:1160
+ #, c-format
+@@ -1187,19 +1153,19 @@ msgid "Unable to restore tty label...\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, fuzzy, c-format
++#, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "Αποτυχία ορισμού εύρεσης κειμένου: %s."
++msgstr ""
+ #: ../newrole/newrole.c:1224
+-#, fuzzy, c-format
++#, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Δεν ήταν δυνατό το κλείσιμο του προσωρινού φακέλου:%s"
++msgstr ""
+ #: ../newrole/newrole.c:1251
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr "Σφάλμα φόρτωσης λίστας memo"
++msgstr ""
+ #: ../newrole/newrole.c:1287
+ #, c-format
+@@ -1207,14 +1173,13 @@ msgid "Unable to restore the environment, aborting\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1298
+-#, fuzzy
+ msgid "failed to exec shell\n"
+-msgstr "Αποτυχία εκτέλεσης gpg: %s"
++msgstr ""
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "Χρήση: %s\n"
++msgstr "Χρήση:  %s [-qi]\n"
  #: ../load_policy/load_policy.c:71
  #, c-format
-@@ -1247,9 +1275,9 @@
+@@ -1222,19 +1187,18 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgstr ""
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "(tt) %s: αδυναμία φόρτωσης πρόσοψης: %s\n"
++msgstr ""
+ #: ../load_policy/load_policy.c:90
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "(tt) %s: αδυναμία φόρτωσης πρόσοψης: %s\n"
++msgstr ""
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+-#, fuzzy
+ msgid "Requires at least one category"
+-msgstr "Απαιτούμενα άτομα και έ_νας πόρος"
++msgstr ""
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+@@ -1242,16 +1206,14 @@ msgid "Can not modify sensitivity levels using '+' on %s"
  msgstr ""
  
  #: ../scripts/chcat:110
@@ -53569,9 +65336,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 -msgstr "%s είναι ήδη στη λίστα"
 +msgstr "%s είναι ήδη στο %s"
  
- # #-#-#-#-#  nautilus.gnome-2-14.el.po (el)  #-#-#-#-#
- #
-@@ -1297,9 +1325,9 @@
+-# #-#-#-#-#  nautilus.gnome-2-14.el.po (el)  #-#-#-#-#
+-#
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s is not in %s"
+-msgstr "%s σε %s"
++msgstr ""
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+@@ -1292,9 +1254,9 @@ msgid "Usage %s -l -d user ..."
  msgstr ""
  
  #: ../scripts/chcat:331
@@ -53583,7 +65359,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
  
  #: ../scripts/chcat:332
  #, c-format
-@@ -1312,98 +1340,2100 @@
+@@ -1307,192 +1269,2102 @@ msgstr ""
  
  #: ../scripts/chcat:334
  msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
@@ -53595,11 +65371,78 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 -msgstr ""
 +msgstr "chcat -l +CompanyConfidential juser"
  
- #: ../scripts/chcat:399
- #, fuzzy, c-format
+-#: ../scripts/chcat:399
+-#, fuzzy, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Σφάλμα πιστοποίησης: %s"
+-msgstr "Σφάλμα πιστοποίησης: %s"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "#-#-#-#-#  epiphany.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-#~ "Δεν υποστηρίζεται η εκτύπωση σε αυτόν τον εκτυπωτή\n"
+-#~ "#-#-#-#-#  yelp.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-#~ "Η εκτύπωση δεν υποστηρίζεται σε αυτόν τον εκτυπωτή"
+-
+-#, fuzzy
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Ο φάκελος δεν είναι δυνατό να περιέχει το χαρακτήρα '/'"
+-
+-#, fuzzy
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Μη έγκυρη στρατηγική '%s'"
+-
+-#, fuzzy
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s είναι ήδη στη λίστα"
+-
+-#, fuzzy
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί στο postamble\n"
+-
+-#, fuzzy
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-
+-#, fuzzy
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Απαιτείται κωδικός."
+-
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-
+-#, fuzzy
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Constant \"%s\" έχει ήδη καθορισθεί"
+-
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Σφάλμα κατά την ολοκλήρωση της μορφοποίησης"
+-
+-#, fuzzy
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Σφάλμα κατά την ολοκλήρωση της μορφοποίησης"
+-
+-#, fuzzy
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Σφάλμα διαγραφής εικόνας boot"
+-
+-#, fuzzy
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Σφάλμα κατά την ολοκλήρωση της μορφοποίησης"
+-
 -#, fuzzy
 -#~ msgid "translations not supported on non-MLS machines"
 -#~ msgstr ""
@@ -53607,648 +65450,750 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 -#~ "Δεν υποστηρίζεται η εκτύπωση σε αυτόν τον εκτυπωτή\n"
 -#~ "#-#-#-#-#  yelp.gnome-2-14.el.po (el)  #-#-#-#-#\n"
 -#~ "Η εκτύπωση δεν υποστηρίζεται σε αυτόν τον εκτυπωτή"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Boolean"
+-
 -#, fuzzy
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr "Χρειάζεται ένας διοργανωτής."
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "όλα"
+-
 -#, fuzzy
 -#~ msgid "Login '%s' is required"
 -#~ msgstr "Χρειάζεται ένας διοργανωτής."
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
+-
 -#, fuzzy
 -#~ msgid "Sends audit messages"
 -#~ msgstr "Σφάλμα ανάκτησης μηνύματος"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
+-
 -#, fuzzy
 -#~ msgid "You must select a user"
 -#~ msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
+-
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
+-
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
+-
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
+-
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Γίνεται αντιγραφή δίσκου"
+-
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Πιστοποίηση %s.\n"
+-
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Χρειάζεται ένας διοργανωτής."
+-
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
+-
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
+-
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
+-
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
+-
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Αδυναμία δημιουργίας συσκευής αναπαραγωγής"
+-
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Χρειάζεται ένας διοργανωτής."
+-
+-#, fuzzy
+-#~ msgid "Requires value"
+-#~ msgstr "Απόκρυψη τιμής"
+-
+-#, fuzzy
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Μεταβλητή ή εντολή προγράμματος"
+-
+-#, fuzzy
+-#~ msgid "%s not defined"
+-#~ msgstr "%s: δεν έχουν ορισθεί γραμματοσειρές\n"
+-
+-#, fuzzy
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "Μή έγκυρο αντικείμενο"
+-
+-#, fuzzy
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr ""
+-#~ "#-#-#-#-#  epiphany.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-#~ "Δεν υποστηρίζεται η εκτύπωση σε αυτόν τον εκτυπωτή\n"
+-#~ "#-#-#-#-#  yelp.gnome-2-14.el.po (el)  #-#-#-#-#\n"
+-#~ "Η εκτύπωση δεν υποστηρίζεται σε αυτόν τον εκτυπωτή"
+-
+-#, fuzzy
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Μη έγκυρη τιμή VGA"
+-
+-#, fuzzy
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Σφάλμα πιστοποίησης: %s"
++msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"SELinux\n"
-+"Τύπος αρχείου"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Γίνεται αντιγραφή δίσκου"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Πιστοποίηση %s.\n"
++
 +#: ../gui/loginsPage.py:133
-+#, fuzzy, python-format
++#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Χρειάζεται ένας διοργανωτής."
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Χρειάζεται ένας διοργανωτής."
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Αδυναμία προσθήκης αγαπημένου: %s"
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Έκδοση"
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Αδυναμία δημιουργίας συσκευής αναπαραγωγής"
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Χρειάζεται ένας διοργανωτής."
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
++msgstr ""
 +
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
++msgstr ""
 +
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
++msgstr ""
 +
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Εφαρμογές</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Όνομα"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Εκτελέσιμο"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>Θύρες TCP</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Όλα"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Επιλογή θυρών"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Χρησιμοποιεί dbus"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+#, fuzzy
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Σφάλμα ανάκτησης μηνύματος"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Εφαρμογή"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s πρέπει να είναι ένας κατάλογος"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Πρέπει να επιλέξετε έναν χρήστη"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Επιβεβαίωση ονόματος"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Πρέπει να εισάγεται ένα όνομα"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
-+#, fuzzy
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Πρέπει να καθορίσετε ένα κατάλογο."
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Ρύθμιση SELinux"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
-+#, fuzzy
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
-+#, fuzzy
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -54260,7 +66205,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Πρωτόκολλο"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
@@ -54270,7 +66215,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Θύρα"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
@@ -54279,9 +66224,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Προβολή λίστας"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -54330,9 +66275,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+#, fuzzy
 +msgid "SELinux Service Protection"
-+msgstr "η γραμματοσειρά %d δεν έχει ορισθεί\n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
@@ -54400,7 +66344,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
@@ -54424,7 +66368,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Ρύθμιση δικτύου"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
@@ -54442,7 +66386,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Βάσεις δεδομένων"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
@@ -54454,7 +66398,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
@@ -54468,7 +66412,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
@@ -54480,7 +66424,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Εφαρμογές Web"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
@@ -54505,47 +66449,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Απενεργοποίηση προστασίας SELinux για amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Απενεργοποίηση προστασίας SELinux για amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για apmd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για arpwatch daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για auditd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για automount daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Απενεργοποίηση προστασίας SELinux για avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για bluetooth daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για canna daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cardmgr daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Απενεργοποίηση προστασίας SELinux για Cluster Server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
@@ -54555,113 +66499,113 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ciped daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για clamd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Απενεργοποίηση προστασίας SELinux για clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για comsat daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για courier daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cpucontrol daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cpuspeed daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για crond daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Εκτύπωση"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cupsd back end server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cupsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cvs daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cyrus daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dbskkd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dbusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ddt daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για devfsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dhcpc daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dhcpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dictd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
@@ -54669,79 +66613,79 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Απενεργοποίηση προστασίας SELinux για το Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Παιχνίδια"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Απενεργοποίηση προστασίας SELinux για παιχνίδια"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Απενεργοποίηση προστασίας SELinux για τους web browsers"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Απενεργοποίηση προστασίας SELinux για το Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για distccd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dmesg daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dnsmasq daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για dovecot daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για entropyd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Απενεργοποίηση προστασίας SELinux για fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για fingerd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για freshclam daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για fsdaemon daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για gpm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για gss daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για Hal daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Συμβατότητα"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
@@ -54751,119 +66695,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για hostname daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για hotplug daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για howl daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για cups hplip daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Απενεργοποίηση προστασίας SELinux για httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD Service"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Απενεργοποίηση προστασίας SELinux για http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για hwclock daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για i18n daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για imazesrv daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Απενεργοποίηση προστασίας SELinux για inetd child daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για inetd daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για innd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για iptables daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ircd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για irqbalance daemon "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για iscsi daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για jabberd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για kadmind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για klogd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για krb5kdc daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ktalk daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για kudzu daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για locate daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για lpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για lrrd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για lvm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Απενεργοποίηση προστασίας SELinux για mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
@@ -54871,11 +66815,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για mdadm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για monopd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
@@ -54883,15 +66827,15 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για mrtg daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για mysqld daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nagios daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
@@ -54899,88 +66843,88 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για named daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nessusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Απενεργοποίηση προστασίας SELinux για NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nfsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nmbd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nrpe daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nscd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για nsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ntpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Απενεργοποίηση προστασίας SELinux για oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Απενεργοποίηση προστασίας SELinux για oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για openvpn daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για pam daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Απενεργοποίηση προστασίας SELinux για pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για perdition daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για portmap daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για portslave daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Απενεργοποίηση προστασίας SELinux για postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για postgresql daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
@@ -54988,47 +66932,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Απενεργοποίηση προστασίας SELinux για pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για prelink daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για privoxy daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ptal daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για pxe daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Απενεργοποίηση προστασίας SELinux για pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για quota daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για radiusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για radvd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Απενεργοποίηση προστασίας SELinux για readahead"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
@@ -55036,39 +66980,39 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Απενεργοποίηση προστασίας SELinux για restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rhgb daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rlogind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rpcd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για rsync daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
@@ -55079,9 +67023,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+#, fuzzy
 +msgid "SASL authentication server"
-+msgstr "Πιστοποίηση %s.\n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
@@ -55094,11 +67037,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για saslauthd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για scannerdaemon daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
@@ -55114,43 +67057,43 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για sendmail daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Απενεργοποίηση προστασίας SELinux για setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για setroubleshoot daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για slapd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για slrnpull daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για smbd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για snmpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για snort daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για soundd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για sound daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
@@ -55158,7 +67101,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για spamd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
@@ -55170,11 +67113,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για speedmgmt daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
@@ -55182,11 +67125,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για squid daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ssh daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
@@ -55204,7 +67147,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για stunnel daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
@@ -55212,43 +67155,43 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για swat daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για sxid daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για syslogd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Απενεργοποίηση προστασίας SELinux για system cron jobs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για tcp daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για telnet daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για tftpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για transproxy daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για udev daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για uml daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
@@ -55272,11 +67215,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για updfstab daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για uptimed daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
@@ -55325,23 +67268,23 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για uucpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για vmware daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για watchdog daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για winbind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Απενεργοποίηση της προστασίας SELinux για το xdm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
@@ -55349,11 +67292,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για xen daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
@@ -55361,27 +67304,27 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για xfs daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Απενεργοποίηση προστασίας SELinux για xen control"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ypbind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για NIS Password Daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για ypserv daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Απενεργοποίηση προστασίας SELinux για NIS Transfer Daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
@@ -55394,38 +67337,34 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Είστε σίγουρος πως θέλετε να διαγράψετε το %s '%s'?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Διαγραφή %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Προσθήκη %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Τροποποίηση %s"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissive"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Enforcing"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Ανενεργό"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Κατάσταση"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -55453,19 +67392,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -55474,27 +67410,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Τύπος SELinux"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Τύπος αρχείου"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -55506,58 +67434,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Προσθήκη χρήστη SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Διαχείρηση SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Προσθήκη"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Ιδιότητες"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Διαγραφή"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Επιλογή:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -55565,244 +67493,200 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Φίλτρο"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Αδυναμία φόρτωσης εικονιδίου \"%s\": %s\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Αδυναμία ενεργοποίησης της διεπαφής %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Προσθήκη χρήστη"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Τροποποίηση χρήστη"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Διαγραφή χρήστη"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Προσθήκη Μετάφρασης"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Τροποποίηση Μετάφρασης"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Διαγραφή Μετάφρασης"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Προσθήκη θύρα δικτύου"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Αδυναμία δημιουργίας συσκευής αναπαραγωγής"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
-+#, fuzzy, python-format
++#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Χρειάζεται ένας διοργανωτής."
-+
-+#, fuzzy
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr ""
-+#~ "#-#-#-#-#  epiphany.gnome-2-14.el.po (el)  #-#-#-#-#\n"
-+#~ "Δεν υποστηρίζεται η εκτύπωση σε αυτόν τον εκτυπωτή\n"
-+#~ "#-#-#-#-#  yelp.gnome-2-14.el.po (el)  #-#-#-#-#\n"
-+#~ "Η εκτύπωση δεν υποστηρίζεται σε αυτόν τον εκτυπωτή"
- #, fuzzy
- #~ msgid "Requires value"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreutils-2.0.85/po/en_GB.po
---- nsapolicycoreutils/po/en_GB.po     2011-02-17 15:11:25.910721905 -0500
-+++ policycoreutils-2.0.85/po/en_GB.po 2011-02-18 16:03:41.357975667 -0500
-@@ -1,19 +1,42 @@
- # English (British) translation.
- # Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
++msgstr ""
+diff --git a/policycoreutils/po/en_GB.po b/policycoreutils/po/en_GB.po
+index 14bb4ad..63ca985 100644
+--- a/policycoreutils/po/en_GB.po
++++ b/policycoreutils/po/en_GB.po
+@@ -1,20 +1,25 @@
+-# English (British) translation.
+-# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
 -# Abigail Brady <morwen@evilmagic.org>, Bastien Nocera <hadess@hadess.net>, 2007.
--#
+ #
++# Translators:
 +# Abigail Brady <morwen@evilmagic.org>, 2007.
 +# Bastien Nocera <hadess@hadess.net>, 2007.
 +# Bruce Cowan <bruce@bcowan.me.uk>, 2010.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2007-06-11 13:52+0000\n"
 -"Last-Translator: Abigail Brady <morwen@evilmagic.org>\n"
 -"Language-Team: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-06-15 15:24+0100\n"
-+"Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n"
-+"Language-Team: British English <en@li.org>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: English (United Kingdom) (http://www.transifex.net/projects/p/"
++"fedora/language/en_GB/)\n"
 +"Language: en_GB\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Virtaal 0.6.1\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Generate new policy module"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux Policy Generation Tool"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -28,7 +51,7 @@
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
+@@ -29,7 +34,7 @@ msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
  #, c-format
  msgid "failed to initialize PAM\n"
 -msgstr "failed to initialize PAM\n"
@@ -55810,10 +67694,10 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
  
  #: ../run_init/run_init.c:139
  #, c-format
-@@ -80,20 +103,16 @@
+@@ -81,24 +86,20 @@ msgid "Could not set exec context to %s.\n"
  msgstr "Could not set exec context to %s.\n"
  
- #: ../audit2allow/audit2allow:217
+ #: ../audit2allow/audit2allow:230
 -#, fuzzy
  msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
@@ -55821,1144 +67705,568 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 -"******************** IMPORTANT ***********************\n"
 +msgstr "******************** IMPORTANT ***********************\n"
  
- #: ../audit2allow/audit2allow:218
+ #: ../audit2allow/audit2allow:231
  msgid "To make this policy package active, execute:"
 -msgstr ""
 +msgstr "To make this policy package active, execute:"
  
- #: ../semanage/seobject.py:48
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "global"
+ #: ../semanage/seobject.py:222
 -#, fuzzy
  msgid "Could not create semanage handle"
 -msgstr "Could not start semanage transaction"
 +msgstr "Could not create semanage handle"
  
- #: ../semanage/seobject.py:55
+ #: ../semanage/seobject.py:230
  msgid "SELinux policy is not managed or store cannot be accessed."
-@@ -108,26 +127,26 @@
+@@ -113,47 +114,44 @@ msgid "Could not establish semanage connection"
  msgstr "Could not establish semanage connection"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
 -msgstr "Could not set MLS range for %s"
 +msgstr "Could not test MLS enabled status"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "global"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "Unable to open %s: translations not supported on non-MLS machines"
-+msgstr "Unable to open %s: translations not supported on non-MLS machines: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Level"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Translation"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
-@@ -151,773 +170,771 @@
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
 +msgstr "Not yet implemented"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "Semanage transaction already in progress"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
  msgstr "Could not start semanage transaction"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
 -msgstr "Could not start semanage transaction"
 +msgstr "Could not commit semanage transaction"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "Semanage transaction not in progress"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
 -msgstr "Could not list SELinux users"
 +msgstr "Could not list SELinux modules"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "Version"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
 -msgstr ""
-+msgstr "Permissive Types"
++msgstr "Disabled"
+ #: ../semanage/seobject.py:322
+ #, python-format
+@@ -161,9 +159,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Could not add role %s for %s"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -185,12 +183,12 @@ msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
 -msgstr ""
 +msgstr "Could not set permissive domain %s (module installation failed)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
 +msgstr "Could not remove permissive domain %s (remove failed)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Could not create a key for %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -210,9 +208,9 @@ msgid "Could not check if login mapping for %s is defined"
  msgstr "Could not check if login mapping for %s is defined"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Login mapping for %s is already defined"
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
 -msgstr "Linux User %s does not exist"
 +msgstr "Linux Group %s does not exist"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux User %s does not exist"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Could not create login mapping for %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Could not set name for %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Could not set MLS range for %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Could not set SELinux user for %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Could not add login mapping for %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
--#, fuzzy
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "Could not add SELinux user %s"
-+msgstr "add SELinux user mapping"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Requires seuser or serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Login mapping for %s is not defined"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Could not query seuser for %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Could not modify login mapping for %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "Login mapping for %s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Could not delete login mapping for %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -279,18 +277,22 @@ msgid "Could not list login mappings"
  msgstr "Could not list login mappings"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
 -msgstr ""
 +msgstr "Login Name"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 -#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
 -msgstr "SELinux Type is required"
 +msgstr "SELinux User"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
 -msgstr ""
 +msgstr "MLS/MCS Range"
  
--#: ../semanage/seobject.py:594
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -306,9 +308,9 @@ msgid "Could not query user for %s"
+ msgstr "Could not query user for %s"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
 -msgstr "Could not add file context for %s"
 +msgstr "You must add at least one role for %s"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Could not check if SELinux user %s is defined"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux user %s is already defined"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Could not create SELinux user for %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Could not add role %s for %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Could not set MLS level for %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Could not add prefix %s for %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Could not extract key for %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Could not add SELinux user %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Requires prefix, roles, level or range"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Requires prefix or roles"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux user %s is not defined"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Could not query user for %s"
+@@ -379,27 +381,28 @@ msgstr "Could not list roles for user %s"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Could not modify SELinux user %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux user %s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Could not delete SELinux user %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Could not list SELinux users"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Could not list roles for user %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
 -msgstr ""
 +msgstr "Labelling"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
 -msgstr ""
 +msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
 -msgstr ""
 +msgstr "Prefix"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
 -msgstr ""
 +msgstr "MCS Level"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
 -msgstr ""
 +msgstr "MCS Range"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
 -msgstr ""
 +msgstr "SELinux Roles"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Protocol udp or tcp is required"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -410,9 +413,8 @@ msgid "Port is required"
  msgstr "Port is required"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Could not create a key for %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Type is required"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Could not check if port %s/%s is defined"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s already defined"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Could not create port for %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Could not create context for %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Could not set user in port context for %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Could not set role in port context for %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Could not set type in port context for %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Could not set mls fields in port context for %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Could not set port context for %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Could not add port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Requires setype or serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Requires setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s is not defined"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Could not query port %s/%s"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Invalid prefix %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
+@@ -499,14 +501,13 @@ msgid "Could not modify port %s/%s"
  msgstr "Could not modify port %s/%s"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
 -msgstr "Could not list ports"
 +msgstr "Could not list the ports"
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
 -msgstr "Could not delete port %s/%s"
 +msgstr "Could not delete the port %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Could not delete port %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Could not list ports"
+@@ -524,24 +525,23 @@ msgstr "Could not list ports"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
 -msgstr ""
 +msgstr "SELinux Port Type"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
 -msgstr ""
 +msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
 -msgstr ""
 +msgstr "Port Number"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
 -msgstr "Port is required"
 +msgstr "Node Address is required"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Port is required"
-+msgstr "Node Netmask is required"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "Unknown or missing protocol"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux Type is required"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Could not create key for %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -558,14 +558,14 @@ msgstr "Could not create key for %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr "Could not check if port %s/%s is defined"
 +msgstr "Could not check if addr %s is defined"
  
--#: ../semanage/seobject.py:1064
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Port %s/%s already defined"
-+msgstr "Addr %s already defined"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
 -msgstr "Could not create a key for %s"
 +msgstr "Could not create addr for %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -574,74 +574,72 @@ msgid "Could not create context for %s"
  msgstr "Could not create context for %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
 -msgstr "Could not set name for %s"
 +msgstr "Could not set mask for %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr "Could not set user in file context for %s"
 +msgstr "Could not set user in addr context for %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr "Could not set role in file context for %s"
 +msgstr "Could not set role in addr context for %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr "Could not set type in file context for %s"
 +msgstr "Could not set type in addr context for %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr "Could not set mls fields in file context for %s"
 +msgstr "Could not set mls fields in addr context for %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
 -msgstr "Could not set file context for %s"
 +msgstr "Could not set addr context for %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
 -msgstr "Could not add port %s/%s"
 +msgstr "Could not add addr %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
 -msgstr "Port %s/%s is not defined"
 +msgstr "Addr %s is not defined"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
 -msgstr "Could not query port %s/%s"
 +msgstr "Could not query addr %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
 -msgstr "Could not modify port %s/%s"
 +msgstr "Could not modify addr %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr "Port %s/%s is defined in policy, cannot be deleted"
 +msgstr "Addr %s is defined in policy, cannot be deleted"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
 -msgstr "Could not delete interface %s"
 +msgstr "Could not delete addr %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Could not delete login mapping for %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
 -msgstr "Could not list ports"
 +msgstr "Could not list addrs"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Could not check if interface %s is defined"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Interface %s already defined"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Could not create interface for %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Could not set user in interface context for %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Could not set role in interface context for %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Could not set type in interface context for %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Could not set mls fields in interface context for %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Could not set interface context for %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Could not set message context for %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Could not add interface %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Interface %s is not defined"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Could not query interface %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Could not modify interface %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Interface %s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -715,9 +713,8 @@ msgid "Could not delete interface %s"
  msgstr "Could not delete interface %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Could not delete interface %s"
++msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Could not list interfaces"
+@@ -725,16 +722,16 @@ msgstr "Could not list interfaces"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr ""
 +msgstr "SELinux Interface"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
 -msgstr ""
 +msgstr "Context"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Could not set user in file context for %s"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "File context for %s already defined"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Could not set role in file context for %s"
+@@ -742,9 +739,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux User %s does not exist"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Could not set mls fields in file context for %s"
+@@ -763,7 +760,7 @@ msgstr "Could not set mls fields in file context for %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
 -msgstr ""
 +msgstr "Invalid file specification"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Could not check if file context for %s is defined"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "File context for %s already defined"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Could not create file context for %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Could not set type in file context for %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Could not set file context for %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Could not add file context for %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Requires setype, serange or seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "File context for %s is not defined"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Could not query file context for %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -823,14 +820,13 @@ msgid "Could not modify file context for %s"
  msgstr "Could not modify file context for %s"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1839
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
  msgid "Could not list the file contexts"
 -msgstr "Could not list file contexts"
 +msgstr "Could not list the file contexts"
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1853
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
  msgid "Could not delete the file context %s"
 -msgstr "Could not delete file context for %s"
 +msgstr "Could not delete the file context %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "File context for %s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Could not delete file context for %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Could not list file contexts"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Could not list local file contexts"
+@@ -852,11 +848,11 @@ msgstr "Could not list local file contexts"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
 -msgstr ""
 +msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
 -msgstr ""
 +msgstr "type"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Could not check if boolean %s is defined"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Boolean %s is not defined"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -887,14 +883,14 @@ msgid "Could not query file context %s"
  msgstr "Could not query file context %s"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
 -msgstr "You must specify a prefix"
 +msgstr "You must specify one of the following values: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
 -msgstr "Could not delete boolean %s"
 +msgstr "Could not set active value of boolean %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Could not modify boolean %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -904,7 +900,7 @@ msgstr "Could not modify boolean %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
 +msgstr "Bad format %s: Record %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Boolean %s is defined in policy, cannot be deleted"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Could not delete boolean %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Could not list booleans"
+@@ -922,19 +918,19 @@ msgstr "Could not list booleans"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
 +msgstr "unknown"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
 +msgstr "off"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
 -msgstr ""
 +msgstr "on"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
 -msgstr ""
 +msgstr "SELinux boolean"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+@@ -944,9 +940,10 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
 +msgstr "Description"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
-@@ -927,12 +944,12 @@
- #: ../newrole/newrole.c:287
+@@ -956,12 +953,12 @@ msgstr "failed to set PAM_TTY\n"
+ #: ../newrole/newrole.c:290
  #, c-format
  msgid "newrole: service name configuration hashtable overflow\n"
 -msgstr ""
 +msgstr "newrole: service name configuration hashtable overflow\n"
  
- #: ../newrole/newrole.c:297
+ #: ../newrole/newrole.c:300
  #, c-format
  msgid "newrole:  %s:  error on line %lu.\n"
 -msgstr ""
 +msgstr "newrole:  %s:  error on line %lu.\n"
  
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -955,9 +972,9 @@
- msgstr "Unable to clear environment\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Error initing capabilities, aborting.\n"
-+msgstr "Error initialising capabilities, aborting.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
+ #: ../newrole/newrole.c:439
  #, c-format
-@@ -1068,6 +1085,7 @@
+@@ -1067,6 +1064,7 @@ msgstr "Error: multiple levels specified\n"
  #, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
  msgstr ""
 +"Error: you are not allowed to change levels on a non secure terminal \n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
-@@ -1135,14 +1153,14 @@
+@@ -1134,14 +1132,14 @@ msgid "failed to get old_context.\n"
  msgstr "failed to get old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
 -msgstr "Error!  Could not retrieve tty information.\n"
 +msgstr "Warning!  Could not retrieve tty information.\n"
  
- #: ../newrole/newrole.c:1161
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr ""
 +msgstr "error on reading PAM service configuration.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
-@@ -1184,19 +1202,19 @@
+@@ -1183,19 +1181,19 @@ msgid "failed to exec shell\n"
  msgstr "failed to exec shell\n"
  
  #: ../load_policy/load_policy.c:22
@@ -56983,762 +68291,816 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
  
  #: ../load_policy/load_policy.c:90
  #, c-format
-@@ -1287,86 +1305,2208 @@
+@@ -1281,179 +1279,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "Options Error %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "translations not supported on non-MLS machines"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "Unable to open %s: translations not supported on non-MLS machines"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Boolean"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "all"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Customised"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "File Labelling"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "SELinux Type is required"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"File\n"
-+"Specification"
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "SELinux Type is required"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"File Type"
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Error sending audit message.\n"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"File\n"
-+"Type"
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "You must specify a role"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "User Mapping"
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "You must specify a role"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Login\n"
-+"Name"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "You must specify a role"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"User"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Generating type enforcment file: %s.te"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS Range"
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Interface %s is not defined"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Login '%s' is required"
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "File context for %s is not defined"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Policy Module"
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux user %s is not defined"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Module Name"
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Compiling policy"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Version"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Authenticating %s.\n"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Disable Audit"
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux Type is required"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Enable Audit"
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Could not add SELinux user %s"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Load Policy Module"
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Could not modify SELinux user %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Could not delete SELinux user %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Could not modify SELinux user %s"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Cannot read policy store."
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+"Abigail Brady <morwen@evilmagic.org>\n"
-+"Bastien Nocera <hadess@hadess.net>\n"
-+"Bruce Cowan <bruce@bcowan.me.uk>"
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux Type is required"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Applications</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Standard Init Daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS System Daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Web Application/Script (CGI)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "User Application"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Login Users</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "Modify an existing login user record."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Existing User Roles"
++msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Minimal Terminal User Role"
++msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Minimal X Windows User Role"
++msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "User Role"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Translations can not contain spaces '%s' "
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Admin User Role"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Invalid Level '%s' "
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Root Users</b>"
-+
-+#: ../gui/polgen.glade:645
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s already defined in translations"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s not defined in translations"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Root Admin User Role"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Enter name of application or user role to be confined"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Login mapping for %s is already defined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Could not add SELinux user %s"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux user %s is already defined"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Name"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Port is required"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Enter complete path for executable to be confined."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s already defined"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Interface %s already defined"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Enter unique name for the confined application or user role."
-+
-+#: ../gui/polgen.glade:845
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Error initing capabilities, aborting.\n"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Executable"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Error setting capabilities, aborting\n"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init script"
-+
-+#: ../gui/polgen.glade:901
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Error setting KEEPCAPS, aborting\n"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Enter complete path to init script used to start the confined application."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Select user roles that you want to customise"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Error dropping capabilities, aborting\n"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Error dropping SETUID capability, aborting\n"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Error freeing caps\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "translations not supported on non-MLS machines"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "SELinux Type is required"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "SELinux Type is required"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Error sending audit message.\n"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "You must specify a role"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "You must specify a role"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"Select the user roles that will transition to this applications domains."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Select additional domains to which this user role will transition"
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "You must specify a role"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Select user roles that will transition to this domain"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Select additional domains that this user role will administer"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Generating type enforcment file: %s.te"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Interface %s is not defined"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Select the domains that you would like this user administer."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Select additional roles for this user"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Enter network ports that application/user role listens to"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "File context for %s is not defined"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux user %s is not defined"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Compiling policy"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Authenticating %s.\n"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux Type is required"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP Ports</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "Allows confined application/user role to bind to any udp port"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Could not add SELinux user %s"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Could not modify SELinux user %s"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "All"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Could not delete SELinux user %s"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Could not modify SELinux user %s"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Cannot read policy store."
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux Type is required"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Unreserved Ports (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Requires value"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Select Ports"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "Allows application/user role to bind to any udp ports > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++msgstr ""
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Requires 2 or more arguments"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "%s not defined"
+-#~ msgstr "%s not defined"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP Ports</b>"
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s not valid for %s objects\n"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "range not supported on Non MLS machines"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Invalid value %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Options Error: %s "
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Writes syslog messages\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Create/Manipulate temporary files in /tmp"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Uses Pam for authentication"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Uses nsswitch or getpw* calls"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Uses dbus"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Sends audit messages"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Interacts with the terminal"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Sends e-mail"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Add Files/Directories that application will need to « Write » to. Pid Files, "
-+"Log Files, /var/lib Files ..."
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Select booleans that the application uses"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Select directory to generate policy in"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Policy Directory"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Generated Policy Files"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +msgstr ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Add Booleans Dialogue"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Boolean Name"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Role"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Existing_User"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Application"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s must be a directory"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "You must select a user"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Select executable file to be confined."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Select init script file to be confined."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Select file(s) that confined application creates or writes"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "Select directory(s) that the confined application owns and writes into"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Select directory to generate policy files in"
++msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue ?"
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Verify Name"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue ?"
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "You must enter a executable"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Configue SELinux"
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "You must enter a name for your confined process/user"
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER Types are not allowed executables"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER Types automatically get a tmp type"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "You must enter the executable path for your confined process"
++msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Type Enforcement file"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Interface file"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "File Contexts file"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Setup Script"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Network Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux Port\n"
-+"Type"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protocol"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"Level"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "List View"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Group View"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -57786,26 +69148,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux Service Protection"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Disable SELinux protection for acct daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Allow all daemons to write corefiles to /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -57814,127 +69176,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "User Privs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Memory Protection"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Allow java executable stack"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Allow mount to mount any file"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Allow mount to mount any directory"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Allow mplayer executable stack"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Allow ssh to run ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Network Configuration"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Allow unlabelled packets to flow on the network"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Databases"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Allow user to connect to mysql socket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Allow user to connect to postgres socket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Allow clients to write to X shared memory"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Allow daemons to run with NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -57942,850 +69296,836 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web Applications"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transition user SELinux user to Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Allow staff Web Browsers to write to home directories"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Disable SELinux protection for amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Disable SELinux protection for amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Disable SELinux protection for apmd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Disable SELinux protection for arpwatch daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Disable SELinux protection for auditd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Disable SELinux protection for automount daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Disable SELinux protection for avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Disable SELinux protection for bluetooth daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Disable SELinux protection for canna daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Disable SELinux protection for cardmgr daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Disable SELinux protection for Cluster Server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Disable SELinux protection for ciped daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Disable SELinux protection for clamd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Disable SELinux protection for clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Disable SELinux protection for clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Disable SELinux protection for comsat daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Disable SELinux protection for courier daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Disable SELinux protection for cpucontrol daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Disable SELinux protection for cpuspeed daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Disable SELinux protection for crond daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Printing"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Disable SELinux protection for cupsd back end server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Disable SELinux protection for cupsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Disable SELinux protection for cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Disable SELinux protection for cvs daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Disable SELinux protection for cyrus daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Disable SELinux protection for dbskkd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Disable SELinux protection for dbusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Disable SELinux protection for dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Disable SELinux protection for dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Disable SELinux protection for dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Disable SELinux protection for ddt daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Disable SELinux protection for devfsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Disable SELinux protection for dhcpc daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Disable SELinux protection for dhcpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Disable SELinux protection for dictd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Allow sysadm_t to directly start daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Disable SELinux protection for Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Games"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Disable SELinux protection for games"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Disable SELinux protection for the web browsers"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Disable SELinux protection for Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Disable SELinux protection for distccd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Disable SELinux protection for dmesg daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Disable SELinux protection for dovecot daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Disable SELinux protection for entropyd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Disable SELinux protection for fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Disable SELinux protection for fingerd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Disable SELinux protection for freshclam daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Disable SELinux protection for fsdaemon daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Disable SELinux protection for gpm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Disable SELinux protection for gss daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Disable SELinux protection for Hal daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Compatibility"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Disable SELinux protection for hostname daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Disable SELinux protection for hotplug daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Disable SELinux protection for howl daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Disable SELinux protection for cups hplip daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Disable SELinux protection for httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD Service"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Disable SELinux protection for http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Disable SELinux protection for hwclock daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Disable SELinux protection for i18n daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Disable SELinux protection for imazesrv daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Disable SELinux protection for inetd child daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Disable SELinux protection for inetd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Disable SELinux protection for innd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Disable SELinux protection for iptables daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Disable SELinux protection for ircd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Disable SELinux protection for irqbalance daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Disable SELinux protection for iscsi daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Disable SELinux protection for jabberd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Disable SELinux protection for kadmind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Disable SELinux protection for klogd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Disable SELinux protection for krb5kdc daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Disable SELinux protection for ktalk daemons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Disable SELinux protection for kudzu daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Disable SELinux protection for locate daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Disable SELinux protection for lpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Disable SELinux protection for lrrd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Disable SELinux protection for lvm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Disable SELinux protection for mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Allow evolution and thunderbird to read user files"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Disable SELinux protection for mdadm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Disable SELinux protection for monopd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Allow the mozilla browser to read user files"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Disable SELinux protection for mrtg daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Disable SELinux protection for mysqld daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Disable SELinux protection for nagios daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Name Service"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Disable SELinux protection for named daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Disable SELinux protection for nessusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Disable SELinux protection for NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Disable SELinux protection for nfsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Disable SELinux protection for nmbd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Disable SELinux protection for nrpe daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Disable SELinux protection for nscd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Disable SELinux protection for nsd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Disable SELinux protection for ntpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Disable SELinux protection for oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Disable SELinux protection for oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Disable SELinux protection for openvpn daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Disable SELinux protection for pam daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Disable SELinux protection for pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Disable SELinux protection for perdition daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Disable SELinux protection for portmap daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Disable SELinux protection for portslave daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Disable SELinux protection for postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Disable SELinux protection for postgresql daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Allow pppd to be run for a regular user"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Disable SELinux protection for pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Disable SELinux protection for prelink daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Disable SELinux protection for privoxy daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Disable SELinux protection for ptal daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Disable SELinux protection for pxe daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Disable SELinux protection for pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Disable SELinux protection for quota daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Disable SELinux protection for radiusd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Disable SELinux protection for radvd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Disable SELinux protection for rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Disable SELinux protection for readahead"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Disable SELinux protection for restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Disable SELinux protection for rhgb daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Disable SELinux protection for ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Disable SELinux protection for ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Disable SELinux protection for rlogind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Disable SELinux protection for rpcd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Disable SELinux protection for rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Disable SELinux protection for rsync daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Allow Samba to share nfs directories"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL authentication server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Allow X-Windows server to map a memory region as both executable and "
-+"writeable"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Disable SELinux protection for saslauthd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Do not allow any processes to load kernel modules"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Disable SELinux protection for sendmail daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Disable SELinux protection for setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Disable SELinux protection for setroubleshoot daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Disable SELinux protection for slapd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Disable SELinux protection for slrnpull daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Disable SELinux protection for smbd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Disable SELinux protection for snmpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Disable SELinux protection for snort daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Disable SELinux protection for soundd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Disable SELinux protection for sound daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Spam Protection"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Disable SELinux protection for spamd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Allow spamd to access home directories"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Allow Spam Assassin daemon network access"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Allow squid daemon to connect to the network"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Disable SELinux protection for squid daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Disable SELinux protection for ssh daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Universal SSL tunnel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Disable SELinux protection for stunnel daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Disable SELinux protection for swat daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Disable SELinux protection for sxid daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Disable SELinux protection for syslogd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Disable SELinux protection for system cron jobs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Disable SELinux protection for tcp daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Disable SELinux protection for telnet daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Disable SELinux protection for tftpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Disable SELinux protection for transproxy daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Disable SELinux protection for udev daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Disable SELinux protection for uml daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
 +
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Allow rpm to run unconfined"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Disable SELinux protection for updfstab daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Disable SELinux protection for uptimed daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
 +
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Allow users to execute the mount command"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Allow users to run the dmesg command"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Allow normal user to execute ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Allow users to rw usb devices"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
@@ -58793,118 +70133,110 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Allow user to stat ttyfiles"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Disable SELinux protection for uucpd daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Disable SELinux protection for vmware daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Disable SELinux protection for watchdog daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Disable SELinux protection for winbind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Disable SELinux protection for xdm daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Disable SELinux protection for xen daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Allow xen to read/write physical disk devices"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Disable SELinux protection for xfs daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Disable SELinux protection for xen control"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Disable SELinux protection for ypbind daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Disable SELinux protection for ypserv daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Allow SELinux webadm user to manage unprivileged users home directories"
 +
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Are you sure you want to delete %s '%s'?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Delete %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Add %s"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Modify %s"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissive"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Enforcing"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Disabled"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Status"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -58912,9 +70244,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabelling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
 +
 +#: ../gui/statusPage.py:147
 +msgid ""
@@ -58925,12 +70254,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -58938,54 +70261,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabelling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Add SELinux Login Mapping"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Add SELinux Network Ports"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux Type"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "File Specification"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "File Type"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -58996,488 +70305,396 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Add SELinux User"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux Administration"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Add"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Properties"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Delete"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Select Management Object"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Select:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "System Default Enforcing Mode"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Current Enforcing Mode"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "System Default Policy Type: "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabelling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Relabel on next reboot."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Revert boolean setting to system default"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Toggle between Customised and All Booleans"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Run booleans lockdown wizard"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Lockdown..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filter"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Add File Context"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Modify File Context"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Delete File Context"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Toggle between all and customised file context"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Add SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Modify SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Delete SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Add User"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Modify User"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Delete User"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Add Translation"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modify Translation"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Delete Translation"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Add Network Port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Edit Network Port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Delete Network Port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Toggle between Customised and All Ports"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Generate new policy module"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Load policy module"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Remove loadable policy module"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Change process mode to permissive."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Change process mode to enforcing"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Process Domain"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux user '%s' is required"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Sensitivity Level"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "translations not supported on non-MLS machines"
- #~ msgid "Requires value"
- #~ msgstr "Requires value"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils-2.0.85/po/es.po
---- nsapolicycoreutils/po/es.po        2011-02-17 15:11:25.399730344 -0500
-+++ policycoreutils-2.0.85/po/es.po    2011-02-18 16:03:41.359975681 -0500
-@@ -1,22 +1,44 @@
- # translation of policycoreutils.HEAD.es.po to Spanish
-+# Fedora Spanish translation of policycoreutils.HEAD.
-+# This file is distributed under the same license as the policycoreutils.HEAD package.
- #
++msgstr ""
+diff --git a/policycoreutils/po/es.po b/policycoreutils/po/es.po
+index e1fdcd9..1239b79 100644
+--- a/policycoreutils/po/es.po
++++ b/policycoreutils/po/es.po
+@@ -1,23 +1,24 @@
+-# translation of policycoreutils.HEAD.es.po to Spanish
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
  #
+-#
 -# Domingo E. Becker <beckerde@hotmail.com>, 2006.
 -# Domingo Becker <domingobecker@gmail.com>, 2008.
++# Translators:
 +# Domingo Becker <domingobecker@gmail.com>, 2006, 2008.
-+# Héctor Daniel Cabrera <logan@fedoraproject.org>, 2010.
 +# Gladys Guerrero <gguerrer@redhat.com>, 2010.
++# Héctor Daniel Cabrera <logan@fedoraproject.org>, 2010.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD.es\n"
+-"Project-Id-Version: policycoreutils.HEAD.es\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
 -"PO-Revision-Date: 2008-09-03 08:55-0300\n"
 -"Last-Translator: Domingo Becker <domingobecker@gmail.com>\n"
 -"Language-Team: Spanish <fedora-trans-es@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-31 17:40-0300\n"
-+"Last-Translator: Claudio Rodrigo Pereyra Diaz <claudio@pereyradiaz.com.ar>\n"
-+"Language-Team: Spanish <en@li.org>\n"
-+"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Spanish (Castilian) <trans-es@lists.fedoraproject.org>\n"
+ "Language: es\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
+-"X-Generator: KBabel 1.11.4\n"
 -"Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
- "X-Poedit-Language: Spanish\n"
-+"X-Poedit-Country: ARGENTINA\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Defina SELinux en una configuración de interfaz gráfica"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Administración de SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Generar módulos de política de SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Generador de Políticas de SELinux"
+-"X-Poedit-Language: Spanish\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -108,9 +130,8 @@
+@@ -113,9 +114,8 @@ msgid "Could not establish semanage connection"
  msgstr "No se pudo establecer una conexión semanage"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
 -msgstr "No se pudo fijar el rango MLS para %s"
 +msgstr "No se pudo probar si el estado de MLS es activado"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -125,7 +146,8 @@
- msgid "Level"
- msgstr "Nivel"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Traducción"
-@@ -155,11 +177,11 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -123,11 +123,11 @@ msgstr "Todavía no implementado"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
 +msgstr "Transacción semanage actualmente en progreso"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
 -msgstr "No se puede iniciar transacción·semanage"
 +msgstr "No se puede iniciar transacción semanage"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
  msgid "Could not commit semanage transaction"
-@@ -167,7 +189,7 @@
+@@ -135,53 +135,50 @@ msgstr "No se puede confirmar la transacción·semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
 +msgstr "Transacción semanage no ejecutándose"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
-@@ -177,744 +199,749 @@
- msgid "Permissive Types"
- msgstr "Tipos de Permisivo"
+ msgstr "No se pudieron listar los módulos SELinux"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Nombre de Módulo"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versión"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "Deshabilitado"
++msgstr "Inhabilitado"
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "No se pudo eliminar el dominio permisivo %s (falló el borrado)"
++msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "No se pudo eliminar el dominio permisivo %s (falló el borrado)"
++msgstr ""
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "No se pudo eliminar el dominio permisivo %s (falló el borrado)"
++msgstr ""
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
- "No se pudo poner el dominio %s permisivo (falló la instalación del módulo)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "No se pudo eliminar el dominio permisivo %s (falló el borrado)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "No se pudo crear una clave para %s"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Tipos de Permisivo"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Tipos de Permisivo"
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:438
+ #, python-format
+@@ -209,7 +206,7 @@ msgstr "No se pudo crear una clave para %s"
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
 -msgstr "No se pudo chequear si está definido el mapeo de login para %s"
 +msgstr "No se pudo chequear si la asignación de ingreso para %s está definida"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "El mapeo de login para %s ya fue definido"
-+msgstr "La asignación de ingreso para %s ya fue definida"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
+ #: ../semanage/seobject.py:492
  #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "El Grupo Linux %s no existe"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "El Usuario de Linux %s no existe"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+@@ -224,7 +221,7 @@ msgstr "El Usuario de Linux %s no existe"
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
 -msgstr "No se pudo crear mapeo de login para %s"
 +msgstr "No se pudo crear asignación de ingreso para %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "No se pudo fijar el nombre para %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "No se pudo fijar el rango MLS para %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "No se pudo fijar el usuario SELinux para %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+@@ -244,7 +241,7 @@ msgstr "No se pudo fijar el usuario SELinux para %s"
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
 -msgstr "No se pudo agregar el mapeo de ingreso para %s"
 +msgstr "No se pudo agregar asignación de ingreso para %s"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "agregar mapeado de usuario SELinux"
-+msgstr "agregar asignación de usuario SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Se requiere seuser o serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+@@ -253,7 +250,7 @@ msgstr "Se requiere seuser o serange"
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
 -msgstr "El mapeo de ingreso para %s no está definido"
 +msgstr "La asignación de ingreso para %s no está definida"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr "No se pudo consultar seuser para %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+@@ -263,34 +260,40 @@ msgstr "No se pudo consultar seuser para %s"
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
 -msgstr "No se pudo modificar el mapeo de ingreso para %s"
 +msgstr "No se pudo modificar la asignación de ingreso para %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
  msgstr ""
@@ -59485,900 +70702,415 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 +"La asignación de ingreso para %s se definió en la política, no se puede "
 +"eliminar"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
 -msgstr "No se pudo eliminar el mapeo de ingreso para %s"
 +msgstr "No se pudo eliminar la asignación de ingreso para %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
 -msgstr "No se pudo listar los mapeos de ingreso"
 +msgstr "No se pudieron listar las asignaciones de ingreso"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr "Nombre de Ingreso"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr "Usuario SELinux "
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr "Rango MLS/MCS"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr "Debe agregar al menos un rol para %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "No se pudo chequear si el usuario SELinux %s está definido"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "El usuario SELinux %s ya está definido"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+@@ -315,7 +318,7 @@ msgstr "Debe agregar al menos un rol para %s"
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
 -msgstr "N o se pudo crear el usuario SELinux para %s"
 +msgstr "No se pudo crear el usuario SELinux para %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "No se pudo agregar el rol %s para %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:746
  #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "No se pudo fijar el nivel MLS para %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "No se pudo agregar el prefijo %s para %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "No se pudo extraer la clave para %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+@@ -340,7 +343,7 @@ msgstr "No se pudo extraer la clave para %s"
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
 -msgstr "no se pudo agregar el usuario SELinux %s"
 +msgstr "No se pudo agregar el usuario SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr "Se requiere prefijo, roles, nivel o rango"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Se requiere prefijo o roles"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+@@ -353,7 +356,7 @@ msgstr "Se requiere prefijo o roles"
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
 -msgstr "El usuario SELinux %s no es definido"
 +msgstr "El usuario SELinux %s no está definido"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "No se pudo consultar usuario para %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "No se pudo modificar el usuario SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "El usuario SELinux %s está definido en política, no puede ser borrado"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "No se pudo borrar el usuario SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "No se pudieron listar los usuarios SELinux"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:828
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "No se pudieron listar los roles para el usuario %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Etiquetado"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefijo"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "Nivel MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -400,6 +403,7 @@ msgid "MCS Range"
  msgstr "Rango MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr "Roles SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Se requiere protocolo udp o tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
+@@ -412,9 +416,8 @@ msgid "Port is required"
  msgstr "Se requiere un puerto"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "No se pudo crear una clave para %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Se requiere tipo"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "No se pudo chequear si el puerto %s/%s está definido"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "El puerto %s/%s ya está definido"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "No se pudo crear el puerto para %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "No se pudo crear el contexto para %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "No se pudo poner al usuario en el contexto de puerto para %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "No se pudo poner el rol en el contexto de puerto para %s/%s"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Prefijo inválido %s"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "No se pudo poner el tipo en el contexto de puerto para %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+@@ -464,7 +467,7 @@ msgstr "No se pudo poner el tipo en el contexto de puerto para %s/%s"
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
 -msgstr " No se pudo fijar los campos mls en el contexto de puerto para %s/%s"
 +msgstr "No se pudo fijar los campos mls en el contexto de puerto para %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "No se pudo poner el contexto de puerto para %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "No se pudo agregar puerto %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Se requiere setype o serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Se requiere setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "El puerto %s/%s no está definido"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "No se pudo consultar el puerto %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "No se pudo modificar el puerto %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "No se pueden listar los puertos"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "No se puede borrar el puerto %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "El puerto %s/%s está definido en la política, no se puede borrar"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1029
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "No se puede borrar el puerto %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "No se pueden listar los puertos"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "Tipo de Puerto SELinux"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -531,18 +534,17 @@ msgstr "Tipo de Puerto SELinux"
  msgid "Proto"
  msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr "Número de Puerto"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
 -msgstr "Se requiere un puerto"
 +msgstr "Se requiere una Dirección de Nodo"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Se requiere un puerto"
-+msgstr "Se requiere una Máscara de red del Nodo"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
 +msgstr "Falta el protocolo o es desconocido"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Se requiere el tipo SELinux "
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "No se pudo crear clave para %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -559,14 +561,14 @@ msgstr "No se pudo crear clave para %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
 -msgstr "No se pudo chequear si el puerto %s/%s está definido"
 +msgstr "No se pudo chequear si la dirección %s está definida"
  
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "El puerto %s/%s ya está definido"
-+msgstr "La dirección %s ya está definida"
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
 -msgstr "No se pudo crear una clave para %s"
 +msgstr "No se pudo crear la dirección para %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -575,74 +577,73 @@ msgid "Could not create context for %s"
  msgstr "No se pudo crear el contexto para %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
 -msgstr "No se pudo fijar el nombre para %s"
 +msgstr "No se pudo poner la máscara para %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
 -msgstr "No se pudo poner al usuario en el contexto de archivo para %s"
 +msgstr "No se pudo poner al usuario en el contexto de dirección para %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
 -msgstr "No se pudo poner el rol en el contexto de archivo para %s"
 +msgstr "No se pudo poner el rol en el contexto de dirección para %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
 -msgstr "No se pudo poner el tipo en el contexto de archivo para %s"
 +msgstr "No se pudo poner el tipo en el contexto de dirección para %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
 -msgstr "No se pudieron poner los campos mls en el contexto de archivo para %s"
 +msgstr ""
 +"No se pudieron poner los campos mls en el contexto de dirección para %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
 -msgstr "No se pudo poner el contexto de archivo para %s"
 +msgstr "No se pudo poner el contexto de dirección para %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
 -msgstr "No se pudo agregar puerto %s/%s"
 +msgstr "No se pudo agregar la dirección %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
 -msgstr "El puerto %s/%s no está definido"
 +msgstr "La dirección %s no está definida"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
 -msgstr "No se pudo consultar el puerto %s/%s"
 +msgstr "No se pudo consultar la dirección %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
 -msgstr "No se pudo modificar el puerto %s/%s"
 +msgstr "No se pudo modificar la dirección %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
 -msgstr "El puerto %s/%s está definido en la política, no se puede borrar"
 +msgstr "La dirección %s está definido en la política, no se puede borrar"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
 -msgstr "No se pudo borrar a %s"
 +msgstr "No se pudo borrar la dirección %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "No se pudo eliminar el mapeo de ingreso para %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
 -msgstr "No se pueden listar los puertos"
 +msgstr "No se pudieron listar las direcciones"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "No se pudo chequear si la interfase %s está definida"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr "La interfase %s ya está definida"
-+msgstr "La interfaz %s ya está definida"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -653,33 +654,32 @@ msgstr "No se pudo chequear si la interfase %s está definida"
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
 -msgstr "No se pudo crear la interfase para %s"
 +msgstr "No se pudo crear la interfaz para %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
 -msgstr "No se pudo poner el usuario en el contexto de interfase para %s"
 +msgstr "No se pudo poner el usuario en el contexto de interfaz para %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
 -msgstr "No se pudo fijar el rol en el contexto de interfase para %s"
 +msgstr "No se pudo fijar el rol en el contexto de interfaz para %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
 -msgstr "No se pudo poner el tipo en el contexto de interfase para %s"
 +msgstr "No se pudo poner el tipo en el contexto de interfaz para %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
 -msgstr ""
 -"No se pudieron poner los campos mls en el contexto de interfase para %s"
 +msgstr "No se pudieron poner los campos mls en el contexto de interfaz para %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
 -msgstr "No se pudo poner el contexto de interfase para %s"
 +msgstr "No se pudo poner el contexto de interfaz para %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
- msgid "Could not set message context for %s"
- msgstr "No se pudo poner el contexto de mensaje para %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+@@ -689,22 +689,22 @@ msgstr "No se pudo poner el contexto de mensaje para %s"
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
 -msgstr "No se pudo agregar la interfase %s"
 +msgstr "No se pudo agregar la interfaz %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
 -msgstr "La interfase %s no está definida"
 +msgstr "La interfaz %s no está definida"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
 -msgstr "No se pudo consultar la interfase %s"
 +msgstr "No se pudo consultar la interfaz %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
 -msgstr "No se pudo modificar la interfase %s"
 +msgstr "No se pudo modificar la interfaz %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "La interfase %s está definida en la política, no se puede borrar"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+@@ -714,29 +714,28 @@ msgstr "La interfase %s está definida en la política, no se puede borrar"
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
 -msgstr "No se pudo borrar la interfase %s"
 +msgstr "No se pudo borrar la interfaz %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "No se pudo borrar la interfase %s"
++msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
 -msgstr "No se pudieron listar las interfases"
 +msgstr "No se pudieron listar las interfaces"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
 -msgstr "Interfase SELinux"
 +msgstr "Interfaz SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
  msgstr "Contexto"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "No se pudo poner al usuario en el contexto de archivo para %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "No se pudo poner el rol en el contexto de archivo para %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "No se pudieron poner los campos mls en el contexto de archivo para %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "Especificación de archivo inválida"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "No se pudo chequear si el contexto de archivo para %s está definido"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "El contexto de archivo para %s ya está definido"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "No se pudo crear el contexto de archivo para %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "No se pudo poner el tipo en el contexto de archivo para %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "No se pudo poner el contexto de archivo para %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "No se pudo agregar el contexto de archivo para %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Se requiere setype, serange o seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "El contexto de archivo para %s no está definido"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "No se pudo consultar el contexto de archivo para %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "No se pudo modificar el contexto de archivo para %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "No se pudieron listar los contextos de archivo"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "No se pudo borrar el contexto de archivo %s"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "El contexto de archivo para %s ya está definido"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
+@@ -744,9 +743,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
- "El contexto de archivo para %s está definido en la política, no se puede "
- "borrar"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "No se pudo borrar el contexto de archivo para %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "No se pudieron listar los contextos de archivo"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "No se pudieron listar los contextos de archivo"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "fcontext SELinux"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "tipo"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "El Usuario de Linux %s no existe"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "No se pudo chequear si el booleano %s está definido"
+@@ -868,11 +867,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "El booleano %s no está definido"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "fcontext SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -888,7 +886,7 @@ msgstr "El booleano %s no está definido"
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
 -msgstr "No se udo consultar el contexto de archivo %s"
 +msgstr "No se pudo consultar el contexto de archivo %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
+ #: ../semanage/seobject.py:1999
  #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "Debe especificar uno de los siguientes valores: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "No se pudo poner el valor actual del booleano %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "No se pudo modificar el booleano %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "Formato incorrecto %s: Registro %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "El booleano %s está definido en la política, no se puede borrar"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "No se puede borrar el booleano %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "No se pueden listar los booleanos"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "desconocido"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "apagado"
+@@ -941,15 +939,15 @@ msgid "SELinux boolean"
+ msgstr "booleano SELinux"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "encendido"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Estado"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "booleano SELinux"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr "Predeterminado"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
  msgstr "Descripción"
  
-@@ -942,12 +969,12 @@
- #: ../newrole/newrole.c:447
+@@ -977,12 +975,12 @@ msgstr "no se puede encontrar un registro válido en el archivo passwd.\n"
+ #: ../newrole/newrole.c:450
  #, c-format
  msgid "Out of memory!\n"
 -msgstr "Falta memoria!\n"
 +msgstr "¡Falta memoria!\n"
  
- #: ../newrole/newrole.c:452
+ #: ../newrole/newrole.c:455
  #, c-format
  msgid "Error!  Shell is not valid.\n"
 -msgstr "Error! El shell no es válido.\n"
 +msgstr "¡Error! El shell no es válido.\n"
  
- #: ../newrole/newrole.c:509
- #, c-format
-@@ -955,9 +982,9 @@
- msgstr "No se pudo limpiar el entorno\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Error al hacer init en las capacidades, abortando.\n"
-+msgstr "Error iniciando las capacidades, abortando.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
+ #: ../newrole/newrole.c:512
  #, c-format
-@@ -1017,25 +1044,26 @@
- #: ../newrole/newrole.c:765
+@@ -1022,25 +1020,26 @@ msgstr "No se pudo determinar el modo de obediencia.\n"
+ #: ../newrole/newrole.c:699
  #, c-format
  msgid "Error!  Could not open %s.\n"
 -msgstr "Error! No se pudo abrir %s.\n"
 +msgstr "¡Error! No se pudo abrir %s.\n"
  
- #: ../newrole/newrole.c:771
+ #: ../newrole/newrole.c:705
  #, c-format
  msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
  msgstr ""
@@ -60386,7 +71118,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 +"¡%s!  No se pudo obtener el contexto actual para %s, no se reetiqueta el "
  "tty.\n"
  
- #: ../newrole/newrole.c:781
+ #: ../newrole/newrole.c:715
  #, c-format
  msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
  msgstr ""
@@ -60394,71 +71126,202 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 +"¡%s!  No se pudo obtener un contexto nuevo para %s, no se reetiqueta el "
 +"tty.\n"
  
- #: ../newrole/newrole.c:791
+ #: ../newrole/newrole.c:725
  #, c-format
  msgid "%s!  Could not set new context for %s\n"
 -msgstr "%s!  No se pudo fijar el nuevo contexto para %s\n"
 +msgstr "¡%s!  No se pudo fijar el nuevo contexto para %s\n"
  
- #: ../newrole/newrole.c:838
+ #: ../newrole/newrole.c:772
  #, c-format
-@@ -1045,7 +1073,7 @@
- #: ../newrole/newrole.c:844
+@@ -1050,7 +1049,7 @@ msgstr "%s etiquetas cambiadas.\n"
+ #: ../newrole/newrole.c:778
  #, c-format
  msgid "Warning! Could not restore context for %s\n"
 -msgstr "Precaución!  No se pudo restablecer el contexto para %s\n"
 +msgstr "¡Precaución!  No se pudo restablecer el contexto para %s\n"
  
- #: ../newrole/newrole.c:901
- #, c-format
-@@ -1202,8 +1230,8 @@
+ #: ../newrole/newrole.c:835
  #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
- msgstr ""
--"%s:  no se puede cargar la política y se está pidiendo el modo obediente:  %"
--"s\n"
-+"%s:  no se puede cargar la política y se está pidiendo el modo obediente:  "
-+"%s\n"
+@@ -1294,1860 +1293,2096 @@ msgstr "chcat -- -ConfidencialEmpresa /docs/plandenegocios.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +ConfidencialEmpresa juser"
  
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1294,1811 +1322,2240 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr "Error en Opciones %s"
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "traducciones no soportadas en máquinas no MLS"
--
--#~ msgid "Boolean"
--#~ msgstr "Booleano"
--
--#~ msgid "all"
--#~ msgstr "todos"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "No se pudo abrir %s: traducciones no soportadas en máquinas no MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Booleano"
-+
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "Nivel"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "todos"
-+
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "Traducción"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Personalizado"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Las traducciones no pueden tener espacios '%s'"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Etiquetado de Archivo"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Nivel inválido '%s'"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ya definido en traducciones"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s no definido en traducciones"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "El mapeo de login para %s ya fue definido"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "agregar mapeado de usuario SELinux"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "El usuario SELinux %s ya está definido"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Se requiere un puerto"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "El puerto %s/%s ya está definido"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "La interfase %s ya está definida"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Error al hacer init en las capacidades, abortando.\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Error al configurar las capacidades, abortando.\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Error al configurar KEEPCAPS, abortando\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Error al desechar las capacidades, abortando\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Error al desechar la capacidad SETUID, abortando\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Error al liberar caps\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "traducciones no soportadas en máquinas no MLS"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
+-#~ msgid "Boolean"
+-#~ msgstr "Booleano"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
+-#~ msgid "all"
+-#~ msgstr "todos"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
  
 -#~ msgid "Customized"
 -#~ msgstr "Personalizado"
--
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#~ msgid "File Labeling"
 -#~ msgstr "Etiquetado de Archivo"
--
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
@@ -60479,7 +71342,12 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Tipo de\n"
 -#~ "Archivo"
--
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 -#~ msgid "User Mapping"
 -#~ msgstr "Mapeado de Usuario"
 -
@@ -60510,85 +71378,30 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgid "Policy Module"
 -#~ msgstr "Módulo de Política"
 -
--#~ msgid "Module Name"
--#~ msgstr "Nombre de Módulo"
--
--#~ msgid "Version"
--#~ msgstr "Versión"
--
 -#~ msgid "Disable Audit"
 -#~ msgstr "Deshabilitar la Auditoría"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Especificación\n"
-+"de Archivo"
+-
 -#~ msgid "Enable Audit"
 -#~ msgstr "Permitir Auditar"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"Tipo de Archivo"
+-
 -#~ msgid "Load Policy Module"
 -#~ msgstr "Cargar Módulo de Política"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Tipo de\n"
-+"Archivo"
+-
 -#~ msgid "Polgen"
 -#~ msgstr "Polgen"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mapeado de Usuario"
+-
 -#~ msgid "Red Hat 2007"
 -#~ msgstr "Red Hat 2007"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Nombre de\n"
-+"Ingreso"
+-
 -#~ msgid "GPL"
 -#~ msgstr "GPL"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"Usuario\n"
-+"SELinux"
+-
 -#~ msgid "translator-credits"
 -#~ msgstr "Domingo Becker, domingobecker@gmail.com, 2007"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"Rango\n"
-+"MLS/MCS"
+-
 -#~ msgid "SELinux Policy Generation Tool"
 -#~ msgstr "Herramienta de Generación de Políticas de SELinux"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Se requiere el ingreso con '%s'"
+-
 -#~ msgid ""
 -#~ "This tool can be used to generate a policy framework, to confine "
 -#~ "applications or users using SELinux.   \n"
@@ -60607,22 +71420,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Archivo de interfase (if)\n"
 -#~ "Archivo de contexto de archivo (fc)\n"
 -#~ "Script de shell (sh) - usado para compilar e instalar la política."
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Módulo de Política"
+-
 -#~ msgid "Select type of the application/user role to be confined"
 -#~ msgstr "Seleccione el tipo de aplicación o rol de usuario a confinar"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Nombre de Módulo"
+-
 -#~ msgid "<b>Applications</b>"
 -#~ msgstr "<b>Aplicaciones</b>"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versión"
+-
 -#~ msgid ""
 -#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
 -#~ "Usually requires a script in /etc/rc.d/init.d"
@@ -60630,119 +71434,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Los Demonios de Inicio Standard son los demonios que se inician al "
 -#~ "arrancar a través de los scripts de inicio. Normalmente requieren un "
 -#~ "script en /etc/rc.d/init.d"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Inhabilitar la Auditoría"
+-
 -#~ msgid "Standard Init Daemon"
 -#~ msgstr "Demonio de Inicio Estándar"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Permitir Auditar"
+-
 -#~ msgid "Internet Services Daemon are daemons started by xinetd"
 -#~ msgstr ""
 -#~ "Los Demonios de Servicios de Internet son los demonios iniciados por "
 -#~ "xinetd"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Cargar Módulo de Política"
+-
 -#~ msgid "Internet Services Daemon (inetd)"
 -#~ msgstr "Demonios de Servicios de Internet (inetd)"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
+-
 -#~ msgid ""
 -#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
 -#~ "(apache)"
 -#~ msgstr ""
 -#~ "Scripts (CGI)/Aplicaciones Web son los scripts CGI iniciados por el "
 -#~ "servidor web (apache)"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
+-
 -#~ msgid "Web Application/Script (CGI)"
 -#~ msgstr "Aplicaciones Web/Scripts (CGI)"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
+-
 -#~ msgid ""
 -#~ "User Application are any application that you would like to confine that "
 -#~ "is started by a user"
 -#~ msgstr ""
 -#~ "La Aplicación del Usuario es cualquier aplicación que desee confinar y "
 -#~ "que es iniciada por un usuario"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Domingo Becker, domingobecker@gmail.com, 2007, 2008, 2009"
+-
 -#~ msgid "User Application"
 -#~ msgstr "Aplicación del Usuario"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Esta herramienta se puede usar para generar un marco de trabajo de "
-+"políticas, para confinar aplicaciones o usuarios usando SELinux.   \n"
-+"\n"
-+"La herramienta genera:\n"
-+"Archivo de obediencia de tipo (te)\n"
-+"Archivo de interfase (if)\n"
-+"Archivo de contexto de archivo (fc)\n"
-+"Script de shell (sh) - usado para compilar e instalar la política."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Seleccione el tipo de aplicación o rol de usuario a confinar"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Aplicaciones</b>"
+-
 -#~ msgid "<b>Login Users</b>"
 -#~ msgstr "<b>Usuarios que Ingresan</b>"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Los Demonios de Inicio Standard son los demonios que se inician al arrancar "
-+"a través de los scripts de inicio. Normalmente requieren un script en /etc/"
-+"rc.d/init.d"
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Demonio de Inicio Estándar"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Demonio del Sistema DBUS"
+-
 -#~ msgid "Modify an existing login user record."
 -#~ msgstr "Modificar el registro de nombre de ingreso de usuario existente."
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+"Los Demonios de Servicios de Internet son los demonios iniciados por xinetd"
+-
 -#~ msgid "Existing User Roles"
 -#~ msgstr "Roles de Usuario Existentes"
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Demonios de Servicios de Internet (inetd)"
+-
 -#~ msgid ""
 -#~ "This user will login to a machine only via a terminal or remote login.  "
 -#~ "By default this user will have  no setuid, no networking, no su, no sudo."
@@ -60750,101 +71482,43 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Este usuario ingresará a una máquina sólo a través de una terminal o "
 -#~ "login remoto. Por defecto, este usuario no tendra setuid, ni red, ni su, "
 -#~ "ni sudo."
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Scripts (CGI)/Aplicaciones Web son los scripts CGI iniciados por el servidor "
-+"web (apache)"
+-
 -#~ msgid "Minimal Terminal User Role"
 -#~ msgstr "Rol de Usuario de la Terminal Mínima"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Aplicaciones Web/Scripts (CGI)"
+-
 -#~ msgid ""
 -#~ "This user can login to a machine via X or terminal.  By default this user "
 -#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
 -#~ "Este usuario puede ingresar a una máquina vía X o una terminal. Por def "
 -#~ "scto este usuario no tendrá setuid, ni red, ni su,"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"La Aplicación del Usuario es cualquier aplicación que desee confinar y que "
-+"es iniciada por un usuario"
+-
 -#~ msgid "Minimal X Windows User Role"
 -#~ msgstr "Rol de Usuario de Ventanas X Mínimo."
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Aplicación del Usuario"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Usuarios que Ingresan</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modificar el registro de nombre de ingreso de usuario existente."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Roles de Usuario Existentes"
+-
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "sudo, no su."
 -#~ msgstr ""
 -#~ "Usuario con red completa, sin setuid para aplicaciones sin transición, "
 -#~ "sin sudo ni su."
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Este usuario ingresará a una máquina sólo a través de una terminal o login "
-+"remoto. Por defecto, este usuario no tendrá setuid, ni red, ni su, ni sudo."
+-
 -#~ msgid "User Role"
 -#~ msgstr "Rol de Usuario"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Rol de Usuario de la Terminal Mínima"
+-
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "su, can sudo to Root Administration Roles"
 -#~ msgstr ""
 -#~ "El Usuario con red completo, no hay setuid de aplicaciones sin "
 -#~ "transición, sin su, y puede hacer sudo a Roles de Administración Root"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Este usuario puede ingresar a una máquina vía X o una terminal. Por def scto "
-+"este usuario no tendrá setuid, ni red, ni su,"
+-
 -#~ msgid "Admin User Role"
 -#~ msgstr "Rol de Usuario Admin"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Rol de Usuario de Ventanas X Mínimo."
+-
 -#~ msgid "<b>Root Users</b>"
 -#~ msgstr "<b>Usuarios Administrativos</b>"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Usuario con red completa, sin setuid para aplicaciones sin transición, sin "
-+"sudo ni su."
+-
 -#~ msgid ""
 -#~ "Select Root Administrator User Role, if this user will be used to "
 -#~ "administer the machine while running as root.  This user will not be able "
@@ -60853,244 +71527,101 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Seleccione el Rol de Usuario Root Administrativo, si este usuario será el "
 -#~ "usado para administrar la máquina mientras corra como root. Este usuario "
 -#~ "no podrá ingresar al sistema directamente."
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Rol de Usuario"
+-
 -#~ msgid "Root Admin User Role"
 -#~ msgstr "Rol de Usuario Root Administrativo"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"El Usuario con red completo, no hay setuid de aplicaciones sin transición, "
-+"sin su, y puede hacer sudo a Roles de Administración Root"
+-
 -#~ msgid "Enter name of application or user role to be confined"
 -#~ msgstr "Ingrese el nombre de la aplicación o rol de usuario a confinar"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Rol de Usuario Admin"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Usuarios Administrativos</b>"
+-
 -#~ msgid "Name"
 -#~ msgstr "Nombre"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Seleccione el Rol de Usuario Root Administrativo, si este usuario será el "
-+"usado para administrar la máquina mientras corra como root. Este usuario no "
-+"podrá ingresar al sistema directamente."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Rol de Usuario Root Administrativo"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Ingrese el nombre de la aplicación o rol de usuario a confinar"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Nombre"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Ingrese la dirección completa del ejecutable a confinar."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Ingrese un nombre único para la aplicación o rol de usuario confinado."
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Ejecutable"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Script de inicio"
+-
 -#~ msgid "Enter complete path for executable to be confined."
 -#~ msgstr "Ingrese la dirección completa del ejecutable a confinar."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Ingrese la dirección completa al script de inicio usado para iniciar la "
-+"aplicación confinada."
+-
 -#~ msgid "..."
 -#~ msgstr "..."
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Seleccione los roles de usuario que quiere personalizar"
+-
 -#~ msgid "Enter unique name for the confined application or user role."
 -#~ msgstr ""
 -#~ "Ingrese un nombre único para la aplicación o rol de usuario confinado."
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Seleccione los roles de usuario que transicionarán a este dominio de "
-+"aplicaciones"
+-
 -#~ msgid "Executable"
 -#~ msgstr "Ejecutable"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Seleccione los dominios adicionales a los que este rol de usuario "
-+"transicionará"
+-
 -#~ msgid "Init script"
 -#~ msgstr "Script de inicio"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Seleccione los dominios de aplicación a los que desearía que este usuario "
-+"transicione."
+-
 -#~ msgid ""
 -#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
 -#~ "Ingrese la dirección completa al script de inicio usado para iniciar la "
 -#~ "aplicación confinada."
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Seleccione los roles de usuario que transicionarán a este dominio"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Seleccione los dominios que este rol de usuario administrará"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Seleccione los dominios que desearía que administre este usuario."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Seleccione roles adicionales para este usuario"
+-
 -#~ msgid "Select user roles that you want to customize"
 -#~ msgstr "Seleccione los roles de usuario que quiere personalizar"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Ingrese los puertos de red en los que esta aplicación/usuario se conecta"
+-
 -#~ msgid ""
 -#~ "Select the user roles that will transiton to this applications domains."
 -#~ msgstr ""
 -#~ "Seleccione los roles de usuario que transicionarán a este dominio de "
 -#~ "aplicaciones"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Puertos TCP</b>"
+-
 -#~ msgid "Select additional domains to which this user role will transition"
 -#~ msgstr ""
 -#~ "Seleccione los dominios adicionales a los que este rol de usuario "
 -#~ "transicionará"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Permitir a las aplicaciones/usuarios confinados engancharse a cualquier "
-+"puerto udp"
+-
 -#~ msgid ""
 -#~ "Select the applications domains that you would like this user role to "
 -#~ "transition to."
 -#~ msgstr ""
 -#~ "Seleccione los dominios de aplicación a los que desearía que este usuario "
 -#~ "transicione."
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Todos"
+-
 -#~ msgid "Select user roles that will transition to this domain"
 -#~ msgstr "Seleccione los roles de usuario que transicionarán a este dominio"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
 +msgstr ""
-+"Permitir a la aplicación/usuario llamar a bindresvport con 0. Engancharse a "
-+"los puertos 600-1024"
  
 -#~ msgid "Select additional domains that this user role will administer"
 -#~ msgstr "Seleccione los dominios que este rol de usuario administrará"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
  
 -#~ msgid "Select the domains that you would like this user administer."
 -#~ msgstr "Seleccione los dominios que desearía que administre este usuario."
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Ingrese una lista separada por comas de puertos udp o rangos de puertos a "
-+"los que esta aplicación/rol de usuario se conecta. Ejemplo 612, 650-660"
+-
 -#~ msgid "Select additional roles for this user"
 -#~ msgstr "Seleccione roles adicionales para este usuario"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Puertos No Reservados (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Seleccionar Puertos"
+-
 -#~ msgid "Enter network ports that application/user role listens to"
 -#~ msgstr ""
 -#~ "Ingrese los puertos de red en los que esta aplicación/usuario se conecta"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+"Permite a la aplicación/usuario engancharse a cualquier puerto udp > 1024"
  
 -#~ msgid "<b>TCP Ports</b>"
 -#~ msgstr "<b>Puertos TCP</b>"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Puertos UDP</b>"
+-
 -#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
 -#~ "Permitir a las aplicaciones/usuarios confinados engancharse a cualquier "
 -#~ "puerto udp"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+"Ingrese los puertos de red a los que esta aplicación/rol de usuario se "
-+"conecta"
  
 -#~ msgid "All"
 -#~ msgstr "Todos"
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:301
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Ingrese una lista separada por comas de los rangos puertos a los que esta "
-+"aplicación/rol de usuario se conecta. Ejemplo: 612, 650-660"
  
 -#~ msgid ""
 -#~ "Allow application/user role to call bindresvport with 0. Binding to port "
@@ -61098,313 +71629,105 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a la aplicación/usuario llamar a bindresvport con 0. Engancharse "
 -#~ "a los puertos 600-1024"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
 +msgstr ""
-+"Ingrese una lista separada por comas de puertos udp o rangos de puertos a "
-+"los que esta aplicación/rol de usuario se conecta. Ejemplo: 612, 650-660"
  
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Seleccione las Características de Aplicación Comunes"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Escribe mensajes syslog\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Crear/Manipular archivos temporales en /tmp"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Usa Pam para la autenticación"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Usa nsswitch o llamadas getpw*"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Usa dbus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Enviar mensajes de auditoría"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Interactúa con la terminal"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Enviar correo"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Seleccione los archivos/directorios que administra la aplicación"
+-
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Ingrese una lista separada por comas de puertos udp o rangos de puertos a "
 -#~ "los que esta aplicación/rol de usuario se conecta. Ejemplo 612, 650-660"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Agregar Archivos/Directorios a los que esta aplicación necesitará \"Escribir"
-+"\". Archivos con Pid, con Log, de /var/lib..."
+-
 -#~ msgid "Unreserved Ports (>1024)"
 -#~ msgstr "Puertos No Reservados (>1024)"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Seleccione los booleanosque usa esta aplicación"
+-
 -#~ msgid "Select Ports"
 -#~ msgstr "Seleccionar Puertos"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+"Agregar/Quitar booleanos usados para esta aplicación/usuario confinada."
+-
 -#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
 -#~ "Permite a la aplicación/usuario engancharse a cualquier puerto udp > 1024"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Seleccione el directorio donde generar las políticas"
+-
 -#~ msgid "<b>UDP Ports</b>"
 -#~ msgstr "<b>Puertos UDP</b>"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Directorio de Política"
+-
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
 -#~ "Ingrese los puertos de red a los que esta aplicación/rol de usuario se "
 -#~ "conecta"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Archivos de Política Generado"
+-
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Ingrese una lista separada por comas de los rangos puertos a los que esta "
 -#~ "aplicación/rol de usuario se conecta. Ejemplo: 612, 650-660"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta herramienta generará lo siguiente: \n"
-+"Obligación de Tipos(te), Contexto de Archivo (fc), Interfaz (if), Script de "
-+"Shell (sh).\n"
-+"Ejecute el script de shell para compilar/instalar y reetiquete archivos/"
-+"directorios. \n"
-+"Use semanage o useradd para asignar usuarios de ingreso a Linux a roles de "
-+"usuarios.\n"
-+"Ahora puede poner la máquina en modo permisivo (setenforce 0).\n"
-+"Ingrese como ese usuario y pruebe el rol de usuario.\n"
-+"Use audit2allow -R para generar reglas adicionales para el archivo te.\n"
+-
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Ingrese una lista separada por comas de puertos udp o rangos de puertos a "
 -#~ "los que esta aplicación/rol de usuario se conecta. Ejemplo: 612, 650-660"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta herramienta generará lo siguiente: \n"
-+"Obligación de Tipos (te), Contexto deArchivo (fc), Interface (if), Script de "
-+"Shell (sh).\n"
-+"\n"
-+"Ejecute el script de shell para compilar/instalar y reetiquete archivos/"
-+"directorios. \n"
-+"Ahora puede poner la máquina en modo permisivo (setenforce 0).\n"
-+"Ejecute/reinicie la aplicación para generar mensajes avc.\n"
-+"Use audit2allow -R para generar reglas adicionales para el archivo te.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Diálogo para Agregar Booleanos"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Nombre del Booleano"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Rol"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "_Usuario Existente"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Aplicación"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s debe ser un directorio"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Debe seleccionar un usuario"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Seleccione el archivo ejecutable a confinar."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Seleccione el script de inicio a confinar."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Seleccione los archivos a los que la aplicación escribe o genera"
+-
 -#~ msgid "Select common application traits"
 -#~ msgstr "Seleccione las Características de Aplicación Comunes"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Seleccione el/los directorio(s) que pertenecen a la aplicación confinada y a "
-+"los que escribe"
+-
 -#~ msgid "Writes syslog messages\t"
 -#~ msgstr "Escribe mensajes syslog\t"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Seleccione el directorio donde generar los archivos de política"
+-
 -#~ msgid "Create/Manipulate temporary files in /tmp"
 -#~ msgstr "Crear/Manipular archivos temporales en /tmp"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"El tipo  %s_t ya está definido en la política actual.\n"
-+"¿Desea continuar?"
+-
 -#~ msgid "Uses Pam for authentication"
 -#~ msgstr "Usa Pam para la autenticación"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Verificar Nombre"
+-
 -#~ msgid "Uses nsswitch or getpw* calls"
 -#~ msgstr "Usa nsswitch o llamadas getpw*"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"El módulo %s.pp ya está cargado en la política actual.\n"
-+"¿Desea continuar?"
+-
 -#~ msgid "Uses dbus"
 -#~ msgstr "Usa dbus"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Debe ingresar un nombre"
+-
 -#~ msgid "Sends audit messages"
 -#~ msgstr "Enviar mensajes de auditoría"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Debe ingresar un ejecutable"
+-
 -#~ msgid "Interacts with the terminal"
 -#~ msgstr "Interactúa con la terminal"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Configurar SELinux"
+-
 -#~ msgid "Sends email"
 -#~ msgstr "Enviar correo"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Los puertos deben ser números o rangos entre 1 y %d"
+-
 -#~ msgid "Select files/directories that the application manages"
 -#~ msgstr "Seleccione los archivos/directorios que administra la aplicación"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Debe ingresar un nombre para su proceso/usuario confinado"
+-
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr ""
 -#~ "Agregar Archivos/Directorios a los que esta aplicación necesitará "
 -#~ "\"Escribir\". Archivos con Pid, con Log, de /var/lib..."
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Los Tipos de USUARIOS no son ejecutables permitidos"
+-
 -#~ msgid "Select booleans that the application uses"
 -#~ msgstr "Seleccione los booleanosque usa esta aplicación"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Solo las aplicaciones DEMONIO puede usar un script de inicio"
+-
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr ""
 -#~ "Agregar/Quitar booleanos usados para esta aplicación/usuario confinada."
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog debe ser un valor booleano "
+-
 -#~ msgid "Select directory to generate policy in"
 -#~ msgstr "Seleccione el directorio donde generar las políticas"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "Los Tipos de USUARIO obtienen un tipo tmp automáticamente"
+-
 -#~ msgid "Policy Directory"
 -#~ msgstr "Directorio de Política"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Debe ingresar la dirección del ejecutable para su proceso confinado"
+-
 -#~ msgid "Generated Policy Files"
 -#~ msgstr "Archivos de Política Generado"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Archivo de Tipo de Obediencia"
+-
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -61425,10 +71748,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Ahora puede poner la máquina en modo permisivo (setenforce 0).\n"
 -#~ "Ingrese como ese usuario y pruebe el rol de usuario.\n"
 -#~ "Use audit2allow -R para generar reglas adicionales para el archivo te.\n"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Archivo de Interfase"
+-
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -61447,486 +71767,139 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Ahora puede poner la máquina en modo permisivo (setenforce 0).\n"
 -#~ "Ejecute/reinicie la aplicación para generar mensajes avc.\n"
 -#~ "Use audit2allow -R para generar reglas adicionales para el archivo te.\n"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Archivo de Contextos de Archivo"
+-
 -#~ msgid "Add Booleans Dialog"
 -#~ msgstr "Diálogo para Agregar Booleanos"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Script de Configuración"
+-
 -#~ msgid "Boolean Name"
 -#~ msgstr "Nombre del Booleano"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Puerto de Red"
+-
 -#~ msgid "Role"
 -#~ msgstr "Rol"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"Puerto SELinux\n"
-+"Tipo"
+-
 -#~ msgid "Existing_User"
 -#~ msgstr "_Usuario Existente"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protocolo"
+-
 -#~ msgid "Application"
 -#~ msgstr "Aplicación"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"MLS/MCS\n"
-+"Nivel"
+-
 -#~ msgid "%s must be a directory"
 -#~ msgstr "%s debe ser un directorio"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Puerto"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "El número de puerto \"%s\" no es válido.  0 < NUMERO_DE_PUERTO < 65536"
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Ver como Lista"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Ver Grupo"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "Protección de Servicios de SELinux"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Inhabilitar la protección SELinux para del demonio acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Admin"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Permitir a los demonios escribir archivos principales a /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Permitir a todos los demonios la habilidad de usar ttys no asignadas"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Privados del Usuario"
+-
 -#~ msgid "You must select a user"
 -#~ msgstr "Debe seleccionar un usuario"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a la cuenta gadmin de usuario SELinux ejecutar archivos en su "
-+"directorio home o /tmp"
+-
 -#~ msgid "Select executable file to be confined."
 -#~ msgstr "Seleccione el archivo ejecutable a confinar."
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a la cuenta guest de SELinux ejecutar archivos en su directorio "
-+"home o /tmp"
+-
 -#~ msgid "Select init script file to be confined."
 -#~ msgstr "Seleccione el script de inicio a confinar."
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Protección de Memoria"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Permitir la pila ejecutable a java"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Montar"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Permitir a mount montar cualquier archivo"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Permitir a mount montar cualquier directorio"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Permitir a mplayer la pila ejecutable"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Permitir a ssh ejecutar ssh_keysign"
+-
 -#~ msgid "Select file(s) that confined application creates or writes"
 -#~ msgstr "Seleccione los archivos a los que la aplicación escribe o genera"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a la cuenta staff de SELinux ejecutar archivos en su directorio "
-+"home o /tmp"
+-
 -#~ msgid ""
 -#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr ""
 -#~ "Seleccione el/los directorio(s) que pertenecen a la aplicación confinada "
 -#~ "y a los que escribe"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a la cuenta sysadmin de SELinux ejecutar archivos en su directorio "
-+"home o /tmp"
+-
 -#~ msgid "Select directory to generate policy files in"
 -#~ msgstr "Seleccione el directorio donde generar los archivos de política"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Permitir a las cuentas de usuario SELinux no confinadas ejecutar archivos en "
-+"su directorio home o /tmp"
+-
 -#~ msgid ""
 -#~ "Type %s_t already defined in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
 -#~ "El tipo  %s_t ya está definido en la política actual.\n"
 -#~ "¿Desea continuar?"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Configuración de Red"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permitir a los paquetes no etiquetados fluir por la red"
+-
 -#~ msgid "Verify Name"
 -#~ msgstr "Verificar Nombre"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a las cuentas de usuarios SELinux ejecutar archivos en su "
-+"directorio home o /tmp"
+-
 -#~ msgid ""
 -#~ "Module %s.pp already loaded in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
 -#~ "El módulo %s.pp ya está cargado en la política actual.\n"
 -#~ "¿Desea continuar?"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Permitir a las no confinadas a dyntrans a unconfined_execmem"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Bases de Datos"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Permitir a los usuarios conectar a socket mysql"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Permitir a los usuarios conectara  socket postgres"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "ServidorX"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Permitir a los clientes escribir a la memoria compartida de X"
+-
 -#~ msgid "You must enter a name"
 -#~ msgstr "Debe ingresar un nombre"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir a las cuentas xguest de SELinux ejecutar archivos en el directorio "
-+"home o /tmp"
+-
 -#~ msgid "You must enter a executable"
 -#~ msgstr "Debe ingresar un ejecutable"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Permitir a los demonios ejecutar con NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Aplicaciones Web"
+-
 -#~ msgid "Configue SELinux"
 -#~ msgstr "Configurar SELinux"
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+"Transicionar los usuarios SELinux del staff al Dominio del Navegador Web"
+-
 -#, fuzzy
 -#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 -#~ msgstr "Los puertos deben ser números o rangos entre 1 y %d"
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transicionar el usuario SELinux sysadm al Dominio del Navegador Web"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transicionar el usuario SELinux user al Dominio del Navegador Web"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transicionar el usuario SELinux xguest al Dominio del Navegador Web"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+"Permitir al los Navegadores Web del staff escribir a sus directorios de "
-+"inicio"
+-
 -#~ msgid "You must enter a name for your confined process/user"
 -#~ msgstr "Debe ingresar un nombre para su proceso/usuario confinado"
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Inhabilitar la protección SELinux para amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Inhabilitar la protección SELinux para amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio apmd"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio arpwatch"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio auditd"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio automount"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Inhabilitar la protección SELinux para avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio bluetooth"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio canna"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio cardmgr"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Inhabilitar la protección SELinux para el Servidor de Cluster"
+-
 -#~ msgid "USER Types are not allowed executables"
 -#~ msgstr "Los Tipos de USUARIOS no son ejecutables permitidos"
-+#: ../gui/selinux.tbl:41
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
-+"Permitir a cdrecord leer varios contenidos. nfs, samba, dispositivos "
-+"removibles, temporales del usuario y archivos de contenidos no confiable"
  
 -#~ msgid "Only DAEMON apps can use an init script"
 -#~ msgstr "Solo las aplicaciones DEMONIO puede usar un script de inicio"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio ciped"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio clamd"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Inhabilitar la protección SELinux para clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Inhabilitar la protección SELinux para clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio comsat"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio courier"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio cpucontrol"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Inhabilitar la protección SELinux para el demonio cpuspeed"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio crond"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Impresión"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
  
 -#~ msgid "use_syslog must be a boolean value "
 -#~ msgstr "use_syslog debe ser un valor booleano "
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
 +msgstr ""
-+"Inhabilitar la protección de SELinux para el servidor de bajo nivel de cupsd"
  
 -#, fuzzy
 -#~ msgid "USER Types automatically get a tmp type"
 -#~ msgstr "Los Tipos de USUARIO obtienen un tipo tmp automáticamente"
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio cupsd"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
  
 -#~ msgid "You must enter the executable path for your confined process"
 -#~ msgstr "Debe ingresar la dirección del ejecutable para su proceso confinado"
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Inhabilitar la protección de SELinux para cupsd_lpd"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
  
 -#~ msgid "Type Enforcement file"
 -#~ msgstr "Archivo de Tipo de Obediencia"
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
  
 -#~ msgid "Interface file"
 -#~ msgstr "Archivo de Interfase"
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio cvs"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
  
 -#~ msgid "File Contexts file"
 -#~ msgstr "Archivo de Contextos de Archivo"
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio cyrus"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
  
 -#~ msgid "Setup Script"
 -#~ msgstr "Script de Configuración"
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dbskkd"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
  
 -#~ msgid ""
 -#~ "SELinux Port\n"
@@ -61934,15 +71907,17 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Puerto SELinux\n"
 -#~ "Tipo"
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dbusd"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
  
 -#~ msgid "Protocol"
 -#~ msgstr "Protocolo"
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Inhabilitar la protección de SELinux para dccd"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
  
 -#~ msgid ""
 -#~ "MLS/MCS\n"
@@ -61950,71 +71925,76 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "MLS/MCS\n"
 -#~ "Nivel"
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Inhabilitar la protección de SELinux para dccifd"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
  
 -#~ msgid "Port"
 -#~ msgstr "Puerto"
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Inhabilitar la protección de SELinux para dccm"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
  
 -#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 -#~ msgstr ""
 -#~ "El número de puerto \"%s\" no es válido.  0 < NUMERO_DE_PUERTO < 65536"
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ddt"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
  
 -#~ msgid "List View"
 -#~ msgstr "Ver como Lista"
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio devfsd"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
  
 -#~ msgid "Group View"
 -#~ msgstr "Ver Grupo"
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dhcpc"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
  
 -#~ msgid "SELinux Service Protection"
 -#~ msgstr "Protección de Servicios de SELinux"
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dhcpd"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for acct daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para del demonio acct"
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dictd"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
  
 -#~ msgid "Admin"
 -#~ msgstr "Admin"
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Permitir a sysadm_t iniciar directamente los demonios"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
 -#~ msgid "Allow all daemons to write corefiles to /"
 -#~ msgstr "Permitir a los demonios escribir archivos principales a /"
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Inhabilitar la protección de SELinux para Evolution"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
 -#~ msgid "Allow all daemons the ability to use unallocated ttys"
 -#~ msgstr ""
 -#~ "Permitir a todos los demonios la habilidad de usar ttys no asignadas"
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Juegos"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
 -#~ msgid "User Privs"
 -#~ msgstr "Privados del Usuario"
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Inhabilitar la protección de SELinux para los juegos"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
@@ -62022,9 +72002,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a la cuenta gadmin de usuario SELinux ejecutar archivos en su "
 -#~ "directorio home o /tmp"
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Inhabilitar la protección de SELinux para los navegadores web"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
@@ -62032,57 +72012,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a la cuenta guest de SELinux ejecutar archivos en su directorio "
 -#~ "home o /tmp"
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Inhabilitar la protección de SELinux para Thunderbird"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
 -#~ msgid "Memory Protection"
 -#~ msgstr "Protección de Memoria"
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio distccd"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
 -#~ msgid "Allow java executable stack"
 -#~ msgstr "Permitir la pila ejecutable a java"
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dmesg"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
 -#~ msgid "Mount"
 -#~ msgstr "Montar"
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dnsmasq"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any file"
 -#~ msgstr "Permitir a mount montar cualquier archivo"
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio dovecot"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any directory"
 -#~ msgstr "Permitir a mount montar cualquier directorio"
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio entropyd"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
 -#~ msgid "Allow mplayer executable stack"
 -#~ msgstr "Permitir a mplayer la pila ejecutable"
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Inhabilitar la protección de SELinux para fetchmail"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio fingerd"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
 -#~ msgid "Allow ssh to run ssh-keysign"
 -#~ msgstr "Permitir a ssh ejecutar ssh_keysign"
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio freshclam"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
@@ -62090,9 +72071,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a la cuenta staff de SELinux ejecutar archivos en su directorio "
 -#~ "home o /tmp"
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio fsdaemon"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
@@ -62100,9 +72081,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a la cuenta sysadmin de SELinux ejecutar archivos en su "
 -#~ "directorio home o /tmp"
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio gpm"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
@@ -62110,412 +72091,66 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a las cuentas de usuario SELinux no confinadas ejecutar archivos "
 -#~ "en su directorio home o /tmp"
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
 -#~ msgid "Network Configuration"
 -#~ msgstr "Configuración de Red"
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio gss"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
 -#~ msgstr "Permitir a los paquetes no etiquetados fluir por la red"
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio Hal"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
 -#~ msgstr ""
 -#~ "Permitir a las cuentas de usuarios SELinux ejecutar archivos en su "
 -#~ "directorio home o /tmp"
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Compatibilidad"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
 -#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
 -#~ msgstr "Permitir a las no confinadas a dyntrans a unconfined_execmem"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+"No auditar cosas que ya se saben que no andan bien y que no representan "
-+"riesgos de seguridad"
  
 -#~ msgid "Databases"
 -#~ msgstr "Bases de Datos"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio hostname"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio hotplug"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio howl"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio cups hplip"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Inhabilitar la protección de SELinux para la rotación de logs de httpd"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "Servicio HTTPD"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Inhabilitar la protección de SELinux para suexec de http"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio hwclock"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio i18n"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio imazesrv"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Inhabilitar la protección de SELinux para los demonios hijos de inetd"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio inetd"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio innd"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio iptables"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ircd"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio irqbalance"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio iscsi"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio jabberd"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio kadmind"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio klogd"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio krb5kdc"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Inhabilitar la protección de SELinux para los demonios ktalk"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio kudzu"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio locate"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio lpd"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio lrrd"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio lvm"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Inhabilitar la protección de SELinux para mailman"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Permitir a evolution y a thunderbird leer archivos de los usuarios"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio mdadm"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio monopd"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Permitir al navegador mozilla leer archivos de los usuarios"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio mrtg"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio mysqld"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nagios"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Servicio de Nombre"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio named"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nessusd"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Inhabilitar la protección de SELinux para NetworkManager"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nfsd"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nmbd"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nrpe"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nscd"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio nsd"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ntpd"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Inhabilitar la protección de SELinux para oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Inhabilitar la protección de SELinux para oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio openvpn"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio pam"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Inhabilitar la protección de SELinux para pegasus"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio perdition"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio portmap"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio portslave"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Inhabilitar la protección de SELinux para postfix"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio postgresql"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Permitir a pppd correr para un usuario regular"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Inhabilitar la protección de SELinux para pptp"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio prelink"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio privoxy"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ptal"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio pxe"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Inhabilitar la protección de SELinux para pyzord"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio quota"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio radiusd"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio radvd"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Inhabilitar la protección de SELinux para rdisk"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Inhabilitar la protección de SELinux para readahead"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
 -#~ msgid "Allow user to connect to mysql socket"
 -#~ msgstr "Permitir a los usuarios conectar a socket mysql"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
-+"Permitir a los programas leer los archivos en ubicaciones no estándares "
-+"(default_t)"
  
 -#~ msgid "Allow user to connect to postgres socket"
 -#~ msgstr "Permitir a los usuarios conectara  socket postgres"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Inhabilitar la protección de SELinux para restorecond"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio rhgb"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Inhabilitar la protección de SELinux para ricci"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Inhabilitar la protección de SELinux para ricci_modclusterd"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio rlogind"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio rpcd"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Inhabilitar la protección de SELinux para el demonio rshd"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio rsync"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Permitir a ssh correr desde inetd en vez de como un demonio"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Permitir a Samba compartir los directorios nfs"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "Servidor de autenticación SASL"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Permitir al servidor de autenticación sasl leer /etc/shadow"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
 -#~ msgid "XServer"
 -#~ msgstr "ServidorX"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
 +msgstr ""
-+"Permitir al servidor X-Windows asignar una región de memoria como ejecutable "
-+"y de escritura"
  
 -#~ msgid "Allow clients to write to X shared memory"
 -#~ msgstr "Permitir a los clientes escribir a la memoria compartida de X"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio saslauthd"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio scannerdaemon"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "No permitir la transición a sysadm_t, sudo y su"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "No permitir a ningún proceso cargar módulos del kernel"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
@@ -62523,127 +72158,134 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a las cuentas xguest de SELinux ejecutar archivos en el "
 -#~ "directorio home o /tmp"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
 +msgstr ""
-+"No permitir a ningún proceso modificar la política de SELinux del kernel"
  
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio sendmail"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
  
 -#~ msgid "Allow daemons to run with NIS"
 -#~ msgstr "Permitir a los demonios ejecutar con NIS"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Inhabilitar la protección de SELinux para setrans"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
  
 -#~ msgid "Web Applications"
 -#~ msgstr "Aplicaciones Web"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio setroubleshoot"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Transition staff SELinux user to Web Browser Domain"
 -#~ msgstr ""
 -#~ "Transicionar los usuarios SELinux del staff al Dominio del Navegador Web"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio slapd"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
  
 -#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
 -#~ msgstr "Transicionar el usuario SELinux sysadm al Dominio del Navegador Web"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio slrnpull"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
  
 -#~ msgid "Transition user SELinux user to Web Browser Domain"
 -#~ msgstr "Transicionar el usuario SELinux user al Dominio del Navegador Web"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio smbd"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
  
 -#~ msgid "Transition xguest SELinux user to Web Browser Domain"
 -#~ msgstr "Transicionar el usuario SELinux xguest al Dominio del Navegador Web"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio snmpd"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
  
 -#~ msgid "Allow staff Web Browsers to write to home directories"
 -#~ msgstr ""
 -#~ "Permitir al los Navegadores Web del staff escribir a sus directorios de "
 -#~ "inicio"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio snort"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amanda"
 -#~ msgstr "Deshabilitar la protección SELinux para amanda"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio soundd"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amavis"
 -#~ msgstr "Deshabilitar la protección SELinux para amavis"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio sound"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for apmd daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio apmd"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Protección contra spam"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for arpwatch daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio arpwatch"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio spamd"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for auditd daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio auditd"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Permitir a spamd acceder a los directorios home"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for automount daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio automount"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Permitir el acceso a red al demonio Spam Assassin"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for avahi"
 -#~ msgstr "Deshabilitar la protección SELinux para avahi"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio speedmgmt"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for bluetooth daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio bluetooth"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for canna daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio canna"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Permitir al demonio squid conectarse a la red"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cardmgr daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio cardmgr"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio squid"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Cluster Server"
 -#~ msgstr "Deshabilitar la protección SELinux para el Servidor de Cluster"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ssh"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
@@ -62651,1107 +72293,1176 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgstr ""
 -#~ "Permitir a cdrecord leer varios contenidos. nfs, samba, dispositivos "
 -#~ "removibles, temporales del usuario y archivos de contenidos no confiable"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Permitir ingresos a ssh como sysadm_r:sysadm_t"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for ciped daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio ciped"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
 +msgstr ""
-+"Permitir a los usuarios staff_r buscar el directorio home de sysadm y leer "
-+"archivos (tales como ~/.bashrc)"
  
 -#~ msgid "Disable SELinux protection for clamd daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio clamd"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Tunel SSL Universal"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio stunnel"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Permitir al demonio stunnel correr como aplicación, fuera de xinetd"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio swat"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio sxid"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio syslogd"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Inhabilitar la protección de SELinux para los trabajos cron de sistema"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio tcp"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio telnet"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio tftpd"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio transproxy"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio udev"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio uml"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for clamscan"
 -#~ msgstr "Deshabilitar la protección SELinux para clamscan"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
 +msgstr ""
-+"Permitir a xinetd correr no confinado, incluyendo cualquier servicio que "
-+"inicie que no tenga una transición de dominio explícitamente definida"
  
 -#~ msgid "Disable SELinux protection for clvmd"
 -#~ msgstr "Deshabilitar la protección SELinux para clvmd"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+"Permitir a los scripts de rc ejecutarse no confinados, incluyendo cualquier "
-+"demonio iniciado en un script de rc que no tenga una transición de dominio "
-+"explícitamente definida"
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Permitir a rpm correr no confinado"
  
 -#~ msgid "Disable SELinux protection for comsat daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio comsat"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+"Permitir a las utilidades privilegiadas como hotplug e insmod ejecutarse no "
-+"confinadas"
  
 -#~ msgid "Disable SELinux protection for courier daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio courier"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio updfstab"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio uptimed"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cpucontrol daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio cpucontrol"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Permitir a user_r llegar a sysadm_r vía su, sudo o userhelper. Sinó, "
-+"solamente staff_r podrán hacerlo"
  
 -#~ msgid "Disable SELinux protection for cpuspeed daemon"
 -#~ msgstr "Deshabilitar la protección SELinux para el demonio cpuspeed"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Permitir a los usuarios ejecutar el comando mount"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
 -#~ msgid "Cron"
 -#~ msgstr "Cron"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+"Permitir a los usuarios regulares el acceso directo al ratón (solo permitir "
-+"al servidor X)"
  
 -#~ msgid "Disable SELinux protection for crond daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio crond"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Permitir a los usuarios ejecutar el comando dmesg"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
 -#~ msgid "Printing"
 -#~ msgstr "Impresión"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+"Permitir a los usuarios controlar las interases de red (también necesita "
-+"USERCTL=true)"
  
 -#~ msgid "Disable SELinux protection for cupsd back end server"
 -#~ msgstr ""
 -#~ "Deshabilitar la protección de SELinux para el servidor de bajo nivel de "
 -#~ "cupsd"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Permitir a los usuarios normales ejecutar ping"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Permitir a los usuarios l/e noextattrfile (FAT, CDROM, FLOPPY)"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Permitir a los usuarios l/e dispositivos usb"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio cupsd"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
 +msgstr ""
-+"Permitir a los usuarios ejecutar servidores TCP (adjuntarse a puertos y "
-+"aceptar conexiones entrantes desde el mismo dominio o usuarios externos) "
-+"inhabilitando esto fuerza el modo pasivo de FTP y puede cambiar otros "
-+"protocolos"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Permitir a los usuarios hacer stat a archivos tty"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio uucpd"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio vmware"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio watchdog"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio winbind"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio xdm"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Permitir ingresos xdm como sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio xen"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "Permitir a xen leer/escribir dispositivos de disco físicos"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio xfs"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Inhabilitar la protección de SELinux para xen control"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ypbind"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio NIS Password"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio ypserv"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Inhabilitar la protección de SELinux para el demonio NIS Transfer"
  
 -#~ msgid "Disable SELinux protection for cupsd_lpd"
 -#~ msgstr "Deshabilitar la protección de SELinux para cupsd_lpd"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++#: ../gui/polgengui.py:261
++msgid "Role"
 +msgstr ""
-+"Permitir al usuario SELinux webadm administrar los directorios de inicio de "
-+"usuarios no privilegiados"
  
 -#~ msgid "CVS"
 -#~ msgstr "CVS"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
 +msgstr ""
-+"Permitir a los usuarios webadm de SELinux leer los directorios de inicio de "
-+"los usuarios no privilegiados"
  
 -#~ msgid "Disable SELinux protection for cvs daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio cvs"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "¿Está seguro que desea eliminar %s '%s'?"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cyrus daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio cyrus"
-+#: ../gui/semanagePage.py:126
++#: ../gui/polgengui.py:352
 +#, python-format
-+msgid "Delete %s"
-+msgstr "Borrar %s"
++msgid "%s must be a directory"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dbskkd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dbskkd"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Agregar %s"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dbusd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dbusd"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Modificar %s"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccd"
 -#~ msgstr "Deshabilitar la protección de SELinux para dccd"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Permisivo"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccifd"
 -#~ msgstr "Deshabilitar la protección de SELinux para dccifd"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Obediente"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dccm"
 -#~ msgstr "Deshabilitar la protección de SELinux para dccm"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Inhabilitado"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for ddt daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio ddt"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Estado"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for devfsd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio devfsd"
-+#: ../gui/statusPage.py:133
++#: ../gui/polgengui.py:649
++#, python-format
 +msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"El cambio del tipo de política puede causar un reetiquetado de todo el "
-+"sistema de archivo en el siguiente arranque. El reetiquetado demora un "
-+"tiempo largo, dependiendo del tamaño del sistema de archivo. ¿Desea "
-+"continuar?"
  
 -#~ msgid "Disable SELinux protection for dhcpc daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dhcpc"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
 +msgstr ""
-+"El cambio de SELinux a inhabilitado requiere una reiniciada. No se "
-+"recomienda. Si más tarde decide volver a activar SELinux, el sistema "
-+"requerirá un reetiquetado. Si solo quiere ver si SELinux está causando un "
-+"problema en su sistema, puede ir a modo permisivo que solamente registrará "
-+"los errores pero no lo obligará a la política de SELinux. El modo permisivo "
-+"no requiere una reiniciada. ¿Desea continuar?"
  
 -#~ msgid "Disable SELinux protection for dhcpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dhcpd"
-+#: ../gui/statusPage.py:152
++#: ../gui/polgengui.py:653
++#, python-format
 +msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"El cambio de SELinux a activado provocará el reetiquetado de todo el sistema "
-+"de archivo en el siguiente arranque. El reetiquetado demora un tiempo largo, "
-+"dependiendo del tamaño del sistema de archivo. ¿Desea continuar?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
  
 -#~ msgid "Disable SELinux protection for dictd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dictd"
-+#: ../gui/system-config-selinux.glade:12
++#: ../gui/polgengui.py:699
 +msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
  
 -#~ msgid "Allow sysadm_t to directly start daemons"
 -#~ msgstr "Permitir a sysadm_t iniciar directamente los demonios"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Agregar la asignación de Ingreso SELinux"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Agregar Puertos de Red de SELinux"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "Tipo SELinux"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Evolution"
 -#~ msgstr "Deshabilitar la protección de SELinux para Evolution"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
 +msgstr ""
-+"Nivel MLS/MCS\n"
-+"de SELinux"
  
 -#~ msgid "Games"
 -#~ msgstr "Juegos"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Especificación de Archivo"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Tipo de Archivo"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for games"
 -#~ msgstr "Deshabilitar la protección de SELinux para los juegos"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+"todos los archivos\n"
-+"archivo regular\n"
-+"directorio\n"
-+"dispositivo de caracter\n"
-+"dispositivo de bloque\n"
-+"socket\n"
-+"enlace simbólico\n"
-+"tubería con nombre\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Agregar Usuario SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "Administración de SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Agregar"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Propiedades"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Eliminar"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Seleccionar Objeto de Administración"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Seleccionar:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Modo de Obediencia por Defecto del Sistema"
  
 -#~ msgid "Disable SELinux protection for the web browsers"
 -#~ msgstr "Deshabilitar la protección de SELinux para los navegadores web"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+"Inhabilitado\n"
-+"Permisivo\n"
-+"Obediente\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Modo de Obediencia Actual"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Tipo de Política por Defecto del Sistema:"
  
 -#~ msgid "Disable SELinux protection for Thunderbird"
 -#~ msgstr "Deshabilitar la protección de SELinux para Thunderbird"
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/polgen.py:326
 +msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+"Seleccione si desea reetiquetar todo el sistema de archivo en la siguiente "
-+"reiniciada. El reetiquetado toma mucho tiempo, dependiendo del tamaño del "
-+"sistema. Si cambia los tipos de políticas o va de desactivado a obediente, "
-+"se requiere un reetiquetado."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Reetiquetar en la próxima reiniciada."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Revertir los valores booleanos a los predeterminados del sistema"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Cambiar entre los Personalizados y Todos los Booleanos"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Ejecutar el asistente de bloqueo de booleanos"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Bloquear..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filtro"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Agregar Contexto de Archivo"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Modificar Contexto de Archivo"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Borrar Contexto de Archivo"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Cambiar entre todos los contextos de archivo y los personalizados"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Agregar Mapeo de Usuario SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Modificar asignación de Usuario SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Borrar asignación de Usuario SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Agregar Usuario"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Modificar Usuario"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Borrar Usuario"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Añadir Traducción"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modificar Traducción"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Borrar Traducción"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Agregar Puerto de Red"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Editar Puerto de Red"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Borrar Puerto de Red"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Cambiar entre los Personalizados y Todos los Puertos"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Generar nuevo módulo de política"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Cargar módulo de políticas"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Eliminar módulo de política cargable"
  
 -#~ msgid "Disable SELinux protection for distccd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio distccd"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+"Inhabilitar reglas de auditoría adicional, que no son normalmente informadas "
-+"en los archivos log."
  
 -#~ msgid "Disable SELinux protection for dmesg daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dmesg"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dnsmasq daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dnsmasq"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Cambiar el modo de proceso a permisivo."
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for dovecot daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio dovecot"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Cambiar el modo de proceso a obediente"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for entropyd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio entropyd"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Dominio del Proceso"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for fetchmail"
 -#~ msgstr "Deshabilitar la protección de SELinux para fetchmail"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for fingerd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio fingerd"
--
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
 -#~ msgid "Disable SELinux protection for freshclam daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio freshclam"
--
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
 -#~ msgid "Disable SELinux protection for fsdaemon daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio fsdaemon"
--
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
 -#~ msgid "Disable SELinux protection for gpm daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio gpm"
--
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
 -#~ msgid "NFS"
 -#~ msgstr "NFS"
--
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
 -#~ msgid "Disable SELinux protection for gss daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio gss"
--
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
 -#~ msgid "Disable SELinux protection for Hal daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio Hal"
--
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
 -#~ msgid "Compatibility"
 -#~ msgstr "Compatibilidad"
--
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 -#~ msgid ""
 -#~ "Do not audit things that we know to be broken but which are not security "
 -#~ "risks"
 -#~ msgstr ""
 -#~ "No auditar cosas que ya se saben que no andan bien y que no representan "
 -#~ "riesgos de seguridad"
--
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hostname daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio hostname"
--
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hotplug daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio hotplug"
--
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
 -#~ msgid "Disable SELinux protection for howl daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio howl"
--
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cups hplip daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio cups hplip"
--
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
 -#~ msgid "Disable SELinux protection for httpd rotatelogs"
 -#~ msgstr ""
 -#~ "Deshabilitar la protección de SELinux para la rotación de logs de httpd"
--
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 -#~ msgid "HTTPD Service"
 -#~ msgstr "Servicio HTTPD"
--
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
 -#~ msgid "Disable SELinux protection for http suexec"
 -#~ msgstr "Deshabilitar la protección de SELinux para suexec de http"
--
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hwclock daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio hwclock"
--
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
 -#~ msgid "Disable SELinux protection for i18n daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio i18n"
--
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for imazesrv daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio imazesrv"
--
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
 -#~ msgid "Disable SELinux protection for inetd child daemons"
 -#~ msgstr ""
 -#~ "Deshabilitar la protección de SELinux para los demonios hijos de inetd"
--
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
 -#~ msgid "Disable SELinux protection for inetd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio inetd"
--
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
 -#~ msgid "Disable SELinux protection for innd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio innd"
--
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
 -#~ msgid "Disable SELinux protection for iptables daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio iptables"
--
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ircd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio ircd"
--
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for irqbalance daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio irqbalance"
--
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
 -#~ msgid "Disable SELinux protection for iscsi daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio iscsi"
--
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
 -#~ msgid "Disable SELinux protection for jabberd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio jabberd"
--
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
 -#~ msgid "Kerberos"
 -#~ msgstr "Kerberos"
--
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
 -#~ msgid "Disable SELinux protection for kadmind daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio kadmind"
--
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
 -#~ msgid "Disable SELinux protection for klogd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio klogd"
--
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
 -#~ msgid "Disable SELinux protection for krb5kdc daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio krb5kdc"
--
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ktalk daemons"
 -#~ msgstr "Deshabilitar la protección de SELinux para los demonios ktalk"
--
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
 -#~ msgid "Disable SELinux protection for kudzu daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio kudzu"
--
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for locate daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio locate"
--
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio lpd"
--
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lrrd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio lrrd"
--
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lvm daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio lvm"
--
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mailman"
 -#~ msgstr "Deshabilitar la protección de SELinux para mailman"
--
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Allow evolution and thunderbird to read user files"
 -#~ msgstr "Permitir a evolution y a thunderbird leer archivos de los usuarios"
--
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mdadm daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio mdadm"
--
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
 -#~ msgid "Disable SELinux protection for monopd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio monopd"
--
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
 -#~ msgid "Allow the mozilla browser to read user files"
 -#~ msgstr "Permitir al navegador mozilla leer archivos de los usuarios"
--
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mrtg daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio mrtg"
--
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mysqld daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio mysqld"
--
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nagios daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nagios"
--
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Name Service"
 -#~ msgstr "Servicio de Nombre"
--
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for named daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio named"
--
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nessusd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nessusd"
--
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
 -#~ msgid "Disable SELinux protection for NetworkManager"
 -#~ msgstr "Deshabilitar la protección de SELinux para NetworkManager"
--
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nfsd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nfsd"
--
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Samba"
 -#~ msgstr "Samba"
--
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nmbd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nmbd"
--
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nrpe daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nrpe"
--
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nscd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nscd"
--
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nsd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio nsd"
--
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ntpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio ntpd"
--
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob"
 -#~ msgstr "Deshabilitar la protección de SELinux para oddjob"
--
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
 -#~ msgstr "Deshabilitar la protección de SELinux para oddjob_mkhomedir"
--
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for openvpn daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio openvpn"
--
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pam daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio pam"
--
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pegasus"
 -#~ msgstr "Deshabilitar la protección de SELinux para pegasus"
--
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for perdition daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio perdition"
--
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portmap daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio portmap"
--
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portslave daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio portslave"
--
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postfix"
 -#~ msgstr "Deshabilitar la protección de SELinux para postfix"
--
++#: ../gui/selinux.tbl:41
++msgid ""
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postgresql daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio postgresql"
--
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
++msgstr ""
 -#~ msgid "pppd"
 -#~ msgstr "pppd"
--
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr ""
 -#~ msgid "Allow pppd to be run for a regular user"
 -#~ msgstr "Permitir a pppd correr para un usuario regular"
--
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pptp"
 -#~ msgstr "Deshabilitar la protección de SELinux para pptp"
--
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for prelink daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio prelink"
--
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for privoxy daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio privoxy"
--
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ptal daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio ptal"
--
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pxe daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio pxe"
--
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pyzord"
 -#~ msgstr "Deshabilitar la protección de SELinux para pyzord"
--
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr ""
 -#~ msgid "Disable SELinux protection for quota daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio quota"
--
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radiusd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio radiusd"
--
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radvd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio radvd"
--
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rdisc"
 -#~ msgstr "Deshabilitar la protección de SELinux para rdisk"
--
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for readahead"
 -#~ msgstr "Deshabilitar la protección de SELinux para readahead"
--
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
++msgstr ""
 -#~ msgid "Allow programs to read files in non-standard locations (default_t)"
 -#~ msgstr ""
 -#~ "Permitir a los programas leer los archivos en ubicaciones no estándares "
 -#~ "(default_t)"
--
++#: ../gui/selinux.tbl:58
++msgid "CVS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for restorecond"
 -#~ msgstr "Deshabilitar la protección de SELinux para restorecond"
--
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rhgb daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio rhgb"
--
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci"
 -#~ msgstr "Deshabilitar la protección de SELinux para ricci"
--
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci_modclusterd"
 -#~ msgstr "Deshabilitar la protección de SELinux para ricci_modclusterd"
--
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rlogind daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio rlogind"
--
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rpcd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio rpcd"
--
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rshd"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio rshd"
--
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
++msgstr ""
 -#~ msgid "rsync"
 -#~ msgstr "rsync"
--
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rsync daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio rsync"
--
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr ""
 -#~ msgid "Allow ssh to run from inetd instead of as a daemon"
 -#~ msgstr "Permitir a ssh correr desde inetd en vez de como un demonio"
--
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr ""
 -#~ msgid "Allow Samba to share nfs directories"
 -#~ msgstr "Permitir a Samba compartir los directorios nfs"
--
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr ""
 -#~ msgid "SASL authentication server"
 -#~ msgstr "Servidor de autenticación SASL"
--
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr ""
 -#~ msgid "Allow sasl authentication server to read /etc/shadow"
 -#~ msgstr "Permitir al servidor de autenticación sasl leer /etc/shadow"
--
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow X-Windows server to map a memory region as both executable and "
 -#~ "writable"
 -#~ msgstr ""
 -#~ "Permitir al servidor X-Windows mapear una región de memoria como "
 -#~ "ejecutable y de escritura"
--
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr ""
 -#~ msgid "Disable SELinux protection for saslauthd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio saslauthd"
--
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr ""
 -#~ msgid "Disable SELinux protection for scannerdaemon daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio scannerdaemon"
--
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr ""
 -#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
 -#~ msgstr "No permitir la transición a sysadm_t, sudo y su"
--
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr ""
 -#~ msgid "Do not allow any processes to load kernel modules"
 -#~ msgstr "No permitir a ningún proceso cargar módulos del kernel"
--
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr ""
 -#~ msgid "Do not allow any processes to modify kernel SELinux policy"
 -#~ msgstr ""
 -#~ "No permitir a ningún proceso modificar la política de SELinux del kernel"
--
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sendmail daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio sendmail"
--
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setrans"
 -#~ msgstr "Deshabilitar la protección de SELinux para setrans"
--
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setroubleshoot daemon"
 -#~ msgstr ""
 -#~ "Deshabilitar la protección de SELinux para el demonio setroubleshoot"
--
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slapd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio slapd"
--
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slrnpull daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio slrnpull"
--
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr ""
 -#~ msgid "Disable SELinux protection for smbd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio smbd"
--
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snmpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio snmpd"
--
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snort daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio snort"
--
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for soundd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio soundd"
--
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sound daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio sound"
--
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr ""
 -#~ msgid "Spam Protection"
 -#~ msgstr "Protección contra spam"
--
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for spamd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio spamd"
--
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr ""
 -#~ msgid "Allow spamd to access home directories"
 -#~ msgstr "Permitir a spamd acceder a los directorios home"
--
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr ""
 -#~ msgid "Allow Spam Assassin daemon network access"
 -#~ msgstr "Permitir el acceso a red al demonio Spam Assassin"
--
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
++msgstr ""
 -#~ msgid "Disable SELinux protection for speedmgmt daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio speedmgmt"
--
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr ""
 -#~ msgid "Squid"
 -#~ msgstr "Squid"
--
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
++msgstr ""
 -#~ msgid "Allow squid daemon to connect to the network"
 -#~ msgstr "Permitir al demonio squid conectarse a la red"
--
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for squid daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio squid"
--
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ssh daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio ssh"
--
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr ""
 -#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
 -#~ msgstr "Permitir ingresos a ssh como sysadm_r:sysadm_t"
--
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
 -#~ "~/.bashrc)"
 -#~ msgstr ""
 -#~ "Permitir a los usuarios staff_r buscar el directorio home de sysadm y "
 -#~ "leer archivos (tales como ~/.bashrc)"
--
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
++msgstr ""
 -#~ msgid "Universal SSL tunnel"
 -#~ msgstr "Tunel SSL Universal"
--
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for stunnel daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio stunnel"
--
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
++msgstr ""
 -#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 -#~ msgstr "Permitir al demonio stunnel correr como aplicación, fuera de xinetd"
--
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for swat daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio swat"
--
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sxid daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio sxid"
--
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for syslogd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio syslogd"
--
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for system cron jobs"
 -#~ msgstr ""
 -#~ "Deshabilitar la protección de SELinux para los trabajos cron de sistema"
--
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tcp daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio tcp"
--
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for telnet daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio telnet"
--
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tftpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio tftpd"
--
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for transproxy daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio transproxy"
--
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr ""
 -#~ msgid "Disable SELinux protection for udev daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio udev"
--
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uml daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio uml"
--
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow xinetd to run unconfined, including any services it starts that do "
 -#~ "not have a domain transition explicitly defined"
 -#~ msgstr ""
 -#~ "Permitir a xinetd correr no confinado, incluyendo cualquier servicio que "
 -#~ "inicie que no tenga una transición de dominio explícitamente definida"
--
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
 -#~ "script that does not have a domain transition explicitly defined"
@@ -63759,53 +73470,104 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Permitir a los scripts de rc ejecutarse no confinados, incluyendo "
 -#~ "cualquier demonio iniciado en un script de rc que no tenga una transición "
 -#~ "de dominio explícitamente definida"
--
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr ""
 -#~ msgid "Allow rpm to run unconfined"
 -#~ msgstr "Permitir a rpm correr no confinado"
--
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr ""
 -#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 -#~ msgstr ""
 -#~ "Permitir a las utilidades privilegiadas como hotplug e insmod ejecutarse "
 -#~ "no confinadas"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Deshabilitar la protección de SELinux para el demonio updfstab"
--
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Deshabilitar la protección de SELinux para el demonio updfstab"
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uptimed daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio uptimed"
--
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
 -#~ "only staff_r can do so"
 -#~ msgstr ""
 -#~ "Permitir a user_r llegar a sysadm_r vía su, sudo o userhelper. Sinó, "
 -#~ "solamente staff_r podrán hacerlo"
--
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr ""
 -#~ msgid "Allow users to execute the mount command"
 -#~ msgstr "Permitir a los usuarios ejecutar el comando mount"
--
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr ""
 -#~ msgid "Allow regular users direct mouse access (only allow the X server)"
 -#~ msgstr ""
 -#~ "Permitir a los usuarios regulares el acceso directo al ratón (solo "
 -#~ "permitir al servidor X)"
--
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr ""
 -#~ msgid "Allow users to run the dmesg command"
 -#~ msgstr "Permitir a los usuarios ejecutar el comando dmesg"
--
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr ""
 -#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 -#~ msgstr ""
 -#~ "Permitir a los usuarios controlar las interases de red (también necesita "
 -#~ "USERCTL=true)"
--
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr ""
 -#~ msgid "Allow normal user to execute ping"
 -#~ msgstr "Permitir a los usuarios normales ejecutar ping"
--
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr ""
 -#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 -#~ msgstr "Permitir a los usuarios l/e noextattrfile (FAT, CDROM, FLOPPY)"
--
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr ""
 -#~ msgid "Allow users to rw usb devices"
 -#~ msgstr "Permitir a los usuarios l/e dispositivos usb"
--
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow users to run TCP servers (bind to ports and accept connection from "
 -#~ "the same domain and outside users)  disabling this forces FTP passive "
@@ -63815,10 +73577,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "aceptar conexiones entrantes desde el mismo dominio o usuarios externos) "
 -#~ "deshabilitando esto forza el modo pasivo de FTP y puede cambiar otros "
 -#~ "protocolos"
--
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr ""
 -#~ msgid "Allow user to stat ttyfiles"
 -#~ msgstr "Permitir a los usuarios hacer stat a archivos tty"
--
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uucpd daemon"
 -#~ msgstr "Deshabilitar la protección de SELinux para el demonio uucpd"
 -
@@ -63894,12 +73662,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ msgid "Enforcing"
 -#~ msgstr "Obligatorio"
 -
--#~ msgid "Disabled"
--#~ msgstr "Deshabilitado"
--
--#~ msgid "Status"
--#~ msgstr "Estado"
--
 -#~ msgid ""
 -#~ "Changing the policy type will cause a relabel of the entire file system "
 -#~ "on the next boot. Relabeling takes a long time depending on the size of "
@@ -64028,13 +73790,79 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Deshabilitado\n"
 -#~ "Permisivo\n"
 -#~ "Obediente\n"
--
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr ""
 -#~ msgid "Current Enforcing Mode"
 -#~ msgstr "Modo Obligatorio Actual"
--
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr ""
 -#~ msgid "System Default Policy Type: "
 -#~ msgstr "Tipo de Política por Defecto del Sistema:"
--
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr ""
++
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr ""
++
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr ""
++
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr ""
++
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Select if you wish to relabel then entire file system on next reboot.  "
 -#~ "Relabeling can take a very long time, depending on the size of the "
@@ -64045,92 +73873,177 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "siguiente reiniciada. El reetiquetado toma mucho tiempo, dependiendo del "
 -#~ "tamaño del sistema. Si cambia los tipos de políticas o va de desactivado "
 -#~ "a obligatorio, se requiere un reetiquetado."
--
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr ""
 -#~ msgid "Relabel on next reboot."
 -#~ msgstr "Reetiquetar en la próxima reiniciada."
--
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr ""
 -#~ msgid "Revert boolean setting to system default"
 -#~ msgstr "Revertir los valores booleanos a los predeterminados del sistema"
--
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Booleans"
 -#~ msgstr "Cambiar entre los Personalizados y Todos los Booleanos"
--
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr ""
 -#~ msgid "Run booleans lockdown wizard"
 -#~ msgstr "Ejecutar el asistente de bloqueo de booleanos"
--
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr ""
 -#~ msgid "Lockdown..."
 -#~ msgstr "Bloquear..."
--
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr ""
 -#~ msgid "Filter"
 -#~ msgstr "Filtro"
--
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr ""
 -#~ msgid "Add File Context"
 -#~ msgstr "Agregar Contexto de Archivo"
--
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr ""
 -#~ msgid "Modify File Context"
 -#~ msgstr "Modificar Contexto de Archivo"
--
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr ""
 -#~ msgid "Delete File Context"
 -#~ msgstr "Borrar Contexto de Archivo"
--
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr ""
 -#~ msgid "Toggle between all and customized file context"
 -#~ msgstr "Cambiar entre todos los contextos de archivo y los personalizados"
--
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr ""
 -#~ msgid "Add SELinux User Mapping"
 -#~ msgstr "Agregar Mapeo de Usuario SELinux"
--
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr ""
 -#~ msgid "Modify SELinux User Mapping"
 -#~ msgstr "Modificar Mapeo de Usuario SELinux"
--
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr ""
 -#~ msgid "Delete SELinux User Mapping"
 -#~ msgstr "Borrar el Mapeo de Usuario SELinux"
--
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
 -#~ msgid "Add Translation"
 -#~ msgstr "Agregar Traducción"
--
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr ""
 -#~ msgid "Modify Translation"
 -#~ msgstr "Modificar Traducción"
--
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr ""
 -#~ msgid "Delete Translation"
 -#~ msgstr "Borrar Traducción"
--
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr ""
 -#~ msgid "Modify SELinux User"
 -#~ msgstr "Modificar Usuario SELinux"
--
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr ""
 -#~ msgid "Add Network Port"
 -#~ msgstr "Agregar Puerto de Red"
--
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr ""
 -#~ msgid "Edit Network Port"
 -#~ msgstr "Editar Puerto de Red"
--
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
 -#~ msgid "Delete Network Port"
 -#~ msgstr "Borrar Puerto de Red"
--
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Ports"
 -#~ msgstr "Cambiar entre los Personalizados y Todos los Puertos"
--
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr ""
 -#~ msgid "Generate new policy module"
 -#~ msgstr "Generar nuevo módulo de política"
--
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr ""
 -#~ msgid "Load policy module"
 -#~ msgstr "Cargar módulo de políticas"
--
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
 -#~ msgid "Remove loadable policy module"
 -#~ msgstr "Eliminar módulo de política cargable"
--
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr ""
 -#~ msgid ""
 -#~ "Enable/Disable additional audit rules, that are normally not reported in "
 -#~ "the log files."
 -#~ msgstr ""
 -#~ "Deshabilitar reglas de auditoría adicional, que no son normalmente "
 -#~ "informadas en los archivos log."
--
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr ""
 -#~ msgid "Sensitvity Level"
 -#~ msgstr "Nivel de Sensibilidad"
--
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
 -#~ msgid "SELinux user '%s' is required"
 -#~ msgstr "Se requiere el usuario SELinux '%s'"
--
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
 -#~ msgid ""
 -#~ "\n"
 -#~ "\n"
@@ -64141,31 +74054,52 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "\n"
 -#~ "semodule -i %s\n"
 -#~ "\n"
--
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr ""
 -#~ msgid "Disable"
 -#~ msgstr "Deshabilitar"
--
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
 -#~ msgid "Enable"
 -#~ msgstr "Habilitar"
--
--#~ msgid "Default"
--#~ msgstr "Predeterminado"
--
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
 -#~ msgid "<b>Boolean</b>"
 -#~ msgstr "<b>Booleano</b>"
--
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr ""
 -#~ msgid "<b>Description</b>"
 -#~ msgstr "<b>Descripción</b>"
--
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
 -#~ msgid "<b>Status</b>"
 -#~ msgstr "<b>Estado</b>"
--
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr ""
 -#~ msgid "Category: %s <br>"
 -#~ msgstr "Categoría: %s <br>"
--
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr ""
 -#~ msgid "Begin"
 -#~ msgstr "Iniciar"
--
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to "
 -#~ "lockdown SELinux booleans.The tool will generate a configuration file "
@@ -64175,84 +74109,146 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "herramienta se puede usar para bloquear booleanos de SELinux. La "
 -#~ "herramienta generará un archivo de configuración que se puede usar para "
 -#~ "bloquear este sistema u otros sistemas SELinux.<br>"
--
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr ""
 -#~ msgid "Finish"
 -#~ msgstr "Finalizar"
--
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr ""
 -#~ msgid "Category %s booleans completed <br><br>"
 -#~ msgstr "Categoría %s de booleanos completada <br><br>"
--
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr ""
 -#~ msgid "Current settings:<br><br>"
 -#~ msgstr "Configuración actual:<br><br>"
--
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr ""
 -#~ msgid "Finish: <br><br>"
 -#~ msgstr "Finalizar: <br><br>"
--
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr ""
 -#~ msgid "Category: %s<br><br>Current Settings<br><br>"
 -#~ msgstr "Categoría: %s<br><br>Configuración Actual<br><br>"
--
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
 -#~ msgid "Boolean:   %s<br><br>"
 -#~ msgstr "Booleano:  %s<br><br>"
--
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr ""
 -#~ msgid "Lockdown SELinux Booleans"
 -#~ msgstr "Bloquear Booleanos de SELinux"
--
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr ""
 -#~ msgid "Apply"
 -#~ msgstr "Aplicar"
--
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
 -#~ msgid "SELinux Boolean Lockdown"
 -#~ msgstr "Bloqueo de Booleanos de SELinux"
--
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr ""
 -#~ msgid "Save As"
 -#~ msgstr "Guardar Como"
--
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr ""
 -#~ msgid "Save Boolean Configuration File"
 -#~ msgstr "Guardar Archivo de Configuración de Booleanos"
--
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
 -#~ msgid "Select file name to save  boolean settings."
 -#~ msgstr ""
 -#~ "Seleccione el nombre de archivo para guardar la configuración de "
 -#~ "booleanos."
--
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
 -#~ msgid "_Forward"
 -#~ msgstr "_Siguiente"
--
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr ""
 -#~ msgid "_Previous"
 -#~ msgstr "_Previo"
--
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr ""
 -#~ msgid "Requires value"
 -#~ msgstr "Se requiere un valor"
 -
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Prefijo inválido %s"
--
 -#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
 -#~ msgstr ""
 -#~ "Permitir a la aplicación/usuario engancharse a cualquier puerto tcp > 1024"
--
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr ""
 -#~ msgid "Allows confined application/user role to bind to any tcp port"
 -#~ msgstr ""
 -#~ "Permitir que la aplicación/usuario confinado se enganche a cualquier "
 -#~ "puerto tcp"
--
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
 -#~ "Ingrese una lista separado por comas de los puertos tcp a los que esta  "
 -#~ "aplicación/rol de usuario se engancha. Ejemplo: 612, 650-660"
--
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
 -#~ msgid "SELinux Policy Generation Druid"
 -#~ msgstr "Druid de Generación de Políticas de SELinux"
--
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
 -#~ msgid "Unreserved Ports  (> 1024)"
 -#~ msgstr "Puertos No Reservados (> 1024)"
--
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
 -#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
 -#~ msgstr ""
 -#~ "Use esta casilla de verificación si su aplicación llama a bidresvport con "
 -#~ "0."
--
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
 -#~ msgid ""
 -#~ "Enforcing\n"
 -#~ "Permissive\n"
@@ -64261,969 +74257,587 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils
 -#~ "Obligatorio\n"
 -#~ "Permisivo\n"
 -#~ "Deshabilitado\n"
-+#: ../gui/usersPage.py:138
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr ""
++
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
++
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
++
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
++
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
++
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr ""
++
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
++
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr ""
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++
++#: ../gui/semanagePage.py:126
 +#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "Se requiere el usuario SELinux '%s'"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils-2.0.85/po/et.po
---- nsapolicycoreutils/po/et.po        2011-02-17 15:11:25.969720930 -0500
-+++ policycoreutils-2.0.85/po/et.po    2011-02-18 16:03:41.361975695 -0500
-@@ -1,3 +1,20 @@
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
++msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -100,7 +117,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -152,736 +170,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
++
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
++
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
++
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/eu_ES.po b/policycoreutils/po/eu_ES.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/eu_ES.po
++++ b/policycoreutils/po/eu_ES.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1252,3 +1277,2064 @@
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -65232,13 +74846,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -65260,7 +74874,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -65287,7 +74901,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -65295,15 +74909,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -65328,481 +74938,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -65835,7 +75505,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -66963,18 +76633,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -67015,7 +76681,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -67024,25 +76689,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -67054,58 +76713,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -67113,169 +76772,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -67283,978 +76925,94 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreutils-2.0.85/po/eu_ES.po
---- nsapolicycoreutils/po/eu_ES.po     2011-02-17 15:11:25.722725008 -0500
-+++ policycoreutils-2.0.85/po/eu_ES.po 2011-02-18 16:03:41.362975702 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/fa.po b/policycoreutils/po/fa.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/fa.po
++++ b/policycoreutils/po/fa.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -68263,13 +77021,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -68291,7 +77049,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -68318,7 +77076,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -68326,15 +77084,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -68359,481 +77113,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -68866,7 +77680,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -69994,18 +78808,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -70046,7 +78856,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -70055,25 +78864,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -70085,58 +78888,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -70144,169 +78947,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -70314,1557 +79100,2169 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreut
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils-2.0.85/po/fa.po
---- nsapolicycoreutils/po/fa.po        2011-02-17 15:11:25.649726215 -0500
-+++ policycoreutils-2.0.85/po/fa.po    2011-02-18 16:03:41.363975709 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/fi.po b/policycoreutils/po/fi.po
+index afeaa9f..4f44483 100644
+--- a/policycoreutils/po/fi.po
++++ b/policycoreutils/po/fi.po
+@@ -1,165 +1,167 @@
+ # 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.
+-#
+-#, fuzzy
++# 
++# Translators:
++# Juhani Numminen <juhaninumminen0@gmail.com>, 2012.
++# Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>, 2009, 2010.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: PACKAGE VERSION\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-02 16:29-0400\n"
++"PO-Revision-Date: 2012-04-24 04:25+0000\n"
++"Last-Translator: Juhani Numminen <juhaninumminen0@gmail.com>\n"
++"Language-Team: Finnish (http://www.transifex.net/projects/p/fedora/language/fi/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
++"Language: fi\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
  "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
+ "  where: <script> is the name of the init script to run,\n"
+ "         <args ...> are the arguments to that script."
+-msgstr ""
++msgstr "Käyttö: run_init <komentosarja> <argumentit ...>\n  missä: <komentosarja> on suoritettavan käynnistyskomentosarjan nimi,\n         <argumentit ...> ovat sen argumentit."
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+ msgid "failed to initialize PAM\n"
+-msgstr ""
++msgstr "PAMin alustaminen epäonnistui\n"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr ""
++msgstr "kirjautumistietoja ei saatu\n"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+-msgstr ""
++msgstr "Salasana:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
++msgstr "Varjosalasanatiedostosta ei löydy tämän käyttäjän tietoja.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+ msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
++msgstr "getpass ei voi avata laitetta /dev/tty\n"
+ #: ../run_init/run_init.c:275
+ #, c-format
+ msgid "run_init: incorrect password for %s\n"
+-msgstr ""
++msgstr "run_init: väärä salasana käyttäjälle %s\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr ""
++msgstr "Tiedostoa %s ei voitu avata\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+ msgid "No context in file %s\n"
+-msgstr ""
++msgstr "Tiedostolla %s ei ole kontekstia\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
++msgstr "run_initiä voi käyttää vain SELinux-kernelillä.\n"
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr ""
++msgstr "tunnistautuminen epäonnistui.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr ""
++msgstr "Ei voitu asettaa suorituskontekstia kontekstiksi %s.\n"
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
++msgstr "******************** TÄRKEÄÄ ***********************\n"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr ""
++msgstr "Tämän käytäntöpakkauksen aktivoimiseksi suorita:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "globaali"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+-msgstr ""
++msgstr "Ei voitu luoda semanage-kahvaa"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
++msgstr "SELinux-käytäntöä ei hallita tai säilöä ei voida käyttää."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr ""
++msgstr "Käytäntösäilöä ei voida lukea."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr ""
++msgstr "Semanage-yhteyttä ei voitu muodostaa"
+ #: ../semanage/seobject.py:245
+ msgid "Could not test MLS enabled status"
+-msgstr ""
++msgstr "Ei voitu testata onko MLS käytössä"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "Ei vielä toteutettu"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage-transaktio on jo käynnissä"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+-msgstr ""
++msgstr "Semanage-transaktiota ei voitu käynnistää"
+ #: ../semanage/seobject.py:274
+ msgid "Could not commit semanage transaction"
+-msgstr ""
++msgstr "Semanage-transaktiota ei voitu toteuttaa"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage-transaktio ei ole käynnissä"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+ msgid "Could not list SELinux modules"
+-msgstr ""
++msgstr "SELinux-moduuleita ei voitu luetteloida"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+-msgstr ""
++msgstr "Moduulin nimi"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "Versio"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Ei käytössä"
+ #: ../semanage/seobject.py:322
+ #, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr ""
++msgstr "Ei voitu poistaa käytöstä moduulia %s (poisto epäonnistui)"
+ #: ../semanage/seobject.py:333
+ #, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr ""
++msgstr "Ei voitu ottaa käyttöön moduulia %s (poisto epäonnistui)"
+ #: ../semanage/seobject.py:348
+ #, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr ""
++msgstr "Ei voitu poistaa moduulia %s (poisto epäonnistui)"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+@@ -167,21 +169,21 @@ msgstr ""
+ #: ../semanage/seobject.py:387
+ msgid "Builtin Permissive Types"
+-msgstr ""
++msgstr "Sisäänrakennetut sallivat tyypit"
+ #: ../semanage/seobject.py:397
+ msgid "Customized Permissive Types"
+-msgstr ""
++msgstr "Omat sallivat tyypit"
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa sallivaa toimialuetta %s (moduulin asennus epäonnistui)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa sallivaa toimialuetta %s (poisto epäonnistui)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -192,348 +194,354 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda avainta käyttäjälle %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko käyttäjälle %s määritelty kirjautumisassosiaatiota"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
+ #: ../semanage/seobject.py:492
  #, python-format
  msgid "Linux Group %s does not exist"
- msgstr ""
+-msgstr ""
++msgstr "Linux-ryhmää %s ei ole olemassa"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
  msgid "Linux User %s does not exist"
- msgstr ""
+-msgstr ""
++msgstr "Linux-käyttäjää %s ei ole olemassa"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjälle %s ei voitu tehdä kirjautumisassosiaatiota"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s nimeä ei voitu asettaa"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s MLS-aluetta ei voitu asettaa"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s SELinux-käyttäjää ei voitu asettaa"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjälle %s ei voitu lisätä kirjautumisassosiaatiota"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii seuserin tai serangen"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjälle %s ei ole määritelty kirjautumisassosiaatiota"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr ""
+-msgstr ""
++msgstr "Seuserilta ei voitu kysellä käyttäjän %s tietoja"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s kirjautumisassosiaatiota ei voitu muokata"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s kirjautumisassosiaatio on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s kirjautumisassosiaatiota ei voitu poistaa"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr ""
+-msgstr ""
++msgstr "Kirjautumisassosiaatioita ei voitu luetteloida"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+-msgstr ""
++msgstr "Kirjautumisnimi"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-käyttäjä"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
+-msgstr ""
++msgstr "MLS/MCS-alue"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
  #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+ msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko SELinux-käyttäjää %s määritelty"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+ msgid "Could not query user for %s"
+-msgstr ""
++msgstr "Ei voitu kysellä käyttäjältä tietoja kohteesta %s"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:722
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+ msgid "You must add at least one role for %s"
+-msgstr ""
++msgstr "Ainakin yksi rooli on lisättävä käyttäjälle %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda SELinux-käyttäjää käyttäjälle %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr ""
+-msgstr ""
++msgstr "Roolia %s ei voitu lisätä käyttäjälle %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s MLS-tasoa ei voitu asettaa"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr ""
+-msgstr ""
++msgstr "Etuliitettä %s ei voitu lisätä käyttäjälle %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu purkaa käyttäjän %s avainta"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu lisätä SELinux-käyttäjää %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii etuliitteen, roolit, tasot tai alueen"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii etuliitteen tai roolit"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-käyttäjää %s ei ole määritelty"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata SELinux-käyttäjää %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-käyttäjä %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa SELinux-käyttäjää %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-käyttäjiä ei voitu luetteloida"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr ""
+-msgstr ""
++msgstr "Käyttäjän %s rooleja ei voitu luetteloida"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr ""
+-msgstr ""
++msgstr "Nimiöinti"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr ""
+-msgstr ""
++msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
- msgstr ""
+-msgstr ""
++msgstr "Etuliite"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
- msgstr ""
+-msgstr ""
++msgstr "MCS-taso"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr ""
+-msgstr ""
++msgstr "MCS-alue"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-roolit"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr ""
+-msgstr ""
++msgstr "Udp- tai tcp-protokolla on pakollinen"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr ""
+-msgstr ""
++msgstr "Portti on pakollinen"
+ #: ../semanage/seobject.py:975
+ msgid "Invalid Port"
+-msgstr ""
++msgstr "Portti ei kelpaa"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda avainta yhdistelmälle %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
- msgstr ""
+-msgstr ""
++msgstr "Tyyppi on pakollinen"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko portti %s/%s määritelty"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
  msgid "Port %s/%s already defined"
- msgstr ""
+-msgstr ""
++msgstr "Portti %s/%s on jo määritelty"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Yhdistelmälle %s/%s ei voitu luoda porttia"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Yhdistelmälle %s/%s ei voitu luoda kontekstia"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa käyttäjää yhdistelmän %s/%s porttikontekstissa"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa roolia yhdistelmän %s/%s porttikontekstissa"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa tyyppiä yhdistelmän %s/%s porttikontekstissa"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa mls-kenttiä yhdistelmän %s/%s porttikontekstissa"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa porttikontekstia yhdistelmälle %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu lisätä porttia %s/%s"
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
  msgid "Requires setype or serange"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii setypen tai serangen"
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
+ #: ../semanage/seobject.py:1049
  msgid "Requires setype"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii setypen"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
  #, python-format
  msgid "Port %s/%s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Porttia %s/%s ei ole määritelty"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu kysellä porttia %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata porttia %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
  msgid "Could not list the ports"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetteloida portteja"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
+ #: ../semanage/seobject.py:1101
  #, python-format
  msgid "Could not delete the port %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa porttia %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Portti %s/%s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa porttia %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetteloida portteja"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-porttityyppi"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr ""
+-msgstr ""
++msgstr "Protokolla"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+-msgstr ""
++msgstr "Porttinumero"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr ""
++msgstr "Koneen osoite on pakollinen"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
+-msgstr ""
++msgstr "Tuntematon tai puuttuva protokolla"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-tyyppi on pakollinen"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -541,84 +549,84 @@ msgstr ""
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda avainta osoitteelle %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
  #, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko osoite %s määritelty"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
+ #: ../semanage/seobject.py:1262
  #, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda osoitetta kohteelle %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda kontekstia osoitteelle %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
+ #: ../semanage/seobject.py:1272
  #, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa peitettä osoitteelle %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
+ #: ../semanage/seobject.py:1276
  #, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa käyttäjää osoitekontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1280
  #, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa roolia osoitekontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1284
  #, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa tyyppiä osoitekontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
+ #: ../semanage/seobject.py:1289
  #, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa mls-kenttiä osoitekontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1293
  #, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa osoitekontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1297
  #, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu lisätä osoitetta %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
  #, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Osoitetta %s ei ole määritelty"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
+ #: ../semanage/seobject.py:1326
  #, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu kysellä osoitetta %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
+ #: ../semanage/seobject.py:1336
  #, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata osoitetta %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
+ #: ../semanage/seobject.py:1364
  #, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Osoite %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1368
  #, python-format
  msgid "Could not delete addr %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa osoitetta %s"
+ #: ../semanage/seobject.py:1380
+ msgid "Could not deleteall node mappings"
+@@ -626,78 +634,78 @@ msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
+ #: ../semanage/seobject.py:1394
  msgid "Could not list addrs"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetteloida osoitteita"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko verkkoliitäntä %s määritelty"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda verkkoliitäntää kohteelle %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa käyttäjää verkkoliitäntäkontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa roolia verkkoliitäntäkontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa tyyppiä verkkoliitäntäkontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa mls-kenttiä verkkoliitäntäkontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa verkkoliitäntäkontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa viestikontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu lisätä verkkoliitäntää %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Verkkoliitäntää %s ei ole määritelty"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu kysellä verkkoliitäntää %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata verkkoliitäntää %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Verkkoliitäntä %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa verkkoliitäntää %s"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1574
+ msgid "Could not delete all interface  mappings"
+@@ -705,15 +713,15 @@ msgstr ""
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetella verkkoliitäntöjä"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-verkkoliitäntä"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
- msgstr ""
+-msgstr ""
++msgstr "Konteksti"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1663
+ #, python-format
+@@ -733,21 +741,21 @@ msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa käyttäjää tiedostokontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa roolia tiedostokontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa mls-kenttiä tiedostokontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr ""
+-msgstr ""
++msgstr "Virheellinen tiedostomääritys"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -756,7 +764,8 @@ msgstr ""
+ #: ../semanage/seobject.py:1714
  #, python-format
- msgid "Could not check if file context for %s is defined"
+ msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
++"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' "
++"instead"
  msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
+ #: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+@@ -764,82 +773,82 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+ msgid "Could not check if file context for %s is defined"
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko tiedostokonteksti määritelty kohteelle %s"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luoda tiedostokontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa tyyppiä tiedostokontekstissa kohteelle %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa tiedostokontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu lisätä tiedostokontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr ""
+-msgstr ""
++msgstr "Vaatii setypen, serangen tai seuserin"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Tiedostokonteksti ei ole määritelty kohteelle %s"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu kysellä tiedostokontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata kohteen %s tiedostokontekstia"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetella tiedostokonteksteja"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa kohteen %s tiedostokontekstia"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Kohteen %s tiedostokonteksti on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa kohteen %s tiedostokontekstia"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetella tiedostokonteksteja"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetella paikallisia tiedostokonteksteja"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-tiedostokonteksti"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
- msgstr ""
+-msgstr ""
++msgstr "tyyppi"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -857,414 +866,2507 @@ msgstr ""
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu tarkistaa onko totuusarvo %s määritelty"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
- msgstr ""
+-msgstr ""
++msgstr "Totuusarvoa %s ei ole määritelty"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu kysellä tiedostokontekstia kohteelle %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
+ #: ../semanage/seobject.py:1999
  #, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr ""
++msgstr "Yksi seuraavista arvoista on määriteltävä: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:2004
  #, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu asettaa totuusarvon %s aktiivista arvoa"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu muokata totuusarvoa %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr ""
++msgstr "Virheellinen muoto %s: tietue %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Totuusarvo %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu poistaa totuusarvoa %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr ""
+-msgstr ""
++msgstr "Ei voitu luetteloida totuusarvoja"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr ""
+-msgstr ""
++msgstr "tuntematon"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr ""
+-msgstr ""
++msgstr "epätosi"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
- msgstr ""
+-msgstr ""
++msgstr "tosi"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr ""
+-msgstr ""
++msgstr "SELinux-totuusarvo"
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+-msgstr ""
++msgstr "Tila"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Oletus"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+-msgstr ""
++msgstr "Kuvaus"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../newrole/newrole.c:201
  #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
+ msgid "failed to set PAM_TTY\n"
+-msgstr ""
++msgstr "PAM_TTY:n asettaminen epäonnistui\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "newrole: palveluiden nimiasetusten hajautustaulun ylivuoto\n"
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "newrole: %s: virhe rivillä %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
++msgstr "passwd-tiedostosta ei löydy kelvollista kohtaa.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+ msgid "Out of memory!\n"
+-msgstr ""
++msgstr "Muisti loppui!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr ""
++msgstr "Virhe! Komentotulkki on virheellinen.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+ msgid "Unable to clear environment\n"
+-msgstr ""
++msgstr "Ympäristöä ei voida siivota\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr ""
++msgstr "Virhe käyttäjätunnuksen vaihdossa, lopetetaan.\n"
+ #: ../newrole/newrole.c:612
+ #, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
++msgstr "Virhe KEEPCAPSin uudelleenasetuksessa, lopetetaan.\n"
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr ""
++msgstr "Virhe audit-järjestelmään yhdistämisessä.\n"
+ #: ../newrole/newrole.c:641
+ #, c-format
+ msgid "Error allocating memory.\n"
+-msgstr ""
++msgstr "Virhe muistivarauksessa.\n"
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr ""
++msgstr "Virhe audit-viestin lähettämisessä.\n"
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr ""
++msgstr "Ei voitu selvittää toimeenpanevaa tilaa.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr ""
++msgstr "Virhe! Ei voitu avata tty:tä %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
++msgstr "%s! Ei saatu nykyistä kontekstia tty:lle %s, ei nimiöidä sitä uudelleen.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
++msgstr "%s! Ei saatu uutta kontekstia tty:lle %s, ei nimiöidä sitä uudelleen.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
++msgstr "%s! Ei voitu asettaa uutta kontekstia tty:lle %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+ msgid "%s changed labels.\n"
+-msgstr ""
++msgstr "tty %s vaihtoi nimiötä.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
++msgstr "Varoitus! Ei voitu palauttaa tty:n %s kontekstia\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr ""
++msgstr "Virhe: annettiin useita rooleja\n"
+ #: ../newrole/newrole.c:843
+ #, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr ""
++msgstr "Virhe: annettiin useita tyyppejä\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
++msgstr "Valitsinta -l voi käyttää vain SELinuxin MLS-tuen kanssa.\n"
+ #: ../newrole/newrole.c:855
+ #, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr ""
++msgstr "Virhe: annettiin useita tasoja\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
++msgstr "Virhe: tasoa ei voi vaihtaa turvattomassa päätteessä\n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr ""
++msgstr "Ei voitu hakea oletustyyppiä.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr ""
++msgstr "uuden kontekstin hakeminen epäonnistui.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr ""
++msgstr "uuden roolin %s asettaminen epäonnistui\n"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr ""
++msgstr "uuden tyypin %s asettaminen epäonnistui\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr ""
++msgstr "uuden alueen tekeminen tasolle %s epäonnistui\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr ""
++msgstr "uuden alueen %s asettaminen epäonnistui\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr ""
++msgstr "uuden kontekstin muuntaminen merkkijonoksi epäonnistui\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+ msgid "%s is not a valid context\n"
+-msgstr ""
++msgstr "%s ei ole kelvollinen konteksti\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr ""
++msgstr "new_contextille ei voida varata muistia"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr ""
++msgstr "Tyhjän signaalijoukon hankkiminen epäonnistui\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
++msgstr "SIGHUP-käsittelimen asetus epäonnistui\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
++msgstr "newrolea voi käyttää vain SELinux-kernelillä.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr ""
++msgstr "old_contextin hakeminen epäonnistui.\n"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
++msgstr "Varoitus! Ei voitu hakea tty-tietoja.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr ""
++msgstr "virhe luettaessa PAM-palveluasetuksia.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr ""
++msgstr "newrole: virheellinen salasana käyttäjälle %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr ""
++msgstr "newrole: haarautuminen epäonnistui: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr ""
++msgstr "Tty:n nimiötä ei voitu palauttaa…\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr ""
++msgstr "Tty:n sulkeminen kunnolla epäonnistui\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr ""
++msgstr "Kuvaajia ei voitu sulkea.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr ""
++msgstr "Komentotulkin argv0:n varaamisessa tapahtui virhe.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
++msgstr "Ei voitu palauttaa ympäristöä, lopetetaan\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr ""
++msgstr "komentotulkin suorittaminen epäonnistui\n"
+ #: ../load_policy/load_policy.c:22
+ #, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr ""
++msgstr "käyttö:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s: Käytäntö on jo ladattu, silti pyydettiin ensimmäistä latausta\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
++msgstr "%s: Ei voida ladata käytäntöä, pyydettiin toimeenpanevaa tilaa: %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
++msgstr "%s: Ei voida ladata käytäntöä: %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+-msgstr ""
++msgstr "Vaaditaan ainakin yksi kategoria"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
++msgstr "Ei voida muokata herkkyystasoja käyttämällä ”+”-merkkiä kohteessa %s"
+ #: ../scripts/chcat:110
+ #, c-format
+ msgid "%s is already in %s"
+-msgstr ""
++msgstr "%s on jo kohteessa %s"
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+ #, c-format
+ msgid "%s is not in %s"
+-msgstr ""
++msgstr "%s ei ole kohteessa %s"
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+-msgstr ""
++msgstr "Merkkejä + tai - ei voi yhdistää muiden kategoriatyyppien kanssa"
+ #: ../scripts/chcat:319
+ msgid "Can not have multiple sensitivities"
+-msgstr ""
++msgstr "Ei voi olla useita herkkyyksiä"
+ #: ../scripts/chcat:325
+ #, c-format
+ msgid "Usage %s CATEGORY File ..."
+-msgstr ""
++msgstr "Käyttö %s KATEGORIA Tiedosto ..."
+ #: ../scripts/chcat:326
+ #, c-format
+ msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
++msgstr "Käyttö %s -l KATEGORIA käyttäjä ..."
+ #: ../scripts/chcat:327
+ #, c-format
+ msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
++msgstr "Käyttö %s [[+|-]KATEGORIA],...]q Tiedosto ..."
+ #: ../scripts/chcat:328
+ #, c-format
+ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
++msgstr "Käyttö %s -l [[+|-]KATEGORIA],...]q käyttäjä ..."
+ #: ../scripts/chcat:329
+ #, c-format
+ msgid "Usage %s -d File ..."
+-msgstr ""
++msgstr "Käyttö %s -d Tiedosto ..."
+ #: ../scripts/chcat:330
+ #, c-format
+ msgid "Usage %s -l -d user ..."
+-msgstr ""
++msgstr "Käyttö %s -l -d käyttäjä ..."
+ #: ../scripts/chcat:331
+ #, c-format
+ msgid "Usage %s -L"
+-msgstr ""
++msgstr "Käyttö %s -L"
+ #: ../scripts/chcat:332
+ #, c-format
+ msgid "Usage %s -L -l user"
+-msgstr ""
++msgstr "Käyttö %s -L -l käyttäjä"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr ""
++msgstr "Käytä -- valitsinluettelon lopettamiseksi. Esimerkiksi"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
++msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ #: ../scripts/chcat:335
+ msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
++msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1334
++#, c-format, python-format
+ msgid "Options Error %s "
++msgstr "Valitsinvirhe %s"
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr "Totuusarvo"
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr "kaikki"
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr "Oma"
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr "Tiedostonimiöinti"
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"SELinux\n"
++"User"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr "Moduulin nimi"
++
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
++
++#: ../gui/polgen.glade:79
++msgid "Polgen"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr "Red Hat 2007"
++
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr "GPL"
++
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr "Juhani Numminen <juhaninumminen0@gmail.com>"
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
++#: ../gui/polgen.glade:128
 +msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr "<b>Sovellukset</b>"
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
++
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
++
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su,"
++" can sudo to Root Administration Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer"
++" the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr "Nimi"
++
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
++
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr "..."
++
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
++
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
++
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
++
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid ""
++"Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr "<b>TCP-portit</b>"
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr "Kaikki"
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr "600-1024"
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
++
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr "<b>UDP-portit</b>"
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
++
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
++
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
++
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
++
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
++
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
++
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
++
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:323
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:325
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:413
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:419
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:437
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:443
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:449
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:455
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:485
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1003
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1165
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1166
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1167
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1168
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1289
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1337
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -71897,7 +81295,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -72033,8 +81431,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
++"Allow unconfined SELinux user account to execute files in home directory or "
++"/tmp"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:14
@@ -72703,7 +82101,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
++"Allow X-Windows server to map a memory region as both executable and "
++"writable"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:166
@@ -72808,8 +82207,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
++"Allow staff_r users to search the sysadm home dir and read files (such as "
++"~/.bashrc)"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
@@ -72866,8 +82265,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++"Allow xinetd to run unconfined, including any services it starts that do not"
++" have a domain transition explicitly defined"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:203
@@ -72928,8 +82327,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
++"Allow users to run TCP servers (bind to ports and accept connection from the"
++" same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
 +
@@ -72998,7 +82397,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgid ""
++"Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:233
@@ -73025,18 +82425,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -73054,8 +82450,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +"you later decide to turn SELinux back on, the system will be required to "
 +"relabel.  If you just want to see if SELinux is causing a problem on your "
 +"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you"
++" wish to continue?"
 +msgstr ""
 +
 +#: ../gui/statusPage.py:152
@@ -73077,7 +82473,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -73086,25 +82481,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -73116,58 +82505,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -73175,2632 +82564,2247 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
++"Enable/Disable additional audit rules, that are normally not reported in the"
++" log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils-2.0.85/po/fi.po
---- nsapolicycoreutils/po/fi.po        2011-02-17 15:11:24.918738320 -0500
-+++ policycoreutils-2.0.85/po/fi.po    2011-02-18 16:03:41.364975716 -0500
-@@ -1,20 +1,37 @@
--# 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.
--#
--#, fuzzy
-+# Finnish translation of policycoreutils.
-+# Copyright (C) 2009 policycoreutils' COPYRIGHT HOLDER
-+# This file is distributed under the same license as the policycoreutils package.
-+# Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>, 2009, 2010.
+ msgstr ""
+diff --git a/policycoreutils/po/fr.po b/policycoreutils/po/fr.po
+index cea8f18..a006058 100644
+--- a/policycoreutils/po/fr.po
++++ b/policycoreutils/po/fr.po
+@@ -1,23 +1,27 @@
+-# translation of policycoreutils.HEAD.fr_modifié(1).po to french
+-# Thomas Canniot <mrtom@fedoraproject.org>, 2006.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
+ # Alain PORTAL <aportal@univ-montp2.fr>, 2007.
++# Charles-Antoine Couret <cacouret@wanadoo.fr>, 2009.
+ # Gauthier Ancelin <gauthier.ancelin@laposte.net>, 2007.
+ # Matthieu Rondeau <milanito1985@yahoo.fr>, 2008.
+-# translation of Policy Core Utils.
+-# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
++# Sam Friedmann <sam.friedmann@redhat.com>, 2010.
++# Thomas Canniot <mrtom@fedoraproject.org>, 2006, 2010.
  msgid ""
  msgstr ""
--"Project-Id-Version: PACKAGE VERSION\n"
-+"Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils.HEAD.fr_modifié(1)\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-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: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-29 19:56+0300\n"
-+"Last-Translator: Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>\n"
-+"Language-Team: Finnish <laatu@lokalisointi.org>\n"
-+"Language: fi\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-05 22:13+0200\n"
+-"Last-Translator: Matthieu Rondeau <milanito1985@yahoo.fr>\n"
+-"Language-Team: french <fedora-trans-fr@redhat.com>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: French <trans-fr@lists.fedoraproject.org>\n"
++"Language: fr\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Tee SELinuxin asetukset graafisesti"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinuxin ylläpito"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Generoi SELinuxin käytäntömoduuleja"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux-käytäntöjen generointityökalu"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=2; plural=(n > 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -22,1251 +39,3516 @@
- "  where: <script> is the name of the init script to run,\n"
- "         <args ...> are the arguments to that script."
- msgstr ""
-+"Käyttö: run_init <komentosarja> <argumentit ...>\n"
-+"  missä: <komentosarja> on suoritettavan käynnistyskomentosarjan nimi,\n"
-+"         <argumentit ...> ovat sen argumentit."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
- #, c-format
- msgid "failed to initialize PAM\n"
--msgstr ""
-+msgstr "PAMin alustaminen epäonnistui\n"
- #: ../run_init/run_init.c:139
- #, c-format
- msgid "failed to get account information\n"
--msgstr ""
-+msgstr "kirjautumistietoja ei saatu\n"
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
- msgid "Password:"
--msgstr ""
-+msgstr "Salasana:"
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr ""
-+msgstr "Varjosalasanatiedostosta ei löydy tämän käyttäjän tietoja.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
+@@ -53,7 +57,7 @@ msgstr ""
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
  #, c-format
  msgid "getpass cannot open /dev/tty\n"
--msgstr ""
-+msgstr "getpass ei voi avata laitetta /dev/tty\n"
+-msgstr "getpass ne peut accéder à  /dev/tty\n"
++msgstr "getpass ne peut accéder à  /dev/tty\n"
  
  #: ../run_init/run_init.c:275
  #, c-format
- msgid "run_init: incorrect password for %s\n"
--msgstr ""
-+msgstr "run_init: väärä salasana käyttäjälle %s\n"
- #: ../run_init/run_init.c:309
- #, c-format
- msgid "Could not open file %s\n"
--msgstr ""
-+msgstr "Tiedostoa %s ei voitu avata\n"
+@@ -114,9 +118,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Impossible d'établir de connexion semanage"
  
- #: ../run_init/run_init.c:336
- #, c-format
- msgid "No context in file %s\n"
--msgstr ""
-+msgstr "Tiedostolla %s ei ole kontekstia\n"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Impossible de définir une plage MLS pour %s"
++msgstr "Impossible de tester les statuts MLS activés"
  
- #: ../run_init/run_init.c:361
- #, c-format
- msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
--msgstr ""
-+msgstr "run_initiä voi käyttää vain SELinux-kernelillä.\n"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -124,36 +127,33 @@ msgstr "Pas encore implémenté"
  
- #: ../run_init/run_init.c:380
- #, c-format
- msgid "authentication failed.\n"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "tunnistautuminen epäonnistui.\n"
++msgstr "Transaction de semanage déjà en cours"
  
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr ""
-+msgstr "Ei voitu asettaa suorituskontekstia kontekstiksi %s.\n"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "Impossible de démarrer une transaction semanage"
  
- #: ../audit2allow/audit2allow:217
- msgid "******************** IMPORTANT ***********************\n"
--msgstr ""
-+msgstr "******************** TÄRKEÄÄ ***********************\n"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Impossible de démarrer une transaction semanage"
++msgstr "Impossible de commiter une transaction semanage"
  
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Tämän käytäntöpakkauksen aktivoimiseksi suorita:"
++msgstr "Aucune transaction semanage en cours"
  
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
--msgstr ""
-+msgstr "Ei voitu luoda semanage-kahvaa"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Impossible de lister les identités SELinux"
++msgstr "Impossible de lister les modules SELinux"
  
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr ""
-+msgstr "SELinux-käytäntöä ei hallita tai säilöä ei voida käyttää."
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Nom du module"
++msgstr ""
  
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr ""
-+msgstr "Käytäntösäilöä ei voida lukea."
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Version"
  
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
--msgstr ""
-+msgstr "Semanage-yhteyttä ei voitu muodostaa"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Désactivé"
  
- #: ../semanage/seobject.py:70
- msgid "Could not test MLS enabled status"
--msgstr ""
-+msgstr "Ei voitu testata onko MLS käytössä"
+@@ -163,9 +163,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "globaali"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Impossible d'ajouter un rôle %s pour %s"
++msgstr ""
  
- #: ../semanage/seobject.py:206
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
+@@ -177,24 +177,25 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
-+"Ei voitu avata tiedostoa %s: käännöksiä ei tueta koneissa, joissa ei ole MLS:"
-+"ää: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Taso"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Käännös"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissif"
++msgstr ""
  
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr ""
-+msgstr "Käännökset eivät voi sisältää välilyöntejä ”%s” "
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissif"
++msgstr ""
  
- #: ../semanage/seobject.py:250
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Invalid Level '%s' "
--msgstr ""
-+msgstr "Virheellinen taso ”%s” "
+ msgid "Could not set permissive domain %s (module installation failed)"
+ msgstr ""
++"Impossible de définir le domaine permissif %s (échec de l'installation du "
++"module)"
  
- #: ../semanage/seobject.py:253
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "%s already defined in translations"
--msgstr ""
-+msgstr "%s on jo määritelty käännöksissä"
+ msgid "Could not remove permissive domain %s (remove failed)"
+ msgstr ""
++"Impossible de supprimer le domaine permissif %s (échec de la suppression)"
  
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr ""
-+msgstr "%s ei ole määritelty käännöksissä"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -214,9 +215,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Ne peut vérifier si le mappage de connexion est défini pour %s"
  
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
--msgstr ""
-+msgstr "Ei vielä toteutettu"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "L'utilisateur Linux %s n'existe pas"
++msgstr "Le groupe Linux %s n'existe pas"
  
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage-transaktio on jo käynnissä"
+ #: ../semanage/seobject.py:497
+ #, python-format
+@@ -287,15 +288,20 @@ msgid "Could not list login mappings"
+ msgstr "Impossible de lister les mappages"
  
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
--msgstr ""
-+msgstr "Semanage-transaktiota ei voitu käynnistää"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "Nom pour l'ouverture de session"
  
- #: ../semanage/seobject.py:309
- msgid "Could not commit semanage transaction"
--msgstr ""
-+msgstr "Semanage-transaktiota ei voitu toteuttaa"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "Identité SELinux"
  
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage-transaktio ei ole käynnissä"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "Intervalle MLS/MCS"
  
- #: ../semanage/seobject.py:325
- msgid "Could not list SELinux modules"
--msgstr ""
-+msgstr "SELinux-moduuleita ei voitu luetteloida"
+@@ -313,9 +319,9 @@ msgid "Could not query user for %s"
+ msgstr "Impossible d'interroger l'utilisateur pour %s"
  
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
--msgstr ""
-+msgstr "Sallivat tyypit"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Impossible d'ajouter le contexte du fichier pour %s"
++msgstr "Vous devez ajouter au moins un rôle pour %s"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Ei voitu asettaa sallivaa toimialuetta %s (moduulin asennus epäonnistui)"
+@@ -335,7 +341,7 @@ msgstr "Impossible de régler le niveau MLS pour %s"
+ #: ../semanage/seobject.py:758
+ #, python-format
+ msgid "Could not add prefix %s for %s"
+-msgstr "Impossible d'ajouter le préfixe %s à  %s"
++msgstr "Impossible d'ajouter le préfixe %s à  %s"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:761
  #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Ei voitu poistaa sallivaa toimialuetta %s (poisto epäonnistui)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
--msgstr ""
-+msgstr "Ei voitu luoda avainta käyttäjälle %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
-+"Ei voitu tarkistaa onko käyttäjälle %s määritelty kirjautumisassosiaatiota"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr ""
-+msgstr "Käyttäjälle %s on jo määritelty kirjautumisassosiaatio"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
--msgstr ""
-+msgstr "Linux-ryhmää %s ei ole olemassa"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
--msgstr ""
-+msgstr "Linux-käyttäjää %s ei ole olemassa"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr ""
-+msgstr "Käyttäjälle %s ei voitu tehdä kirjautumisassosiaatiota"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr ""
-+msgstr "Käyttäjän %s nimeä ei voitu asettaa"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr ""
-+msgstr "Käyttäjän %s MLS-aluetta ei voitu asettaa"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
--msgstr ""
-+msgstr "Käyttäjän %s SELinux-käyttäjää ei voitu asettaa"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr ""
-+msgstr "Käyttäjälle %s ei voitu lisätä kirjautumisassosiaatiota"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr ""
-+msgstr "lisää SELinux-käyttäjäassosiaatio"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
--msgstr ""
-+msgstr "Vaatii seuserin tai serangen"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr ""
-+msgstr "Käyttäjälle %s ei ole määritelty kirjautumisassosiaatiota"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
--msgstr ""
-+msgstr "Seuserilta ei voitu kysellä käyttäjän %s tietoja"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr ""
-+msgstr "Käyttäjän %s kirjautumisassosiaatiota ei voitu muokata"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
-+"Käyttäjän %s kirjautumisassosiaatio on määritelty SELinux-käytännössä, sitä "
-+"ei voi poistaa"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr ""
-+msgstr "Käyttäjän %s kirjautumisassosiaatiota ei voitu poistaa"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr ""
-+msgstr "Kirjautumisassosiaatioita ei voitu luetteloida"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
--msgstr ""
-+msgstr "Kirjautumisnimi"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
--msgstr ""
-+msgstr "SELinux-käyttäjä"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
--msgstr ""
-+msgstr "MLS/MCS-alue"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
--msgstr ""
-+msgstr "Ainakin yksi rooli on lisättävä käyttäjälle %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko SELinux-käyttäjää %s määritelty"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr ""
-+msgstr "SELinux-käyttäjä %s on jo määritelty"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
--msgstr ""
-+msgstr "Ei voitu luoda SELinux-käyttäjää käyttäjälle %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
--msgstr ""
-+msgstr "Roolia %s ei voitu lisätä käyttäjälle %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
--msgstr ""
-+msgstr "Käyttäjän %s MLS-tasoa ei voitu asettaa"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr ""
-+msgstr "Etuliitettä %s ei voitu lisätä käyttäjälle %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
--msgstr ""
-+msgstr "Ei voitu purkaa käyttäjän %s avainta"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
--msgstr ""
-+msgstr "Ei voitu lisätä SELinux-käyttäjää %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
--msgstr ""
-+msgstr "Vaatii etuliitteen, roolit, tasot tai alueen"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
--msgstr ""
-+msgstr "Vaatii etuliitteen tai roolit"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
--msgstr ""
-+msgstr "SELinux-käyttäjää %s ei ole määritelty"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr ""
-+msgstr "Ei voitu kysellä käyttäjältä tietoja kohteesta %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
--msgstr ""
-+msgstr "Ei voitu muokata SELinux-käyttäjää %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
-+"SELinux-käyttäjä %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
--msgstr ""
-+msgstr "Ei voitu poistaa SELinux-käyttäjää %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
--msgstr ""
-+msgstr "SELinux-käyttäjiä ei voitu luetteloida"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
--msgstr ""
-+msgstr "Käyttäjän %s rooleja ei voitu luetteloida"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr ""
-+msgstr "Nimiöinti"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
--msgstr ""
-+msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
--msgstr ""
-+msgstr "Etuliite"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
--msgstr ""
-+msgstr "MCS-taso"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
--msgstr ""
-+msgstr "MCS-alue"
+@@ -407,6 +413,7 @@ msgid "MCS Range"
+ msgstr "Intervalle MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
--msgstr ""
-+msgstr "SELinux-roolit"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
--msgstr ""
-+msgstr "Udp- tai tcp-protokolla on pakollinen"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
--msgstr ""
-+msgstr "Portti on pakollinen"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
--msgstr ""
-+msgstr "Ei voitu luoda avainta yhdistelmälle %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
--msgstr ""
-+msgstr "Tyyppi on pakollinen"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko portti %s/%s määritelty"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
--msgstr ""
-+msgstr "Portti %s/%s on jo määritelty"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
--msgstr ""
-+msgstr "Yhdistelmälle %s/%s ei voitu luoda porttia"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
--msgstr ""
-+msgstr "Yhdistelmälle %s/%s ei voitu luoda kontekstia"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr ""
-+msgstr "Ei voitu asettaa käyttäjää yhdistelmän %s/%s porttikontekstissa"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr ""
-+msgstr "Ei voitu asettaa roolia yhdistelmän %s/%s porttikontekstissa"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr ""
-+msgstr "Ei voitu asettaa tyyppiä yhdistelmän %s/%s porttikontekstissa"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr ""
-+msgstr "Ei voitu asettaa mls-kenttiä yhdistelmän %s/%s porttikontekstissa"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr ""
-+msgstr "Ei voitu asettaa porttikontekstia yhdistelmälle %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
--msgstr ""
-+msgstr "Ei voitu lisätä porttia %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
--msgstr ""
-+msgstr "Vaatii setypen tai serangen"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
--msgstr ""
-+msgstr "Vaatii setypen"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
--msgstr ""
-+msgstr "Porttia %s/%s ei ole määritelty"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
--msgstr ""
-+msgstr "Ei voitu kysellä porttia %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
--msgstr ""
-+msgstr "Ei voitu muokata porttia %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
--msgstr ""
-+msgstr "Ei voitu luetteloida portteja"
+ msgstr "Rôles SELinux"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
--msgstr ""
-+msgstr "Ei voitu poistaa porttia %s"
+@@ -419,9 +426,8 @@ msgid "Port is required"
+ msgstr "Un numéro de port nécessaire"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr ""
-+msgstr "Portti %s/%s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Préfixe invalide %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
--msgstr ""
-+msgstr "Ei voitu poistaa porttia %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
--msgstr ""
-+msgstr "Ei voitu luetteloida portteja"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr ""
-+msgstr "SELinux-porttityyppi"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -540,18 +546,17 @@ msgstr "Types de port SELinux"
  msgid "Proto"
--msgstr ""
-+msgstr "Protokolla"
+ msgstr "Protocole"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
--msgstr ""
-+msgstr "Porttinumero"
+ msgstr "Numéro de port"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
--msgstr ""
-+msgstr "Koneen osoite on pakollinen"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr ""
-+msgstr "Koneen aliverkon peite on pakollinen"
+-msgstr "Un numéro de port nécessaire"
++msgstr "L'adresse du nœud est requise"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
-+msgstr "Tuntematon tai puuttuva protokolla"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
--msgstr ""
-+msgstr "SELinux-tyyppi on pakollinen"
++msgstr "Protocole inconnu ou manquant"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
--msgstr ""
-+msgstr "Ei voitu luoda avainta osoitteelle %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -568,14 +573,14 @@ msgstr "Impossible de créer la clef pour %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko osoite %s määritelty"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
--msgstr ""
-+msgstr "Osoite %s on jo määritelty"
+-msgstr "Impossible de vérifier si le port %s/%s est défini"
++msgstr "Impossible de vérifier si l'adresse %s est définie"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
--msgstr ""
-+msgstr "Ei voitu luoda osoitetta kohteelle %s"
+-msgstr "Impossible de créer une clef pour %s"
++msgstr "Impossible de créer une adresse pour %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
--msgstr ""
-+msgstr "Ei voitu luoda kontekstia osoitteelle %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -584,78 +589,75 @@ msgid "Could not create context for %s"
+ msgstr "Impossible de créer le contexte pour %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa peitettä osoitteelle %s"
+-msgstr "Impossible de définir le nom pour %s"
++msgstr "Impossible de définir le masque pour %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa käyttäjää osoitekontekstissa kohteelle %s"
+ msgstr ""
+-"Impossible de définir l'utilisateur dans le contexte du fichier pour %s"
++"Impossible de définir l'utilisateur dans le contexte de l'adresse pour %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa roolia osoitekontekstissa kohteelle %s"
+-msgstr "Impossible de définir le rôle dans le contexte du fichier pour %s"
++msgstr "Impossible de définir le rôle dans le contexte de l'adresse pour %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa tyyppiä osoitekontekstissa kohteelle %s"
+-msgstr "Impossible de définir le type dans le contexte du fichier pour %s"
++msgstr "Impossible de définir le type dans le contexte de l'adresse pour %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa mls-kenttiä osoitekontekstissa kohteelle %s"
+ msgstr ""
+-"Impossible de définir les champs MLS dans le contexte du fichier pour %s"
++"Impossible de définir les champs MLS dans le contexte de l'adresse pour %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa osoitekontekstia kohteelle %s"
+-msgstr "Impossible de définir le contexte du fichier %s"
++msgstr "Impossible de définir le contexte de l'adresse pour %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
--msgstr ""
-+msgstr "Ei voitu lisätä osoitetta %s"
+-msgstr "Impossible d'ajouter le port %s/%s"
++msgstr "Impossible d'ajouter l'adresse %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
--msgstr ""
-+msgstr "Osoitetta %s ei ole määritelty"
+-msgstr "Le port %s/%s n'est pas défini"
++msgstr "L'adresse %s n'est pas définie"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
--msgstr ""
-+msgstr "Ei voitu kysellä osoitetta %s"
+-msgstr "Impossible d'interroger le port %s/%s"
++msgstr "Impossible d'interroger l'adresse %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
--msgstr ""
-+msgstr "Ei voitu muokata osoitetta %s"
+-msgstr "Impossible de modifier le port %s/%s"
++msgstr "Impossible de modifier l'adresse %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr ""
-+msgstr "Osoite %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
+-msgstr "Le port %s/%s est défini dans la stratégie, il ne peut être supprimé"
++msgstr ""
++"L'adresse %s est définie dans la stratégie, elle ne peut être supprimée"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
--msgstr ""
-+msgstr "Ei voitu poistaa osoitetta %s"
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr ""
-+msgstr "Ei voitu luetteloida osoitteita"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko verkkoliitäntä %s määritelty"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr ""
-+msgstr "Verkkoliitäntä %s on jo määritelty"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
--msgstr ""
-+msgstr "Ei voitu luoda verkkoliitäntää kohteelle %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa käyttäjää verkkoliitäntäkontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa roolia verkkoliitäntäkontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa tyyppiä verkkoliitäntäkontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa mls-kenttiä verkkoliitäntäkontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa verkkoliitäntäkontekstia kohteelle %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa viestikontekstia kohteelle %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
--msgstr ""
-+msgstr "Ei voitu lisätä verkkoliitäntää %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
--msgstr ""
-+msgstr "Verkkoliitäntää %s ei ole määritelty"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
--msgstr ""
-+msgstr "Ei voitu kysellä verkkoliitäntää %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
--msgstr ""
-+msgstr "Ei voitu muokata verkkoliitäntää %s"
+-msgstr "Impossible de supprimer %s"
++msgstr "Impossible de supprimer l'adresse %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
  msgstr ""
-+"Verkkoliitäntä %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
--msgstr ""
-+msgstr "Ei voitu poistaa verkkoliitäntää %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
--msgstr ""
-+msgstr "Ei voitu luetella verkkoliitäntöjä"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
--msgstr ""
-+msgstr "SELinux-verkkoliitäntä"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
--msgstr ""
-+msgstr "Konteksti"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa käyttäjää tiedostokontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa roolia tiedostokontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa mls-kenttiä tiedostokontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr ""
-+msgstr "Virheellinen tiedostomääritys"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko tiedostokonteksti määritelty kohteelle %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr ""
-+msgstr "Tiedostokonteksti on jo määritelty kohteelle %s"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr ""
-+msgstr "Ei voitu luoda tiedostokontekstia kohteelle %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa tyyppiä tiedostokontekstissa kohteelle %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr ""
-+msgstr "Ei voitu asettaa tiedostokontekstia kohteelle %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr ""
-+msgstr "Ei voitu lisätä tiedostokontekstia kohteelle %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
--msgstr ""
-+msgstr "Vaatii setypen, serangen tai seuserin"
+-"Impossible de supprimer la correspondance utilisateurs - identités SELinux "
+-"pour %s"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr ""
-+msgstr "Tiedostokonteksti ei ole määritelty kohteelle %s"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Impossible d'énumérer les ports"
++msgstr "Impossible d'énumérer les adresses"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr ""
-+msgstr "Ei voitu kysellä tiedostokontekstia kohteelle %s"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -732,9 +734,8 @@ msgid "Could not delete interface %s"
+ msgstr "Impossible de supprimer l'interface %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr ""
-+msgstr "Ei voitu muokata kohteen %s tiedostokontekstia"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Impossible de supprimer l'interface %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr ""
-+msgstr "Ei voitu luetella tiedostokonteksteja"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -749,9 +750,9 @@ msgid "Context"
+ msgstr "Contexte"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
--msgstr ""
-+msgstr "Ei voitu poistaa kohteen %s tiedostokontekstia"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Le contexte du fichier pour %s est déjà défini"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
+@@ -759,9 +760,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
-+"Kohteen %s tiedostokonteksti on määritelty SELinux-käytännössä, sitä ei voi "
-+"poistaa"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr ""
-+msgstr "Ei voitu poistaa kohteen %s tiedostokontekstia"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr ""
-+msgstr "Ei voitu luetella tiedostokonteksteja"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr ""
-+msgstr "Ei voitu luetella paikallisia tiedostokonteksteja"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
--msgstr ""
-+msgstr "SELinux-tiedostokonteksti"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
--msgstr ""
-+msgstr "tyyppi"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "L'utilisateur Linux %s n'existe pas"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr ""
-+msgstr "Ei voitu tarkistaa onko totuusarvo %s määritelty"
+@@ -885,11 +886,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
--msgstr ""
-+msgstr "Totuusarvoa %s ei ole määritelty"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "contexte fichier SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr ""
-+msgstr "Ei voitu kysellä tiedostokontekstia kohteelle %s"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -908,14 +908,14 @@ msgid "Could not query file context %s"
+ msgstr "Impossible d'interroger le contexte du fichier %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr ""
-+msgstr "Yksi seuraavista arvoista on määriteltävä: %s"
+-msgstr "Vous devez spécifier une valeur"
++msgstr "Vous devez spécifier une des valeurs suivantes : %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
--msgstr ""
-+msgstr "Ei voitu asettaa totuusarvon %s aktiivista arvoa"
+-msgstr "Impossible de supprimer le booléen %s"
++msgstr "Impossible de définir une valeur active du booléen %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
--msgstr ""
-+msgstr "Ei voitu muokata totuusarvoa %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -925,7 +925,7 @@ msgstr "Impossible de modifier les booléens %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
-+msgstr "Virheellinen muoto %s: tietue %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr ""
-+msgstr "Totuusarvo %s on määritelty SELinux-käytännössä, sitä ei voi poistaa"
++msgstr "Mauvais format %s : Enregistrement de %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
--msgstr ""
-+msgstr "Ei voitu poistaa totuusarvoa %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
--msgstr ""
-+msgstr "Ei voitu luetteloida totuusarvoja"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
--msgstr ""
-+msgstr "tuntematon"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr ""
-+msgstr "epätosi"
+@@ -958,15 +958,15 @@ msgid "SELinux boolean"
+ msgstr "booléen SELinux"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr ""
-+msgstr "tosi"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "État"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
--msgstr ""
-+msgstr "SELinux-totuusarvo"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
--msgstr ""
-+msgstr "Kuvaus"
- #: ../newrole/newrole.c:198
- #, c-format
- msgid "failed to set PAM_TTY\n"
--msgstr ""
-+msgstr "PAM_TTY:n asettaminen epäonnistui\n"
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
-+msgstr "newrole: palveluiden nimiasetusten hajautustaulun ylivuoto\n"
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
--msgstr ""
-+msgstr "newrole: %s: virhe rivillä %lu.\n"
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr ""
-+msgstr "passwd-tiedostosta ei löydy kelvollista kohtaa.\n"
- #: ../newrole/newrole.c:447
- #, c-format
- msgid "Out of memory!\n"
--msgstr ""
-+msgstr "Muisti loppui!\n"
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr ""
-+msgstr "Virhe! Komentotulkki on virheellinen.\n"
- #: ../newrole/newrole.c:509
- #, c-format
- msgid "Unable to clear environment\n"
--msgstr ""
-+msgstr "Ympäristöä ei voida siivota\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
- #, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr ""
-+msgstr "Virhe ominaisuuksien alustamisessa, lopetetaan.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr ""
-+msgstr "Virhe ominaisuuksien asettamisessa, lopetetaan.\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr ""
-+msgstr "Virhe asettaessa KEEPCAPSia, lopetetaan.\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr ""
-+msgstr "Virhe ominaisuuksien hylkäämisessä, lopetetaan\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
- #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr ""
-+msgstr "Virhe käyttäjätunnuksen vaihdossa, lopetetaan.\n"
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr ""
-+msgstr "Virhe KEEPCAPSin uudelleenasetuksessa, lopetetaan.\n"
+ msgstr "Description"
  
- #: ../newrole/newrole.c:597
+@@ -1247,7 +1247,7 @@ msgstr ""
+ #: ../scripts/chcat:110
  #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr ""
-+msgstr "Virhe SETUID-ominaisuuden hylkäämisessä, lopetetaan\n"
+ msgid "%s is already in %s"
+-msgstr "%s se trouve déjà  dans %s"
++msgstr "%s se trouve déjà  dans %s"
  
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
+ #: ../scripts/chcat:188 ../scripts/chcat:198
  #, c-format
- msgid "Error freeing caps\n"
--msgstr ""
-+msgstr "Virhe ominaisuuksien vapauttamisessa\n"
+@@ -1314,1808 +1314,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr ""
-+msgstr "Virhe audit-järjestelmään yhdistämisessä.\n"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "Erreur %s dans les options"
  
- #: ../newrole/newrole.c:707
- #, c-format
- msgid "Error allocating memory.\n"
--msgstr ""
-+msgstr "Virhe muistivarauksessa.\n"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Impossible d'ouvrir %s : Les translations ne sont pas supportées par des "
+-#~ "machines non MLS : %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
  
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr ""
-+msgstr "Virhe audit-viestin lähettämisessä.\n"
+-#~ msgid "Level"
+-#~ msgstr "Niveau"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
  
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr ""
-+msgstr "Ei voitu selvittää toimeenpanevaa tilaa.\n"
+-#~ msgid "Translation"
+-#~ msgstr "Translation"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
  
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr ""
-+msgstr "Virhe! Ei voitu avata tty:tä %s.\n"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Les translations ne peuvent contenir d'espaces « %s » "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
  
- #: ../newrole/newrole.c:771
- #, c-format
- msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
- msgstr ""
-+"%s! Ei saatu nykyistä kontekstia tty:lle %s, ei nimiöidä sitä uudelleen.\n"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Niveau invalide « %s » "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
  
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
- msgstr ""
-+"%s! Ei saatu uutta kontekstia tty:lle %s, ei nimiöidä sitä uudelleen.\n"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s est déjà  défini dans les translations"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
  
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr ""
-+msgstr "%s! Ei voitu asettaa uutta kontekstia tty:lle %s\n"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s n'est pas défini dans les translations"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
  
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr ""
-+msgstr "tty %s vaihtoi nimiötä.\n"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mappage pour %s est déjà  défini"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
  
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr ""
-+msgstr "Varoitus! Ei voitu palauttaa tty:n %s kontekstia\n"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "ajouter la correspondance utilisateurs - identités SELinux"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
  
- #: ../newrole/newrole.c:901
- #, c-format
- msgid "Error: multiple roles specified\n"
--msgstr ""
-+msgstr "Virhe: annettiin useita rooleja\n"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "L'identité SELinux %s est déjà  définie"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
  
- #: ../newrole/newrole.c:909
- #, c-format
- msgid "Error: multiple types specified\n"
--msgstr ""
-+msgstr "Virhe: annettiin useita tyyppejä\n"
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Un numéro de port nécessaire"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
  
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr ""
-+msgstr "Valitsinta -l voi käyttää vain SELinuxin MLS-tuen kanssa.\n"
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Le port %s/%s est déjà défini"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
  
- #: ../newrole/newrole.c:921
- #, c-format
- msgid "Error: multiple levels specified\n"
--msgstr ""
-+msgstr "Virhe: annettiin useita tasoja\n"
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "L'interface %s existe déjà "
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
  
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr ""
-+msgstr "Virhe: tasoa ei voi vaihtaa turvattomassa päätteessä\n"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Erreur lors de l'initialisation des capacités, abandon\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
  
- #: ../newrole/newrole.c:957
- #, c-format
- msgid "Couldn't get default type.\n"
--msgstr ""
-+msgstr "Ei voitu hakea oletustyyppiä.\n"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Erreur lors de la configuration des capacités, abandon\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
  
- #: ../newrole/newrole.c:967
- #, c-format
- msgid "failed to get new context.\n"
--msgstr ""
-+msgstr "uuden kontekstin hakeminen epäonnistui.\n"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Erreur de la configuration de KEEPCAPS, abandon\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
  
- #: ../newrole/newrole.c:974
- #, c-format
- msgid "failed to set new role %s\n"
--msgstr ""
-+msgstr "uuden roolin %s asettaminen epäonnistui\n"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Erreur lors de la libération des capacités, abandon\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
  
- #: ../newrole/newrole.c:981
- #, c-format
- msgid "failed to set new type %s\n"
--msgstr ""
-+msgstr "uuden tyypin %s asettaminen epäonnistui\n"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Erreur lors de la libération du SETUID, abandon\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
  
- #: ../newrole/newrole.c:991
- #, c-format
- msgid "failed to build new range with level %s\n"
--msgstr ""
-+msgstr "uuden alueen tekeminen tasolle %s epäonnistui\n"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Erreur lors de la libération de caps\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
  
- #: ../newrole/newrole.c:996
- #, c-format
- msgid "failed to set new range %s\n"
--msgstr ""
-+msgstr "uuden alueen %s asettaminen epäonnistui\n"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "translations non prises en charge sur une machine non MLS"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
  
- #: ../newrole/newrole.c:1004
- #, c-format
- msgid "failed to convert new context to string\n"
--msgstr ""
-+msgstr "uuden kontekstin muuntaminen merkkijonoksi epäonnistui\n"
+-#~ msgid "Boolean"
+-#~ msgstr "Booléen"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
  
- #: ../newrole/newrole.c:1009
- #, c-format
- msgid "%s is not a valid context\n"
--msgstr ""
-+msgstr "%s ei ole kelvollinen konteksti\n"
+-#~ msgid "all"
+-#~ msgstr "tout"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
  
- #: ../newrole/newrole.c:1016
- #, c-format
- msgid "Unable to allocate memory for new_context"
--msgstr ""
-+msgstr "new_contextille ei voida varata muistia"
+-#~ msgid "Customized"
+-#~ msgstr "Personnalisé"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:1042
- #, c-format
- msgid "Unable to obtain empty signal set\n"
--msgstr ""
-+msgstr "Tyhjän signaalijoukon hankkiminen epäonnistui\n"
+-#~ msgid "File Labeling"
+-#~ msgstr "Étiquetage de fichier"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:1050
- #, c-format
- msgid "Unable to set SIGHUP handler\n"
--msgstr ""
-+msgstr "SIGHUP-käsittelimen asetus epäonnistui\n"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Fichier\n"
+-#~ "Spécification"
+-
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Contexte du fichier"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
  
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr ""
-+msgstr "newrolea voi käyttää vain SELinux-kernelillä.\n"
- #: ../newrole/newrole.c:1133
- #, c-format
- msgid "failed to get old_context.\n"
--msgstr ""
-+msgstr "old_contextin hakeminen epäonnistui.\n"
- #: ../newrole/newrole.c:1140
- #, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr ""
-+msgstr "Varoitus! Ei voitu hakea tty-tietoja.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr ""
-+msgstr "virhe luettaessa PAM-palveluasetuksia.\n"
- #: ../newrole/newrole.c:1196
- #, c-format
- msgid "newrole: incorrect password for %s\n"
--msgstr ""
-+msgstr "newrole: virheellinen salasana käyttäjälle %s\n"
- #: ../newrole/newrole.c:1223
- #, c-format
- msgid "newrole: failure forking: %s"
--msgstr ""
-+msgstr "newrole: haarautuminen epäonnistui: %s"
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
- #, c-format
- msgid "Unable to restore tty label...\n"
--msgstr ""
-+msgstr "Tty:n nimiötä ei voitu palauttaa…\n"
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
- #, c-format
- msgid "Failed to close tty properly\n"
--msgstr ""
-+msgstr "Tty:n sulkeminen kunnolla epäonnistui\n"
- #: ../newrole/newrole.c:1287
- #, c-format
- msgid "Could not close descriptors.\n"
--msgstr ""
-+msgstr "Kuvaajia ei voitu sulkea.\n"
- #: ../newrole/newrole.c:1314
- #, c-format
- msgid "Error allocating shell's argv0.\n"
--msgstr ""
-+msgstr "Komentotulkin argv0:n varaamisessa tapahtui virhe.\n"
- #: ../newrole/newrole.c:1346
- #, c-format
- msgid "Unable to restore the environment, aborting\n"
--msgstr ""
-+msgstr "Ei voitu palauttaa ympäristöä, lopetetaan\n"
- #: ../newrole/newrole.c:1357
- msgid "failed to exec shell\n"
--msgstr ""
-+msgstr "komentotulkin suorittaminen epäonnistui\n"
- #: ../load_policy/load_policy.c:22
- #, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr ""
-+msgstr "käyttö:  %s [-qi]\n"
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr ""
-+msgstr "%s: Käytäntö on jo ladattu, silti pyydettiin ensimmäistä latausta\n"
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr ""
-+msgstr "%s: Ei voida ladata käytäntöä, pyydettiin toimeenpanevaa tilaa: %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr ""
-+msgstr "%s: Ei voida ladata käytäntöä: %s\n"
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
--msgstr ""
-+msgstr "Vaaditaan ainakin yksi kategoria"
- #: ../scripts/chcat:106 ../scripts/chcat:183
- #, c-format
- msgid "Can not modify sensitivity levels using '+' on %s"
--msgstr ""
-+msgstr "Ei voida muokata herkkyystasoja käyttämällä ”+”-merkkiä kohteessa %s"
- #: ../scripts/chcat:110
- #, c-format
- msgid "%s is already in %s"
--msgstr ""
-+msgstr "%s on jo kohteessa %s"
- #: ../scripts/chcat:188 ../scripts/chcat:198
- #, c-format
- msgid "%s is not in %s"
--msgstr ""
-+msgstr "%s ei ole kohteessa %s"
- #: ../scripts/chcat:267 ../scripts/chcat:272
- msgid "Can not combine +/- with other types of categories"
--msgstr ""
-+msgstr "Merkkejä + tai - ei voi yhdistää muiden kategoriatyyppien kanssa"
- #: ../scripts/chcat:319
- msgid "Can not have multiple sensitivities"
--msgstr ""
-+msgstr "Ei voi olla useita herkkyyksiä"
- #: ../scripts/chcat:325
- #, c-format
- msgid "Usage %s CATEGORY File ..."
--msgstr ""
-+msgstr "Käyttö %s KATEGORIA Tiedosto ..."
- #: ../scripts/chcat:326
- #, c-format
- msgid "Usage %s -l CATEGORY user ..."
--msgstr ""
-+msgstr "Käyttö %s -l KATEGORIA käyttäjä ..."
- #: ../scripts/chcat:327
- #, c-format
- msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
--msgstr ""
-+msgstr "Käyttö %s [[+|-]KATEGORIA],...]q Tiedosto ..."
- #: ../scripts/chcat:328
- #, c-format
- msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
--msgstr ""
-+msgstr "Käyttö %s -l [[+|-]KATEGORIA],...]q käyttäjä ..."
- #: ../scripts/chcat:329
- #, c-format
- msgid "Usage %s -d File ..."
--msgstr ""
-+msgstr "Käyttö %s -d Tiedosto ..."
- #: ../scripts/chcat:330
- #, c-format
- msgid "Usage %s -l -d user ..."
--msgstr ""
-+msgstr "Käyttö %s -l -d käyttäjä ..."
- #: ../scripts/chcat:331
- #, c-format
- msgid "Usage %s -L"
--msgstr ""
-+msgstr "Käyttö %s -L"
- #: ../scripts/chcat:332
- #, c-format
- msgid "Usage %s -L -l user"
--msgstr ""
-+msgstr "Käyttö %s -L -l käyttäjä"
- #: ../scripts/chcat:333
- msgid "Use -- to end option list.  For example"
--msgstr ""
-+msgstr "Käytä -- valitsinluettelon lopettamiseksi. Esimerkiksi"
- #: ../scripts/chcat:334
- msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
--msgstr ""
-+msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
- #: ../scripts/chcat:335
- msgid "chcat -l +CompanyConfidential juser"
--msgstr ""
-+msgstr "chcat -l +CompanyConfidential juser"
- #: ../scripts/chcat:399
- #, c-format
- msgid "Options Error %s "
-+msgstr "Valitsinvirhe %s"
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Totuusarvo"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "kaikki"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Mukautettu"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Tiedostonimiöinti"
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Tiedosto-\n"
-+"määrittely"
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux-\n"
-+"tiedostotyyppi"
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Tiedosto-\n"
-+"tyyppi"
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Käyttäjäassosiaatio"
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Kirjautumis-\n"
-+"nimi"
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux-\n"
-+"käyttäjä"
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Fichier\n"
+-#~ "Type"
+-
+-#~ msgid "User Mapping"
+-#~ msgstr "Correspondance utilisateur"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Utilisateur\n"
+-#~ "Nom"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Identité"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "Plage MLS/\n"
+-#~ "MCS"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "L'ouverture de session en tant que « %s » est exigée"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Module de stratégies"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Désactiver l'audit"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Activer l'audit"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Charger un module de stratégie"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "traducteurs"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Outil de génération de stratégies SELinux"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "Cet outil peut être utilisé pour générer un modèle de stratégie, pour "
+-#~ "confiner des applications ou des utilisateurs qui se servent de SELinux.\n"
+-#~ "\n"
+-#~ "L'outil génère :\n"
+-#~ "un fichier de types applicables (te)\n"
+-#~ "un fichier d'interfaces (if)\n"
+-#~ "un fichier de contextes fichiers (fc)\n"
+-#~ "un script shell (sh) - utilisé pour compiler et installer la stratégie. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Programmes</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Les démons d'initialisation standards sont des démons chargés au "
+-#~ "démarrage par les scripts d'initialisation. Ils requièrent habituellement "
+-#~ "un script placé dans /etc/init.d"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Démons d'initialisation standards"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Les démons de services Internet sont des démons démarrés par xinetd"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Démons de services Internet (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "Applications Web / script (CGI) Scripts SGI démarrés par le serveur web "
+-#~ "(Apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Applications Web / scripts (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Un programme utilisateur correspond à tout programme que vous aimeriez "
+-#~ "confiner et qui peut être démarré par un utilisateur"
+-
+-#~ msgid "User Application"
+-#~ msgstr "Programme utilisateur"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Identifiant de connexion</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "Modifier un enregistrement existant d'ouverture de session"
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "Modèles d'utilisateurs existant"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "Cet utilisateur va ouvrir une session sur une machine seulement par un "
+-#~ "terminal ou une connexion à distance. Par défaut cet utilisateur n'aura "
+-#~ "pas de propriété setuid, pas de réseautage, pas de commandes sudo et su."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "Modèle minimal de terminal utilisateur"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "Cet utilisateur peut ouvrir une session sur une machine par X ou par un "
+-#~ "terminal. Par défaut cet utilisateur n'aura pas de propriété setuid, pas "
+-#~ "de réseautage, pas de commandes sudo et su."
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "Modèle minimal de serveur X utilisateur"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "Utilisateur avec un réseautage complet, pas de propriété setuid sans "
+-#~ "transition, pas de commandes sudo et su."
+-
+-#~ msgid "User Role"
+-#~ msgstr "Modèle d'utilisateur"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "Utilisateur avec un réseautage complet, pas d'application setuid sans "
+-#~ "transition, pas de commande su, pouvant utiliser la commande sudo pour "
+-#~ "les tâches administratives réservées au Root"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "Rôle de l'administrateur"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Utilisateurs root</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Sélectionner le rôle d'utilisateur root, si cet utilisateur doit "
+-#~ "administrer la machine en tant que root. Cet utilisateur ne pourra pas "
+-#~ "ouvrir de session sur le système directement."
+-
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Modèle d'utilisateur root"
+-
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
+-
+-#~ msgid "Name"
+-#~ msgstr "Nom"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Entrez le chemin d'accès aux exécutables à confiner."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Entrer un nom de type unique pour le modèle d'utilisateur ou de programme "
+-#~ "à confiner."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Exécutable"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Script d'initialisation"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Entrez le chemin d'accès complet au script d'initialisation utilisé pour "
+-#~ "démarrer le programme confiné."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "Sélectionnez les rôles d'utilisateur que vous voulez personnaliser"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr ""
+-#~ "Sélectionnez le modèle d'utilisateur qui va faire la transition aux "
+-#~ "domaines de cette application"
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr ""
+-#~ "Sélectionner le(s) domaine(s) supplémentaire(s) de l'utilisateur pour la "
+-#~ "transition"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Sélectionner les domaines des applications vers lesquels vous souhaitez "
+-#~ "que ce modèle d'utilisateur effectue une transition."
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr ""
+-#~ "Sélectionnez le modèle d'utilisateur qui va faire la transition de ce "
+-#~ "domaine"
+-
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr ""
+-#~ "Sélectionner le(s) domaine(s) additionnel(s) que cet utilisateur "
+-#~ "administrera"
+-
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr ""
+-#~ "Sélectionner les domaines qui doivent être administrés par cet "
+-#~ "utilisateur."
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Sélectionner les rôles supplémentaires de cet utilisateur"
+-
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr ""
+-#~ "Entrez les ports réseau que ce modèle d'application/utilisateur écoute"
+-
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>Ports TCP</b>"
+-
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Permettre au modèle d'un utilisateur/programme confiné de se connecter à "
+-#~ "n'importe quel port UDP"
+-
+-#~ msgid "All"
+-#~ msgstr "Tout"
+-
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Permettre au modèle d'un utilisateur/programme d'appeler « bindresvport » "
+-#~ "avec 0. Connexion aux ports 600-1024"
+-
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
+-#~ "auxquels ce modèle programme/utilisateur se connecte. Par exemple : 612, "
+-#~ "650-660 "
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Ports non réservés (> 1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Sélectionner des ports"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Permettre au modèle d'un utilisateur/programme de se connecter à "
+-#~ "n'importe quel port UDP > 1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>Ports UDP</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Entrez les ports réseau auxquel ce modèle application/utilisateur se "
+-#~ "connecte"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
+-#~ "auxquels ce modèle de programme/utilisateur se connecte. "
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Entrez une liste de ports UDP séparés par une virgule auxquels ce modèle "
+-#~ "programme/utilisateur se connecte. Par exemple : 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "Sélectionner les caractéristiques communes de l'application"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "Le programme utilise syslog pour journaliser des messages\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "Créer/manipuler des fichiers temporaires dans /tmp"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "Utilise PAM pour l'authentification"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "Utilise les appels nsswitch ou getpw"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "Utilise dbus"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Envoie des messages audit"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "Interagit avec le terminal"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "Envoie un courrier électronique"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "Sélectionnez les fichiers/répertoires que le programme gère"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Ajoutez les fichiers/répertoires dans lesquels ce programme va devoir "
+-#~ "écrire. Fichiers PID, fichiers de journalisation, fichiers /var/lib..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Sélectionnez les booléens que le programme utilise"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Ajoutez/enlevez les booléens utilisés pour cette application/utilisateur "
+-#~ "même"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr ""
+-#~ "Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Répertoire de stratégie"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Fichiers de stratégie générés"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Cet outil va générer les éléments suivantes : type applicable (TE), "
+-#~ "contexte fichier (FC), interface (IF), script shell (SH).\n"
+-#~ "Exécutez le script shell pour compiler/installer et re-étiqueter les "
+-#~ "fichiers/répertoires.\n"
+-#~ "Utilisez \"semanage\" ou \"useradd\" pour organiser les logins "
+-#~ "utilisateurs Linux par rapport aux modèles. Passez en mode permissif "
+-#~ "(\"setenforce 0).\n"
+-#~ "Utilisez « audit2allow -R » pour générer des règles supplémentaires pour "
+-#~ "le fichier.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Cet outil va générer les éléments suivantes : type applicable (TE), "
+-#~ "contexte fichier (FC), interface (IF), script shell (SH).\n"
+-#~ "Exécutez le script shell pour compiler/installer et re-étiqueter les "
+-#~ "fichiers/répertoires. Passez en mode permissif (« setenforce 0 »).\n"
+-#~ "Exécutez/redémarrez le programme pour générer les messages AVC.\n"
+-#~ "Utilisez « audit2allow -R » pour générer des règles supplémentaires pour "
+-#~ "le fichier.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "Ajout de boite de dialogue de booléens"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "Nom de Booléen"
+-
+-#~ msgid "Role"
+-#~ msgstr "Rôle"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "Utilisateur existant_"
+-
+-#~ msgid "Application"
+-#~ msgstr "Programme"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s doit être un répertoire"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "Vous devez sélectionner un utilisateur"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Sélectionner les fichiers exécutables à confiner."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Sélectionnez le script d'initialisation à confiner."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr ""
+-#~ "Sélectionnez un ou plusieurs fichiers que le programme confiné crée ou "
+-#~ "dans lesquels il écrit"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Sélectionnez les répertoires que le programme confiné possède et dans "
+-#~ "lesquels il écrit"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr ""
+-#~ "Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Le type %s_t est déjà défini dans la stratégie.\n"
+-#~ "Voulez-vous continuer?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "Verifiez le nom"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Le module %s.pp est déjà chargé dans la stratégie.\n"
+-#~ "Voulez-vous continuer?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Vous devez spécifier un nom"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Vous devez spécifier un exécutable"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Configurer SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr ""
+-#~ "Les ports doivent être des numéros ou des plages compris entre 1 et %d "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr ""
+-#~ "Vous devez spécifier un nom pour votre processus/utilisateur confiné"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Les types USER ne sont pas autorisés à être exécutables"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr ""
+-#~ "Seuls les programmes démons peuvent utiliser un script d'initialisation"
+-
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "« use_syslog » doit avoir une valeur booléenne "
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
 +msgstr ""
-+"MLS/\n"
-+"MCS-alue"
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Vaaditaan kirjautuminen ”%s”"
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Käytäntömoduuli"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Moduulin nimi"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versio"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Poista Audit käytöstä"
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Ota Audit käyttöön"
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Lataa käytäntömoduuli"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>, 2009"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Tätä työkalua voidaan käyttää käytäntökehyksen generointiin sekä ohjelmien "
-+"ja käyttäjien rajoittamiseen SELinuxilla.\n"
-+"\n"
-+"Tämä työkalu generoi:\n"
-+"Tyyppitoimeenpanotiedoston (te)\n"
-+"Verkkoliitäntätiedoston (if)\n"
-+"Tiedostokontekstitiedoston (fc)\n"
-+"Komentotulkin komentosarjan - käytetään käytännön kääntämiseen ja "
-+"asentamiseen."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Valitse rajoitettavan ohjelman/käyttäjäroolin tyyppi"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Ohjelmat</b>"
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Les types USER obtiennent automatiquement un type tmp"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
 +msgstr ""
-+"Oletus-init-taustaprosessit ovat init-komentosarjojen käynnistyksen "
-+"yhteydessä käynnistämiä prosesseja. Ne yleensä tarvitsevat hakemistossa /etc/"
-+"rc.d/init.d olevan komentosarjan"
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Oletus-init-taustaprosessit"
-+
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "Vous devez spécifier le chemin d'accès à l'exécutable pour votre "
+-#~ "processus confiné"
 +#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS-järjestelmätaustaprosessi"
-+
-+#: ../gui/polgen.glade:299
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet-palvelut ovat xinetd:n käynnistämiä taustaprosesseja"
-+
-+#: ../gui/polgen.glade:301
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Fichier de types applicables"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet-palvelut (intetd)"
-+
-+#: ../gui/polgen.glade:320
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "Fichier d'interface"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Web-sovellukset tai -komentosarjat ovat web-palvelimen (apache) käynnistämiä "
-+"CGI-komentosarjoja"
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "File Contexts file"
+-#~ msgstr "Fichier de contextes fichier"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Web-sovellus tai -komentosarja (CGI)"
-+
-+#: ../gui/polgen.glade:341
++msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "Script de configuration"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Käyttäjän ohjelma on mikä tahansa käyttäjän käynnistämä ohjelma, jonka "
-+"toimintaa halutaan rajoittaa"
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Port SELinux\n"
+-#~ "Type"
+-
+-#~ msgid "Protocol"
+-#~ msgstr "Protocole"
+-
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "Niveau"
+-
+-#~ msgid "Port"
+-#~ msgstr "Port"
+-
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Le numéro de port « %s » est invalide. 0 < NUMERO_DE_PORT < 65536 "
+-
+-#~ msgid "List View"
+-#~ msgstr "Affichage par liste"
+-
+-#~ msgid "Group View"
+-#~ msgstr "Affichage par groupe"
+-
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Protection des services SELinux"
+-
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon « acct »"
+-
+-#~ msgid "Admin"
+-#~ msgstr "Administrateur"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Käyttäjän ohjelmia"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Permettre à tous les démons d'écrire des vidages mémoires dans /"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "Permettre à tous les démons d'utiliser des TTY non alloués"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Kirjautuvat käyttäjät</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Muokkaa olemassa olevan kirjautuvan käyttäjän tietoja."
-+
++msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "Privilèges utilisateur"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « gadmin » d'éxecuter des fichiers "
+-#~ "dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Olemassa olevat käyttäjäroolit"
-+
-+#: ../gui/polgen.glade:472
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « guest » d'éxecuter des fichiers "
+-#~ "dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Tämä käyttäjä kirjautuu koneelle vain päätteen kautta tai etäkirjautumalla. "
-+"Oletuksena tällä käyttäjällä ei ole setuid-oikeutta, verkkoa, su:ta tai "
-+"sudoa."
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Memory Protection"
+-#~ msgstr "Protection mémoire"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Minimaalisen päätekäyttäjän rooli"
-+
-+#: ../gui/polgen.glade:493
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Autoriser l'exécution de code dans la pile de Java"
+-
+-#~ msgid "Mount"
+-#~ msgstr "Monter"
+-
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Permettre à « mount » de monter n'importe quel fichier"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Tämä käyttäjä voi kirjautua koneelle X:n tai päätteen kautta. Oletuksena "
-+"tällä käyttäjällä ei ole setuid-oikeutta, verkkoa, su:ta tai sudoa."
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Permettre à « mount » de monter n'importe quel répertoire"
+-
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Autoriser l'exécution de code dans la pile de Mplayer"
+-
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
+-
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Permettre à ssh d'exécuter « ssh-keysign »"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Minimaalisen X Windows -käyttäjän rooli"
-+
-+#: ../gui/polgen.glade:514
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « staff » d'exécuter des fichiers "
+-#~ "dans son répertoire « home » ou dans /tmp"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « sysadm » d'exécuter des fichiers "
+-#~ "dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
- msgstr ""
-+"Käyttäjä jolla on täysi verkonkäyttömahdollisuus, ei setuid-oikeuksia ilman "
-+"siirtymistä, ei sudoa eikä su:ta."
-+
-+#: ../gui/polgen.glade:516
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « unconfined » d'exécuter des "
+-#~ "fichiers dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Käyttäjän rooli"
-+
-+#: ../gui/polgen.glade:535
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "Configuration réseau"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Käyttäjät joilla on täysi verkonkäyttömahdollisuus, ei setuid-oikeuksia "
-+"ilman siirtymistä, ei su:ta, voi siirtyä sudolla Pääkäyttäjän ylläpitorooliin"
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Permettre aux paquets non étiquetés de circuler sur le réseau"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Ylläpitokäyttäjän rooli"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte d'identité SELinux « user » d'exécuter des fichiers "
+-#~ "dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Pääkäyttäjät</b>"
-+
-+#: ../gui/polgen.glade:645
++msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr ""
+-#~ "Autoriser les non confinés à faire une transition dynamique en « "
+-#~ "unconfined_execmem »"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Valitse pääkäyttäjän ylläpitorooli, jos tämä käyttäjä ylläpitää konetta "
-+"pääkäyttäjänä (root). Tämä käyttäjä ei pysty kirjautumaan järjestelmään "
-+"suoraan."
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Databases"
+-#~ msgstr "Bases de données"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Pääkäyttäjän ylläpitorooli"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Syötä rajoitettavan ohjelman tai käyttäjäroolin nimi"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Permettre à l'utilisateur de se connecter au socket « mysql »"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Permettre à l'utilisateur de se connecter au socket « postgres »"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "Serveur X"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Nimi"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Permettre aux clients d'écrire dans la mémoire partagée de X"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Syötä rajoitettavan suoritettavan tiedoston täysi polku"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Syötä uniikki nimi rajoitetulle ohjelmalle tai käyttäjäroolille"
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Suoritettava tiedosto"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init-komentosarja"
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Syötä rajoitetun ohjelman käynnistämiseen käytettävän komentosarjan täysi "
-+"polku."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Valitse muokattavat käyttäjäroolit"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "Valitse käyttäjäroolit, jotka siirtyvät tämän ohjelman toimialueelle."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Valitse muut toimialueet, joihin tämä käyttäjärooli siirtyy"
-+
-+#: ../gui/polgen.glade:1076
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permettre au compte utilisateur SELinux « xguest » d'exécuter des "
+-#~ "fichiers dans son répertoire « home » ou dans /tmp"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Permettre aux démons de s'exécuter avec NIS"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "Applications Web"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transition de l'identité SELinux « staff » vers le domaine « Web Browser »"
++#: ../gui/polgen.glade:927
 +msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Valitse ohjelmatoimialueet, joihin haluat tämän käyttäjäroolin siirtyvän."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Valitse käyttäjäroolit, jotka siirtyvät tälle toimialueelle"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Valitse lisätoimialueet, joita tämä käyttäjärooli ylläpitää"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transition de l'identité SELinux « sysadm » vers le domaine « Web Browser "
+-#~ "»"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transition de l'identité SELinux « user » vers le domaine « Web Browser »"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transition de l'identité SELinux « xguest » vers le domaine « Web Browser "
+-#~ "»"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr ""
+-#~ "Permettre aux « Web Browsers » de staff d'écrire dans les répertoires "
+-#~ "personnels"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Désactiver la protection SELinux pour amanda"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Désactiver la protection SELinux pour amavis"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon apmd"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon arpwatch"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon auditd"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon automount"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Désactiver la protection SELinux pour avahi"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon bluetooth"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Valitse toimialueet, joita haluat tämän käyttäjän ylläpitävän."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Valitse lisäroolit tälle käyttäjälle"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Syötä verkon portit, joita tämä sovellus/käyttäjärooli kuuntelee"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon canna"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cardmgr"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Désactiver la protection SELinux pour le serveur Cluster"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Permettre à cdrecord de lire de nombreux contenus : nfs, samba, "
+-#~ "périphériques extractibles, répertoires temp d'utilisateurs et fichiers "
+-#~ "non dignes de confiance"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ciped"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP-portit</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"Sallii rajoitetun ohjelman/käyttäjäroolin liittyä mihin tahansa udp-porttiin"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon clamd"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Désactiver la protection SELinux pour clamscan"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Kaikki"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"Salli ohjelman/käyttäjäroolin kutsua bindresvport:ia arvolla 0. Liittyy "
-+"portteihin 600-1024"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Désactiver la protection SELinux pour clvmd"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Désactiver la protection SELinux pour démon comsat"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon courier"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Syötä pilkulla erotettu luettelo udp-porteista tai -porttialueista, joihin "
-+"ohjelma/käyttäjärooli liittyy. Esimerkki: 612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cpucontrol"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Varaamattomat portit (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cpuspeed"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Valitse portit"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"Sallii ohjelman/käyttäjäroolin liittyä mihin tahansa udp-porttiin > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon crond"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP-portit</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Syötä verkon portit, joihin tämä sovellus/käyttäjärooli yhdistää"
-+
-+#: ../gui/polgen.glade:1958
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "Impression"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Désactiver la protection SELinux pour le serveur cupsd"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cupsd"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Désactiver la protection SELinux pour cupsd_lpd"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Syötä pilkulla erotettu luettelo tcp-porteista tai -porttialueista, joihin "
-+"ohjelma/käyttäjärooli yhdistää. Esimerkki: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon CVS"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Syötä pilkulla erotettu luettelo udp-porteista tai -porttialueista, joihin "
-+"ohjelma/käyttäjärooli yhdistää. Esimerkki: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Valitse tyypillisiä ohjelman ominaisuuksia"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cyrus"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dbskkd"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dbusd"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Kirjoittaa viestejä järjestelmälokiin"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Désactiver la protection SELinux pour dccd"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Luo tai muuttaa väliaikaisia tiedostoja /tmp-hakemistossa"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Désactiver la protection SELinux pour dccifd"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Käyttää Pamia tunnistautumiseen"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Désactiver la protection SELinux pour dccm"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Käyttää nsswitchiä tai getpw*-kutsuja"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ddt"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Käyttää dbusia"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon devfsd"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Lähettää audit-viestejä"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dhcpc"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Toimii päätteen kanssa"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dhcpd"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Lähettää sähköpostia"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Valitse tiedostoja/hakemistoja, joita ohjelma hallitsee"
-+
-+#: ../gui/polgen.glade:2607
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dictd"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Permettre à sysadmin_t de démarrer directement des démons"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Désactiver la protection SELinux pour Evolution"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Lisää tiedostoja/hakemistoja, joihin ohjelman täytyy kirjoittaa. Pid-"
-+"tiedostoja, lokitiedostoja, /var/lib-tiedostoja..."
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Valitse totuusarvot, joita ohjelma käyttää"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Games"
+-#~ msgstr "Jeux"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Lisää tai poista tämän rajoitetun ohjelman tai käyttäjän käyttämiä "
-+"totuusarvoja"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Valitse hakemisto, jonne käytäntö generoidaan"
-+
-+#: ../gui/polgen.glade:2882
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Désactiver la protection SELinux pour games"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Désactiver la protection SELinux pour web browsers"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Désactiver la protection SELinux pour Thunderbird"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon distccd"
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Käytäntöhakemisto"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Generoidut käytäntötiedostot"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Tämä työkalu generoi seuraavat:\n"
-+"Tyyppitoimeenpano (te), tiedostokonteksti (fc), verkoliitäntä (if), "
-+"komentotulkin komentosarja (sh).\n"
-+"Suorita komentotulkin komentosarja pääkäyttäjänä käännöksen/asennuksen "
-+"tekemiseksi ja tiedostojen/hakemistojen nimiöimiseksi uudelleen.\n"
-+"Käytä semanagea tai useraddia Linux-kirjautumiskäyttäjien assosioimiseksi "
-+"käyttäjärooleihin.\n"
-+"Aseta tietokone sallivaan tilaan (setenforce 0).\n"
-+"Kirjaudu käyttäjänä ja kokeile tätä käyttäjäroolia.\n"
-+"Käytä audit2allow -R:ää lisäsääntöjen generoimiseksi te-tiedostoon.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Tämä työkalu generoi seuraavat:\n"
-+"Tyyppitoimeenpano (te), tiedostokonteksti (fc), verkoliitäntä (if), "
-+"komentotulkin komentosarja (sh)\n"
-+"\n"
-+"Suorita komentotulkin komentosarja käännöksen/asennuksen tekemiseksi ja "
-+"tiedostojen/hakemistojen nimiöimiseksi uudelleen.\n"
-+"Aseta tietokone sallivaan tilaan (setenforce 0).\n"
-+"Suorita ohjelma tai käynnistä se uudelleen avc-viestien generoimiseksi.\n"
-+"Käytä audit2allow -R:ää lisäsääntöjen generoimiseksi te-tiedostoon.\n"
-+
-+#: ../gui/polgen.glade:3127
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dmesg"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Totuusarvojen lisäysikkuna"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dnsmasq"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Totuusarvon nimi"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon dovecot"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Rooli"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon entropyd"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Olemassa_oleva_käyttäjä"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Désactiver la protection SELinux pour fetchmail"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Ohjelma"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon fingerd"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s on oltava hakemisto"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon freshclam"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Käyttäjä on valittava"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon fsdaemon"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Valitse rajoitettava suoritettava tiedosto."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon gpm"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Valitse rajoitettava init-komentosarja."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"Valitse tiedostot, joita rajoitettava ohjelma luo tai joihin se kirjoittaa"
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon gss"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Valitse hakemistot, jotka rajoitettava ohjelma omistaa tai joihin se "
-+"kirjoittaa"
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon hal"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Valitse hakemisto, jonne käytäntötiedostot generoidaan"
-+
-+#: ../gui/polgengui.py:554
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Compatibilité"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Tyyppi %s_t on jo määritelty nykyisessä käytännössä.\n"
-+"Haluatko jatkaa?"
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Ne pas auditer les éléments défectueux qui ne constituent pas un risque "
+-#~ "en terme de sécurité"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Tarkista nimi"
-+
-+#: ../gui/polgengui.py:558
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon hostname"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Moduuli %s.pp on jo ladattu nykyisessä käytännössä.\n"
-+"Haluatko jatkaa?"
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Nimi on annettava"
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon hotplug"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon howl"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Suoritettava tiedosto on annettava"
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon cups hplip"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Tee SELinux-asetukset"
-+
-+#: ../gui/polgen.py:174
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Désactiver la protection SELinux pour httpd rotatelogs"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Service HTTPD"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Porttien on oltava numeroita tai numeroalueita väliltä 1-%d"
-+
-+#: ../gui/polgen.py:204
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Désactiver la protection SELinux pour http suexec"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Rajoitetulle prosessille tai käyttäjälle on annettava nimi"
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER-tyypeille ei sallita suoritettavia tiedostoja"
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Vain DAEMON-ohjelmat voivat käyttää init-komentosarjaa"
-+
-+#: ../gui/polgen.py:306
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon hwclock"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon i18n"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon imazesrv"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Désactiver la protection SELinux pour les démons inetd child"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon inetd"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog:n on oltava totuusarvo"
-+
-+#: ../gui/polgen.py:327
++msgstr ""
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon innd"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon iptables"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ircd"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER-tyypit saavat automaattisesti tmp-tyypin"
-+
-+#: ../gui/polgen.py:729
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon irqbalance"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Rajoitetulle prosessille on annettava suoritettavan tiedoston polku"
-+
-+#: ../gui/polgen.py:848
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon iscsi"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Tyyppitoimeenpanotiedosto"
-+
-+#: ../gui/polgen.py:849
++msgstr ""
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon jabberd"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Verkkoliitäntätiedosto"
-+
-+#: ../gui/polgen.py:850
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Tiedostokontekstitiedosto"
-+
-+#: ../gui/polgen.py:851
++msgstr ""
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon kadmind"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Asetuskomentosarja"
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon klogd"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon krb5kdc"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ktalk"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Verkkoportti"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon kudzu"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux-portti\n"
-+"tyyppi"
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon locate"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protokolla"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon lpd"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS-\n"
-+"taso"
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon lrrd"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Portti"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon lvm"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Porttinumero ”%s” on virheellinen. 0 < PORTTINUMERO < 65536"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Désactiver la protection SELinux pour mailman"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Luettelonäkymä"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr ""
+-#~ "Permettre à Evolution et Thunderbird de lire les fichiers utilisateur"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Ryhmänäkymä"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon mdadm"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -75847,28 +84851,30 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux-palvelusuojaus"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon monopd"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Poista SELinux-suojaus acct-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Permettre au navigateur mozilla de lire les fichiers utilisateur"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Ylläpito"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+"Salli kaikkien taustaprosessien kirjoittaa vedostiedostoja hakemistoon /"
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+"Anna kaikille taustaprosesseille mahdollisuus käyttää varaamattomia tty:itä"
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -75877,92 +84883,80 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Käyttäjien oikeudet"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli gadmin-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:"
-+"ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli guest-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:"
-+"ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Muistin suojaus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Salli javalle suoritettava pino"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Salli mountin liittää mikä tahansa tiedosto"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Salli mountin liittää mikä tahansa hakemisto"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Salli mplayerin suoritettavalle tiedostolle suoritettava pino"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Salli ssh:n suorittaa ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli staff-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:"
-+"ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli sysadm-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:"
-+"ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Salli rajoittamattoman SELinux-käyttäjätunnuksen suorittaa kotihakemistossa "
-+"tai /tmp:ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Verkkoasetukset"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Salli nimiöimättömien pakettien kulkea verkossa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli user-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:ssä "
-+"olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
@@ -75971,39 +84965,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Tietokannat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Salli käyttäjän yhdistää mysql-pistokkeeseen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Salli käyttäjän yhdistää postgres-pistokkeeseen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "X-palvelin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Salli asiakasohjelmien kirjoittaa X:n jaettuun muistiin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Salli xguest-SELinux-käyttäjätunnuksen suorittaa kotihakemistossa tai /tmp:"
-+"ssä olevia tiedostoja"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Salli taustaprosessien toimia NIS:n kanssa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -76011,1000 +85003,1102 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web-ohjelmat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Siirrä staff-SELinux-käyttäjä verkkoselaimen toimialueelle"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Siirrä sysadm-SELinux-käyttäjä verkkoselaimen toimialueelle"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Siirrä user-SELinux-käyttäjä verkkoselaimen toimialueelle"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Siirrä xguest-SELinux-käyttäjä verkkoselaimen toimialueelle"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Salli staff-verkkoselainten kirjoittaa kotihakemistoihin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Poista SELinux-suojaus amandalta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Poista SELinux-suojaus amavisilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Poista SELinux-suojaus apmd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Poista SELinux-suojaus arpwatch-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Poista SELinux-suojaus auditd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Poista SELinux-suojaus automount-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Poista SELinux-suojaus avahilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Poista SELinux-suojaus bluetooth-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Poista SELinux-suojaus canna-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Poista SELinux-suojaus cardmgr-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Poista SELinux-suojaus Cluster Serveriltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Salli cdrecodin lukevan eri kohteita, nfs:ää, sambaa, irrotettavia "
-+"laitteita, käyttäjän väliaikaisia tiedostoja ja epäluotettavia "
-+"sisältötiedostoja"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Poista SELinux-suojaus ciped-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Poista SELinux-suojaus clamd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Poista SELinux-suojaus clamscan-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Poista SELinux-suojaus clvmd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Poista SELinux-suojaus comscat-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Poista SELinux-suojaus courier-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Poista SELinux-suojaus cpucontrol-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Poista SELinux-suojaus cpuspeed-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Poista SELinux-suojaus crond-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Tulostus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Poista SELinux-suojaus cupsd-taustapalvelimelta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Poista SELinux-suojaus cupsd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Poista SELinux-suojaus cupsd_lpd:ltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Poista SELinux-suojaus cvs-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Poista SELinux-suojaus cyrus-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Poista SELinux-suojaus dskkd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Poista SELinux-suojaus dbusd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Poista SELinux-suojaus dccd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Poista SELinux-suojaus dccifd:ltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Poista SELinux-suojaus dccm:ltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Poista SELinux-suojaus ddt-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Poista SELinux-suojaus devfsd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Poista SELinux-suojaus dhcpc-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Poista SELinux-suojaus dhcpd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Poista SELinux-suojaus dictd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Salli sysadm_t:n käynnistää taustaprosesseja suoraan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Poista SELinux-suojaus Evolutionilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Pelit"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Poista SELinux-suojaus peleiltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Poista SELinux-suojaus verkkoselaimilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Poista SELinux-suojaus Thunderbirdiltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Poista SELinux-suojaus distccd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Poista SELinux-suojaus dmesg-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Poista SELinux-suojaus dnsmasq-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Poista SELinux-suojaus dovecot-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Poista SELinux-suojaus entropyd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Poista SELinux-suojaus fetchmaililta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Poista SELinux-suojaus fingerd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Poista SELinux-suojaus freshclam-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Poista SELinux-suojaus fsdaemon-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Poista SELinux-suojaus gpm-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Poista SELinux-suojaus gss-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Poista SELinux-suojaus Hal-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Yhteensopivuus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Älä auditoi asioita, joiden tiedetään olevan rikki, mutta jotka eivät ole "
-+"turvallisuusriskejä"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Poista SELinux-suojaus hostname-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Poista SELinux-suojaus hotplug-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Poista SELinux-suojaus howl-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Poista SELinux-suojaus cups hplip -taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Poista SELinux-suojaus httpd:n rotatelogsilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD-palvelu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Poista SELinux-suojaus http:n suexeciltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Poista SELinux-suojaus hwclock-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Poista SELinux-suojaus i18n-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Poista SELinux-suojaus imazesrv-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Poista SELinux-suojaus inetd-lapsitaustaprosesseilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Poista SELinux-suojaus inetd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Poista SELinux-suojaus innd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Poista SELinux-suojaus iptables-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Poista SELinux-suojaus ircd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Poista SELinux-suojaus irqbalance-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Poista SELinux-suojaus iscsi-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Poista SELinux-suojaus jabberd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Poista SELinux-suojaus kadmind-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Poista SELinux-suojaus klogd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Poista SELinux-suojaus krb5kdc-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Poista SELinux-suojaus ktalk-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Poista SELinux-suojaus kudzu-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Poista SELinux-suojaus locate-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Poista SELinux-suojaus lpd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Poista SELinux-suojaus lrrd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Poista SELinux-suojaus lvm-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Poista SELinux-suojaus mailman-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Salli Evolutionin ja Thunderbirdin lukea käyttäjätiedostoja"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Poista SELinux-suojaus mdadm-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Poista SELinux-suojaus monopd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Salli mozilla-selaimen lukea käyttäjätiedostoja"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Poista SELinux-suojaus mrtg-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Poista SELinux-suojaus mysqld-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Poista SELinux-suojaus nagios-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Nimipalvelu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Poista SELinux-suojaus named-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Poista SELinux-suojaus nessusd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Poista SELinux-suojaus NetworkManagerilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Poista SELinux-suojaus nfsd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Poista SELinux-suojaus nmbd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Poista SELinux-suojaus nrpe-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Poista SELinux-suojaus nscd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Poista SELinux-suojaus nsd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Poista SELinux-suojaus ntpd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Poista SELinux-suojaus oddjob-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Poista SELinux-suojaus oddjob_mkhomedir:iltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Poista SELinux-suojaus openvpn-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Poista SELinux-suojaus pam-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Poista SELinux-suojaus pegasukselta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Poista SELinux-suojaus perdition-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Poista SELinux-suojaus portmap-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Poista SELinux-suojaus portslave-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Poista SELinux-suojaus postfixilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Poista SELinux-suojaus postgresql-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Salli pppd:n suoritus tavallisena käyttäjänä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Poista SELinux-suojaus pptp:ltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Poista SELinux-suojaus prelink-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Poista SELinux-suojaus privoxy-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Poista SELinux-suojaus ptal-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Poista SELinux-suojaus pxe-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Poista SELinux-suojaus pyzord-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Poista SELinux-suojaus quota-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Poista SELinux-suojaus radiusd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Poista SELinux-suojaus radvd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Poista SELinux-suojaus rdisciltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Poista SELinux-suojaus readaheadilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Salli ohjelmien lukevan epätavallisissa sijainneissa olevia tiedostoja "
-+"(default_t)"
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Poista SELinux-suojaus restorecondilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Poista SELinux-suojaus rhgb-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Poista SELinux-suojaus ricciltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Poista SELinux-suojaus ricci_modclusterd:ltä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Poista SELinux-suojaus rlogind-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Poista SELinux-suojaus rpcd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Poista SELinux-suojaus rshd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Poista SELinux-suojaus rsync-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+"Salli ssh:ta suoritettavan inetd:n kautta sen sijaan, että sitä "
-+"suoritettaisiin taustaprosessina"
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Salli Samban jakaa nfs-hakemistoja"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL-tunnistautumispalvelin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Salli sasl-tunnistautumispalvelimen lukea /etc/shadow-tiedostoa"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Salli X-ikkunointipalvelimen määrittää muistialue sekä suoritettavaksi että "
-+"kirjoitettavaksi"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Poista SELinux-suojaus saslauthd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Poista SELinux-suojaus scannerdaemon-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Älä salli siirtymistä sysadm_t:hen, vaikuttaa sudoon ja su:hun"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Älä salli prosessien ladata ytimen moduuleita"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon mrtg"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Älä salli prosessien muokata ytimen SELinux-käytäntöä"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Poista SELinux-suojaus sendmail-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Poista SELinux-suojaus setransilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Poista SELinux-suojaus setroubleshoot-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Poista SELinux-suojaus slapd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Poista SELinux-suojaus slrnpull-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Poista SELinux-suojaus smbd-taustaprosessilta"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Poista SELinux-suojaus snmpd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon mysqld"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Poista SELinux-suojaus snort-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nagios"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Poista SELinux-suojaus soundd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Name Service"
+-#~ msgstr "Service de nom"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Poista SELinux-suojaus soundd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon named"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Roskapostisuojaus"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nessusd"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Poista SELinux-suojaus spamd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Désactiver la protection SELinux pour NetworkManager"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Salli spamd:lle pääsy kotihakemistoihin"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nfsd"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Salli Spam Assassin -taustaprosessille verkon käyttö"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Poista SELinux-suojaus speedmgmt-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nmbd"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nrpe"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Salli squid-taustaprosessin yhdistää verkkoon"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nscd"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Poista SELinux-suojaus squid-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon nsd"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Poista SELinux-suojaus ssh-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ntpd"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Salli ssh-kirjautumiset sysadm_r:sysadm_t-käyttäjiltä"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Désactiver la protection SELinux pour oddjob"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Salli staff_r-käyttäjien etsiä sysadm-kotihakemistosta ja lukea tiedostoja "
-+"(kuten ~/.bashrc)"
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Désactiver la protection SELinux pour oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Yleinen SSL-tunneli"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon openvpn"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Poista SELinux-suojaus stunnel-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon pam"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"Salli stunnel-taustaprosessin suorittaminen itsenäisesti, xinetd:n "
-+"ulkopuolella"
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Désactiver la protection SELinux pour pegasus"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Poista SELinux-suojaus swat-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon perdition"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Poista SELinux-suojaus sxid-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon portmap"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Poista SELinux-suojaus syslogd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon portslave"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Poista SELinux-suojaus järjestelmän cron-töiltä"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Désactiver la protection SELinux pour postfix"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Poista SELinux-suojaus tcp-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon postgresql"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Poista SELinux-suojaus telnet-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Poista SELinux-suojaus tftpd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Permettre à un utilisateur ordinaire d'exécuter pppd"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Poista SELinux-suojaus transproxy-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Désactiver la protection SELinux pour pptp"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Poista SELinux-suojaus udev-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon prelink"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Poista SELinux-suojaus uml-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon privoxy"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Salli xinetd:n suoritus rajoittamattomana, mukaan lukien kaikki palvelut, "
-+"jotka se käynnistää ja joilla ei ole erikseen määriteltyä toimialuesiirtymää"
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ptal"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Salli rc-komentosarjojen suoritus rajoittamattomana, mukaan lukien kaikki "
-+"palvelut, jotka rc-komentosarja käynnistää ja joilla ei ole erikseen "
-+"määriteltyä toimialuesiirtymää"
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon pxe"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Salli rpm:n suorittaminen rajoittamattomana"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Désactiver la protection SELinux pour pyzord"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Salli erityisoikeuksilla varustettujen ohjelmien, kuten hotplugin ja "
-+"insmodin, suoritus rajoittamattomina"
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon quota"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Poista SELinux-suojaus updfstab-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon radiusd"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Poista SELinux-suojaus uptimed-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon radvd"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Salli user_r:n päästä sysadm_r:ksi su:n, sudon tai userhelperin avulla. "
-+"Muuten vain staff_r voi tehdä niin."
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Désactiver la protection SELinux pour rdisc"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Salli käyttäjien suorittaa mount-komento"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Désactiver la protection SELinux pour readahead"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Salli tavallisille käyttäjille suora hiiren käyttöoikeus (salli vain X-"
-+"palvelin)"
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Permettre aux programmes de lire des fichiers à des emplacements non "
+-#~ "standards (default_t)"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Salli käyttäjien suorittaa dmesg-komento"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Désactiver la protection SELinux pour restorecond"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Salli käyttäjien hallita verkkoliitäntöjä (tarvitsee myös asetuksen "
-+"USERCTL=true)"
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon rhgb"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Salli tavallisten käyttäjien suorittaa ping-komento"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Désactiver la protection SELinux pour ricci"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Salli käyttäjille luku- ja kirjoitusoikeus noextattrfileen (FAT, CDROM, "
-+"LEVYKE)"
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Désactiver la protection SELinux pour ricci_modclusterd"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Salli käyttäjille luku- ja kirjoitusoikeus usb-laitteisiin"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon rlogind"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Salli käyttäjien suorittaa TCP-palvelimia (liittyä portteihin ja hyväksyä "
-+"yhteys samasta osoitteesta ja ulkopuolisilta käyttäjiltä). Tämän poistaminen "
-+"käytöstä pakottaa käyttämään FTP:n passiivista tilaa ja saattaa muuttaa "
-+"muita protokollia."
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon rpcd"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Salli käyttäjien kutsuvan stat:ia tty-tiedostoille"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Désactiver la protection SELinux pour rshd"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Poista SELinux-suojaus uucpd-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Poista SELinux-suojaus vmware-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon rsync"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Poista SELinux-suojaus watchdog-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "Permettre à ssh de s'exécuter depuis inetd et non en tant que démon"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Poista SELinux-suojaus winbind-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Permettre à Samba de partager des répertoires NFS"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Poista SELinux-suojaus xdm-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Serveur d'authentification SASL"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Salli xdm-kirjautumiset sysadm_r:sysadm_t-käyttäjiltä"
-+
++msgstr ""
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Permettre au serveur d'authentification SASL de lire /etc/shadow"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Poista SELinux-suojaus xen-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Permettre au serveur X-Window de considérer une zone mémoire comme "
+-#~ "exécutable et pouvant être écrite"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon saslauthd"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Salli xenin lukea ja kirjoittaa fyysisille levylaitteille"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon scannerdaemon"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Poista SELinux-suojaus xfs-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Interdire la transition vers sysadmin_t, effectuée par sudo et su"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Poista SELinux-suojaus xen-hallinnalta"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Interdire à tout processus de charger des modules noyau"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Poista SELinux-suojaus ypbind-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Interdire à tout processus de modifier la stratégie SELinux du noyau"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Poista SELinux-suojaus NIS Password -taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon sendmail"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Poista SELinux-suojaus ypserv-taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Désactiver la protection SELinux pour setrans"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Poista SELinux-suojaus NIS Transfer -taustaprosessilta"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon setroubleshoot"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Salli SELinuxin webadm-käyttäjän hallita niiden käyttäjien kotihakemistoja, "
-+"joilla ei ole erityisoikeuksia"
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon slapd"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Salli SELinuxin webadm-käyttäjän lukea niiden käyttäjien kotihakemistoja, "
-+"joilla ei ole erityisoikeuksia"
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon slrnpull"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Haluatko varmasti poistaa %s ”%s”?"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon smbd"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Poista %s"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon snmpd"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Lisää %s"
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Muokkaa kohdetta %s"
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon snort"
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
++msgstr ""
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon soundd"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Salliva"
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon sound"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Toimeenpaneva"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Ei käytössä"
-+
++msgstr ""
+-#~ msgid "Spam Protection"
+-#~ msgstr "Protection anti-spam"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Tila"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon spamd"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Käytäntötyypin vaihtaminen aiheuttaa seuraavan käynnistyksen yhteydessä koko "
-+"tiedostojärjestelmän nimiöinnin uudelleen. Se saattaa viedä kauan aikaa "
-+"riippuen tiedostojärjestelmän koosta. Haluatko jatkaa?"
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Autoriser l'accès de spamd aux répertoires personnels"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -77014,68 +86108,69 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinuxin poistaminen käytöstä ei ole suositeltua ja vaatii järjestelmän "
-+"käynnistämisen uudelleen. Jos kytket myöhemmin SELinuxin takaisin käyttöön, "
-+"järjestelmä on nimiöitävä uudelleen. Jos haluat vain tarkistaa aiheuttaako "
-+"SELinux ongelmia järjestelmässä, voit siirtyä sallivaan tilaan, joka vain "
-+"kirjoittaa virheistä lokitietoja eikä toimeenpane SELinux-käytäntöä. "
-+"Sallivaan tilaan siirtyminen ei vaadi järjestelmän käynnistämistä uudelleen. "
-+"Haluatko jatkaa?"
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Permettre l'accès réseau au  démon Spam Assassin"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinuxin ottaminen käyttöön aiheuttaa seuraavan käynnistyksen yhteydessä "
-+"koko tiedostojärjestelmän nimiöinnin uudelleen. Se saattaa viedä kauan aikaa "
-+"riippuen tiedostojärjestelmän koosta. Haluatko jatkaa?"
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon speedmgmt"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
-+
++msgstr ""
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Tekijänoikeudet (c) 2006 Red Hat, Inc.\n"
-+"Tekijänoikeudet (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Autoriser l'accès réseau au démon squid"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Lisää SELinux-kirjautumisassosiaatio"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon squid"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Lisää SELinux-verkkoportteja"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ssh"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux-tyyppi"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinuxin MLS/MCS-\n"
-+"taso"
-+
-+#: ../gui/system-config-selinux.glade:814
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Autoriser l'ouverture de session ssh en tant que sysadm_r:sysadm_t"
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Tiedostomäärittely"
-+
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Autoriser les utilisateurs staff_r à chercher dans le répertoire "
+-#~ "personnel de sysadm et à lire des fichiers (comme ~/.bashrc par exemple)"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Tiedostotyyppi"
-+
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Tunnel SSL universel"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -77086,2961 +86181,2589 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"kaikki tiedostot\n"
-+"tavallinen tiedosto\n"
-+"hakemisto\n"
-+"merkkilaite\n"
-+"lohkolaite\n"
-+"pistoke\n"
-+"symbolinen linkki\n"
-+"nimetty putki\n"
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon stunnel"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
++msgstr ""
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Autoriser le démon stunnel à s'exécuter de manière autonome, hors de "
+-#~ "xinetd"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Lisää SELinux-käyttäjä"
-+
-+#: ../gui/system-config-selinux.glade:1271
++msgstr ""
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon swat"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinuxin ylläpito"
-+
-+#: ../gui/system-config-selinux.glade:1314
++msgstr ""
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon sxid"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Lisää"
-+
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon syslogd"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Ominaisuudet"
-+
-+#: ../gui/system-config-selinux.glade:1358
++msgstr ""
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Désactiver la protection SELinux pour les travaux système cron"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Poista"
-+
-+#: ../gui/system-config-selinux.glade:1449
++msgstr ""
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon tcp"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Valitse hallintaobjekti"
-+
-+#: ../gui/system-config-selinux.glade:1466
++msgstr ""
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon telnet"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Valitse:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
++msgstr ""
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon tftpd"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Järjestelmän toimeenpaneva tila oletuksena"
-+
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon transproxy"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Ei käytössä\n"
-+"Salliva\n"
-+"Toimeenpaneva\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon udev"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Nykyinen toimeenpaneva tila"
-+
-+#: ../gui/system-config-selinux.glade:1611
++msgstr ""
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon uml"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Järjestelmän oletuskäytännön tyyppi:"
-+
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Autoriser xinetd à s'exécuter de manière non confinée, y compris tout "
+-#~ "service qu'il démarre et qui n'a pas de transition de domaine "
+-#~ "explicitement définie"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Valitse haluatko nimiöidä koko tiedostojärjestelmän uudelleen seuraavan "
-+"käynnistyksen yhteydessä. Se saattaa viedä kauan aikaa riippuen "
-+"tiedostojärjestelmän koosta. Jos olet vaihtamassa käytäntötyyppiä tai "
-+"ottamassa SELinuxia käyttöön toimeenpanevassa tilassa, uudelleennimiöinti on "
-+"pakollista."
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Autoriser les scripts rc à s'exécuter de manière non confinée, y compris "
+-#~ "tout service qu'ils démarrent et qui n'a pas de transition de domaine "
+-#~ "explicitement définie"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+"Nimiöi tiedostojärjestelmä uudelleen seuraavan käynnistyksen yhteydessä."
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Autoriser rpm à s'exécuter de manière non confinée"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
++msgstr ""
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Autoriser les utilitaires privilégiés comme hotplug et insmod à "
+-#~ "s'exécuter de manière non confinée"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Palauta totuusarvo järjestelmän oletusasetuksiin"
-+
-+#: ../gui/system-config-selinux.glade:1807
++msgstr ""
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon updfstab"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Vaihda muokattujen ja kaikkien totuusarvojen välillä"
-+
-+#: ../gui/system-config-selinux.glade:1825
++msgstr ""
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon uptimed"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Suorita ohjattu totuusarvojen rajoitus"
-+
-+#: ../gui/system-config-selinux.glade:1826
++msgstr ""
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Autoriser user_r à passer sysadm_r via su, sudo ou userhelper. Dans le "
+-#~ "cas contraire, seul staff_r est habilité à le faire"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Rajoitus..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Autoriser les utilisateurs à exécuter la commande « mount »"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Suodin"
-+
-+#: ../gui/system-config-selinux.glade:1945
++msgstr ""
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Donner aux utilisateurs ordinaires un accès direct à la souris (seul le "
+-#~ "serveur X a cet accès)"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
++msgstr ""
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Autoriser les utilisateurs à exécuter la commande « dmesg »"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Lisää tiedostokonteksti"
-+
-+#: ../gui/system-config-selinux.glade:1998
++msgstr ""
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Autoriser les utilisateurs à contrôler les interfaces réseau (il faut "
+-#~ "aussi que USERCTL=true)"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Muuta tiedostokontekstia"
-+
-+#: ../gui/system-config-selinux.glade:2014
++msgstr ""
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr ""
+-#~ "Autoriser les utilisateurs ordinaires à exécuter la commande « ping »"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Poista tiedostokonteksti"
-+
-+#: ../gui/system-config-selinux.glade:2030
++msgstr ""
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Autoriser l'utilisateur à lire/écrire les noextattrfile (FAT, CDROM, "
+-#~ "disquette)"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Vaihda kaikkien ja muokattujen tiedostokontekstien välillä"
-+
-+#: ../gui/system-config-selinux.glade:2150
++msgstr ""
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Autoriser les utilisateurs à lire/écrire dans des périphériques USB"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Autoriser les utilisateurs à lancer des serveurs TCP (lier à des ports et "
+-#~ "accepter des connexions d'un même domaine ou d'utilisateurs extérieurs). "
+-#~ "Désactiver cette option force le mode FTP passif et peut avoir une "
+-#~ "influence sur d'autres protocoles"
+-
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr ""
+-#~ "Autoriser l'utilisateur à effectuer un « stat » sur les fichiers TTY"
+-
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon uucpd"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon vmware"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon watchdog"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon winbind"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon xdm"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr ""
+-#~ "Autoriser les ouvertures de session xdm en tant que sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon xen"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Autoriser xen à lire/écrire sur des périphériques disques physiques"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon xfs"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Désactiver la protection SELinux pour xen control"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ypbind"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon NIS Password"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon ypserv"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Désactiver la protection SELinux pour le démon NIS Transfer"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Autoriser l'utilisateur SELinux webadm à gérer les répertoires personnels "
+-#~ "des utilisateurs non privilégiés"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Autoriser l'utilisateur SELinux webadm à lire les répertoires personnels "
+-#~ "des utilisateurs non privilégiés"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Êtes-vous sur de vouloir supprimer %s « %s » ?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Supprimer %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Ajouter %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Modifier %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Permissif"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Strict"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Changer de type de stratégie va entraîner un ré-étiqutage de l'ensemble "
+-#~ "du système de fichier au prochain démarrage. Le ré-étiquetage est une "
+-#~ "opération longue dont la durée dépend de la taille de votre système de "
+-#~ "fichiers. Voulez-vous continuer ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Désactiver SELinux exige un redémarrage. Cette opération n'est pas "
+-#~ "recommandée. Si vous décidez plus tard de réactiver SELinux, il faudra "
+-#~ "procéder à un ré-étiquetage du système de fichier. Si vous souhaitez "
+-#~ "seulement voir si SELinux pose un problème sur votre système, vous pouvez "
+-#~ "passer en mode permissif, ce qui permet de journaliser les erreurs sans "
+-#~ "modifier la stratégie SELinux. Le passage en mode permissif ne nécessite "
+-#~ "pas de redémarrage. Voulez-vous continuer malgré tout ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Changer pour une stratégie active va entraîner un ré-étiqutage de "
+-#~ "l'ensemble du système de fichier au prochain démarrage. Le ré-étiquetage "
+-#~ "est une opération longue dont la durée dépend de la taille de votre "
+-#~ "système de fichiers. Voulez-vous continuer ?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c) 2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Ajouter les correspondances utilisateurs - identités SELinux"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Ajouter les ports réseau SELinux"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "Type SELinux"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "TCP\n"
+-#~ "UDP"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Niveau MLS/MCS\n"
+-#~ "SELinux"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Spécification de fichier"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Type de fichier"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "tout fichier\n"
+-#~ "fichier ordinaire\n"
+-#~ "répertoire\n"
+-#~ "périphérique en mode caractères\n"
+-#~ "périphérique en mode block\n"
+-#~ "socket\n"
+-#~ "lien symbolique\n"
+-#~ "tube nommé\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Ajouter une identité SELinux"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Administration SELinux"
+-
+-#~ msgid "Add"
+-#~ msgstr "Ajouter"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Propriétés"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Supprimer"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Sélectionnez l'objet de gestion"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Sélectionnez :</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Mode de protection par défaut du système"
+-
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Mode de protection en vigueur"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Lisää SELinux-käyttäjäassosiaatio"
-+
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Type de stratégie par défaut pour le système : "
+-
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Sélectionnez si vous souhaitez ré-étiqueter l'intégralité du système de "
+-#~ "fichiers au prochain démarrage. Le ré-étiquetage peut prendre un temps "
+-#~ "considérable, qui dépend de la taille de votre système de fichiers. Si "
+-#~ "vous êtes en train de changer de type de stratégie ou si vous passez de « "
+-#~ "désactivé » à « strict », un ré-étiquetage est obligatoire."
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Muokkaa SELinux-käyttäjäassosiaatiota"
-+
-+#: ../gui/system-config-selinux.glade:2219
++msgstr ""
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Ré-étiquetage au prochain redémarrage."
+-
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Faire revenir les réglages booléens à ceux du sytéme par défaut"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Poista SELinux-käyttäjäassosiaatio"
-+
-+#: ../gui/system-config-selinux.glade:2337
++msgstr ""
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Basculer entre les booléens personnalisés et tous les booléens"
+-
+-#~ msgid "Filter"
+-#~ msgstr "Filtre"
+-
+-#~ msgid "Add File Context"
+-#~ msgstr "Ajouter un contexte du fichier"
+-
+-#~ msgid "Modify File Context"
+-#~ msgstr "Modifier le contexte du fichier"
+-
+-#~ msgid "Delete File Context"
+-#~ msgstr "Supprimer un contexte du fichier"
+-
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr ""
+-#~ "Basculer entre les contextes de fichier personnalisés et tous les "
+-#~ "contextes de fichiers"
+-
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Ajouter une correspondance utilisateurs - identités SELinux"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Modifier une correspondance utilisateurs - identités SELinux"
+-
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Supprimer une correspondance utilisateurs - identités SELinux"
+-
+-#~ msgid "Add Translation"
+-#~ msgstr "Ajouter une translation"
+-
+-#~ msgid "Modify Translation"
+-#~ msgstr "Modifier une translation"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "Supprimer une translation"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
++msgstr ""
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Modifier une identité SELinux"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Lisää käyttäjä"
-+
-+#: ../gui/system-config-selinux.glade:2390
++msgstr ""
+-#~ msgid "Add Network Port"
+-#~ msgstr "Ajouter un port réseau"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Muokkaa käyttäjää"
-+
-+#: ../gui/system-config-selinux.glade:2406
++msgstr ""
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Éditer un port réseau"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Poista käyttäjä"
-+
-+#: ../gui/system-config-selinux.glade:2524
++msgstr ""
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Supprimer un port réseau"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
++msgstr ""
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Basculer entre les ports personnalisés et tous les ports"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Générer un module pour une nouvelle stratégie"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
+-#~ msgid "Load policy module"
+-#~ msgstr "Charger un module de stratégie"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Effacer un module de stratégie chargeable"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Activer/désactiver les règles supplémentaires d'audit, qui ne sont "
+-#~ "normalement pas reportées dans les fichiers journaux."
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Niveau de sensibilité"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "L'identité SELinux « %s » est exigée"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Valeur requise"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Permet au modèle d'un utilisateur ou d'un programme de se connecter à "
+-#~ "n'importe quel port TCP > 1024"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Permettre au modèle d'un utilisateur ou d'un programme confiné de se "
+-#~ "connecter à n'importe quel port TCP"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Entrez une liste, séparés par des virgules, ou une plage de ports TCP "
+-#~ "auxquels ce modèle de programme/utilisateur se connecte. "
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Générateur de stratégies SELinux"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Ports non réservés  (> 1024)"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Cochez ce bouton si votre programme appelle « bindresvport » avec 0."
+-
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Strict\n"
+-#~ "Permissif\n"
+-#~ "Désactivé\n"
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/gl.po b/policycoreutils/po/gl.po
+new file mode 100644
+index 0000000..005eac0
+--- /dev/null
++++ b/policycoreutils/po/gl.po
+@@ -0,0 +1,3367 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
++msgid ""
++msgstr ""
++"Project-Id-Version: Policycoreutils\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-03-30 18:14+0000\n"
++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
++"Language-Team: Galician (http://www.transifex.net/projects/p/fedora/language/"
++"gl/)\n"
++"Language: gl\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Lisää käännös"
++#: ../run_init/run_init.c:67
++msgid ""
++"USAGE: run_init <script> <args ...>\n"
++"  where: <script> is the name of the init script to run,\n"
++"         <args ...> are the arguments to that script."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Muokkaa käännöstä"
++#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
++#, c-format
++msgid "failed to initialize PAM\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Poista käännös"
++#: ../run_init/run_init.c:139
++#, c-format
++msgid "failed to get account information\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
++msgid "Password:"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Lisää verkkoportti"
++#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
++#, c-format
++msgid "Cannot find your entry in the shadow passwd file.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Muokkaa verkkoporttia"
++#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
++#, c-format
++msgid "getpass cannot open /dev/tty\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Poista verkkoportti"
++#: ../run_init/run_init.c:275
++#, c-format
++msgid "run_init: incorrect password for %s\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Vaihda muokattujen ja kaikkien porttien välillä"
++#: ../run_init/run_init.c:309
++#, c-format
++msgid "Could not open file %s\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
++#: ../run_init/run_init.c:336
++#, c-format
++msgid "No context in file %s\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Generoi uusi käytäntömoduuli"
++#: ../run_init/run_init.c:361
++#, c-format
++msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Lataa käytäntömoduuli"
++#: ../run_init/run_init.c:380
++#, c-format
++msgid "authentication failed.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Poista ladattava käytäntömoduuli"
++#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
++#, c-format
++msgid "Could not set exec context to %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
++#: ../audit2allow/audit2allow:230
++msgid "******************** IMPORTANT ***********************\n"
 +msgstr ""
-+"Ota käyttöön/poista käytöstä auditin lisäsäännöt, joita ei yleensä "
-+"raportoida lokitiedostoissa."
 +
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
++#: ../audit2allow/audit2allow:231
++msgid "To make this policy package active, execute:"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Vaihda prosessin tila sallivaksi."
++#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
++msgid "global"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Vaihda prosessin tila toimeenpanevaksi."
++#: ../semanage/seobject.py:222
++msgid "Could not create semanage handle"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Prosessin toimialue"
++#: ../semanage/seobject.py:230
++msgid "SELinux policy is not managed or store cannot be accessed."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
++#: ../semanage/seobject.py:235
++msgid "Cannot read policy store."
++msgstr ""
 +
-+#: ../gui/usersPage.py:138
++#: ../semanage/seobject.py:240
++msgid "Could not establish semanage connection"
++msgstr ""
++
++#: ../semanage/seobject.py:245
++msgid "Could not test MLS enabled status"
++msgstr ""
++
++#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
++msgid "Not yet implemented"
++msgstr ""
++
++#: ../semanage/seobject.py:255
++msgid "Semanage transaction already in progress"
++msgstr ""
++
++#: ../semanage/seobject.py:264
++msgid "Could not start semanage transaction"
++msgstr ""
++
++#: ../semanage/seobject.py:274
++msgid "Could not commit semanage transaction"
++msgstr ""
++
++#: ../semanage/seobject.py:279
++msgid "Semanage transaction not in progress"
++msgstr ""
++
++#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
++msgid "Could not list SELinux modules"
++msgstr ""
++
++#: ../semanage/seobject.py:304
++msgid "Modules Name"
++msgstr ""
++
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
++msgid "Version"
++msgstr ""
++
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
++msgid "Disabled"
++msgstr ""
++
++#: ../semanage/seobject.py:322
 +#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux-käyttäjä ”%s” on pakollinen"
++msgid "Could not disable module %s (remove failed)"
++msgstr ""
 +
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Herkkyystaso"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils-2.0.85/po/fr.po
---- nsapolicycoreutils/po/fr.po        2011-02-17 15:11:25.965720995 -0500
-+++ policycoreutils-2.0.85/po/fr.po    2011-02-18 16:03:41.366975730 -0500
-@@ -1,22 +1,43 @@
--# translation of policycoreutils.HEAD.fr_modifié(1).po to french
--# Thomas Canniot <mrtom@fedoraproject.org>, 2006.
-+# translation of policycoreutils.HEAD.fr.po to French
-+# Thomas Canniot <mrtom@fedoraproject.org>, 2006, 2010.
- # Alain PORTAL <aportal@univ-montp2.fr>, 2007.
- # Gauthier Ancelin <gauthier.ancelin@laposte.net>, 2007.
- # Matthieu Rondeau <milanito1985@yahoo.fr>, 2008.
-+# Charles-Antoine Couret <cacouret@wanadoo.fr>, 2009.
-+# Sam Friedmann <sam.friedmann@redhat.com>, 2010.
- # translation of Policy Core Utils.
--# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
-+# Copyright (C) 2006, 2007, 2008, 2010 Free Software Foundation, Inc.
- msgid ""
- msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.fr_modifié(1)\n"
-+"Project-Id-Version: policycoreutils.HEAD.fr\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-05 22:13+0200\n"
--"Last-Translator: Matthieu Rondeau <milanito1985@yahoo.fr>\n"
--"Language-Team: french <fedora-trans-fr@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-04 12:16+1000\n"
-+"Last-Translator: Sam Friedmann <sam.friedmann@redhat.com>\n"
-+"Language-Team: French <trans-fr@lists.fedoraproject.org>\n"
-+"Language: fr\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
++#: ../semanage/seobject.py:333
++#, python-format
++msgid "Could not enable module %s (remove failed)"
++msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configure SELinux dans un environnement graphique"
++#: ../semanage/seobject.py:348
++#, python-format
++msgid "Could not remove module %s (remove failed)"
++msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Gestion de SELinux"
++#: ../semanage/seobject.py:358
++msgid "dontaudit requires either 'on' or 'off'"
++msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Génére des modules de stratégie SELinux"
++#: ../semanage/seobject.py:387
++msgid "Builtin Permissive Types"
++msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Outil de génération de stratégies SELinux"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -52,7 +73,7 @@
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
- msgid "getpass cannot open /dev/tty\n"
--msgstr "getpass ne peut accéder à  /dev/tty\n"
-+msgstr "getpass ne peut accéder à  /dev/tty\n"
- #: ../run_init/run_init.c:275
- #, c-format
-@@ -109,9 +130,8 @@
- msgstr "Impossible d'établir de connexion semanage"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Impossible de définir une plage MLS pour %s"
-+msgstr "Impossible de tester les statuts MLS activés"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -121,14 +141,15 @@
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Impossible d'ouvrir %s : Les translations ne sont pas supportées par des "
--"machines non MLS : %s"
-+"Impossible d'ouvrir %s : Les translations ne sont pas prises en charge par "
-+"des machines non MLS : %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "Niveau"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Translation"
-@@ -145,7 +166,7 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s est déjà  défini dans les translations"
-+msgstr "%s est déjà  défini dans les translations"
- #: ../semanage/seobject.py:265
- #, python-format
-@@ -158,781 +179,786 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Transaction de semanage déjà en cours"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "Impossible de démarrer une transaction semanage"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Impossible de démarrer une transaction semanage"
-+msgstr "Impossible de commiter une transaction semanage"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Aucune transaction semanage en cours"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "Impossible de lister les identités SELinux"
-+msgstr "Impossible de lister les modules SELinux"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "Permissif"
-+msgstr "Types permissifs"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Impossible de définir le domaine permissif %s (échec de l'installation du "
-+"module)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
-+"Impossible de supprimer le domaine permissif %s (échec de la suppression)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Impossible de créer une clef pour %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Ne peut vérifier si le mappage de connexion est défini pour %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "Mappage pour %s est déjà  défini"
-+msgstr "Mappage pour %s est déjà  défini"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
++#: ../semanage/seobject.py:397
++msgid "Customized Permissive Types"
++msgstr ""
++
++#: ../semanage/seobject.py:438
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "L'utilisateur Linux %s n'existe pas"
-+msgstr "Le groupe Linux %s n'existe pas"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "L'utilisateur Linux %s n'existe pas"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Ne peut mapper le nom d'utilisateur pour %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Impossible de définir le nom pour %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Impossible de définir une plage MLS pour %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Impossible de définir une identité SELinux pour %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Impossible d'ajouter un mappage pour %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "ajouter la correspondance utilisateurs - identités SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser ou un serange obligatoire"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Le mappage de connexion pour %s n'est pas défini"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Impossible d'interroger le seuser pour %s"
--#: ../semanage/seobject.py:496
++msgid "Could not set permissive domain %s (module installation failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:444
++#, python-format
++msgid "Could not remove permissive domain %s (remove failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
++#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
++#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
++#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
++#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
++#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
++#: ../semanage/seobject.py:2037
++#, python-format
++msgid "Could not create a key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
++#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
++#, python-format
++msgid "Could not check if login mapping for %s is defined"
++msgstr ""
++
 +#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Impossible de modifier le mappage pour %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "La correspondance utilisateurs - identités SELinux pour %s est définie dans "
- "une stratégie, elle ne peut être supprimée"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
- "Impossible de supprimer la correspondance utilisateurs - identités SELinux "
- "pour %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Impossible de lister les mappages"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "Nom pour l'ouverture de session"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "Identité SELinux"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "Intervalle MLS/MCS"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Impossible d'ajouter le contexte du fichier pour %s"
-+msgstr "Vous devez ajouter au moins un rôle pour %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Impossible de vérifier si l'identité SELinux %s est définie"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr "L'identité SELinux %s est déjà  définie"
-+msgstr "L'identité SELinux %s est déjà  définie"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Impossible de créer une identité SELinux pour %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Impossible d'ajouter un rôle %s pour %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Impossible de régler le niveau MLS pour %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr "Impossible d'ajouter le préfixe %s à  %s"
-+msgstr "Impossible d'ajouter le préfixe %s à  %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Impossible d'extraire la clef pour %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Impossible d'ajouter l'identité SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Exige un préfixe, un rôle, un niveau ou une plage"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Exige un préfixe ou un rôle"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "L'identité SELinux %s n'existe pas"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Impossible d'interroger l'utilisateur pour %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Impossible de modifier l'identité SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "L'identité SELinux %s est définie dans une stratégie, elle ne peut être "
- "supprimée"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Impossible de supprimer l'identité SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Impossible de lister les identités SELinux"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Impossible de lister les rôles de l'utilisateur %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Étiquetage"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Préfixe"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "Niveau MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "Intervalle MCS"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "Rôles SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Protocole udp ou tcp obligatoire"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Un numéro de port nécessaire"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Impossible de créer une clef pour %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Indiquez un type"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Impossible de vérifier si le port %s/%s est défini"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Le port %s/%s est déjà défini"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Impossible de créer le port pour %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Impossible de créer le contexte pour %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
- "Impossible de définir l'utilisateur dans le contexte du port pour %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Impossible de définir le rôle dans le contexte du port pour %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Impossible de définir le type dans le contexte du port pour %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
- "Impossible de définir les champs MLS dans le contexte du port pour %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Impossible de définir le contexte du port pour %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Impossible d'ajouter le port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype ou serange obligatoire"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype obligatoire"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Le port %s/%s n'est pas défini"
--#: ../semanage/seobject.py:897
++msgid "Linux Group %s does not exist"
++msgstr ""
++
++#: ../semanage/seobject.py:497
++#, python-format
++msgid "Linux User %s does not exist"
++msgstr ""
++
++#: ../semanage/seobject.py:501
++#, python-format
++msgid "Could not create login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
++#, python-format
++msgid "Could not set name for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
++#, python-format
++msgid "Could not set MLS range for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:514
++#, python-format
++msgid "Could not set SELinux user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:518
++#, python-format
++msgid "Could not add login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:536
++msgid "Requires seuser or serange"
++msgstr ""
++
++#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
++#, python-format
++msgid "Login mapping for %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:563
++#, python-format
++msgid "Could not query seuser for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:577
++#, python-format
++msgid "Could not modify login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:611
++#, python-format
++msgid "Login mapping for %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:615
++#, python-format
++msgid "Could not delete login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
 +#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Impossible d'interroger le port %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Impossible de modifier le port %s/%s"
--#: ../semanage/seobject.py:921
++msgid "Could not list login mappings"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
++msgid "Login Name"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
++msgid "SELinux User"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
++msgid "MLS/MCS Range"
++msgstr ""
++
++#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
++#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
++#: ../semanage/seobject.py:860
++#, python-format
++msgid "Could not check if SELinux user %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
++#: ../semanage/seobject.py:866
++#, python-format
++msgid "Could not query user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:722
++#, python-format
++msgid "You must add at least one role for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:737
++#, python-format
++msgid "Could not create SELinux user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:746
++#, python-format
++msgid "Could not add role %s for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:755
++#, python-format
++msgid "Could not set MLS level for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:758
++#, python-format
++msgid "Could not add prefix %s for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:761
++#, python-format
++msgid "Could not extract key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:765
++#, python-format
++msgid "Could not add SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:787
++msgid "Requires prefix, roles, level or range"
++msgstr ""
++
++#: ../semanage/seobject.py:789
++msgid "Requires prefix or roles"
++msgstr ""
++
++#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
++#, python-format
++msgid "SELinux user %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:828
++#, python-format
++msgid "Could not modify SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:862
++#, python-format
++msgid "SELinux user %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:873
++#, python-format
++msgid "Could not delete SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:911
++msgid "Could not list SELinux users"
++msgstr ""
++
 +#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Impossible d'énumérer les ports"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "Impossible de supppimer le port %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Le port %s/%s est défini dans la stratégie, il ne peut être supprimé"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Impossible de supprimer le port %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Impossible d'énumérer les ports"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "Types de port SELinux"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "Protocole"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "Numéro de port"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "Un numéro de port nécessaire"
-+msgstr "L'adresse du nœud est requise"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Un numéro de port nécessaire"
-+msgstr "Le masque de réseau du nœud est requis"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "Protocole inconnu ou manquant"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Type SELinux nécessaire"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Impossible de créer la clef pour %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Impossible de vérifier si le port %s/%s est défini"
-+msgstr "Impossible de vérifier si l'adresse %s est définie"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
++msgid "Could not list roles for user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:942
++msgid "Labeling"
++msgstr ""
++
++#: ../semanage/seobject.py:942
++msgid "MLS/"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "Prefix"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "MCS Level"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "MCS Range"
++msgstr ""
++
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
++msgid "SELinux Roles"
++msgstr ""
++
++#: ../semanage/seobject.py:963
++msgid "Protocol udp or tcp is required"
++msgstr ""
++
++#: ../semanage/seobject.py:965
++msgid "Port is required"
++msgstr ""
++
++#: ../semanage/seobject.py:975
++msgid "Invalid Port"
++msgstr ""
++
++#: ../semanage/seobject.py:979
 +#, python-format
- msgid "Addr %s already defined"
--msgstr "Le port %s/%s est déjà défini"
-+msgstr "L'adresse %s est déjà définie"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
++msgid "Could not create a key for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:990
++msgid "Type is required"
++msgstr ""
++
++#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
++#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
 +#, python-format
- msgid "Could not create addr for %s"
--msgstr "Impossible de créer une clef pour %s"
-+msgstr "Impossible de créer une adresse pour %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Impossible de créer le contexte pour %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
++msgid "Could not check if port %s/%s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:998
 +#, python-format
- msgid "Could not set mask for %s"
--msgstr "Impossible de définir le nom pour %s"
-+msgstr "Impossible de définir le masque pour %s"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
++msgid "Port %s/%s already defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1002
 +#, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--"Impossible de définir l'utilisateur dans le contexte du fichier pour %s"
-+"Impossible de définir l'utilisateur dans le contexte de l'adresse pour %s"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
++msgid "Could not create port for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1008
 +#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Impossible de définir le rôle dans le contexte du fichier pour %s"
-+msgstr "Impossible de définir le rôle dans le contexte de l'adresse pour %s"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
++msgid "Could not create context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1012
 +#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Impossible de définir le type dans le contexte du fichier pour %s"
-+msgstr "Impossible de définir le type dans le contexte de l'adresse pour %s"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
++msgid "Could not set user in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1016
 +#, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--"Impossible de définir les champs MLS dans le contexte du fichier pour %s"
-+"Impossible de définir les champs MLS dans le contexte de l'adresse pour %s"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
++msgid "Could not set role in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1020
 +#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Impossible de définir le contexte du fichier %s"
-+msgstr "Impossible de définir le contexte de l'adresse pour %s"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
++msgid "Could not set type in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1025
 +#, python-format
- msgid "Could not add addr %s"
--msgstr "Impossible d'ajouter le port %s/%s"
-+msgstr "Impossible d'ajouter l'adresse %s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
++msgid "Could not set mls fields in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1029
 +#, python-format
- msgid "Addr %s is not defined"
--msgstr "Le port %s/%s n'est pas défini"
-+msgstr "L'adresse %s n'est pas définie"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
++msgid "Could not set port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1033
 +#, python-format
- msgid "Could not query addr %s"
--msgstr "Impossible d'interroger le port %s/%s"
-+msgstr "Impossible d'interroger l'adresse %s"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
++msgid "Could not add port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
++#: ../semanage/seobject.py:1508
++msgid "Requires setype or serange"
++msgstr ""
++
++#: ../semanage/seobject.py:1049
++msgid "Requires setype"
++msgstr ""
++
++#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
 +#, python-format
- msgid "Could not modify addr %s"
--msgstr "Impossible de modifier le port %s/%s"
-+msgstr "Impossible de modifier l'adresse %s"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
++msgid "Port %s/%s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1061
 +#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Le port %s/%s est défini dans la stratégie, il ne peut être supprimé"
++msgid "Could not query port %s/%s"
 +msgstr ""
-+"L'adresse %s est définie dans la stratégie, elle ne peut être supprimée"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
++
++#: ../semanage/seobject.py:1072
 +#, python-format
- msgid "Could not delete addr %s"
--msgstr "Impossible de supprimer %s"
-+msgstr "Impossible de supprimer l'adresse %s"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Impossible d'énumérer les ports"
-+msgstr "Impossible d'énumérer les adresses"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Impossible de vérifier si l'interface %s existe"
--#: ../semanage/seobject.py:1266
++msgid "Could not modify port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1085
++msgid "Could not list the ports"
++msgstr ""
++
++#: ../semanage/seobject.py:1101
++#, python-format
++msgid "Could not delete the port %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1118
++#, python-format
++msgid "Port %s/%s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1122
++#, python-format
++msgid "Could not delete port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
++msgid "Could not list ports"
++msgstr ""
++
++#: ../semanage/seobject.py:1199
++msgid "SELinux Port Type"
++msgstr ""
++
++#: ../semanage/seobject.py:1199
++msgid "Proto"
++msgstr ""
++
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
++msgid "Port Number"
++msgstr ""
++
++#: ../semanage/seobject.py:1218
++msgid "Node Address is required"
++msgstr ""
++
++#: ../semanage/seobject.py:1233
++msgid "Unknown or missing protocol"
++msgstr ""
++
++#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
++#: ../semanage/seobject.py:1724
++msgid "SELinux Type is required"
++msgstr ""
++
++#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
++#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
++#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
++#: ../semanage/seobject.py:1728
++#, python-format
++msgid "Could not create key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
++#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
++#, python-format
++msgid "Could not check if addr %s is defined"
++msgstr ""
++
 +#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr "L'interface %s existe déjà "
-+msgstr "L'interface %s existe déjà "
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Impossible de créer l'interface pour %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
- "Impossible de définir l'utilisateur dans le contexte d'interface pour %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Impossible de définir le rôle dans le contexte d'interface pour %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Impossible de définir le type dans le contexte d'interface pour %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
- "Impossible de définir les champs MLS dans le contexte d'interface pour %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Impossible de définir le contexte d'interface pour %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Impossible de définir le contexte du message pour %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Impossible d'ajouter l'interface %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "L'interface %s n'est pas définie"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Impossible d'interroger l'interface %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Impossible de modifier l'interface %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
- "L'interface %s est définie dans la stratégie, elle ne peut être supprimée"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Impossible de supprimer l'interface %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Impossible d'énumérer les interfaces"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "Interface SELinux"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Contexte"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
- "Impossible de définir l'utilisateur dans le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Impossible de définir le rôle dans le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
- "Impossible de définir les champs MLS dans le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "Spécification de fichier invalide"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Impossible de vérifier si le contexte du fichier pour %s est défini"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Le contexte du fichier pour %s est déjà défini"
--#: ../semanage/seobject.py:1465
++#, python-format
++msgid "Could not create addr for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
++#: ../semanage/seobject.py:1686
++#, python-format
++msgid "Could not create context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1272
++#, python-format
++msgid "Could not set mask for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1276
++#, python-format
++msgid "Could not set user in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1280
++#, python-format
++msgid "Could not set role in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1284
++#, python-format
++msgid "Could not set type in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1289
++#, python-format
++msgid "Could not set mls fields in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1293
++#, python-format
++msgid "Could not set addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1297
++#, python-format
++msgid "Could not add addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
++#, python-format
++msgid "Addr %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1326
++#, python-format
++msgid "Could not query addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1336
++#, python-format
++msgid "Could not modify addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1364
++#, python-format
++msgid "Addr %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1368
++#, python-format
++msgid "Could not delete addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1380
++msgid "Could not deleteall node mappings"
++msgstr ""
++
++#: ../semanage/seobject.py:1394
++msgid "Could not list addrs"
++msgstr ""
++
++#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
++#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
++#, python-format
++msgid "Could not check if interface %s is defined"
++msgstr ""
++
 +#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Impossible de créer le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Impossible de définir le type dans le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Impossible de définir le contexte du fichier %s"
--#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not create interface for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1470
++#, python-format
++msgid "Could not set user in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1474
++#, python-format
++msgid "Could not set role in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1478
++#, python-format
++msgid "Could not set type in interface context for %s"
++msgstr ""
++
 +#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Impossible d'ajouter le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange ou seuser nécessaire"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Le contexte du fichier pour %s n'est pas défini"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Impossible d'interroger le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Impossible de modifier le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "Impossible d'énumérer les contextes de fichiers"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "Impossible de supprimer le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1592
++#, python-format
++msgid "Could not set mls fields in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not set interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1491
++#, python-format
++msgid "Could not set message context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1495
++#, python-format
++msgid "Could not add interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
++#, python-format
++msgid "Interface %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1522
++#, python-format
++msgid "Could not query interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1533
++#, python-format
++msgid "Could not modify interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1558
++#, python-format
++msgid "Interface %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1562
++#, python-format
++msgid "Could not delete interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1574
++msgid "Could not delete all interface  mappings"
++msgstr ""
++
 +#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Le contexte du fichier pour %s est défini dans la stratégie, il ne peut être "
- "supprimé"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Impossible de supprimer le contexte du fichier pour %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Impossible de lister les contextes de fichiers"
--#: ../semanage/seobject.py:1617
++msgid "Could not list interfaces"
++msgstr ""
++
 +#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Impossible de lister les contextes de fichiers locaux"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "contexte fichier SELinux"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "type"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Impossible de vérifier si le booléen %s est défini"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Le booléen %s n'est pas défini"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Impossible d'interroger le contexte du fichier %s"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
++msgid "SELinux Interface"
++msgstr ""
++
++#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
++msgid "Context"
++msgstr ""
++
++#: ../semanage/seobject.py:1663
 +#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Vous devez spécifier une valeur"
-+msgstr "Vous devez spécifier une des valeurs suivantes : %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
++msgid "Equivalence class for %s already exists"
++msgstr ""
++
++#: ../semanage/seobject.py:1669
 +#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Impossible de supprimer le booléen %s"
-+msgstr "Impossible de définir une valeur active du booléen %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Impossible de modifier les booléens %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Mauvais format %s : Enregistrement de %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Le booléen %s est défini dans la stratégie, il ne peut être supprimé"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Impossible de supprimer le booléen %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Impossible d'énumérer les booléens"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "inconnu"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "fermé"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ouvert"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "booléen SELinux"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "Description"
-@@ -974,9 +1000,9 @@
- msgstr "Impossible de nettoyer l'environnement\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
++msgid "File spec %s conflicts with equivalency rule '%s %s'"
++msgstr ""
++
++#: ../semanage/seobject.py:1678
++#, python-format
++msgid "Equivalence class for %s does not exists"
++msgstr ""
++
++#: ../semanage/seobject.py:1692
++#, python-format
++msgid "Could not set user in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1696
++#, python-format
++msgid "Could not set role in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
++#, python-format
++msgid "Could not set mls fields in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1707
++msgid "Invalid file specification"
++msgstr ""
++
++#: ../semanage/seobject.py:1709
++msgid "File specification can not include spaces"
++msgstr ""
++
++#: ../semanage/seobject.py:1714
++#, python-format
++msgid ""
++"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
++msgstr ""
++
++#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
++#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
++#: ../semanage/seobject.py:1876
++#, python-format
++msgid "Could not check if file context for %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1745
++#, python-format
++msgid "Could not create file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1753
++#, python-format
++msgid "Could not set type in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
++#: ../semanage/seobject.py:1822
++#, python-format
++msgid "Could not set file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1767
++#, python-format
++msgid "Could not add file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1781
++msgid "Requires setype, serange or seuser"
++msgstr ""
++
++#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
++#, python-format
++msgid "File context for %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1800
++#, python-format
++msgid "Could not query file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1826
++#, python-format
++msgid "Could not modify file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1839
++msgid "Could not list the file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1853
++#, python-format
++msgid "Could not delete the file context %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1878
++#, python-format
++msgid "File context for %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1884
++#, python-format
++msgid "Could not delete file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1899
++msgid "Could not list file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1903
++msgid "Could not list local file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1936
++msgid "SELinux fcontext"
++msgstr ""
++
++#: ../semanage/seobject.py:1936
++msgid "type"
++msgstr ""
++
++#: ../semanage/seobject.py:1949
++msgid ""
++"\n"
++"SELinux Distribution fcontext Equivalence \n"
++msgstr ""
++
++#: ../semanage/seobject.py:1954
++msgid ""
++"\n"
++"SELinux Local fcontext Equivalence \n"
++msgstr ""
++
++#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
++#: ../semanage/seobject.py:2046
++#, python-format
++msgid "Could not check if boolean %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
++#, python-format
++msgid "Boolean %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1994
++#, python-format
++msgid "Could not query file context %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1999
++#, python-format
++msgid "You must specify one of the following values: %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2004
++#, python-format
++msgid "Could not set active value of boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2007
++#, python-format
++msgid "Could not modify boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2025
++#, python-format
++msgid "Bad format %s: Record %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2048
++#, python-format
++msgid "Boolean %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:2052
++#, python-format
++msgid "Could not delete boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
++msgid "Could not list booleans"
++msgstr ""
++
++#: ../semanage/seobject.py:2104
++msgid "unknown"
++msgstr ""
++
++#: ../semanage/seobject.py:2117
++msgid "off"
++msgstr ""
++
++#: ../semanage/seobject.py:2117
++msgid "on"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "SELinux boolean"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "State"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "Default"
++msgstr ""
++
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
++msgid "Description"
++msgstr ""
++
++#: ../newrole/newrole.c:201
 +#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Erreur lors de l'initialisation des capacités, abandon\n"
-+msgstr "Erreur lors de l'initialisation des capacités, abandon.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1243,7 +1269,7 @@
- #: ../scripts/chcat:110
- #, c-format
- msgid "%s is already in %s"
--msgstr "%s se trouve déjà  dans %s"
-+msgstr "%s se trouve déjà  dans %s"
- #: ../scripts/chcat:188 ../scripts/chcat:198
- #, c-format
-@@ -1315,1751 +1341,2264 @@
- msgid "Options Error %s "
- msgstr "Erreur %s dans les options"
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "translations non prises en charge sur une machine non MLS"
--
--#~ msgid "Boolean"
--#~ msgstr "Booléen"
--
--#~ msgid "all"
--#~ msgstr "tout"
--
--#~ msgid "Customized"
--#~ msgstr "Personnalisé"
--
--#~ msgid "File Labeling"
--#~ msgstr "Étiquetage de fichier"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Fichier\n"
--#~ "Spécification"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "Contexte du fichier"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Fichier\n"
--#~ "Type"
--
--#~ msgid "User Mapping"
--#~ msgstr "Correspondance utilisateur"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Utilisateur\n"
--#~ "Nom"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "Identité"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "Plage MLS/\n"
--#~ "MCS"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "L'ouverture de session en tant que « %s » est exigée"
--
--#~ msgid "Policy Module"
--#~ msgstr "Module de stratégies"
--
--#~ msgid "Module Name"
--#~ msgstr "Nom du module"
--
--#~ msgid "Version"
--#~ msgstr "Version"
--
--#~ msgid "Disable Audit"
--#~ msgstr "Désactiver l'audit"
--
--#~ msgid "Enable Audit"
--#~ msgstr "Activer l'audit"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "Charger un module de stratégie"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "traducteurs"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Outil de génération de stratégies SELinux"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "Cet outil peut être utilisé pour générer un modèle de stratégie, pour "
--#~ "confiner des applications ou des utilisateurs qui se servent de SELinux.\n"
--#~ "\n"
--#~ "L'outil génère :\n"
--#~ "un fichier de types applicables (te)\n"
--#~ "un fichier d'interfaces (if)\n"
--#~ "un fichier de contextes fichiers (fc)\n"
--#~ "un script shell (sh) - utilisé pour compiler et installer la stratégie. "
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Programmes</b>"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "Les démons d'initialisation standards sont des démons chargés au "
--#~ "démarrage par les scripts d'initialisation. Ils requièrent habituellement "
--#~ "un script placé dans /etc/init.d"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Démons d'initialisation standards"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Les démons de services Internet sont des démons démarrés par xinetd"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Démons de services Internet (inetd)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "Applications Web / script (CGI) Scripts SGI démarrés par le serveur web "
--#~ "(Apache)"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Applications Web / scripts (CGI)"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "Un programme utilisateur correspond à tout programme que vous aimeriez "
--#~ "confiner et qui peut être démarré par un utilisateur"
--
--#~ msgid "User Application"
--#~ msgstr "Programme utilisateur"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Identifiant de connexion</b>"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "Modifier un enregistrement existant d'ouverture de session"
--
--#~ msgid "Existing User Roles"
--#~ msgstr "Modèles d'utilisateurs existant"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "Cet utilisateur va ouvrir une session sur une machine seulement par un "
--#~ "terminal ou une connexion à distance. Par défaut cet utilisateur n'aura "
--#~ "pas de propriété setuid, pas de réseautage, pas de commandes sudo et su."
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Modèle minimal de terminal utilisateur"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "Cet utilisateur peut ouvrir une session sur une machine par X ou par un "
--#~ "terminal. Par défaut cet utilisateur n'aura pas de propriété setuid, pas "
--#~ "de réseautage, pas de commandes sudo et su."
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Modèle minimal de serveur X utilisateur"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "Utilisateur avec un réseautage complet, pas de propriété setuid sans "
--#~ "transition, pas de commandes sudo et su."
--
--#~ msgid "User Role"
--#~ msgstr "Modèle d'utilisateur"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "Utilisateur avec un réseautage complet, pas d'application setuid sans "
--#~ "transition, pas de commande su, pouvant utiliser la commande sudo pour "
--#~ "les tâches administratives réservées au Root"
--
--#~ msgid "Admin User Role"
--#~ msgstr "Rôle de l'administrateur"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Utilisateurs root</b>"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "Sélectionner le rôle d'utilisateur root, si cet utilisateur doit "
--#~ "administrer la machine en tant que root. Cet utilisateur ne pourra pas "
--#~ "ouvrir de session sur le système directement."
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "Modèle d'utilisateur root"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
--
--#~ msgid "Name"
--#~ msgstr "Nom"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Entrez le chemin d'accès aux exécutables à confiner."
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Entrer un nom de type unique pour le modèle d'utilisateur ou de programme "
--#~ "à confiner."
--
--#~ msgid "Executable"
--#~ msgstr "Exécutable"
--
--#~ msgid "Init script"
--#~ msgstr "Script d'initialisation"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "Entrez le chemin d'accès complet au script d'initialisation utilisé pour "
--#~ "démarrer le programme confiné."
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Sélectionnez les rôles d'utilisateur que vous voulez personnaliser"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "Sélectionnez le modèle d'utilisateur qui va faire la transition aux "
--#~ "domaines de cette application"
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr ""
--#~ "Sélectionner le(s) domaine(s) supplémentaire(s) de l'utilisateur pour la "
--#~ "transition"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "Sélectionner les domaines des applications vers lesquels vous souhaitez "
--#~ "que ce modèle d'utilisateur effectue une transition."
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr ""
--#~ "Sélectionnez le modèle d'utilisateur qui va faire la transition de ce "
--#~ "domaine"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr ""
--#~ "Sélectionner le(s) domaine(s) additionnel(s) que cet utilisateur "
--#~ "administrera"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr ""
--#~ "Sélectionner les domaines qui doivent être administrés par cet "
--#~ "utilisateur."
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Sélectionner les rôles supplémentaires de cet utilisateur"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "Entrez les ports réseau que ce modèle d'application/utilisateur écoute"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>Ports TCP</b>"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "Permettre au modèle d'un utilisateur/programme confiné de se connecter à "
--#~ "n'importe quel port UDP"
--
--#~ msgid "All"
--#~ msgstr "Tout"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "Permettre au modèle d'un utilisateur/programme d'appeler « bindresvport » "
--#~ "avec 0. Connexion aux ports 600-1024"
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++msgid "failed to set PAM_TTY\n"
++msgstr ""
++
++#: ../newrole/newrole.c:290
++#, c-format
++msgid "newrole: service name configuration hashtable overflow\n"
++msgstr ""
++
++#: ../newrole/newrole.c:300
++#, c-format
++msgid "newrole:  %s:  error on line %lu.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:439
++#, c-format
++msgid "cannot find valid entry in the passwd file.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:450
++#, c-format
++msgid "Out of memory!\n"
++msgstr ""
++
++#: ../newrole/newrole.c:455
++#, c-format
++msgid "Error!  Shell is not valid.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:512
++#, c-format
++msgid "Unable to clear environment\n"
++msgstr ""
++
++#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
++#, c-format
++msgid "Error changing uid, aborting.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:612
++#, c-format
++msgid "Error resetting KEEPCAPS, aborting\n"
++msgstr ""
++
++#: ../newrole/newrole.c:635
++#, c-format
++msgid "Error connecting to audit system.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:641
++#, c-format
++msgid "Error allocating memory.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:648
++#, c-format
++msgid "Error sending audit message.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
++#, c-format
++msgid "Could not determine enforcing mode.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:699
++#, c-format
++msgid "Error!  Could not open %s.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:705
++#, c-format
++msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:715
++#, c-format
++msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:725
++#, c-format
++msgid "%s!  Could not set new context for %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:772
++#, c-format
++msgid "%s changed labels.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:778
++#, c-format
++msgid "Warning! Could not restore context for %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:835
++#, c-format
++msgid "Error: multiple roles specified\n"
++msgstr ""
++
++#: ../newrole/newrole.c:843
++#, c-format
++msgid "Error: multiple types specified\n"
++msgstr ""
++
++#: ../newrole/newrole.c:850
++#, c-format
++msgid "Sorry, -l may be used with SELinux MLS support.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:855
++#, c-format
++msgid "Error: multiple levels specified\n"
++msgstr ""
++
++#: ../newrole/newrole.c:865
++#, c-format
++msgid "Error: you are not allowed to change levels on a non secure terminal \n"
++msgstr ""
++
++#: ../newrole/newrole.c:891
++#, c-format
++msgid "Couldn't get default type.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:901
++#, c-format
++msgid "failed to get new context.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:908
++#, c-format
++msgid "failed to set new role %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:915
++#, c-format
++msgid "failed to set new type %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:925
++#, c-format
++msgid "failed to build new range with level %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:930
++#, c-format
++msgid "failed to set new range %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:938
++#, c-format
++msgid "failed to convert new context to string\n"
++msgstr ""
++
++#: ../newrole/newrole.c:943
++#, c-format
++msgid "%s is not a valid context\n"
++msgstr ""
++
++#: ../newrole/newrole.c:950
++#, c-format
++msgid "Unable to allocate memory for new_context"
++msgstr ""
++
++#: ../newrole/newrole.c:976
++#, c-format
++msgid "Unable to obtain empty signal set\n"
++msgstr ""
++
++#: ../newrole/newrole.c:984
++#, c-format
++msgid "Unable to set SIGHUP handler\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1053
++#, c-format
++msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1070
++#, c-format
++msgid "failed to get old_context.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1077
++#, c-format
++msgid "Warning!  Could not retrieve tty information.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1098
++#, c-format
++msgid "error on reading PAM service configuration.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1133
++#, c-format
++msgid "newrole: incorrect password for %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1160
++#, c-format
++msgid "newrole: failure forking: %s"
++msgstr ""
++
++#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
++#, c-format
++msgid "Unable to restore tty label...\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
++#, c-format
++msgid "Failed to close tty properly\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1224
++#, c-format
++msgid "Could not close descriptors.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1251
++#, c-format
++msgid "Error allocating shell's argv0.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1287
++#, c-format
++msgid "Unable to restore the environment, aborting\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1298
++msgid "failed to exec shell\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:22
++#, c-format
++msgid "usage:  %s [-qi]\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:71
++#, c-format
++msgid "%s:  Policy is already loaded and initial load requested\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:80
++#, c-format
++msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:90
++#, c-format
++msgid "%s:  Can't load policy:  %s\n"
++msgstr ""
++
++#: ../scripts/chcat:92 ../scripts/chcat:169
++msgid "Requires at least one category"
++msgstr ""
++
++#: ../scripts/chcat:106 ../scripts/chcat:183
++#, c-format
++msgid "Can not modify sensitivity levels using '+' on %s"
++msgstr ""
++
++#: ../scripts/chcat:110
++#, c-format
++msgid "%s is already in %s"
++msgstr ""
++
++#: ../scripts/chcat:188 ../scripts/chcat:198
++#, c-format
++msgid "%s is not in %s"
++msgstr ""
++
++#: ../scripts/chcat:267 ../scripts/chcat:272
++msgid "Can not combine +/- with other types of categories"
++msgstr ""
++
++#: ../scripts/chcat:319
++msgid "Can not have multiple sensitivities"
++msgstr ""
++
++#: ../scripts/chcat:325
++#, c-format
++msgid "Usage %s CATEGORY File ..."
++msgstr ""
++
++#: ../scripts/chcat:326
++#, c-format
++msgid "Usage %s -l CATEGORY user ..."
++msgstr ""
++
++#: ../scripts/chcat:327
++#, c-format
++msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
++msgstr ""
++
++#: ../scripts/chcat:328
++#, c-format
++msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
++msgstr ""
++
++#: ../scripts/chcat:329
++#, c-format
++msgid "Usage %s -d File ..."
++msgstr ""
++
++#: ../scripts/chcat:330
++#, c-format
++msgid "Usage %s -l -d user ..."
++msgstr ""
++
++#: ../scripts/chcat:331
++#, c-format
++msgid "Usage %s -L"
++msgstr ""
++
++#: ../scripts/chcat:332
++#, c-format
++msgid "Usage %s -L -l user"
++msgstr ""
++
++#: ../scripts/chcat:333
++msgid "Use -- to end option list.  For example"
++msgstr ""
++
++#: ../scripts/chcat:334
++msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
++msgstr ""
++
++#: ../scripts/chcat:335
++msgid "chcat -l +CompanyConfidential juser"
++msgstr ""
++
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
++msgid "Options Error %s "
++msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Booléen"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "tout"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Personnalisé"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Étiquetage de fichier"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
--#~ "auxquels ce modèle programme/utilisateur se connecte. Par exemple : 612, "
--#~ "650-660 "
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Ports non réservés (> 1024)"
--
--#~ msgid "Select Ports"
--#~ msgstr "Sélectionner des ports"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "Permettre au modèle d'un utilisateur/programme de se connecter à "
--#~ "n'importe quel port UDP > 1024"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>Ports UDP</b>"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "Entrez les ports réseau auxquel ce modèle application/utilisateur se "
--#~ "connecte"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
--#~ "auxquels ce modèle de programme/utilisateur se connecte. "
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Entrez une liste de ports UDP séparés par une virgule auxquels ce modèle "
--#~ "programme/utilisateur se connecte. Par exemple : 612, 650-660"
--
--#~ msgid "Select common application traits"
--#~ msgstr "Sélectionner les caractéristiques communes de l'application"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "Le programme utilise syslog pour journaliser des messages\t"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "Créer/manipuler des fichiers temporaires dans /tmp"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "Utilise PAM pour l'authentification"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Utilise les appels nsswitch ou getpw"
--
--#~ msgid "Uses dbus"
--#~ msgstr "Utilise dbus"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "Envoie des messages audit"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "Interagit avec le terminal"
--
--#~ msgid "Sends email"
--#~ msgstr "Envoie un courrier électronique"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Sélectionnez les fichiers/répertoires que le programme gère"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "Ajoutez les fichiers/répertoires dans lesquels ce programme va devoir "
--#~ "écrire. Fichiers PID, fichiers de journalisation, fichiers /var/lib..."
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "Sélectionnez les booléens que le programme utilise"
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "Ajoutez/enlevez les booléens utilisés pour cette application/utilisateur "
--#~ "même"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr ""
--#~ "Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
--
--#~ msgid "Policy Directory"
--#~ msgstr "Répertoire de stratégie"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "Fichiers de stratégie générés"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Cet outil va générer les éléments suivantes : type applicable (TE), "
--#~ "contexte fichier (FC), interface (IF), script shell (SH).\n"
--#~ "Exécutez le script shell pour compiler/installer et re-étiqueter les "
--#~ "fichiers/répertoires.\n"
--#~ "Utilisez \"semanage\" ou \"useradd\" pour organiser les logins "
--#~ "utilisateurs Linux par rapport aux modèles. Passez en mode permissif "
--#~ "(\"setenforce 0).\n"
--#~ "Utilisez « audit2allow -R » pour générer des règles supplémentaires pour "
--#~ "le fichier.\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Cet outil va générer les éléments suivantes : type applicable (TE), "
--#~ "contexte fichier (FC), interface (IF), script shell (SH).\n"
--#~ "Exécutez le script shell pour compiler/installer et re-étiqueter les "
--#~ "fichiers/répertoires. Passez en mode permissif (« setenforce 0 »).\n"
--#~ "Exécutez/redémarrez le programme pour générer les messages AVC.\n"
--#~ "Utilisez « audit2allow -R » pour générer des règles supplémentaires pour "
--#~ "le fichier.\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "Ajout de boite de dialogue de booléens"
--
--#~ msgid "Boolean Name"
--#~ msgstr "Nom de Booléen"
--
--#~ msgid "Role"
--#~ msgstr "Rôle"
--
--#~ msgid "Existing_User"
--#~ msgstr "Utilisateur existant_"
--
--#~ msgid "Application"
--#~ msgstr "Programme"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s doit être un répertoire"
--
--#~ msgid "You must select a user"
--#~ msgstr "Vous devez sélectionner un utilisateur"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Sélectionner les fichiers exécutables à confiner."
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "Sélectionnez le script d'initialisation à confiner."
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr ""
--#~ "Sélectionnez un ou plusieurs fichiers que le programme confiné crée ou "
--#~ "dans lesquels il écrit"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "Sélectionnez les répertoires que le programme confiné possède et dans "
--#~ "lesquels il écrit"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr ""
--#~ "Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Le type %s_t est déjà défini dans la stratégie.\n"
--#~ "Voulez-vous continuer?"
--
--#~ msgid "Verify Name"
--#~ msgstr "Verifiez le nom"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Le module %s.pp est déjà chargé dans la stratégie.\n"
--#~ "Voulez-vous continuer?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "Vous devez spécifier un nom"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "Vous devez spécifier un exécutable"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "Configurer SELinux"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr ""
--#~ "Les ports doivent être des numéros ou des plages compris entre 1 et %d "
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr ""
--#~ "Vous devez spécifier un nom pour votre processus/utilisateur confiné"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Les types USER ne sont pas autorisés à être exécutables"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr ""
--#~ "Seuls les programmes démons peuvent utiliser un script d'initialisation"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "« use_syslog » doit avoir une valeur booléenne "
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Les types USER obtiennent automatiquement un type tmp"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "Vous devez spécifier le chemin d'accès à l'exécutable pour votre "
--#~ "processus confiné"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Fichier\n"
-+"Spécification"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Fichier de types applicables"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"SELinux\n"
-+"Contexte du fichier"
--#~ msgid "Interface file"
--#~ msgstr "Fichier d'interface"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Fichier\n"
-+"Type"
--#~ msgid "File Contexts file"
--#~ msgstr "Fichier de contextes fichier"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Correspondance utilisateur"
--#~ msgid "Setup Script"
--#~ msgstr "Script de configuration"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Utilisateur\n"
-+"Nom"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Port SELinux\n"
--#~ "Type"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"Identité"
--#~ msgid "Protocol"
--#~ msgstr "Protocole"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"Plage MLS/\n"
-+"MCS"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "Niveau"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "L'ouverture de session en tant que « %s » est exigée"
--#~ msgid "Port"
--#~ msgstr "Port"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Module de stratégies"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Le numéro de port « %s » est invalide. 0 < NUMERO_DE_PORT < 65536 "
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Nom du module"
--#~ msgid "List View"
--#~ msgstr "Affichage par liste"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Version"
--#~ msgid "Group View"
--#~ msgstr "Affichage par groupe"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Désactiver l'audit"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Protection des services SELinux"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Activer l'audit"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon « acct »"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Charger un module de stratégie"
--#~ msgid "Admin"
--#~ msgstr "Administrateur"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Permettre à tous les démons d'écrire des vidages mémoires dans /"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "Permettre à tous les démons d'utiliser des TTY non alloués"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "User Privs"
--#~ msgstr "Privilèges utilisateur"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "traducteurs"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « gadmin » d'éxecuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Cet outil peut être utilisé pour générer un modèle de stratégie, pour "
-+"confiner des applications ou des utilisateurs qui se servent de SELinux.\n"
-+"\n"
-+"L'outil génère :\n"
-+"un fichier de types applicables (te)\n"
-+"un fichier d'interfaces (if)\n"
-+"un fichier de contextes fichiers (fc)\n"
-+"un script shell (sh) - utilisé pour compiler et installer la stratégie. "
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Programmes</b>"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « guest » d'éxecuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Les démons d'initialisation standards sont des démons chargés au démarrage "
-+"par les scripts d'initialisation. Ils requièrent habituellement un script "
-+"placé dans /etc/init.d"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Démons d'initialisation standards"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "Démon système DBUS"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Les démons de services Internet sont des démons démarrés par xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Démons de services Internet (inetd)"
--#~ msgid "Memory Protection"
--#~ msgstr "Protection mémoire"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Applications Web / script (CGI) Scripts SGI démarrés par le serveur web "
-+"(Apache)"
--#~ msgid "Allow java executable stack"
--#~ msgstr "Autoriser l'exécution de code dans la pile de Java"
-+#: ../gui/polgen.glade:322
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Applications Web / scripts (CGI)"
--#~ msgid "Mount"
--#~ msgstr "Monter"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Un programme utilisateur correspond à tout programme que vous aimeriez "
-+"confiner et qui peut être démarré par un utilisateur"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Permettre à « mount » de monter n'importe quel fichier"
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Programme utilisateur"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Permettre à « mount » de monter n'importe quel répertoire"
-+#: ../gui/polgen.glade:389
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Identifiant de connexion</b>"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Autoriser l'exécution de code dans la pile de Mplayer"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modifier un enregistrement existant d'ouverture de session"
--#~ msgid "SSH"
--#~ msgstr "SSH"
++msgstr ""
++
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Modèles d'utilisateurs existant"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Permettre à ssh d'exécuter « ssh-keysign »"
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Cet utilisateur va ouvrir une session sur une machine seulement par un "
-+"terminal ou une connexion à distance. Par défaut cet utilisateur n'aura pas "
-+"de propriété setuid, pas de réseautage, pas de commandes sudo et su."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Modèle minimal de terminal utilisateur"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « staff » d'exécuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Cet utilisateur peut ouvrir une session sur une machine par X ou par un "
-+"terminal. Par défaut cet utilisateur n'aura pas de propriété setuid, pas de "
-+"réseautage, pas de commandes sudo et su."
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Modèle minimal de serveur X utilisateur"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « sysadm » d'exécuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Utilisateur avec un réseautage complet, pas de propriété setuid sans "
-+"transition, pas de commandes sudo et su."
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « unconfined » d'exécuter des "
--#~ "fichiers dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Modèle d'utilisateur"
--#~ msgid "Network Configuration"
--#~ msgstr "Configuration réseau"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Utilisateur avec un réseautage complet, pas d'application setuid sans "
-+"transition, pas de commande su, pouvant utiliser la commande sudo pour les "
-+"tâches administratives réservées au Root"
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Rôle de l'administrateur"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Utilisateurs root</b>"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Permettre aux paquets non étiquetés de circuler sur le réseau"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Sélectionner le rôle d'utilisateur root, si cet utilisateur doit administrer "
-+"la machine en tant que root. Cet utilisateur ne pourra pas ouvrir de session "
-+"sur le système directement."
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "Permettre au compte d'identité SELinux « user » d'exécuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:647
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Modèle d'utilisateur root"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr ""
--#~ "Autoriser les non confinés à faire une transition dynamique en « "
--#~ "unconfined_execmem »"
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Sélectionner le modèle d'application ou d'utilisateur à confiner."
--#~ msgid "Databases"
--#~ msgstr "Bases de données"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Nom"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Permettre à l'utilisateur de se connecter au socket « mysql »"
-+#: ../gui/polgen.glade:781
++msgstr ""
++
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Entrez le chemin d'accès aux exécutables à confiner."
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Permettre à l'utilisateur de se connecter au socket « postgres »"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
++
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
--#~ msgid "XServer"
--#~ msgstr "Serveur X"
-+#: ../gui/polgen.glade:823
++msgstr ""
++
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+"Entrer un nom de type unique pour le modèle d'utilisateur ou de programme à "
-+"confiner."
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Permettre aux clients d'écrire dans la mémoire partagée de X"
-+#: ../gui/polgen.glade:845
++
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Exécutable"
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permettre au compte utilisateur SELinux « xguest » d'exécuter des fichiers "
--#~ "dans son répertoire « home » ou dans /tmp"
-+#: ../gui/polgen.glade:873
++msgstr ""
++
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Script d'initialisation"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Entrez le chemin d'accès complet au script d'initialisation utilisé pour "
-+"démarrer le programme confiné."
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Permettre aux démons de s'exécuter avec NIS"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Sélectionnez les rôles d'utilisateur que vous voulez personnaliser"
--#~ msgid "Web Applications"
--#~ msgstr "Applications Web"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+"Sélectionnez le modèle d'utilisateur qui va faire la transition aux domaines "
-+"de cette application"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transition de l'identité SELinux « staff » vers le domaine « Web Browser »"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+"Sélectionner le(s) domaine(s) supplémentaire(s) de l'utilisateur pour la "
-+"transition"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transition de l'identité SELinux « sysadm » vers le domaine « Web Browser »"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+"Sélectionner les domaines des applications vers lesquels vous souhaitez que "
-+"ce modèle d'utilisateur effectue une transition."
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transition de l'identité SELinux « user » vers le domaine « Web Browser »"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+"Sélectionnez le modèle d'utilisateur qui va faire la transition de ce domaine"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transition de l'identité SELinux « xguest » vers le domaine « Web Browser »"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+"Sélectionner le(s) domaine(s) additionnel(s) que cet utilisateur administrera"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "Permettre aux « Web Browsers » de staff d'écrire dans les répertoires "
--#~ "personnels"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+"Sélectionner les domaines qui doivent être administrés par cet utilisateur."
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Désactiver la protection SELinux pour amanda"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Sélectionner les rôles supplémentaires de cet utilisateur"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Désactiver la protection SELinux pour amavis"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Entrez les ports réseau que ce modèle d'application/utilisateur écoute"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon apmd"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>Ports TCP</b>"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon arpwatch"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"Permettre au modèle d'un utilisateur/programme confiné de se connecter à "
-+"n'importe quel port UDP"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon auditd"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Tout"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon automount"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"Permettre au modèle d'un utilisateur/programme d'appeler « bindresvport » "
-+"avec 0. Connexion aux ports 600-1024"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Désactiver la protection SELinux pour avahi"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon bluetooth"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
-+"auxquels ce modèle programme/utilisateur se connecte. Par exemple : 612, "
-+"650-660 "
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon canna"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Ports non réservés (> 1024)"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cardmgr"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
++
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Sélectionner des ports"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Désactiver la protection SELinux pour le serveur Cluster"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"Permettre au modèle d'un utilisateur/programme de se connecter à n'importe "
-+"quel port UDP > 1024"
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "Permettre à cdrecord de lire de nombreux contenus : nfs, samba, "
--#~ "périphériques extractibles, répertoires temp d'utilisateurs et fichiers "
--#~ "non dignes de confiance"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>Ports UDP</b>"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ciped"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
 +msgstr ""
-+"Entrez les ports réseau auxquel ce modèle application/utilisateur se connecte"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon clamd"
-+#: ../gui/polgen.glade:1958
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Entrez une liste, séparés par des virgules, ou une plage de ports UDP "
-+"auxquels ce modèle de programme/utilisateur se connecte. "
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Désactiver la protection SELinux pour clamscan"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Entrez une liste de ports UDP séparés par une virgule auxquels ce modèle "
-+"programme/utilisateur se connecte. Par exemple : 612, 650-660"
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Désactiver la protection SELinux pour clvmd"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Sélectionner les caractéristiques communes de l'application"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Désactiver la protection SELinux pour démon comsat"
-+#: ../gui/polgen.glade:2202
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Le programme utilise syslog pour journaliser des messages\t"
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon courier"
-+#: ../gui/polgen.glade:2221
++msgstr ""
++
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Créer/manipuler des fichiers temporaires dans /tmp"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cpucontrol"
-+#: ../gui/polgen.glade:2240
++msgstr ""
++
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Utilise PAM pour l'authentification"
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cpuspeed"
-+#: ../gui/polgen.glade:2259
++msgstr ""
++
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Utilise les appels nsswitch ou getpw"
--#~ msgid "Cron"
--#~ msgstr "Cron"
-+#: ../gui/polgen.glade:2278
++msgstr ""
++
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Utilise dbus"
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon crond"
-+#: ../gui/polgen.glade:2297
++msgstr ""
++
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Envoie des messages audit"
--#~ msgid "Printing"
--#~ msgstr "Impression"
-+#: ../gui/polgen.glade:2316
++msgstr ""
++
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Interagit avec le terminal"
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Désactiver la protection SELinux pour le serveur cupsd"
-+#: ../gui/polgen.glade:2335
++msgstr ""
++
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Envoie un courrier électronique"
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cupsd"
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Sélectionnez les fichiers/répertoires que le programme gère"
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Désactiver la protection SELinux pour cupsd_lpd"
-+#: ../gui/polgen.glade:2607
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Ajoutez les fichiers/répertoires dans lesquels ce programme va devoir "
-+"écrire. Fichiers PID, fichiers de journalisation, fichiers /var/lib..."
--#~ msgid "CVS"
--#~ msgstr "CVS"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Sélectionnez les booléens que le programme utilise"
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon CVS"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Ajoutez/enlevez les booléens utilisés pour cette application/utilisateur même"
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cyrus"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dbskkd"
-+#: ../gui/polgen.glade:2882
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Répertoire de stratégie"
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dbusd"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Fichiers de stratégie générés"
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Désactiver la protection SELinux pour dccd"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Cet outil va générer les éléments suivantes : type applicable (TE), contexte "
-+"fichier (FC), interface (IF), script shell (SH).\n"
-+"Exécutez le script shell pour compiler/installer et re-étiqueter les "
-+"fichiers/répertoires.\n"
-+"Utilisez \"semanage\" ou \"useradd\" pour organiser les logins utilisateurs "
-+"Linux par rapport aux modèles. Passez en mode permissif (\"setenforce 0).\n"
-+"Utilisez « audit2allow -R » pour générer des règles supplémentaires pour le "
-+"fichier.\n"
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Désactiver la protection SELinux pour dccifd"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Cet outil va générer les éléments suivantes : type applicable (TE), contexte "
-+"fichier (FC), interface (IF), script shell (SH).\n"
-+"Exécutez le script shell pour compiler/installer et re-étiqueter les "
-+"fichiers/répertoires. Passez en mode permissif (« setenforce 0 »).\n"
-+"Exécutez/redémarrez le programme pour générer les messages AVC.\n"
-+"Utilisez « audit2allow -R » pour générer des règles supplémentaires pour le "
-+"fichier.\n"
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Désactiver la protection SELinux pour dccm"
-+#: ../gui/polgen.glade:3127
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Ajout de boite de dialogue de booléens"
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ddt"
-+#: ../gui/polgen.glade:3200
++msgstr ""
++
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Nom de Booléen"
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon devfsd"
-+#: ../gui/polgengui.py:177
++msgstr ""
++
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Rôle"
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dhcpc"
-+#: ../gui/polgengui.py:184
++msgstr ""
++
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Utilisateur existant_"
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dhcpd"
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Programme"
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dictd"
-+#: ../gui/polgengui.py:269
++msgstr ""
++
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s doit être un répertoire"
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Permettre à sysadmin_t de démarrer directement des démons"
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
++
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Vous devez sélectionner un utilisateur"
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Désactiver la protection SELinux pour Evolution"
-+#: ../gui/polgengui.py:453
++msgstr ""
++
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Sélectionner les fichiers exécutables à confiner."
--#~ msgid "Games"
--#~ msgstr "Jeux"
-+#: ../gui/polgengui.py:464
++msgstr ""
++
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Sélectionnez le script d'initialisation à confiner."
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Désactiver la protection SELinux pour games"
-+#: ../gui/polgengui.py:474
++msgstr ""
++
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"Sélectionnez un ou plusieurs fichiers que le programme confiné crée ou dans "
-+"lesquels il écrit"
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Désactiver la protection SELinux pour web browsers"
-+#: ../gui/polgengui.py:481
++
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Sélectionnez les répertoires que le programme confiné possède et dans "
-+"lesquels il écrit"
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Désactiver la protection SELinux pour Thunderbird"
-+#: ../gui/polgengui.py:541
++
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+"Sélectionnez un répertoire dans lequel générer les fichiers de stratégie"
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon distccd"
-+#: ../gui/polgengui.py:554
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Le type %s_t est déjà défini dans la stratégie.\n"
-+"Voulez-vous continuer?"
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dmesg"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Verifiez le nom"
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dnsmasq"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Le module %s.pp est déjà chargé dans la stratégie.\n"
-+"Voulez-vous continuer?"
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon dovecot"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Vous devez spécifier un nom"
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon entropyd"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Vous devez spécifier un exécutable"
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Désactiver la protection SELinux pour fetchmail"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Configurer SELinux"
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon fingerd"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+"Les ports doivent être des nombres ou des plages de nombres compris entre 1 "
-+"et %d "
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon freshclam"
-+#: ../gui/polgen.py:204
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Vous devez spécifier un nom pour votre processus/utilisateur confiné"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon fsdaemon"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Les types USER ne sont pas autorisés à être exécutables"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon gpm"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Seuls les démons peuvent utiliser un script d'init"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "« use_syslog » doit avoir une valeur booléenne "
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon gss"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "Les types USER obtiennent automatiquement un type tmp"
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon hal"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+"Vous devez spécifier le chemin d'accès à l'exécutable pour votre processus "
-+"confiné"
--#~ msgid "Compatibility"
--#~ msgstr "Compatibilité"
-+#: ../gui/polgen.py:848
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Fichier de types applicables"
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Ne pas auditer les éléments défectueux qui ne constituent pas un risque "
--#~ "en terme de sécurité"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Fichier d'interface"
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon hostname"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Fichier de contextes fichier"
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon hotplug"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Script de configuration"
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon howl"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Port réseau"
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon cups hplip"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"Port SELinux\n"
-+"Type"
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Désactiver la protection SELinux pour httpd rotatelogs"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protocole"
--#~ msgid "HTTPD Service"
--#~ msgstr "Service HTTPD"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"Niveau"
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Désactiver la protection SELinux pour http suexec"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Le numéro de port « %s » est invalide. 0 < NUMERO_DE_PORT < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Affichage par liste"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Affichage par groupe"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -80088,26 +88811,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Protection des services SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Désactiver la protection SELinux pour le démon « acct »"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Administrateur"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Permettre à tous les démons d'écrire des vidages mémoires dans /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Permettre à tous les démons d'utiliser des TTY non alloués"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -80116,1662 +88839,1075 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Privilèges utilisateur"
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon hwclock"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « gadmin » d'éxecuter des fichiers "
-+"dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon i18n"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « guest » d'éxecuter des fichiers "
-+"dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon imazesrv"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Protection mémoire"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Autoriser l'exécution de code dans la pile de Java"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Monter"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Permettre à « mount » de monter n'importe quel fichier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Permettre à « mount » de monter n'importe quel répertoire"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Autoriser l'exécution de code dans la pile de Mplayer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Permettre à ssh d'exécuter « ssh-keysign »"
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Désactiver la protection SELinux pour les démons inetd child"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « staff » d'exécuter des fichiers "
-+"dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon inetd"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « sysadm » d'exécuter des fichiers "
-+"dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon innd"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « unconfined » d'exécuter des "
-+"fichiers dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon iptables"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Configuration réseau"
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ircd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permettre aux paquets non étiquetés de circuler sur le réseau"
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon irqbalance"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « user » d'exécuter des fichiers dans "
-+"son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon iscsi"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"Autoriser les non confinés à faire une transition dynamique en « "
-+"unconfined_execmem »"
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon jabberd"
++
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Bases de données"
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
++msgstr ""
++
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Permettre à l'utilisateur de se connecter au socket « mysql »"
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon kadmind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Permettre à l'utilisateur de se connecter au socket « postgres »"
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon klogd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "Serveur X"
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon krb5kdc"
++msgstr ""
++
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Permettre aux clients d'écrire dans la mémoire partagée de X"
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Désactiver la protection SELinux pour le démon ktalk"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Permettre au compte d'identité SELinux « xguest » d'exécuter des fichiers "
-+"dans son répertoire « home » ou dans /tmp"
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon kudzu"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon locate"
++msgstr ""
++
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Permettre aux démons de s'exécuter avec NIS"
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon lpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Applications Web"
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon lrrd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+"Transition de l'identité SELinux « staff » vers le domaine « Web Browser »"
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon lvm"
++
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+"Transition de l'identité SELinux « sysadm » vers le domaine « Web Browser »"
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Désactiver la protection SELinux pour mailman"
++
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+"Transition de l'identité SELinux « user » vers le domaine « Web Browser »"
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr ""
--#~ "Permettre à Evolution et Thunderbird de lire les fichiers utilisateur"
++
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+"Transition de l'identité SELinux « xguest » vers le domaine « Web Browser »"
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon mdadm"
++
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+"Permettre aux « Web Browsers » de staff d'écrire dans les répertoires "
-+"personnels"
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon monopd"
++
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Désactiver la protection SELinux pour amanda"
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Permettre au navigateur mozilla de lire les fichiers utilisateur"
++msgstr ""
++
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Désactiver la protection SELinux pour amavis"
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon mrtg"
++msgstr ""
++
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon apmd"
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon mysqld"
++msgstr ""
++
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Désactiver la protection SELinux pour le démon arpwatch"
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nagios"
++msgstr ""
++
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon auditd"
--#~ msgid "Name Service"
--#~ msgstr "Service de nom"
++msgstr ""
++
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Désactiver la protection SELinux pour le démon automount"
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon named"
++msgstr ""
++
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Désactiver la protection SELinux pour avahi"
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nessusd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Désactiver la protection SELinux pour le démon bluetooth"
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Désactiver la protection SELinux pour NetworkManager"
++msgstr ""
++
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Désactiver la protection SELinux pour le démon canna"
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nfsd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cardmgr"
--#~ msgid "Samba"
--#~ msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Désactiver la protection SELinux pour le serveur Cluster"
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nmbd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Permettre à cdrecord de lire de nombreux contenus : nfs, samba, "
-+"périphériques extractibles, répertoires temp d'utilisateurs et fichiers non "
-+"dignes de confiance"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ciped"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon clamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Désactiver la protection SELinux pour clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Désactiver la protection SELinux pour clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Désactiver la protection SELinux pour démon comsat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Désactiver la protection SELinux pour le démon courier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cpucontrol"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cpuspeed"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Désactiver la protection SELinux pour le démon crond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Impression"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Désactiver la protection SELinux pour le serveur cupsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cupsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Désactiver la protection SELinux pour cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Désactiver la protection SELinux pour le démon CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cyrus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dbskkd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dbusd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Désactiver la protection SELinux pour dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Désactiver la protection SELinux pour dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Désactiver la protection SELinux pour dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ddt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon devfsd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dhcpc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dhcpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dictd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Permettre à sysadmin_t de démarrer directement des démons"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Désactiver la protection SELinux pour Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Jeux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Désactiver la protection SELinux pour games"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Désactiver la protection SELinux pour web browsers"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Désactiver la protection SELinux pour Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon distccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dmesg"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dnsmasq"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Désactiver la protection SELinux pour le démon dovecot"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon entropyd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Désactiver la protection SELinux pour fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon fingerd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Désactiver la protection SELinux pour le démon freshclam"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Désactiver la protection SELinux pour le démon fsdaemon"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Désactiver la protection SELinux pour le démon gpm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Désactiver la protection SELinux pour le démon gss"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Désactiver la protection SELinux pour le démon hal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Compatibilité"
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nrpe"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Ne pas auditer les éléments défectueux qui ne constituent pas un risque en "
-+"terme de sécurité"
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nscd"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Désactiver la protection SELinux pour le démon hostname"
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon nsd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Désactiver la protection SELinux pour le démon hotplug"
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ntpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Désactiver la protection SELinux pour le démon howl"
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Désactiver la protection SELinux pour oddjob"
++msgstr ""
++
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Désactiver la protection SELinux pour le démon cups hplip"
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Désactiver la protection SELinux pour oddjob_mkhomedir"
++msgstr ""
++
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Désactiver la protection SELinux pour httpd rotatelogs"
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon openvpn"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "Service HTTPD"
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon pam"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Désactiver la protection SELinux pour http suexec"
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Désactiver la protection SELinux pour pegasus"
++msgstr ""
++
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Désactiver la protection SELinux pour le démon hwclock"
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon perdition"
++msgstr ""
++
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Désactiver la protection SELinux pour le démon i18n"
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon portmap"
++msgstr ""
++
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Désactiver la protection SELinux pour le démon imazesrv"
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon portslave"
++msgstr ""
++
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Désactiver la protection SELinux pour les démons inetd child"
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Désactiver la protection SELinux pour postfix"
++msgstr ""
++
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon inetd"
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon postgresql"
++msgstr ""
++
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon innd"
--#~ msgid "pppd"
--#~ msgstr "pppd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Désactiver la protection SELinux pour le démon iptables"
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Permettre à un utilisateur ordinaire d'exécuter pppd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ircd"
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Désactiver la protection SELinux pour pptp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Désactiver la protection SELinux pour le démon irqbalance"
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon prelink"
++msgstr ""
++
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Désactiver la protection SELinux pour le démon iscsi"
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon privoxy"
++msgstr ""
++
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon jabberd"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ptal"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon pxe"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Désactiver la protection SELinux pour le démon kadmind"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Désactiver la protection SELinux pour pyzord"
++msgstr ""
++
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon klogd"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon quota"
++msgstr ""
++
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Désactiver la protection SELinux pour le démon krb5kdc"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon radiusd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Désactiver la protection SELinux pour le démon ktalk"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon radvd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Désactiver la protection SELinux pour le démon kudzu"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Désactiver la protection SELinux pour rdisc"
++msgstr ""
++
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Désactiver la protection SELinux pour le démon locate"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Désactiver la protection SELinux pour readahead"
++msgstr ""
++
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon lpd"
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Permettre aux programmes de lire des fichiers à des emplacements non "
--#~ "standards (default_t)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon lrrd"
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Désactiver la protection SELinux pour restorecond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Désactiver la protection SELinux pour le démon lvm"
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon rhgb"
++msgstr ""
++
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Désactiver la protection SELinux pour mailman"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Désactiver la protection SELinux pour ricci"
++msgstr ""
++
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Permettre à Evolution et Thunderbird de lire les fichiers utilisateur"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Désactiver la protection SELinux pour ricci_modclusterd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Désactiver la protection SELinux pour le démon mdadm"
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon rlogind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon monopd"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon rpcd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Permettre au navigateur mozilla de lire les fichiers utilisateur"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Désactiver la protection SELinux pour rshd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Désactiver la protection SELinux pour le démon mrtg"
--#~ msgid "rsync"
--#~ msgstr "rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Désactiver la protection SELinux pour le démon mysqld"
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nagios"
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "Permettre à ssh de s'exécuter depuis inetd et non en tant que démon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Service de nom"
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Permettre à Samba de partager des répertoires NFS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Désactiver la protection SELinux pour le démon named"
--#~ msgid "SASL authentication server"
--#~ msgstr "Serveur d'authentification SASL"
++msgstr ""
++
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nessusd"
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Permettre au serveur d'authentification SASL de lire /etc/shadow"
++msgstr ""
++
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Désactiver la protection SELinux pour NetworkManager"
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Permettre au serveur X-Window de considérer une zone mémoire comme "
--#~ "exécutable et pouvant être écrite"
++msgstr ""
++
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nfsd"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon saslauthd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon scannerdaemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nmbd"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Interdire la transition vers sysadmin_t, effectuée par sudo et su"
++msgstr ""
++
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nrpe"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Interdire à tout processus de charger des modules noyau"
++msgstr ""
++
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nscd"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Interdire à tout processus de modifier la stratégie SELinux du noyau"
++msgstr ""
++
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon nsd"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon sendmail"
++msgstr ""
++
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ntpd"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Désactiver la protection SELinux pour setrans"
++msgstr ""
++
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Désactiver la protection SELinux pour oddjob"
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon setroubleshoot"
++msgstr ""
++
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Désactiver la protection SELinux pour oddjob_mkhomedir"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon slapd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Désactiver la protection SELinux pour le démon openvpn"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon slrnpull"
++msgstr ""
++
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Désactiver la protection SELinux pour le démon pam"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon smbd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Désactiver la protection SELinux pour pegasus"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon snmpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Désactiver la protection SELinux pour le démon perdition"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon snort"
++msgstr ""
++
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Désactiver la protection SELinux pour le démon portmap"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon soundd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Désactiver la protection SELinux pour le démon portslave"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon sound"
++msgstr ""
++
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Désactiver la protection SELinux pour postfix"
--#~ msgid "Spam Protection"
--#~ msgstr "Protection anti-spam"
++msgstr ""
++
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Désactiver la protection SELinux pour le démon postgresql"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon spamd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Autoriser l'accès de spamd aux répertoires personnels"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Permettre à un utilisateur ordinaire d'exécuter pppd"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Permettre l'accès réseau au  démon Spam Assassin"
++msgstr ""
++
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Désactiver la protection SELinux pour pptp"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon speedmgmt"
++msgstr ""
++
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Désactiver la protection SELinux pour le démon prelink"
--#~ msgid "Squid"
--#~ msgstr "Squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Désactiver la protection SELinux pour le démon privoxy"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Autoriser l'accès réseau au démon squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ptal"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Désactiver la protection SELinux pour le démon pxe"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ssh"
++msgstr ""
++
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Désactiver la protection SELinux pour pyzord"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Autoriser l'ouverture de session ssh en tant que sysadm_r:sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Désactiver la protection SELinux pour le démon quota"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Autoriser les utilisateurs staff_r à chercher dans le répertoire "
--#~ "personnel de sysadm et à lire des fichiers (comme ~/.bashrc par exemple)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon radiusd"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Tunnel SSL universel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon radvd"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon stunnel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Désactiver la protection SELinux pour rdisc"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Autoriser le démon stunnel à s'exécuter de manière autonome, hors de "
--#~ "xinetd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Désactiver la protection SELinux pour readahead"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon swat"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Permettre aux programmes de lire des fichiers à des emplacements non "
-+"standards (default_t)"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon sxid"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Désactiver la protection SELinux pour restorecond"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon syslogd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Désactiver la protection SELinux pour le démon rhgb"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Désactiver la protection SELinux pour les travaux système cron"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Désactiver la protection SELinux pour ricci"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon tcp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Désactiver la protection SELinux pour ricci_modclusterd"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon telnet"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Désactiver la protection SELinux pour le démon rlogind"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon tftpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon rpcd"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon transproxy"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Désactiver la protection SELinux pour rshd"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon udev"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon uml"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Désactiver la protection SELinux pour le démon rsync"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Autoriser xinetd à s'exécuter de manière non confinée, y compris tout "
--#~ "service qu'il démarre et qui n'a pas de transition de domaine "
--#~ "explicitement définie"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Permettre à ssh de s'exécuter depuis inetd et non en tant que démon"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Autoriser les scripts rc à s'exécuter de manière non confinée, y compris "
--#~ "tout service qu'ils démarrent et qui n'a pas de transition de domaine "
--#~ "explicitement définie"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Permettre à Samba de partager des répertoires NFS"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Autoriser rpm à s'exécuter de manière non confinée"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "Serveur d'authentification SASL"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Autoriser les utilitaires privilégiés comme hotplug et insmod à "
--#~ "s'exécuter de manière non confinée"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Permettre au serveur d'authentification SASL de lire /etc/shadow"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon updfstab"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Permettre au serveur X-Window de considérer une zone mémoire comme "
-+"exécutable et pouvant être écrite"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon uptimed"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon saslauthd"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Autoriser user_r à passer sysadm_r via su, sudo ou userhelper. Dans le "
--#~ "cas contraire, seul staff_r est habilité à le faire"
++msgstr ""
++
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Désactiver la protection SELinux pour le démon scannerdaemon"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Autoriser les utilisateurs à exécuter la commande « mount »"
++msgstr ""
++
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Interdire la transition vers sysadmin_t, effectuée par sudo et su"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Donner aux utilisateurs ordinaires un accès direct à la souris (seul le "
--#~ "serveur X a cet accès)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Interdire à tout processus de charger des modules noyau"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Autoriser les utilisateurs à exécuter la commande « dmesg »"
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Interdire à tout processus de modifier la stratégie SELinux du noyau"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Autoriser les utilisateurs à contrôler les interfaces réseau (il faut "
--#~ "aussi que USERCTL=true)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Désactiver la protection SELinux pour le démon sendmail"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr ""
--#~ "Autoriser les utilisateurs ordinaires à exécuter la commande « ping »"
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Désactiver la protection SELinux pour setrans"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "Autoriser l'utilisateur à lire/écrire les noextattrfile (FAT, CDROM, "
--#~ "disquette)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Désactiver la protection SELinux pour le démon setroubleshoot"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Autoriser les utilisateurs à lire/écrire dans des périphériques USB"
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon slapd"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Autoriser les utilisateurs à lancer des serveurs TCP (lier à des ports et "
--#~ "accepter des connexions d'un même domaine ou d'utilisateurs extérieurs). "
--#~ "Désactiver cette option force le mode FTP passif et peut avoir une "
--#~ "influence sur d'autres protocoles"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Désactiver la protection SELinux pour le démon slrnpull"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Autoriser l'utilisateur à effectuer un « stat » sur les fichiers TTY"
++msgstr ""
++
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon smbd"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon uucpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon snmpd"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon vmware"
++msgstr ""
++
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Désactiver la protection SELinux pour le démon snort"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon watchdog"
++msgstr ""
++
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon soundd"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon winbind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Désactiver la protection SELinux pour le démon sound"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon xdm"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Protection anti-spam"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr ""
--#~ "Autoriser les ouvertures de session xdm en tant que sysadm_r:sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon spamd"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon xen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Autoriser l'accès de spamd aux répertoires personnels"
--#~ msgid "XEN"
--#~ msgstr "XEN"
++msgstr ""
++
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Permettre l'accès réseau au  démon Spam Assassin"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Autoriser xen à lire/écrire sur des périphériques disques physiques"
++msgstr ""
++
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Désactiver la protection SELinux pour le démon speedmgmt"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon xfs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Désactiver la protection SELinux pour xen control"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Autoriser l'accès réseau au démon squid"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ypbind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Désactiver la protection SELinux pour le démon squid"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon NIS Password"
++msgstr ""
++
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ssh"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon ypserv"
++msgstr ""
++
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Autoriser l'ouverture de session ssh en tant que sysadm_r:sysadm_t"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Désactiver la protection SELinux pour le démon NIS Transfer"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Autoriser les utilisateurs staff_r à chercher dans le répertoire personnel "
-+"de sysadm et à lire des fichiers (comme ~/.bashrc par exemple)"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Autoriser l'utilisateur SELinux webadm à gérer les répertoires personnels "
--#~ "des utilisateurs non privilégiés"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Tunnel SSL universel"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Autoriser l'utilisateur SELinux webadm à lire les répertoires personnels "
--#~ "des utilisateurs non privilégiés"
++msgstr ""
++
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Désactiver la protection SELinux pour le démon stunnel"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Êtes-vous sur de vouloir supprimer %s « %s » ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"Autoriser le démon stunnel à s'exécuter de manière autonome, hors de xinetd"
--#~ msgid "Delete %s"
--#~ msgstr "Supprimer %s"
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Désactiver la protection SELinux pour le démon swat"
--#~ msgid "Add %s"
--#~ msgstr "Ajouter %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Désactiver la protection SELinux pour le démon sxid"
--#~ msgid "Modify %s"
--#~ msgstr "Modifier %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon syslogd"
--#~ msgid "Permissive"
--#~ msgstr "Permissif"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Désactiver la protection SELinux pour les travaux système cron"
--#~ msgid "Enforcing"
--#~ msgstr "Strict"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Désactiver la protection SELinux pour le démon tcp"
--#~ msgid "Disabled"
--#~ msgstr "Désactivé"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Désactiver la protection SELinux pour le démon telnet"
--#~ msgid "Status"
--#~ msgstr "État"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon tftpd"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Changer de type de stratégie va entraîner un ré-étiqutage de l'ensemble "
--#~ "du système de fichier au prochain démarrage. Le ré-étiquetage est une "
--#~ "opération longue dont la durée dépend de la taille de votre système de "
--#~ "fichiers. Voulez-vous continuer ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Désactiver la protection SELinux pour le démon transproxy"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "Désactiver SELinux exige un redémarrage. Cette opération n'est pas "
--#~ "recommandée. Si vous décidez plus tard de réactiver SELinux, il faudra "
--#~ "procéder à un ré-étiquetage du système de fichier. Si vous souhaitez "
--#~ "seulement voir si SELinux pose un problème sur votre système, vous pouvez "
--#~ "passer en mode permissif, ce qui permet de journaliser les erreurs sans "
--#~ "modifier la stratégie SELinux. Le passage en mode permissif ne nécessite "
--#~ "pas de redémarrage. Voulez-vous continuer malgré tout ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Désactiver la protection SELinux pour le démon udev"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Changer pour une stratégie active va entraîner un ré-étiqutage de "
--#~ "l'ensemble du système de fichier au prochain démarrage. Le ré-étiquetage "
--#~ "est une opération longue dont la durée dépend de la taille de votre "
--#~ "système de fichiers. Voulez-vous continuer ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Désactiver la protection SELinux pour le démon uml"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Autoriser xinetd à s'exécuter de manière non confinée, y compris tout "
-+"service qu'il démarre et qui n'a pas de transition de domaine explicitement "
-+"définie"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c) 2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Autoriser les scripts rc à s'exécuter de manière non confinée, y compris "
-+"tout service qu'ils démarrent et qui n'a pas de transition de domaine "
-+"explicitement définie"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Ajouter les correspondances utilisateurs - identités SELinux"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Autoriser rpm à s'exécuter de manière non confinée"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Ajouter les ports réseau SELinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Autoriser les utilitaires privilégiés comme hotplug et insmod à s'exécuter "
-+"de manière non confinée"
--#~ msgid "SELinux Type"
--#~ msgstr "Type SELinux"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Désactiver la protection SELinux pour le démon updfstab"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "TCP\n"
--#~ "UDP"
++msgstr ""
++
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Désactiver la protection SELinux pour le démon uptimed"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Niveau MLS/MCS\n"
--#~ "SELinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Autoriser user_r à passer sysadm_r via su, sudo ou userhelper. Dans le cas "
-+"contraire, seul staff_r est habilité à le faire"
--#~ msgid "File Specification"
--#~ msgstr "Spécification de fichier"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Autoriser les utilisateurs à exécuter la commande « mount »"
--#~ msgid "File Type"
--#~ msgstr "Type de fichier"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Donner aux utilisateurs ordinaires un accès direct à la souris (seul le "
-+"serveur X a cet accès)"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "tout fichier\n"
--#~ "fichier ordinaire\n"
--#~ "répertoire\n"
--#~ "périphérique en mode caractères\n"
--#~ "périphérique en mode block\n"
--#~ "socket\n"
--#~ "lien symbolique\n"
--#~ "tube nommé\n"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Autoriser les utilisateurs à exécuter la commande « dmesg »"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Autoriser les utilisateurs à contrôler les interfaces réseau (il faut aussi "
-+"que USERCTL=true)"
--#~ msgid "Add SELinux User"
--#~ msgstr "Ajouter une identité SELinux"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Autoriser les utilisateurs ordinaires à exécuter la commande « ping »"
--#~ msgid "SELinux Administration"
--#~ msgstr "Administration SELinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Autoriser l'utilisateur à lire/écrire les noextattrfile (FAT, CDROM, "
-+"disquette)"
--#~ msgid "Add"
--#~ msgstr "Ajouter"
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Autoriser les utilisateurs à lire/écrire dans des périphériques USB"
--#~ msgid "_Properties"
--#~ msgstr "_Propriétés"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Autoriser les utilisateurs à lancer des serveurs TCP (lier à des ports et "
-+"accepter des connexions d'un même domaine ou d'utilisateurs extérieurs). "
-+"Désactiver cette option force le mode FTP passif et peut avoir une influence "
-+"sur d'autres protocoles"
--#~ msgid "_Delete"
--#~ msgstr "_Supprimer"
++
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Autoriser l'utilisateur à effectuer un « stat » sur les fichiers TTY"
--#~ msgid "Select Management Object"
--#~ msgstr "Sélectionnez l'objet de gestion"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Désactiver la protection SELinux pour le démon uucpd"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Sélectionnez :</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Désactiver la protection SELinux pour le démon vmware"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Mode de protection par défaut du système"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Désactiver la protection SELinux pour le démon watchdog"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Mode de protection en vigueur"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Désactiver la protection SELinux pour le démon winbind"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Type de stratégie par défaut pour le système : "
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Désactiver la protection SELinux pour le démon xdm"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Sélectionnez si vous souhaitez ré-étiqueter l'intégralité du système de "
--#~ "fichiers au prochain démarrage. Le ré-étiquetage peut prendre un temps "
--#~ "considérable, qui dépend de la taille de votre système de fichiers. Si "
--#~ "vous êtes en train de changer de type de stratégie ou si vous passez de « "
--#~ "désactivé » à « strict », un ré-étiquetage est obligatoire."
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Autoriser les ouvertures de session xdm en tant que sysadm_r:sysadm_t"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Ré-étiquetage au prochain redémarrage."
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Désactiver la protection SELinux pour le démon xen"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Faire revenir les réglages booléens à ceux du sytéme par défaut"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Basculer entre les booléens personnalisés et tous les booléens"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Autoriser xen à lire/écrire sur des périphériques disques physiques"
--#~ msgid "Filter"
--#~ msgstr "Filtre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Désactiver la protection SELinux pour le démon xfs"
--#~ msgid "Add File Context"
--#~ msgstr "Ajouter un contexte du fichier"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Désactiver la protection SELinux pour xen control"
--#~ msgid "Modify File Context"
--#~ msgstr "Modifier le contexte du fichier"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ypbind"
--#~ msgid "Delete File Context"
--#~ msgstr "Supprimer un contexte du fichier"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Désactiver la protection SELinux pour le démon NIS Password"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr ""
--#~ "Basculer entre les contextes de fichier personnalisés et tous les "
--#~ "contextes de fichiers"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Désactiver la protection SELinux pour le démon ypserv"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Ajouter une correspondance utilisateurs - identités SELinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Désactiver la protection SELinux pour le démon NIS Transfer"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Modifier une correspondance utilisateurs - identités SELinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Autoriser l'utilisateur SELinux webadm à gérer les répertoires personnels "
-+"des utilisateurs non privilégiés"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Supprimer une correspondance utilisateurs - identités SELinux"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Autoriser l'utilisateur SELinux webadm à lire les répertoires personnels des "
-+"utilisateurs non privilégiés"
--#~ msgid "Add Translation"
--#~ msgstr "Ajouter une translation"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Êtes-vous sur de vouloir supprimer %s « %s » ?"
--#~ msgid "Modify Translation"
--#~ msgstr "Modifier une translation"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Supprimer %s"
--#~ msgid "Delete Translation"
--#~ msgstr "Supprimer une translation"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Ajouter %s"
--#~ msgid "Modify SELinux User"
--#~ msgstr "Modifier une identité SELinux"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Modifier %s"
--#~ msgid "Add Network Port"
--#~ msgstr "Ajouter un port réseau"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Permissif"
--#~ msgid "Edit Network Port"
--#~ msgstr "Éditer un port réseau"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Strict"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Désactivé"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "État"
--#~ msgid "Delete Network Port"
--#~ msgstr "Supprimer un port réseau"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Changer de type de stratégie va entraîner un ré-étiqutage de l'ensemble du "
-+"système de fichier au prochain démarrage. Le ré-étiquetage est une opération "
-+"longue dont la durée dépend de la taille de votre système de fichiers. "
-+"Voulez-vous continuer ?"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Basculer entre les ports personnalisés et tous les ports"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -81781,87 +89917,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Désactiver SELinux exige un redémarrage. Cette opération n'est pas "
-+"recommandée. Si vous décidez plus tard de réactiver SELinux, il faudra "
-+"procéder à un ré-étiquetage du système de fichier. Si vous souhaitez "
-+"seulement voir si SELinux pose un problème sur votre système, vous pouvez "
-+"passer en mode permissif, ce qui permet de journaliser les erreurs sans "
-+"modifier la stratégie SELinux. Le passage en mode permissif ne nécessite pas "
-+"de redémarrage. Voulez-vous continuer malgré tout ?"
--#~ msgid "Generate new policy module"
--#~ msgstr "Générer un module pour une nouvelle stratégie"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Changer pour une stratégie active va entraîner un ré-étiqutage de l'ensemble "
-+"du système de fichier au prochain démarrage. Le ré-étiquetage est une "
-+"opération longue dont la durée dépend de la taille de votre système de "
-+"fichiers. Voulez-vous continuer ?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Load policy module"
--#~ msgstr "Charger un module de stratégie"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c) 2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Effacer un module de stratégie chargeable"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Ajouter les correspondances utilisateurs - identités SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Ajouter les ports réseau SELinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Type SELinux"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "Activer/désactiver les règles supplémentaires d'audit, qui ne sont "
--#~ "normalement pas reportées dans les fichiers journaux."
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"Niveau MLS/MCS\n"
-+"SELinux"
--#~ msgid "Sensitvity Level"
--#~ msgstr "Niveau de sensibilité"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Spécification de fichier"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "L'identité SELinux « %s » est exigée"
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Type de fichier"
--#~ msgid "Requires value"
--#~ msgstr "Valeur requise"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -81872,1870 +89968,2072 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"tout fichier\n"
-+"fichier ordinaire\n"
-+"répertoire\n"
-+"périphérique en mode caractères\n"
-+"périphérique en mode block\n"
-+"socket\n"
-+"lien symbolique\n"
-+"tube nommé\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Ajouter une identité SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Administration SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Ajouter"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Propriétés"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Supprimer"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Sélectionnez l'objet de gestion"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Sélectionnez :</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Mode de protection par défaut du système"
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Désactivé\n"
-+"Permissif\n"
-+"Appliqué\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Mode de protection en vigueur"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Type de stratégie par défaut pour le système : "
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Préfixe invalide %s"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Sélectionnez si vous souhaitez ré-étiqueter l'intégralité du système de "
-+"fichiers au prochain démarrage. Le ré-étiquetage peut prendre un temps "
-+"considérable, qui dépend de la taille de votre système de fichiers. Si vous "
-+"êtes en train de changer de type de stratégie ou si vous passez de « "
-+"désactivé » à « strict », un ré-étiquetage est obligatoire."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Ré-étiquetage au prochain redémarrage."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "étiquette37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Faire revenir les réglages booléens à ceux du sytéme par défaut"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Basculer entre les booléens personnalisés et tous les booléens"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Lancer l'assistant pour les booléens de verrouillage"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Verrouillage..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filtre"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "étiquette50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Ajouter un contexte du fichier"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Modifier le contexte du fichier"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Supprimer un contexte du fichier"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+"Basculer entre les contextes de fichier personnalisés et tous les contextes "
-+"de fichiers"
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "étiquette38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Ajouter une correspondance utilisateurs - identités SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Modifier une correspondance utilisateurs - identités SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Supprimer une correspondance utilisateurs - identités SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "étiquette39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Ajouter un utilisateur"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Modifier un utilisateur"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Supprimer un utilisateur"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "étiquette41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Ajouter une translation"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modifier une translation"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Supprimer une translation"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "étiquette40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Ajouter un port réseau"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Éditer un port réseau"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Supprimer un port réseau"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Basculer entre les ports personnalisés et tous les ports"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "étiquette42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Générer un module pour une nouvelle stratégie"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Charger un module de stratégie"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Effacer un module de stratégie chargeable"
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "Permet au modèle d'un utilisateur ou d'un programme de se connecter à "
--#~ "n'importe quel port TCP > 1024"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Activer/désactiver les règles supplémentaires d'audit, qui ne sont "
-+"normalement pas reportées dans les fichiers journaux."
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "Permettre au modèle d'un utilisateur ou d'un programme confiné de se "
--#~ "connecter à n'importe quel port TCP"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "étiquette44"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Entrez une liste, séparés par des virgules, ou une plage de ports TCP "
--#~ "auxquels ce modèle de programme/utilisateur se connecte. "
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Changer le mode de fonctionnement en permissif."
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "Générateur de stratégies SELinux"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Changer le mode de fonctionnement en appliqué"
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Ports non réservés  (> 1024)"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Domaine du processus"
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "Cochez ce bouton si votre programme appelle « bindresvport » avec 0."
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "étiquette59"
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Strict\n"
--#~ "Permissif\n"
--#~ "Désactivé\n"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "L'identité SELinux « %s » est exigée"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils-2.0.85/po/gl.po
---- nsapolicycoreutils/po/gl.po        2011-02-17 15:11:25.062735914 -0500
-+++ policycoreutils-2.0.85/po/gl.po    2011-02-18 16:03:41.368975744 -0500
-@@ -1,3 +1,20 @@
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/gu.po b/policycoreutils/po/gu.po
+index 51d155d..073c7fe 100644
+--- a/policycoreutils/po/gu.po
++++ b/policycoreutils/po/gu.po
+@@ -1,22 +1,23 @@
+-# translation of policycoreutils.HEAD.gu.po to Gujarati
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
++# Translators:
+ # Ankit Patel <ankit@redhat.com>, 2006, 2007, 2008.
++# Sweta Kothari <swkothar@redhat.com>, 2008, 2009, 2010.
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -100,7 +117,8 @@
- msgid "Level"
  msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD.gu\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-26 13:07+0530\n"
+-"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
+-"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Gujarati <trans-gu@lists.fedoraproject.org>\n"
+ "Language: gu\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms:  nplurals=2; plural=(n!=1);\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -111,9 +112,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage જોડાણ અધિષ્ઠાપિત કરી શક્યું નહિં"
  
-@@ -152,736 +170,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s માટે MLS મર્યાદા સુયોજિત કરી શક્યા નહિં"
++msgstr "MLS સક્રિય થયેલ સ્થિતિને ચકાસણી કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -121,36 +121,33 @@ msgstr "હજુ સુધી અમલમાં મૂકાયેલ નથ
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage પરિવહન પહેલેથી જ પ્રગતિમાં છે"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં"
++msgstr "semanage લેવડદેવડ કમીટ કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage પરિવહન પ્રગતિમાં નથી"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux વપરાશકર્તાઓની યાદી કરી શક્યા નહિં"
++msgstr "SELinux મોડ્યુલોની યાદી કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "મોડ્યુલ નામ"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "આવૃત્તિ"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Disabled"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -160,9 +157,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "ભૂમિકા %s ને %s માટે ઉમેરી શક્યા નહિં"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -174,24 +171,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissive"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissive"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "છૂટ અપાય એવુ ડોમેઇન %s સુયોજિત કરી શકાતુ નથી (મોડ્યુલ સ્થાપન નિષ્ફળ થયેલ છે)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "છૂટ અપાય એવુ ડોમેઇન %s દૂર કરી શકાતુ નથી (નિષ્ફળતા દૂર કરો)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -211,9 +206,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "ચકાસી શક્યા નહિં કે શું %s માટે પ્રવેશ જોડણી વ્યાખ્યાયિત થયેલ છે"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux વપરાશકર્તા %s અસ્તિત્વમાં નથી"
++msgstr "Linux જૂથ %s અસ્તિત્વમાં નથી"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -280,15 +275,20 @@ msgid "Could not list login mappings"
+ msgstr "પ્રવેશ જોડણીઓની યાદી કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "પ્રવેશ નામ"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux વપરાશકર્તા"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
+ msgstr "MLS/MCS વિસ્તાર"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
+@@ -306,9 +306,9 @@ msgid "Could not query user for %s"
+ msgstr "વપરાશકર્તાને %s માટે પ્રશ્ન કરી શક્યા નહિં"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
  msgid "You must add at least one role for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભ ઉમેરી શક્યા નહિં"
++msgstr "%s માટે ઓછામાં ઓછો એક ભૂમિકા ઉમેરાવી જ જોઇએ"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+@@ -398,6 +398,7 @@ msgid "MCS Range"
+ msgstr "MCS વિસ્તાર"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux ભૂમિકાઓ"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+@@ -410,9 +411,8 @@ msgid "Port is required"
+ msgstr "પોર્ટ જરૂરી છે"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "અયોગ્ય પૂર્વગ %s"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+@@ -529,18 +529,17 @@ msgstr "SELinux પોર્ટ પ્રકાર"
+ msgid "Proto"
+ msgstr "પ્રોટો"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr "પોર્ટ નંબર"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "પોર્ટ જરૂરી છે"
++msgstr "નોડ સરનામું જરૂરી છે"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+-msgstr ""
++msgstr "અજ્ઞાત અથવા ગેરહાજર પ્રોટોકોલ"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -557,14 +556,14 @@ msgstr "%s માટે કી બનાવી શક્યા નહિં"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not check if addr %s is defined"
+-msgstr "શું પોર્ટ %s/%s વ્યાખ્યાયિત છે કે નહિં તે ચકાસી શક્યા નહિં"
++msgstr "ચકાસી શક્યા નહિં જો સરનામું %s વ્યાખ્યાયિત થયેલ છે"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create addr for %s"
+-msgstr "%s માટે કી બનાવી શક્યા નહિં"
++msgstr "%s માટે સરનામું બનાવી શક્યા નહિં"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -573,74 +572,72 @@ msgid "Could not create context for %s"
+ msgstr "%s માટે સંદર્ભ બનાવી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%s માટે નામ સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે માસ્ક સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે સરનામું સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે સરનામું સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે સરનામું સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે સરનામુ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%s માટે ફાઈલ સંદર્ભ સુયોજિત કરી શક્યા નહિં"
++msgstr "%s માટે સરનામા સંદર્ભ સુયોજિત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "પોર્ટ %s/%s ઉમેરી શક્યા નહિં"
++msgstr "સરનામું %s ઉમેરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "પોર્ટ %s/%s એ વ્યાખ્યાયિત નથી"
++msgstr "સરનામું %s એ વ્યાખ્યાયિત નથી"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "પોર્ટ %s/%s નો પ્રશ્ન કરી શક્યા નહિં"
++msgstr "પ્રશ્ર્ન સરનામું %s કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "પોર્ટ %s/%s સુધારી શક્યા નહિં"
++msgstr "સરનામું %s બદલી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "પોર્ટ %s/%s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતો નથી"
++msgstr "સરનામું %s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતો નથી"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "%s કાઢી શક્યા નહિં"
++msgstr "સરનામાં %s કાઢી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s માટે પ્રવેશ જોડણી કાઢી શક્યા નહિં"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "પોર્ટોની યાદી કરી શક્યા નહિં"
++msgstr "સરનામાંની યાદી કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -714,9 +711,8 @@ msgid "Could not delete interface %s"
+ msgstr "ઈન્ટરફેસ %s કાઢી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "ઈન્ટરફેસ %s કાઢી શક્યા નહિં"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+@@ -731,9 +727,9 @@ msgid "Context"
+ msgstr "સંદર્ભ"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s માટેનો ફાઈલ સંદર્ભ પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
+@@ -741,9 +737,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux વપરાશકર્તા %s અસ્તિત્વમાં નથી"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -863,11 +859,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux સંદર્ભ"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -886,14 +881,14 @@ msgid "Could not query file context %s"
+ msgstr "ફાઈલ સંદર્ભ %s નો પ્રશ્ન કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "તમારે કિંમત દાખલ કરવી જ પડશે"
++msgstr "નીચેની કિંમતો ની એક સ્પષ્ટ કરવી જ જોઇએ: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "બુલિયન %s કાઢી શક્યા નહિં"
++msgstr "બુલિયન %s ની સક્રિય કિંમત કરી શક્યા નહિં"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -903,7 +898,7 @@ msgstr "બુલિયન %s સુધારી શક્યા નહિં"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "ખરાબ બંધારણ%s: રેકોર્ડ %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -936,15 +931,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux બુલિયન"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "પરિસ્થિતિ"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "વર્ણન"
+@@ -1011,7 +1006,7 @@ msgstr "audit સંદેશો મોકલવામાં ભૂલ.\n"
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "enforcing સ્થિતિ નક્કી કરી શક્યા નહિં.\n"
++msgstr "દબાણ સ્થિતિ નક્કી કરી શક્યા નહિં.\n"
  
-@@ -1252,3 +1277,2064 @@
+ #: ../newrole/newrole.c:699
  #, c-format
+@@ -1281,1735 +1276,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "વિકલ્પો ભૂલ %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s ખોલવામાં અસમર્થ: બિન-MLS મશીનો પર ભાષાંતરો આધારભૂત નથી: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "સ્તર"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "અનુવાદ"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "ભાષાંતરો જગ્યાઓ સમાવી શકતા નથી '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "અમાન્ય સ્તર '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s એ પહેલાથી જ ભાષાંતરોમાં વ્યાખ્યાયિત થયેલ છે"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s એ ભાષાંતરોમાં વ્યાખ્યાયિત થયેલ નથી"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s માટેનું પ્રવેશ જોડાણ પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux વપરાશકર્તા માપન ઉમેરો"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux વપરાશકર્તા %s એ પહેલાથી જ વ્યાખ્યાયિત છે"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "પોર્ટ જરૂરી છે"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "પોર્ટ %s/%s પહેલાથી જ વ્યાખ્યાયિત છે"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "ઈન્ટરફેસ %s પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ક્ષમતાઓનો આરંભ કરવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ક્ષમતાઓ સુયોજિત કરવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS સુયોજિત કરવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ક્ષમતાઓ મૂકી દેવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID ક્ષમતાઓ છોડી મૂકવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "કેપ્સ મુક્ત કરવામાં ભૂલ\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "બિન-MLS મશીનો પર ભાષાંતરો આધારભૂત નથી"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "બુલિયન"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "બધું"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "ફાઈલ લેબલીંગ"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "ફાઈલ\n"
+-#~ "સ્પષ્ટીકરણ"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "ફાઈલ પ્રકાર"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "ફાઈલ\n"
+-#~ "પ્રકાર"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "User Mapping"
+-#~ msgstr "વપરાશકર્તા માપન"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "પ્રવેશ\n"
+-#~ "નામ"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "વપરાશકર્તા"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS વિસ્તાર"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "પ્રવેશ '%s' જરૂરી છે"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "પોલીસિ મોડ્યુલ"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "સંપાદન નિષ્ક્રિય કરો"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "સંપાદન સક્રિય કરો"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "પોલિસી મોડ્યુલ લાવો"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "અંકિત પટેલ <ankit@redhat.com>"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux પોલિસી બનાવટ સાધન"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "આ સાધન પોલિસી ફ્રેમવર્ક બનાવવા માટે વાપરી શકાય છે, SELinux વાપરી રહેલ કાર્યક્રમો "
+-#~ "અથવા વપરાશકર્તાઓ સુરક્ષિત કરવા માટે.   \n"
+-#~ "\n"
+-#~ "સાધન આ બનાવે છે:\n"
+-#~ "પ્રકાર દબાણ ફાઈલ (te)\n"
+-#~ "ઈન્ટરફેસ ફાઈલ (if)\n"
+-#~ "ફાઈલ સંદર્ભ ફાઈલ (fc)\n"
+-#~ "શેલ સ્ક્રિપ્ટ (sh) - પોલિસી કમ્પાઈલ કરવા અને સ્થાપિત કરવા માટે વપરાય છે. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "શુદ્ધિ કરવા માટે કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકા પસંદ કરો."
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>કાર્યક્રમો</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "પ્રમાણભૂત આરંભ ડિમન એ init સ્ક્રિપ્ટો મારફતે બુટ કરવા પર શરૂ થતા ડિમનો છે.  સામાન્ય "
+-#~ "રીતે /etc/rc.d/init.d માં સ્ક્રિપ્ટની જરૂર પડે છે"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "પ્રમાણભૂત Init ડિમન"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "ઈન્ટરનેટ સેવાઓ ડિમન એ xinetd દ્વારા શરૂ કરવામાં આવેલ ડિમનો છે"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ઈન્ટરનેટ સેવાઓ ડિમન (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "વેબ કાર્યક્રમો/સ્ક્રિપ્ટ (CGI) CGI સ્ક્રિપ્ટો વેબ સર્વર દ્વારા શરૂ કરવામાં આવેલ છે (અપાચે)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "વેબ કાર્યક્રમ/સ્ક્રિપ્ટ (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "વપરાશકર્તા કાર્યક્રમ એ કોઈપણ કાર્યક્રમ છે કે જેને તમે તે વપરાશકર્તા દ્વારા શરૂ કરીને "
+-#~ "શુદ્ધિ કરવા માંગો"
+-
+-#~ msgid "User Application"
+-#~ msgstr "વપરાશકર્તા કાર્યક્રમ"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>પ્રવેશ વપરાશકર્તાઓ</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "હાલનો પ્રવેશ રેકોર્ડ સુધારો."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "હાલની વપરાશકર્તા ભૂમિકાઓ"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "આ વપરાશકર્તા મશીનમાં માત્ર ટર્મિનલ કે દૂરસ્થ પ્રવેશ મારફતે જ પ્રવેશી શકશે.  મૂળભૂત રીતે આ "
+-#~ "વપરાશકર્તાને કોઈ setuid હશે નહિં, કોઈ નેટવર્કીંગ, કોઈ su, કોઈ sudo હશે નહિં."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "ન્યૂનતમ ટર્મિનલ વપરાશકર્તા ભૂમિકા"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "આ વપરાશકર્તા મશીનમાં માત્ર X અથવા ટર્મિનલ મારફતે જ પ્રવેશ કરી શકશે.  મૂળભૂત રીતે આ "
+-#~ "વપરાશકર્તાને કોઈ setuid, કોઈ નેટવર્કીંગ, કોઈ sudo, કે કોઈ su હશે નહિં"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "ન્યૂનતમ X વિન્ડો વપરાશકર્તા ભૂમિકા"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના, કોઈ sudo, "
+-#~ "કોઈ su નથી."
+-
+-#~ msgid "User Role"
+-#~ msgstr "વપરાશકર્તા ભૂમિકા"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના નથી, su "
+-#~ "નથી, તે રુટ સંચાલન ભૂમિકાઓમાં sudo કરી શકતું નથી"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "સંચાલક વપરાશકર્તા ભૂમિકા"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>રુટ વપરાશકર્તાઓ</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "રુટ સંચાલક વપરાશકર્તા ભૂમિકા પસંદ કરો, જો આ વપરાશકર્તા મશીનના સંચાલન માટે "
+-#~ "વાપરવામાં આવે જ્યારે રુટ તરીકે ચલાવી રહ્યા હોય.  આ વપરાશકર્તા સિસ્ટમમાં સીધો જ પ્રવેશ "
+-#~ "કરવા માટે સમર્થ હશે નહિં."
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "રુટ સંચાલક વપરાશકર્તા ભૂમિકા"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "શુદ્ધિ કરવા માટેના કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકાનું નામ દાખલ કરો"
+-
+-#~ msgid "Name"
+-#~ msgstr "નામ"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "શુદ્ધિ કરવા માટેની એક્ઝેક્યુટેબલનો સંપૂર્ણ પાથ દાખલ કરો."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "શુદ્ધિ થયેલ કાર્યક્રમ કે વપરાશકર્તા ભૂમિકા માટે અનન્ય નામ દાખલ કરો."
+-
+-#~ msgid "Executable"
+-#~ msgstr "એક્ઝેક્યુટેબલ"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Init સ્ક્રિપ્ટ"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "શુદ્ધિ થયેલ કાર્યક્રમ શરૂ કરવા માટે વાપરવામાં આવતી init સ્ક્રિપ્ટનો આખો પાથ દાખલ કરો."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જેને તમે વૈવિધ્યપૂર્ણ બનાવવા માંગો"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે કાર્યક્રમ ડોમેઈનોમાં પરિવહન કરશે."
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેમાં આ વપરાશકર્તા ભૂમિકા પરિવહન કરશે"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "કાર્યક્રમ ડોમેઈનો પસંદ કરો કે જેને તમે પરિવહન કરવા માટે આ વપરાશકર્તા ભૂમિકા આપવા "
+-#~ "ઈચ્છો."
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે આ ડોમેઈનમાં પરિવહન કરશે"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેને આ વપરાશકર્તા ભૂમિકા સંચાલિત કરશે"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ડોમેઈનો પસંદ કરો કે જેને તમે આ વપરાશકર્તા મારફતે સંચાલિત કરવા માંગો."
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "આ વપરાશકર્તા માટે વધારાની ભૂમિકાઓ પસંદ કરો"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "નેટવર્ક પોર્ટો દાખલ કરો કે જેને કાર્યક્રમ/વપરાશકર્તા ભૂમિકા સાંભળે છે"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP પોર્ટો</b>"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટ સાથે બંધાવા માટે પરવાનગી આપે "
+-#~ "છે"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "All"
+-#~ msgstr "બધું"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને bindresvport ને 0 સાથે કોલ કરવા માટે પરવાનગી આપે છે. "
+-#~ "પોર્ટ 600-1024 સાધે બાંધી રહ્યા છીએ"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
+-#~ "ભૂમિકા જોડાય. ઉદાહરણ: 612, 650-660"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "બિનઆરક્ષિત પોર્ટો (>1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "પોર્ટો પસંદ કરો"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટો > 1024 સાથે બંધાવા માટે પરવાનગી આપે છે"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP પોર્ટો</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
+-#~ "ભૂમિકા જોડાય."
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
+-#~ "ભૂમિકા જોડાય. ઉદાહરણ: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
+-#~ "જોડાય. ઉદાહરણ: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "સામાન્ય કાર્યક્રમ વર્તનો પસંદ કરો"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog સંદેશાઓ લખે છે\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp માં કામચલાઉ ફાઈલો બનાવે/જાળવે છે"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "સત્તાધિકરણ માટે Pam વાપરે છે"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch અથવા getpw* કોલ વાપરે છે"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus વાપરે છે"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "audit સંદેશાઓ મોકલે છે"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "ટર્મિનલ સાથે સંપર્ક કરે છે"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "ઈમેઈલ મોકલે છે"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "ફાઈલો/ડિરેક્ટરીઓ પસંદ કરો કે જેની વ્યવસ્થા કાર્યક્રમ કરે છે"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ફાઈલો/ડિરેક્ટરીઓ ઉમેરો કે જેની આ કાર્યક્રમને \"લખવાની\" જરૂર પડે. Pid ફાઈલો, લોગ "
+-#~ "ફાઈલો, /var/lib ફાઈલો ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "બુલિયનો પસંદ કરો કે જેનો આ કાર્યક્રમ વપરાશ કરે છે"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "આ શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા માટે વપરાયેલ બુલિયનો ઉમેરો/દૂર કરો"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "માં પોલીસિ બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "પોલિસી ડિરેક્ટરી"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "પોલિસી ફાઈલો બનાવાયેલ"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "આ સાધન નીચેનું બનાવશે: \n"
+-#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
+-#~ "કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  "
+-#~ "હવે તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
+-#~ "avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
+-#~ "te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "આ સાધન નીચેનું બનાવશે: \n"
+-#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
+-#~ "કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  "
+-#~ "હવે તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
+-#~ "avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
+-#~ "te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "બુલિયનો સંવાદ ઉમેરો"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "બુલિયન નામ"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Role"
+-#~ msgstr "ભૂમિકા"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Existing_User"
+-#~ msgstr "હાલનો વપરાશકર્તા (_U)"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Application"
+-#~ msgstr "કાર્યક્રમ"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ડિરેક્ટરી હોવી જ જોઈએ"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "You must select a user"
+-#~ msgstr "તમારે વપરાશકર્તા પસંદ કરવો જ પડશે"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "શુદ્ધિ કરવા માટે એક્ઝેક્યુટેબલ ફાઈલ પસંદ કરો."
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "શુદ્ધિ કરવા માટે init સ્ક્રિપ્ટ ફાઈલ પસંદ કરો."
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "ફાઈલ(ઓ) પસંદ કરો કે જેને શુદ્ધિ કરેલ કાર્યક્રમ બનાવે છે અથવા લખે છે"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "ડિરેક્ટરી(ઓ) પસંદ કરો કે જે શુદ્ધિ થયેલ કાર્યક્રમની માલિકીની છે અથવા જેમા લખે છે"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "પોલિસી ફાઈલો બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "પ્રકાર %s_t વર્તમાન પોલીસિમાં પહેલાથી જ વ્યાખ્યાયિત છે.\n"
+-#~ "શું તમે ચાલુ રાખવા માંગો છો?"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Verify Name"
+-#~ msgstr "નામની ખાતરી કરો"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "મોડ્યુલ %s.pp પહેલાથી જ વર્તમાન પોલીસિમાં લોડ થયેલ છે.\n"
+-#~ "શું તમે ચાલુ રાખવા માંગો છો?"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "You must enter a name"
+-#~ msgstr "તમારે નામ દાખલ કરવું જ પડશે"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "તમારે એક્ઝેક્યુટેબલ દાખલ કરવી જ પડશે"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux રૂપરેખાંકિત કરો"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "પોર્ટો નંબરો કે 1 થી %d સુધીના વિસ્તારના નંબરો હોવા જ જોઈએ"
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "તમારે તમારી શુદ્ધિ થયેલ પ્રક્રિયા/વપરાશકર્તા માટે નામ દાખલ કરવું જ પડશે"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER પ્રકારો માન્ય એક્ઝેક્યુટેબલો નથી"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "માત્ર DAEMON કાર્યક્રમો init સ્ક્રિપ્ટ વાપરી શકે"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog એ બુલિયન કિંમત હોવો જ જોઈએ "
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER પ્રકારો આપોઆપ tmp પ્રકાર મેળવે છે"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "તમારી શુદ્ધિ પ્રક્રિયા માટે તમારે એક્ઝેક્યુટેબલ પાથ દાખલ કરવો જ પડશે"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "પ્રકાર દબાણ ફાઈલ"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ઈન્ટરફેસ ફાઈલ"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "ફાઈલ સંદર્ભો ફાઈલ"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "સેટઅપ સ્ક્રિપ્ટ"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux પોર્ટ\n"
+-#~ "પ્રકાર"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "પ્રોટોકોલ"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "સ્તર"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Port"
+-#~ msgstr "પોર્ટ"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "પોર્ટ નંબર \"%s\" એ માન્ય નથી.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "યાદી દેખાવ"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "જૂથ દેખાવ"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux સેવા સુરક્ષા"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Admin"
+-#~ msgstr "સંચાલક"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "ડિમનોને મૂળફાઈલો / માં લખવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "બધા ડિમનોને બિન ફાળવેલ ttys વાપરવા માટેની ક્ષમતા આપો"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "User Privs"
+-#~ msgstr "વપરાશકર્તા વિશેષાધિકારો"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો એક્ઝેક્યુટ "
+-#~ "કરવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "મહેમાન SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp ડિરેક્ટરીમાં ફાઈલો "
+-#~ "એક્ઝેક્યુટ કરવાની પરવાનગી આપો"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Memory Protection"
+-#~ msgstr "મેમરી સુરક્ષા"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Mount"
+-#~ msgstr "માઉન્ટ"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "mount ને કોઈપણ ફાઈલ માઉન્ટ કરવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "mount ને કોઈપણ ડિરેક્ટરી માઉન્ટ કરવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh ને ssh-keysign ચલાવવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "સ્ટાફ SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
+-#~ "માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
+-#~ "માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "unconfined SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો "
+-#~ "ચલાવવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Network Configuration"
+-#~ msgstr "નેટવર્ક રૂપરેખાંકન"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "લેબલ વિનાના પેકેટોને નેટવર્ક પર વહેવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા માટે "
+-#~ "પરવાનગી આપો"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "unconfined dyntrans ને unconfined_execmem ની પરવાનગી આપો"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Databases"
+-#~ msgstr "ડેટાબેઝો"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "વપરાશકર્તાને mysql સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "વપરાશકર્તાને postgres સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "ક્લાઈન્ટોને X વહેંચાયેલ મેમરીમાં લખવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
+-#~ "માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "ડિમનોને NIS સાથે ચલાવવા માટે પરવાનગી આપો"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Web Applications"
+-#~ msgstr "વેબ કાર્યક્રમો"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "પરિવહન સ્ટાફ SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈનમાં"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "પરિવહન sysadm SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "પરિવહન વપરાશકર્તા SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "પરિવહન xguest SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "સ્ટાફ વેબ બ્રાઉઝરોને ઘર ડિરેક્ટરીઓમાં લખવાની પરવાનગી આપો"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "SELinux સુરક્ષાને amanda માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "SELinux સુરક્ષાને amavis માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "SELinux સુરક્ષાને apmd ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "SELinux સુરક્ષાને arpwatch ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "SELinux સુરક્ષાને auditd ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "SELinux સુરક્ષાને automount ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "SELinux સુરક્ષાને avahi માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "SELinux સુરક્ષાને bluetooth ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "SELinux સુરક્ષાને canna ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "SELinux સુરક્ષાને cardmgr ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "SELinux સુરક્ષાને ક્લસ્ટર સર્વર માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord ને વિવિધ સમાવિષ્ટ વાંચવા માટે પરવાનગી આપો. nfs, samba, દૂર કરી શકાય "
+-#~ "તેવા ઉપકરણો, વપરાશકર્તા કામચલાઉ અને અવિશ્વાસુ સમાવિષ્ટ ફાઈલો"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "SELinux સુરક્ષાને ciped ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "SELinux સુરક્ષાને clamd ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "SELinux સુરક્ષાને clamscan માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "SELinux સુરક્ષાને clvmd માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "SELinux સુરક્ષાને comsat ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "SELinux સુરક્ષાને courier ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "SELinux સુરક્ષાને cpucontrol ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "SELinux સુરક્ષાને cpuspeed ડિમન માટે નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Printing"
+-#~ msgstr "છાપન"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd બેકેન્ડ સર્વર માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "sysadm_t ને ડિમનો સીધા જ શરૂ કરવા માટે પરવાનગી આપો"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ઈવોલ્યુશન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -83783,26 +92081,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "રમતો"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "રમતો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "વેબ બ્રાઉઝરો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "થન્ડરબર્ડ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -83811,119 +92119,174 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "સુગમતા"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "વસ્તુઓનું સંપાદન કરો નહિં કે જેને આપણે જાણતા હોઈએ કે ભાંગેલ છે પરંતુ જેઓને સુરક્ષા જોખમો નથી"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "hplip ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD સેવા"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd બાળ ડિમનો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -83931,128 +92294,188 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "કર્બરોઝ"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "ઈવોલ્યુશન અને થન્ડરબર્ડને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "મોઝિલ્લા બ્રાઉઝરને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "નામ સેવા"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "સામ્બા"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
@@ -84068,67 +92491,99 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
@@ -84188,473 +92643,973 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "pppd ને નિયમિત વપરાશકર્તા તરીકે ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readhead માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "કાર્યક્રમોને બિન-પ્રમાણભૂત સ્થાનોએ રહેલ ફાઈલો વાંચવા માટે પરવાનગી આપો (default_t)"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh ને ડિમન તરીકે ચલાવવાની જગ્યાએ inetd માંથી ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba ને nfs ડિરેક્ટરીઓ વહેંચવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL સત્તાધિકરણ સર્વર"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl સત્તાધિકરણ સર્વરને /etc/shadow વાંચવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "X-Windows સર્વરને મેમરી વિસ્તાર એક્ઝેક્યુટેબલ અને લખી શકાય તેવું એમ બંને સાથે મેપ કરવા માટે "
+-#~ "પરવાનગી આપો"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo અને su effected માં રૂપાંતરણને પરવાનગી આપશો નહિં"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "કોઈપણ પ્રક્રિયાઓને કર્નલ મોડ્યુલો લાવવા માટે પરવાનગી આપશો નહિં"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "કોઈપણ પ્રક્રિયાઓને કર્નલ SELinux પોલિસી સુધારવા માટે પરવાનગી આપશો નહિં"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroubleshoot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "સ્પામ સુરક્ષા"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd ને ઘર ડિરેક્ટરીઓ વાપરવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Spam Assasin ડિમન નેટવર્ક વપરાશને પરવાનગી આપો"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid ડિમનને નેટવર્ક સાથે જોડાવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r વપરાશકર્તાઓને sysadm ઘર ડિરેક્ટરીમાં શોધવા અને ફાઈલો વાંચવા માટે પરવાનગી "
+-#~ "આપો (જેમ કે ~/.bashrc)"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "સાર્વત્રિક SSL ટનલ"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "stunnel ડિમનને એકલું ચલાવવા માટે પરવાનગી આપો, xinetd ની બહાર"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "સિસ્ટમ cron ક્રિયાઓ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd ને unconfined ચલાવવા માટે પરવાનગી આપો, કોઈપણ સેવાઓનો સમાવેશ કરીને કે જેને "
+-#~ "તે શરૂ કરે છે અને જેની પાસે ડોમેઈન પરિવહન બાહ્ય રીતે વ્યાખ્યાયિત થયેલ નહિં હોય"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "rc સ્ક્રિપ્ટોને unconfined ચલાવવા માટે પરવાનગી આપો, rc સ્ક્રિપ્ટ દ્વારા શરૂ થયેલ "
+-#~ "કોઈપણ ડિમનનો સમાવેશ કરીને કે જેને પરિવહન બાહ્ય રીતે વ્યાખ્યાયિત થયેલ નહિં હોય"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm ને unconfined ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "hotplug અને insmod જેવી વિશેષાધિકારીત ઉપયોગીતાઓને unconfined ચલાવવા માટે "
+-#~ "પરવાનગી આપો"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "utimed ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r ને sysadm_r સુધી su, sudo, અથવા userhelper મારફતે પહોંચવા માટે પરવાનગી "
+-#~ "આપો. નહિંતર, માત્ર staff_r આવું કરી શકશે"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "વપરાશકર્તાઓને mount આદેશ ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "નિયમિત વપરાશકર્તાઓને સીધો માઉસ વપરાશની પરવાનગી આપો (માત્ર X સર્વરને પરવાનગી "
+-#~ "આપો)"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "વપરાશકર્તાઓને dmesg આદેશ ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "વપરાશકર્તાઓને નેટવર્ક ઈન્ટરફેસો નિયંત્રિત કરવા માટે પરવાનગી આપો (USERCTL=true ની "
+-#~ "પણ જરૂર છે)"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "સામાન્ય વપરાશકર્તાને ping ચલાવવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "વપરાશકર્તાને r/w noextattrfile માટે પરવાનગી આપો (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "વપરાકર્તાઓને rw usb ઉપકરણોની પરવાનગી આપો"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "વપરાશકર્તાઓને TCP સર્વરો ચલાવવા માટે પરવાનગી આપો (પોર્ટો સાથે બાંધો અને એક જ "
+-#~ "ડોમેઈન અને બાહ્ય વપરાશકર્તાઓમાંથી જોડાણ સ્વીકારો)  આને નિષ્ક્રિય કરવાનું FTP પેસીવ "
+-#~ "સ્થિતિને દબાણ કરે છે અને અન્ય પ્રોટોકોલોને પણ બદલશે"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "વપરાશકર્તાઓને ttyfiles ની પરિસ્થિતિ આપવા માટે પરવાનગી આપો"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "xen ને ભૌતિક ડિસ્ક ઉપકરણ પર વાંચવા/લખવાની પરવાનગી આપો"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen કન્સોલ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS પાસવર્ડ ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS પરિવહન ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારી વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓની વ્યવસ્થા "
+-#~ "કરવા માટે પરવાનગી આપો"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારીત વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓ વાંચવા "
+-#~ "માટે પરવાનગી આપો"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "શું તમે ખરેખર %s '%s' કાઢી નાંખવા માંગો છો?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s કાઢી નાંખો"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s ઉમેરો"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s સુધારો"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Permissive"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Enforcing"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "પોલિસી પ્રકાર બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ આપી "
+-#~ "શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું તમે "
+-#~ "ચાલુ રાખવા માંગો છો?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux નિષ્ક્રિયકૃતમાં બદલવા માટે રીબુટ જરૂરી છે.  એ આગ્રહણીય નથી.  જો તમે પછીથી "
+-#~ "SELinux ને પાછું ચાલુ કરવાનું નક્કી કરો, તો સિસ્ટમને પુનઃલેબલ કરવાની જરૂર રહેશે.  જો તમે "
+-#~ "ખાલી એ જોવા માંગો કે શું SELinux એ તમારી સિસ્ટમ પર સમસ્યા સર્જી રહી છે, તો તમે "
+-#~ "પરવાનગીય સ્થિતિમાં જઈ શકશો કે જે માત્ર ભૂલો જ લોગ કરશે અને SELinux પોલિસીને દબાણ "
+-#~ "કરશે નહિં. પરવાનગીય સ્થિતિને રીબુટ કરવાની જરૂર રહેતી નથી    શું તમે ચાલુ રાખવા માંગો "
+-#~ "છો?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux સક્રિયકૃતમાં બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ "
+-#~ "આપી શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું "
+-#~ "તમે ચાલુ રાખવા માંગો છો?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux પ્રવેશ મેપીંગ ઉમેરો"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux નેટવર્ક પોર્ટો ઉમેરો"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux પ્રકાર"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "સ્તર"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "ફાઈલ સ્પષ્ટીકરણ"
+-
+-#~ msgid "File Type"
+-#~ msgstr "ફાઈલ પ્રકાર"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "બધી ફાઈલો\n"
+-#~ "નિયમિત ફાઈલ\n"
+-#~ "ડિરેક્ટરી\n"
+-#~ "અક્ષર ઉપકરણ\n"
+-#~ "બ્લોક ઉપકરણ\n"
+-#~ "સોકેટ\n"
+-#~ "સાંકેતિક કડી\n"
+-#~ "નામવાળું પાઈપ\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux વપરાશકર્તા ઉમેરો"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux સંચાલન"
+-
+-#~ msgid "Add"
+-#~ msgstr "ઉમેરો"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "ગુણધર્મો (_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "કાઢો (_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "વ્યવસ્થાપન ઓબ્જેક્ટ પસંદ કરો"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>પસંદ કરો:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "સિસ્ટમ મૂળભૂત દબાણ સ્થિતિ"
+-
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "વર્તમાન દબાણ સ્થિતિ"
+-
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "સિસ્ટમ મૂળભૂત પોલિસી પ્રકાર: "
+-
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "આગળના રીબુટ પર તમે શું વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવા ઈચ્છો છો તે પસંદ કરો.  "
+-#~ "પુનઃલેબલ કરવાનું લાંબો સમય લઈ શકે છે, સિસ્ટમના માપ પર આધાર રાખીને.  જો તમે પોલિસી "
+-#~ "પ્રકારો બદલી રહ્યા હોય અથવા disabled થી enforcing માં જઈ રહ્યા હોય, તો પુનઃલેબલ "
+-#~ "જરૂરી છે."
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "આગળના પુનઃબુટ પર પુનઃલેબલ."
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "બુલિયન સુયોજનને સિસ્ટમ મૂળભૂતમાં ઉલટાવો"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા બુલિયનો વચ્ચે ફેરબદલી કરો"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "ગાળક"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "ફાઈલ સંદર્ભ ઉમેરો"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "ફાઈલ સંદર્ભ સુધારો"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "ફાઈલ સંદર્ભ કાઢો"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "બધા અને વૈવિધ્યપૂર્ણ બનાવેલ ફાઈલ સંદર્ભ વચ્ચે બદલો"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux વપરાશકર્તા મેપીંગ ઉમેરો"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux વપરાશકર્તા માપન સુધારો"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux વપરાશકર્તા માપન કાઢો"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "ભાષાંતર ઉમેરો"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "ભાષાંતર સુધારો"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "ભાષાંતર કાઢો"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux વપરાશકર્તા સુધારો"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "નેટવર્ક પોર્ટ ઉમેરો"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "નેટવર્ક પોર્ટમાં ફેરફાર કરો"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "નેટવર્ક પોર્ટ કાઢો"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા પોર્ટ વચ્ચે બદલો"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "નવું પોલિસી મોડ્યુલ બનાવો"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "પોલિસી મોડ્યુલ લાવો"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "લાવી શકાય તેવું પોલિસી મોડ્યુલ દૂર કરો"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "વધારાના સંપાદન નિયમો સક્રિય/નિષ્ક્રિય કરો, કે જેઓ સામાન્ય રીતે લોગ ફાઈલોમાં અહેવાલ "
+-#~ "અપાયેલ નહિં હોય."
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "સંવેદનશીલતા સ્તર"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux વપરાશકર્તા '%s' જરૂરી છે"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "કિંમત જરૂરી છે"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ tcp પોર્ટો > 1024 બાંધવા માટે પરવાનગી આપે છે"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ tcp પોર્ટ સાથે બાંધવા માટે પરવાનગી આપે "
+-#~ "છે"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "અલ્પવિરામથી અલગ પડેલ tcp પોર્ટોની યાદી અથવા પોર્ટોનો વિસ્તાર દાખલ કરો કે જેને "
+-#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકા બાંધે. ઉદાહરણ: 612, 650-660"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux પોલિસી બનાવટ ડ્રુડ"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "બિનઆરક્ષિત પોર્ટો  (> 1024)"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "જો તમારો કાર્યક્રમ bindresvport ને 0 સાથે બાંધે તો આ ચકાસણીબટન વાપરો."
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
@@ -84860,18 +93815,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -84912,7 +93863,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -84921,25 +93871,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -84951,58 +93895,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -85010,169 +93954,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -85180,2091 +94107,764 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils-2.0.85/po/gu.po
---- nsapolicycoreutils/po/gu.po        2011-02-17 15:11:25.602726991 -0500
-+++ policycoreutils-2.0.85/po/gu.po    2011-02-18 16:03:41.369975751 -0500
-@@ -3,19 +3,38 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
- # Ankit Patel <ankit@redhat.com>, 2006, 2007, 2008.
-+# Sweta Kothari <swkothar@redhat.com>, 2008, 2009, 2010.
- msgid ""
+diff --git a/policycoreutils/po/he.po b/policycoreutils/po/he.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/he.po
++++ b/policycoreutils/po/he.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD.gu\n"
+ "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-03-26 13:07+0530\n"
--"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
--"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 12:20+0530\n"
-+"Last-Translator: Sweta Kothari <swkothar@redhat.com>\n"
-+"Language-Team: Gujarati\n"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
--"Plural-Forms:  nplurals=2; plural=(n!=1);\n"
-+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "ગ્રાફિકલ સુયોજનમાં SELinux ને રૂપરેખાંકિત કરો"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux સંચાલન"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux પોલિસી મોડ્યુલોને ઉત્પન્ન કરો"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux પોલિસી બનાવટ સાધન"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -106,9 +125,8 @@
- msgstr "semanage જોડાણ અધિષ્ઠાપિત કરી શક્યું નહિં"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s માટે MLS મર્યાદા સુયોજિત કરી શક્યા નહિં"
-+msgstr "MLS સક્રિય થયેલ સ્થિતિને ચકાસણી કરી શક્યા નહિં"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -123,7 +141,8 @@
- msgid "Level"
- msgstr "સ્તર"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "અનુવાદ"
-@@ -153,764 +172,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage પરિવહન પહેલેથી જ પ્રગતિમાં છે"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં"
-+msgstr "semanage લેવડદેવડ કમીટ કરી શક્યા નહિં"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage પરિવહન પ્રગતિમાં નથી"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux વપરાશકર્તાઓની યાદી કરી શક્યા નહિં"
-+msgstr "SELinux મોડ્યુલોની યાદી કરી શક્યા નહિં"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "Permissive"
-+msgstr "છૂટ અપાય એવા પ્રકારો"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "છૂટ અપાય એવુ ડોમેઇન %s સુયોજિત કરી શકાતુ નથી (મોડ્યુલ સ્થાપન નિષ્ફળ થયેલ છે)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "છૂટ અપાય એવુ ડોમેઇન %s દૂર કરી શકાતુ નથી (નિષ્ફળતા દૂર કરો)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s માટે કી બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "ચકાસી શક્યા નહિં કે શું %s માટે પ્રવેશ જોડણી વ્યાખ્યાયિત થયેલ છે"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s માટેનું પ્રવેશ જોડાણ પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux વપરાશકર્તા %s અસ્તિત્વમાં નથી"
-+msgstr "Linux જૂથ %s અસ્તિત્વમાં નથી"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux વપરાશકર્તા %s અસ્તિત્વમાં નથી"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s માટે પ્રવેશ જોડણી બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s માટે નામ સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s માટે MLS મર્યાદા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s માટે SELinux વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s માટે પ્રવેશ જોડણી ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux વપરાશકર્તા માપન ઉમેરો"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser અથવા serange જરૂરી છે"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s માટેની પ્રવેશ જોડણી વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s માટે seuser પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s માટે પ્રવેશ જોડણી સુધારી શક્યા નહિં"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s માટે પ્રવેશ જોડણી એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતી નથી"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s માટે પ્રવેશ જોડણી કાઢી શક્યા નહિં"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "પ્રવેશ જોડણીઓની યાદી કરી શક્યા નહિં"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "પ્રવેશ નામ"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux વપરાશકર્તા"
+ msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS વિસ્તાર"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભ ઉમેરી શક્યા નહિં"
-+msgstr "%s માટે ઓછામાં ઓછો એક ભૂમિકા ઉમેરાવી જ જોઇએ"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "શું SELinux વપરાશકર્તા %s એ વ્યાખ્યાયિત છે તે ચકાસી શક્યા નહિં"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux વપરાશકર્તા %s એ પહેલાથી જ વ્યાખ્યાયિત છે"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s માટે SELinux વપરાશકર્તા બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "ભૂમિકા %s ને %s માટે ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s માટે MLS સ્તર સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "પૂર્વગ %s ને %s માટે ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s માટે કીનો અર્ક કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux વપરાશકર્તા %s ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "પૂર્વગ, ભૂમિકાઓ, સ્તર અથવા વિસ્તાર જરૂરી છે"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "પૂર્વગ અથવા ભૂમિકાઓ જરૂરી છે"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux વપરાશકર્તા %s એ વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "વપરાશકર્તાને %s માટે પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux વપરાશકર્તા %s સુધારી શક્યા નહિં"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux વપરાશકર્તા %s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતા નથી"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux વપરાશકર્તા %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux વપરાશકર્તાઓની યાદી કરી શક્યા નહિં"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "વપરાશકર્તા %s માટે ભૂમિકાઓની યાદી આપી શક્યા નહિં"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "લેબલીંગ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "પૂર્વગ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS સ્તર"
+ msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS વિસ્તાર"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux ભૂમિકાઓ"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "પ્રોટોકોલ udp અથવા tcp જરૂરી છે"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "પોર્ટ જરૂરી છે"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s માટે કી બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "પ્રકાર જરૂરી છે"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "શું પોર્ટ %s/%s વ્યાખ્યાયિત છે કે નહિં તે ચકાસી શક્યા નહિં"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "પોર્ટ %s/%s પહેલાથી જ વ્યાખ્યાયિત છે"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s માટે પોર્ટ બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s માટે સંદર્ભ બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s માટે પોર્ટ સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s માટે પોર્ટ સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s માટે પોર્ટ સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s માટે પોર્ટ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s માટે પોર્ટ સંદર્ભ સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "પોર્ટ %s/%s ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype અથવા serange જરૂરી છે"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype જરૂરી છે"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "પોર્ટ %s/%s એ વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "પોર્ટ %s/%s નો પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "પોર્ટ %s/%s સુધારી શક્યા નહિં"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "પોર્ટોની યાદી કરી શક્યા નહિં"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "પોર્ટ %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "પોર્ટ %s/%s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતો નથી"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "પોર્ટ %s/%s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "પોર્ટોની યાદી કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux પોર્ટ પ્રકાર"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
- msgstr "પ્રોટો"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "પોર્ટ નંબર"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "પોર્ટ જરૂરી છે"
-+msgstr "નોડ સરનામું જરૂરી છે"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "પોર્ટ જરૂરી છે"
-+msgstr "નોડ નેટમાસ્ક જરૂરી છે"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "અજ્ઞાત અથવા ગેરહાજર પ્રોટોકોલ"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux પ્રકાર જરૂરી છે"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s માટે કી બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "શું પોર્ટ %s/%s વ્યાખ્યાયિત છે કે નહિં તે ચકાસી શક્યા નહિં"
-+msgstr "ચકાસી શક્યા નહિં જો સરનામું %s વ્યાખ્યાયિત થયેલ છે"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "પોર્ટ %s/%s પહેલાથી જ વ્યાખ્યાયિત છે"
-+msgstr "સરનામું %s પહેલાથી જ વ્યાખ્યાયિત છે"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s માટે કી બનાવી શક્યા નહિં"
-+msgstr "%s માટે સરનામું બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s માટે સંદર્ભ બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s માટે નામ સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે માસ્ક સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે સરનામું સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે સરનામું સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે સરનામું સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે સરનામુ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
+ msgstr ""
  
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s માટે ફાઈલ સંદર્ભ સુયોજિત કરી શક્યા નહિં"
-+msgstr "%s માટે સરનામા સંદર્ભ સુયોજિત કરી શક્યા નહિં"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "પોર્ટ %s/%s ઉમેરી શક્યા નહિં"
-+msgstr "સરનામું %s ઉમેરી શક્યા નહિં"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "પોર્ટ %s/%s એ વ્યાખ્યાયિત નથી"
-+msgstr "સરનામું %s એ વ્યાખ્યાયિત નથી"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
  
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "પોર્ટ %s/%s નો પ્રશ્ન કરી શક્યા નહિં"
-+msgstr "પ્રશ્ર્ન સરનામું %s કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "પોર્ટ %s/%s સુધારી શક્યા નહિં"
-+msgstr "સરનામું %s બદલી શક્યા નહિં"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "પોર્ટ %s/%s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતો નથી"
-+msgstr "સરનામું %s એ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકાતો નથી"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s કાઢી શક્યા નહિં"
-+msgstr "સરનામાં %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "પોર્ટોની યાદી કરી શક્યા નહિં"
-+msgstr "સરનામાંની યાદી કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "શું ઈન્ટરફેસ %s એ વ્યાખ્યાયિત થયેલ છે કે નહિં તે ચકાસી શક્યા નહિં"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "ઈન્ટરફેસ %s પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s માટે ઈન્ટરફેસ બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s માટે ઈન્ટરફેસ સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s માટે ઈન્ટરફેસ સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s માટે ઈન્ટરફેસ સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s માટે ઈન્ટરફેસ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s માટે ઈન્ટરફેસ સંદર્ભ સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s માટે સંદેશા સંદર્ભ સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s ઈન્ટરફેસ ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "ઈન્ટરફેસ %s વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "ઈન્ટરફેસ %s ને પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "ઈન્ટરફેસ %s સુધારી શક્યા નહિં"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "ઈન્ટરફેસ %s પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકતા નથી"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "ઈન્ટરફેસ %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "ઈન્ટરફેસોની યાદી આપી શક્યા નહિં"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux ઈન્ટરફેસ"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "સંદર્ભ"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભમાં વપરાશકર્તા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભમાં ભૂમિકા સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભમાં mls ક્ષેત્રો સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "અયોગ્ય ફાઈલ સ્પષ્ટીકરણ"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "શું %s માટેનો ફાઈલ સંદર્ભ વ્યાખ્યાયિત છે કે નહિં તે ચકાસી શક્યા નહિં"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s માટેનો ફાઈલ સંદર્ભ પહેલાથી જ વ્યાખ્યાયિત થયેલ છે"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ બનાવી શક્યા નહિં"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભમાં પ્રકાર સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ સુયોજિત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ ઉમેરી શક્યા નહિં"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange અથવા seuser જરૂરી છે"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s માટેનો ફાઈલ સંદર્ભ વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ સુધારી શક્યા નહિં"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ફાઈલ સંદર્ભોની યાદી આપી શક્યા નહિં"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "ફાઈલ સંદર્ભ %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s માટે ફાઈલ સંદર્ભ પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકતા નથી"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s માટે ફાઈલ સંદર્ભ કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ફાઈલ સંદર્ભોની યાદી આપી શક્યા નહિં"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "સ્થાનીક ફાઈલ સંદર્ભોની યાદી કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux સંદર્ભ"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "પ્રકાર"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "શું બુલિયન %s વ્યાખ્યાયિત છે તે ચકાસી શક્યા નહિં"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "બુલિયન %s એ વ્યાખ્યાયિત નથી"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "ફાઈલ સંદર્ભ %s નો પ્રશ્ન કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "તમારે કિંમત દાખલ કરવી જ પડશે"
-+msgstr "નીચેની કિંમતો ની એક સ્પષ્ટ કરવી જ જોઇએ: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "બુલિયન %s કાઢી શક્યા નહિં"
-+msgstr "બુલિયન %s ની સક્રિય કિંમત કરી શક્યા નહિં"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "બુલિયન %s સુધારી શક્યા નહિં"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "ખરાબ બંધારણ%s: રેકોર્ડ %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "બુલિયન %s પોલિસીમાં વ્યાખ્યાયિત છે, કાઢી શકતા નથી"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "બુલિયન %s કાઢી શક્યા નહિં"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "બુલિયનોની યાદી આપી શક્યા નહિં"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "અજ્ઞાત"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "બંધ"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ચાલુ"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux બુલિયન"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "વર્ણન"
-@@ -950,7 +970,7 @@
- msgstr "પર્યાવરણ સાફ કરવામાં અસમર્થ\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "ક્ષમતાઓનો આરંભ કરવામાં ભૂલ, અડધેથી બંધ કરી રહ્યા છીએ.\n"
-@@ -1007,7 +1027,7 @@
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr "enforcing સ્થિતિ નક્કી કરી શક્યા નહિં.\n"
-+msgstr "દબાણ સ્થિતિ નક્કી કરી શક્યા નહિં.\n"
- #: ../newrole/newrole.c:765
- #, c-format
-@@ -1282,1684 +1302,2206 @@
- msgid "Options Error %s "
- msgstr "વિકલ્પો ભૂલ %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "બિન-MLS મશીનો પર ભાષાંતરો આધારભૂત નથી"
--
--#~ msgid "Boolean"
--#~ msgstr "બુલિયન"
--
--#~ msgid "all"
--#~ msgstr "બધું"
--
--#~ msgid "Customized"
--#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ"
--
--#~ msgid "File Labeling"
--#~ msgstr "ફાઈલ લેબલીંગ"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ફાઈલ\n"
--#~ "સ્પષ્ટીકરણ"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ફાઈલ પ્રકાર"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ફાઈલ\n"
--#~ "પ્રકાર"
--
--#~ msgid "User Mapping"
--#~ msgstr "વપરાશકર્તા માપન"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "પ્રવેશ\n"
--#~ "નામ"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "બુલિયન"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "બધું"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "વૈવિધ્યપૂર્ણ બનાવેલ"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "ફાઈલ લેબલીંગ"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "વપરાશકર્તા"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS વિસ્તાર"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "પ્રવેશ '%s' જરૂરી છે"
--
--#~ msgid "Policy Module"
--#~ msgstr "પોલીસિ મોડ્યુલ"
--
--#~ msgid "Module Name"
--#~ msgstr "મોડ્યુલ નામ"
--
--#~ msgid "Version"
--#~ msgstr "આવૃત્તિ"
--
--#~ msgid "Disable Audit"
--#~ msgstr "સંપાદન નિષ્ક્રિય કરો"
--
--#~ msgid "Enable Audit"
--#~ msgstr "સંપાદન સક્રિય કરો"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"ફાઈલ\n"
-+"સ્પષ્ટીકરણ"
--#~ msgid "Load Policy Module"
--#~ msgstr "પોલિસી મોડ્યુલ લાવો"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"ફાઈલ પ્રકાર"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"ફાઈલ\n"
-+"પ્રકાર"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "વપરાશકર્તા માપન"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"પ્રવેશ\n"
-+"નામ"
--#~ msgid "translator-credits"
--#~ msgstr "અંકિત પટેલ <ankit@redhat.com>"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"વપરાશકર્તા"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux પોલિસી બનાવટ સાધન"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS વિસ્તાર"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "આ સાધન પોલિસી ફ્રેમવર્ક બનાવવા માટે વાપરી શકાય છે, SELinux વાપરી રહેલ કાર્યક્રમો "
--#~ "અથવા વપરાશકર્તાઓ સુરક્ષિત કરવા માટે.   \n"
--#~ "\n"
--#~ "સાધન આ બનાવે છે:\n"
--#~ "પ્રકાર દબાણ ફાઈલ (te)\n"
--#~ "ઈન્ટરફેસ ફાઈલ (if)\n"
--#~ "ફાઈલ સંદર્ભ ફાઈલ (fc)\n"
--#~ "શેલ સ્ક્રિપ્ટ (sh) - પોલિસી કમ્પાઈલ કરવા અને સ્થાપિત કરવા માટે વપરાય છે. "
-+#: ../gui/loginsPage.py:133
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
++
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
++
++#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "પ્રવેશ '%s' જરૂરી છે"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "શુદ્ધિ કરવા માટે કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકા પસંદ કરો."
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "પોલીસિ મોડ્યુલ"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>કાર્યક્રમો</b>"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "મોડ્યુલ નામ"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "પ્રમાણભૂત આરંભ ડિમન એ init સ્ક્રિપ્ટો મારફતે બુટ કરવા પર શરૂ થતા ડિમનો છે.  સામાન્ય "
--#~ "રીતે /etc/rc.d/init.d માં સ્ક્રિપ્ટની જરૂર પડે છે"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "આવૃત્તિ"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "પ્રમાણભૂત Init ડિમન"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "સંપાદન નિષ્ક્રિય કરો"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "ઈન્ટરનેટ સેવાઓ ડિમન એ xinetd દ્વારા શરૂ કરવામાં આવેલ ડિમનો છે"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "સંપાદન સક્રિય કરો"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ઈન્ટરનેટ સેવાઓ ડિમન (inetd)"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "પોલિસી મોડ્યુલ લાવો"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "વેબ કાર્યક્રમો/સ્ક્રિપ્ટ (CGI) CGI સ્ક્રિપ્ટો વેબ સર્વર દ્વારા શરૂ કરવામાં આવેલ છે (અપાચે)"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "વેબ કાર્યક્રમ/સ્ક્રિપ્ટ (CGI)"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "વપરાશકર્તા કાર્યક્રમ એ કોઈપણ કાર્યક્રમ છે કે જેને તમે તે વપરાશકર્તા દ્વારા શરૂ કરીને "
--#~ "શુદ્ધિ કરવા માંગો"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "User Application"
--#~ msgstr "વપરાશકર્તા કાર્યક્રમ"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "અંકિત પટેલ <ankit@redhat.com>, શ્ર્વેતા કોઠારી <swkothar@redhat.com>"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>પ્રવેશ વપરાશકર્તાઓ</b>"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"આ સાધન પોલિસી ફ્રેમવર્ક બનાવવા માટે વાપરી શકાય છે, SELinux વાપરી રહેલ કાર્યક્રમો "
-+"અથવા વપરાશકર્તાઓ સુરક્ષિત કરવા માટે.   \n"
-+"\n"
-+"સાધન આ બનાવે છે:\n"
-+"પ્રકાર દબાણ ફાઈલ (te)\n"
-+"ઈન્ટરફેસ ફાઈલ (if)\n"
-+"ફાઈલ સંદર્ભ ફાઈલ (fc)\n"
-+"શેલ સ્ક્રિપ્ટ (sh) - પોલિસી કમ્પાઈલ કરવા અને સ્થાપિત કરવા માટે વપરાય છે. "
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "શુદ્ધિ કરવા માટે કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકા પસંદ કરો"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>કાર્યક્રમો</b>"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "હાલનો પ્રવેશ રેકોર્ડ સુધારો."
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"પ્રમાણભૂત આરંભ ડિમન એ init સ્ક્રિપ્ટો મારફતે બુટ કરવા પર શરૂ થતા ડિમનો છે.  સામાન્ય "
-+"રીતે /etc/rc.d/init.d માં સ્ક્રિપ્ટની જરૂર પડે છે"
--#~ msgid "Existing User Roles"
--#~ msgstr "હાલની વપરાશકર્તા ભૂમિકાઓ"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "પ્રમાણભૂત Init ડિમન"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS સિસ્ટમ ડિમન"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "ઈન્ટરનેટ સેવાઓ ડિમન એ xinetd દ્વારા શરૂ કરવામાં આવેલ ડિમનો છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "ઈન્ટરનેટ સેવાઓ ડિમન (inetd)"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "આ વપરાશકર્તા મશીનમાં માત્ર ટર્મિનલ કે દૂરસ્થ પ્રવેશ મારફતે જ પ્રવેશી શકશે.  મૂળભૂત રીતે આ "
--#~ "વપરાશકર્તાને કોઈ setuid હશે નહિં, કોઈ નેટવર્કીંગ, કોઈ su, કોઈ sudo હશે નહિં."
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"વેબ કાર્યક્રમો/સ્ક્રિપ્ટ (CGI) CGI સ્ક્રિપ્ટો વેબ સર્વર દ્વારા શરૂ કરવામાં આવેલ છે (અપાચે)"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "ન્યૂનતમ ટર્મિનલ વપરાશકર્તા ભૂમિકા"
-+#: ../gui/polgen.glade:322
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "વેબ કાર્યક્રમ/સ્ક્રિપ્ટ (CGI)"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "આ વપરાશકર્તા મશીનમાં માત્ર X અથવા ટર્મિનલ મારફતે જ પ્રવેશ કરી શકશે.  મૂળભૂત રીતે આ "
--#~ "વપરાશકર્તાને કોઈ setuid, કોઈ નેટવર્કીંગ, કોઈ sudo, કે કોઈ su હશે નહિં"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"વપરાશકર્તા કાર્યક્રમ એ કોઈપણ કાર્યક્રમ છે કે જેને તમે તે વપરાશકર્તા દ્વારા શરૂ કરીને શુદ્ધિ "
-+"કરવા માંગો"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "ન્યૂનતમ X વિન્ડો વપરાશકર્તા ભૂમિકા"
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "વપરાશકર્તા કાર્યક્રમ"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>પ્રવેશ વપરાશકર્તાઓ</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "હાલનો પ્રવેશ રેકોર્ડ સુધારો."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "હાલની વપરાશકર્તા ભૂમિકાઓ"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના, કોઈ sudo, "
--#~ "કોઈ su નથી."
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"આ વપરાશકર્તા મશીનમાં માત્ર ટર્મિનલ કે દૂરસ્થ પ્રવેશ મારફતે જ પ્રવેશી શકશે.  મૂળભૂત રીતે આ "
-+"વપરાશકર્તાને કોઈ setuid હશે નહિં, કોઈ નેટવર્કીંગ, કોઈ su, કોઈ sudo હશે નહિં."
--#~ msgid "User Role"
--#~ msgstr "વપરાશકર્તા ભૂમિકા"
-+#: ../gui/polgen.glade:474
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "ન્યૂનતમ ટર્મિનલ વપરાશકર્તા ભૂમિકા"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના નથી, su "
--#~ "નથી, તે રુટ સંચાલન ભૂમિકાઓમાં sudo કરી શકતું નથી"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"આ વપરાશકર્તા મશીનમાં માત્ર X અથવા ટર્મિનલ મારફતે જ પ્રવેશ કરી શકશે.  મૂળભૂત રીતે આ "
-+"વપરાશકર્તાને કોઈ setuid, કોઈ નેટવર્કીંગ, કોઈ sudo, કે કોઈ su હશે નહિં"
--#~ msgid "Admin User Role"
--#~ msgstr "સંચાલક વપરાશકર્તા ભૂમિકા"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "ન્યૂનતમ X વિન્ડો વપરાશકર્તા ભૂમિકા"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>રુટ વપરાશકર્તાઓ</b>"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના, કોઈ sudo, "
-+"કોઈ su નથી."
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "રુટ સંચાલક વપરાશકર્તા ભૂમિકા પસંદ કરો, જો આ વપરાશકર્તા મશીનના સંચાલન માટે "
--#~ "વાપરવામાં આવે જ્યારે રુટ તરીકે ચલાવી રહ્યા હોય.  આ વપરાશકર્તા સિસ્ટમમાં સીધો જ પ્રવેશ "
--#~ "કરવા માટે સમર્થ હશે નહિં."
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "વપરાશકર્તા ભૂમિકા"
--#~ msgid "Root Admin User Role"
--#~ msgstr "રુટ સંચાલક વપરાશકર્તા ભૂમિકા"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"પૂરેપૂરા નેટવર્કીંગ સાથેનો વપરાશકર્તા, કોઈ setuid કાર્યક્રમો પરિવહન વિના નથી, su નથી, "
-+"તે રુટ સંચાલન ભૂમિકાઓમાં sudo કરી શકતું નથી"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "શુદ્ધિ કરવા માટેના કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકાનું નામ દાખલ કરો"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "સંચાલક વપરાશકર્તા ભૂમિકા"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>રુટ વપરાશકર્તાઓ</b>"
--#~ msgid "Name"
--#~ msgstr "નામ"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"રુટ સંચાલક વપરાશકર્તા ભૂમિકા પસંદ કરો, જો આ વપરાશકર્તા મશીનના સંચાલન માટે વાપરવામાં "
-+"આવે જ્યારે રુટ તરીકે ચલાવી રહ્યા હોય.  આ વપરાશકર્તા સિસ્ટમમાં સીધો જ પ્રવેશ કરવા માટે "
-+"સમર્થ હશે નહિં."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "રુટ સંચાલક વપરાશકર્તા ભૂમિકા"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "શુદ્ધિ કરવા માટેના કાર્યક્રમ અથવા વપરાશકર્તા ભૂમિકાનું નામ દાખલ કરો"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "નામ"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "શુદ્ધિ કરવા માટેની એક્ઝેક્યુટેબલનો સંપૂર્ણ પાથ દાખલ કરો."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "શુદ્ધિ થયેલ કાર્યક્રમ કે વપરાશકર્તા ભૂમિકા માટે અનન્ય નામ દાખલ કરો."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "એક્ઝેક્યુટેબલ"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init સ્ક્રિપ્ટ"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "શુદ્ધિ કરવા માટેની એક્ઝેક્યુટેબલનો સંપૂર્ણ પાથ દાખલ કરો."
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"શુદ્ધિ થયેલ કાર્યક્રમ શરૂ કરવા માટે વાપરવામાં આવતી init સ્ક્રિપ્ટનો આખો પાથ દાખલ કરો."
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જેને તમે વૈવિધ્યપૂર્ણ બનાવવા માંગો"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "શુદ્ધિ થયેલ કાર્યક્રમ કે વપરાશકર્તા ભૂમિકા માટે અનન્ય નામ દાખલ કરો."
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે કાર્યક્રમ ડોમેઈનોમાં પરિવહન કરશે."
--#~ msgid "Executable"
--#~ msgstr "એક્ઝેક્યુટેબલ"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેમાં આ વપરાશકર્તા ભૂમિકા પરિવહન કરશે"
--#~ msgid "Init script"
--#~ msgstr "Init સ્ક્રિપ્ટ"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
 +msgstr ""
-+"કાર્યક્રમ ડોમેઈનો પસંદ કરો કે જેને તમે પરિવહન કરવા માટે આ વપરાશકર્તા ભૂમિકા આપવા ઈચ્છો."
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "શુદ્ધિ થયેલ કાર્યક્રમ શરૂ કરવા માટે વાપરવામાં આવતી init સ્ક્રિપ્ટનો આખો પાથ દાખલ કરો."
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે આ ડોમેઈનમાં પરિવહન કરશે"
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેને આ વપરાશકર્તા ભૂમિકા સંચાલિત કરશે"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "ડોમેઈનો પસંદ કરો કે જેને તમે આ વપરાશકર્તા મારફતે સંચાલિત કરવા માંગો."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "આ વપરાશકર્તા માટે વધારાની ભૂમિકાઓ પસંદ કરો"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "નેટવર્ક પોર્ટો દાખલ કરો કે જેને કાર્યક્રમ/વપરાશકર્તા ભૂમિકા સાંભળે છે"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP પોર્ટો</b>"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જેને તમે વૈવિધ્યપૂર્ણ બનાવવા માંગો"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટ સાથે બંધાવા માટે પરવાનગી આપે છે"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે કાર્યક્રમ ડોમેઈનોમાં પરિવહન કરશે."
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "બધું"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેમાં આ વપરાશકર્તા ભૂમિકા પરિવહન કરશે"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને bindresvport ને 0 સાથે કોલ કરવા માટે પરવાનગી આપે છે. "
-+"પોર્ટ 600-1024 સાધે બાંધી રહ્યા છીએ"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "કાર્યક્રમ ડોમેઈનો પસંદ કરો કે જેને તમે પરિવહન કરવા માટે આ વપરાશકર્તા ભૂમિકા આપવા "
--#~ "ઈચ્છો."
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "વપરાશકર્તા ભૂમિકાઓ પસંદ કરો કે જે આ ડોમેઈનમાં પરિવહન કરશે"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા ભૂમિકા "
-+"જોડાય. ઉદાહરણ: 612, 650-660"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "વધારાના ડોમેઈનો પસંદ કરો કે જેને આ વપરાશકર્તા ભૂમિકા સંચાલિત કરશે"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "બિનઆરક્ષિત પોર્ટો (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "પોર્ટો પસંદ કરો"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ડોમેઈનો પસંદ કરો કે જેને તમે આ વપરાશકર્તા મારફતે સંચાલિત કરવા માંગો."
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટો > 1024 સાથે બંધાવા માટે પરવાનગી આપે છે"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "આ વપરાશકર્તા માટે વધારાની ભૂમિકાઓ પસંદ કરો"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP પોર્ટો</b>"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "નેટવર્ક પોર્ટો દાખલ કરો કે જેને કાર્યક્રમ/વપરાશકર્તા ભૂમિકા સાંભળે છે"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
 +msgstr ""
-+"અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા ભૂમિકા "
-+"જોડાય"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP પોર્ટો</b>"
-+#: ../gui/polgen.glade:1958
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા ભૂમિકા "
-+"જોડાય. ઉદાહરણ: 612, 650-660"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટ સાથે બંધાવા માટે પરવાનગી આપે "
--#~ "છે"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+"અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા જોડાય. "
-+"ઉદાહરણ: 612, 650-660"
--#~ msgid "All"
--#~ msgstr "બધું"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "સામાન્ય કાર્યક્રમ વર્તનો પસંદ કરો"
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog સંદેશાઓ લખે છે\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp માં કામચલાઉ ફાઈલો બનાવે/જાળવે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "સત્તાધિકરણ માટે Pam વાપરે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch અથવા getpw* કોલ વાપરે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus વાપરે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "audit સંદેશાઓ મોકલે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "ટર્મિનલ સાથે સંપર્ક કરે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ઈમેઈલ મોકલે છે"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "ફાઈલો/ડિરેક્ટરીઓ પસંદ કરો કે જેની વ્યવસ્થા કાર્યક્રમ કરે છે"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને bindresvport ને 0 સાથે કોલ કરવા માટે પરવાનગી આપે છે. "
--#~ "પોર્ટ 600-1024 સાધે બાંધી રહ્યા છીએ"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"ફાઈલો/ડિરેક્ટરીઓ ઉમેરો કે જેની આ કાર્યક્રમને \"લખવાની\" જરૂર પડે. Pid ફાઈલો, લોગ "
-+"ફાઈલો, /var/lib ફાઈલો ..."
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "બુલિયનો પસંદ કરો કે જેનો આ કાર્યક્રમ વપરાશ કરે છે"
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "આ શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા માટે વપરાયેલ બુલિયનો ઉમેરો/દૂર કરો"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "માં પોલીસિ બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "પોલિસી ડિરેક્ટરી"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "પોલિસી ફાઈલો બનાવાયેલ"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
--#~ "ભૂમિકા જોડાય. ઉદાહરણ: 612, 650-660"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"આ સાધન નીચેનું બનાવશે: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  હવે "
-+"તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
-+"avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
-+"te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "બિનઆરક્ષિત પોર્ટો (>1024)"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"આ સાધન નીચેનું બનાવશે: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  હવે "
-+"તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
-+"avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
-+"te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
-+
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "બુલિયનો સંવાદ ઉમેરો"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "બુલિયન નામ"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "ભૂમિકા"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "હાલનો વપરાશકર્તા (_U)"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "કાર્યક્રમ"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ડિરેક્ટરી હોવી જ જોઈએ"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "તમારે વપરાશકર્તા પસંદ કરવો જ પડશે"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "શુદ્ધિ કરવા માટે એક્ઝેક્યુટેબલ ફાઈલ પસંદ કરો."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "શુદ્ધિ કરવા માટે init સ્ક્રિપ્ટ ફાઈલ પસંદ કરો."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "ફાઈલ(ઓ) પસંદ કરો કે જેને શુદ્ધિ કરેલ કાર્યક્રમ બનાવે છે અથવા લખે છે"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "ડિરેક્ટરી(ઓ) પસંદ કરો કે જે શુદ્ધિ થયેલ કાર્યક્રમની માલિકીની છે અથવા જેમા લખે છે"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "પોલિસી ફાઈલો બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
--#~ msgid "Select Ports"
--#~ msgstr "પોર્ટો પસંદ કરો"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"પ્રકાર %s_t વર્તમાન પોલીસિમાં પહેલાથી જ વ્યાખ્યાયિત છે.\n"
-+"શું તમે ચાલુ રાખવા માંગો છો?"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ udp પોર્ટો > 1024 સાથે બંધાવા માટે પરવાનગી આપે છે"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "નામની ખાતરી કરો"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP પોર્ટો</b>"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"મોડ્યુલ %s.pp પહેલાથી જ વર્તમાન પોલીસિમાં લોડ થયેલ છે.\n"
-+"શું તમે ચાલુ રાખવા માંગો છો?"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
--#~ "ભૂમિકા જોડાય."
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "તમારે નામ દાખલ કરવું જ પડશે"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
--#~ "ભૂમિકા જોડાય. ઉદાહરણ: 612, 650-660"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "તમારે એક્ઝેક્યુટેબલ દાખલ કરવી જ પડશે"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "અલ્પવિરામથી અલગ પડેલ udp પોર્ટોની યાદી દાખલ કરો કે જેને આ કાર્યક્રમ/વપરાશકર્તા "
--#~ "જોડાય. ઉદાહરણ: 612, 650-660"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux રૂપરેખાંકિત કરો"
--#~ msgid "Select common application traits"
--#~ msgstr "સામાન્ય કાર્યક્રમ વર્તનો પસંદ કરો"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "પોર્ટો નંબરો કે 1 થી %d સુધીના વિસ્તારના નંબરો હોવા જ જોઈએ "
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog સંદેશાઓ લખે છે\t"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "તમારે તમારી શુદ્ધિ થયેલ પ્રક્રિયા/વપરાશકર્તા માટે નામ દાખલ કરવું જ પડશે"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp માં કામચલાઉ ફાઈલો બનાવે/જાળવે છે"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER પ્રકારો માન્ય એક્ઝેક્યુટેબલો નથી"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "સત્તાધિકરણ માટે Pam વાપરે છે"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "માત્ર DAEMON કાર્યક્રમો init સ્ક્રિપ્ટ વાપરી શકે"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch અથવા getpw* કોલ વાપરે છે"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog એ બુલિયન કિંમત હોવો જ જોઈએ "
--#~ msgid "Uses dbus"
--#~ msgstr "dbus વાપરે છે"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER પ્રકારો આપોઆપ tmp પ્રકાર મેળવે છે"
--#~ msgid "Sends audit messages"
--#~ msgstr "audit સંદેશાઓ મોકલે છે"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "તમારી શુદ્ધિ પ્રક્રિયા માટે તમારે એક્ઝેક્યુટેબલ પાથ દાખલ કરવો જ પડશે"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ટર્મિનલ સાથે સંપર્ક કરે છે"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "પ્રકાર દબાણ ફાઈલ"
--#~ msgid "Sends email"
--#~ msgstr "ઈમેઈલ મોકલે છે"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ઈન્ટરફેસ ફાઈલ"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "ફાઈલો/ડિરેક્ટરીઓ પસંદ કરો કે જેની વ્યવસ્થા કાર્યક્રમ કરે છે"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ફાઈલ સંદર્ભો ફાઈલ"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ફાઈલો/ડિરેક્ટરીઓ ઉમેરો કે જેની આ કાર્યક્રમને \"લખવાની\" જરૂર પડે. Pid ફાઈલો, લોગ "
--#~ "ફાઈલો, /var/lib ફાઈલો ..."
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "સેટઅપ સ્ક્રિપ્ટ"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "બુલિયનો પસંદ કરો કે જેનો આ કાર્યક્રમ વપરાશ કરે છે"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "નેટવર્ક પોર્ટ"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "આ શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા માટે વપરાયેલ બુલિયનો ઉમેરો/દૂર કરો"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux પોર્ટ\n"
-+"પ્રકાર"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "માં પોલીસિ બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "પ્રોટોકોલ"
--#~ msgid "Policy Directory"
--#~ msgstr "પોલિસી ડિરેક્ટરી"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"સ્તર"
--#~ msgid "Generated Policy Files"
--#~ msgstr "પોલિસી ફાઈલો બનાવાયેલ"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "પોર્ટ"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "પોર્ટ નંબર \"%s\" એ માન્ય નથી.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "યાદી દેખાવ"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "જૂથ દેખાવ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -87312,26 +94912,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux સેવા સુરક્ષા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "સંચાલક"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "ડિમનોને મૂળફાઈલો / માં લખવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "બધા ડિમનોને બિન ફાળવેલ ttys વાપરવા માટેની ક્ષમતા આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -87340,182 +94940,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "વપરાશકર્તા વિશેષાધિકારો"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "આ સાધન નીચેનું બનાવશે: \n"
--#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
--#~ "કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  "
--#~ "હવે તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
--#~ "avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
--#~ "te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
-+"માટે પરવાનગી આપો"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "આ સાધન નીચેનું બનાવશે: \n"
--#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
--#~ "કમ્પાઈલ/સ્થાપન કરવા માટે અને ફાઈલો/ડિરેક્ટરીઓ પુનઃલેબલ કરવા માટે શેલ સ્ક્રિપ્ટ ચલાવો.  "
--#~ "હવે તમે મશીનને પરવાનગીય સ્થિતિમં મૂકી શકો છો (setenforce 0). \n"
--#~ "avc સંદેશાઓ પેદા કરવા માટે કાર્યક્રમ ચલાવો/પુનઃશરૂ કરો.\n"
--#~ "te ફાઈલ માટે વધારાના નિયમો બનાવવા માટે audit2allow -R વાપરો.\n"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"મહેમાન SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp ડિરેક્ટરીમાં ફાઈલો "
-+"ચલાવવાની પરવાનગી આપો"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "બુલિયનો સંવાદ ઉમેરો"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "મેમરી સુરક્ષા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "માઉન્ટ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "mount ને કોઈપણ ફાઈલ માઉન્ટ કરવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "mount ને કોઈપણ ડિરેક્ટરી માઉન્ટ કરવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh ને ssh-keysign ચલાવવા માટે પરવાનગી આપો"
--#~ msgid "Boolean Name"
--#~ msgstr "બુલિયન નામ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"સ્ટાફ SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા માટે "
-+"પરવાનગી આપો"
--#~ msgid "Role"
--#~ msgstr "ભૂમિકા"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા માટે "
-+"પરવાનગી આપો"
--#~ msgid "Existing_User"
--#~ msgstr "હાલનો વપરાશકર્તા (_U)"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"unconfined SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
-+"માટે પરવાનગી આપો"
--#~ msgid "Application"
--#~ msgstr "કાર્યક્રમ"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "નેટવર્ક રૂપરેખાંકન"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "લેબલ વિનાના પેકેટોને નેટવર્ક પર વહેવા માટે પરવાનગી આપો"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ડિરેક્ટરી હોવી જ જોઈએ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા માટે "
-+"વપરાશકર્તાને પરવાનગી આપો"
--#~ msgid "You must select a user"
--#~ msgstr "તમારે વપરાશકર્તા પસંદ કરવો જ પડશે"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "unconfined dyntrans ને unconfined_execmem ની પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "ડેટાબેઝો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "વપરાશકર્તાને mysql સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "વપરાશકર્તાને postgres સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "ક્લાઈન્ટોને X વહેંચાયેલ મેમરીમાં લખવા માટે પરવાનગી આપો"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "શુદ્ધિ કરવા માટે એક્ઝેક્યુટેબલ ફાઈલ પસંદ કરો."
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
-+"માટે પરવાનગી આપો"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "શુદ્ધિ કરવા માટે init સ્ક્રિપ્ટ ફાઈલ પસંદ કરો."
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "ડિમનોને NIS સાથે ચલાવવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -87523,1125 +95060,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "વેબ કાર્યક્રમો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "પરિવહન સ્ટાફ SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈનમાં"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "પરિવહન sysadm SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "પરિવહન વપરાશકર્તા SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "પરિવહન xguest SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "સ્ટાફ વેબ બ્રાઉઝરોને ઘર ડિરેક્ટરીઓમાં લખવાની પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "SELinux સુરક્ષાને amanda માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "SELinux સુરક્ષાને amavis માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "SELinux સુરક્ષાને apmd ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "SELinux સુરક્ષાને arpwatch ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "SELinux સુરક્ષાને auditd ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "SELinux સુરક્ષાને automount ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "SELinux સુરક્ષાને avahi માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "SELinux સુરક્ષાને bluetooth ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "SELinux સુરક્ષાને canna ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "SELinux સુરક્ષાને cardmgr ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "SELinux સુરક્ષાને ક્લસ્ટર સર્વર માટે નિષ્ક્રિય કરો"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "ફાઈલ(ઓ) પસંદ કરો કે જેને શુદ્ધિ કરેલ કાર્યક્રમ બનાવે છે અથવા લખે છે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord ને વિવિધ સમાવિષ્ટ વાંચવા માટે પરવાનગી આપો. nfs, samba, દૂર કરી શકાય તેવા "
-+"ઉપકરણો, વપરાશકર્તા કામચલાઉ અને અવિશ્વાસુ સમાવિષ્ટ ફાઈલો"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "ડિરેક્ટરી(ઓ) પસંદ કરો કે જે શુદ્ધિ થયેલ કાર્યક્રમની માલિકીની છે અથવા જેમા લખે છે"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "SELinux સુરક્ષાને ciped ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "SELinux સુરક્ષાને clamd ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "SELinux સુરક્ષાને clamscan માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "SELinux સુરક્ષાને clvmd માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "SELinux સુરક્ષાને comsat ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "SELinux સુરક્ષાને courier ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "SELinux સુરક્ષાને cpucontrol ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "SELinux સુરક્ષાને cpuspeed ડિમન માટે નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "છાપન"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd બેકેન્ડ સર્વર માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t ને ડિમનો સીધા જ શરૂ કરવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "ઈવોલ્યુશન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "રમતો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "રમતો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "વેબ બ્રાઉઝરો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "થન્ડરબર્ડ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "સુગમતા"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "પોલિસી ફાઈલો બનાવવા માટે ડિરેક્ટરી પસંદ કરો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"વસ્તુઓનું સંપાદન કરો નહિં કે જેને આપણે જાણતા હોઈએ કે ભાંગેલ છે પરંતુ જેઓને સુરક્ષા જોખમો નથી"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "પ્રકાર %s_t વર્તમાન પોલીસિમાં પહેલાથી જ વ્યાખ્યાયિત છે.\n"
--#~ "શું તમે ચાલુ રાખવા માંગો છો?"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD સેવા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd બાળ ડિમનો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "કર્બરોઝ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "ઈવોલ્યુશન અને થન્ડરબર્ડને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "મોઝિલ્લા બ્રાઉઝરને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "નામ સેવા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "સામ્બા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd ને નિયમિત વપરાશકર્તા તરીકે ચલાવવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readhead માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "Verify Name"
--#~ msgstr "નામની ખાતરી કરો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"કાર્યક્રમોને બિન-પ્રમાણભૂત સ્થાનોએ રહેલ ફાઈલો વાંચવા માટે પરવાનગી આપો (default_t)"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "મોડ્યુલ %s.pp પહેલાથી જ વર્તમાન પોલીસિમાં લોડ થયેલ છે.\n"
--#~ "શું તમે ચાલુ રાખવા માંગો છો?"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "You must enter a name"
--#~ msgstr "તમારે નામ દાખલ કરવું જ પડશે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "You must enter a executable"
--#~ msgstr "તમારે એક્ઝેક્યુટેબલ દાખલ કરવી જ પડશે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux રૂપરેખાંકિત કરો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "પોર્ટો નંબરો કે 1 થી %d સુધીના વિસ્તારના નંબરો હોવા જ જોઈએ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "તમારે તમારી શુદ્ધિ થયેલ પ્રક્રિયા/વપરાશકર્તા માટે નામ દાખલ કરવું જ પડશે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER પ્રકારો માન્ય એક્ઝેક્યુટેબલો નથી"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "માત્ર DAEMON કાર્યક્રમો init સ્ક્રિપ્ટ વાપરી શકે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog એ બુલિયન કિંમત હોવો જ જોઈએ "
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER પ્રકારો આપોઆપ tmp પ્રકાર મેળવે છે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh ને ડિમન તરીકે ચલાવવાની જગ્યાએ inetd માંથી ચલાવવા માટે પરવાનગી આપો"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "તમારી શુદ્ધિ પ્રક્રિયા માટે તમારે એક્ઝેક્યુટેબલ પાથ દાખલ કરવો જ પડશે"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba ને nfs ડિરેક્ટરીઓ વહેંચવા માટે પરવાનગી આપો"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "પ્રકાર દબાણ ફાઈલ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL સત્તાધિકરણ સર્વર"
--#~ msgid "Interface file"
--#~ msgstr "ઈન્ટરફેસ ફાઈલ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl સત્તાધિકરણ સર્વરને /etc/shadow વાંચવા માટે પરવાનગી આપો"
--#~ msgid "File Contexts file"
--#~ msgstr "ફાઈલ સંદર્ભો ફાઈલ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows સર્વરને મેમરી વિસ્તાર એક્ઝેક્યુટેબલ અને લખી શકાય તેવું એમ બંને સાથે મેપ કરવા માટે "
-+"પરવાનગી આપો"
--#~ msgid "Setup Script"
--#~ msgstr "સેટઅપ સ્ક્રિપ્ટ"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo અને su effected માં રૂપાંતરણને પરવાનગી આપશો નહિં"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "કોઈપણ પ્રક્રિયાઓને કર્નલ મોડ્યુલો લાવવા માટે પરવાનગી આપશો નહિં"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "કોઈપણ પ્રક્રિયાઓને કર્નલ SELinux પોલિસી સુધારવા માટે પરવાનગી આપશો નહિં"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "સ્પામ સુરક્ષા"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd ને ઘર ડિરેક્ટરીઓ વાપરવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assasin ડિમન નેટવર્ક વપરાશને પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid ડિમનને નેટવર્ક સાથે જોડાવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux પોર્ટ\n"
--#~ "પ્રકાર"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r વપરાશકર્તાઓને sysadm ઘર ડિરેક્ટરીમાં શોધવા અને ફાઈલો વાંચવા માટે પરવાનગી આપો "
-+"(જેમ કે ~/.bashrc)"
--#~ msgid "Protocol"
--#~ msgstr "પ્રોટોકોલ"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "સાર્વત્રિક SSL ટનલ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel ડિમનને એકલું ચલાવવા માટે પરવાનગી આપો, xinetd ની બહાર"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "સિસ્ટમ cron ક્રિયાઓ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "સ્તર"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd ને unconfined ચલાવવા માટે પરવાનગી આપો, કોઈપણ સેવાઓનો સમાવેશ કરીને કે જેને તે "
-+"શરૂ કરે છે અને જેની પાસે ડોમેઈન પરિવહન બાહ્ય રીતે વ્યાખ્યાયિત થયેલ નહિં હોય"
--#~ msgid "Port"
--#~ msgstr "પોર્ટ"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc સ્ક્રિપ્ટોને unconfined ચલાવવા માટે પરવાનગી આપો, rc સ્ક્રિપ્ટ દ્વારા શરૂ થયેલ કોઈપણ "
-+"ડિમનનો સમાવેશ કરીને કે જેને પરિવહન બાહ્ય રીતે વ્યાખ્યાયિત થયેલ નહિં હોય"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "પોર્ટ નંબર \"%s\" એ માન્ય નથી.  0 < PORT_NUMBER < 65536 "
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm ને unconfined ચલાવવા માટે પરવાનગી આપો"
--#~ msgid "List View"
--#~ msgstr "યાદી દેખાવ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"hotplug અને insmod જેવી વિશેષાધિકારીત ઉપયોગીતાઓને unconfined ચલાવવા માટે પરવાનગી "
-+"આપો"
--#~ msgid "Group View"
--#~ msgstr "જૂથ દેખાવ"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "utimed ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux સેવા સુરક્ષા"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r ને sysadm_r સુધી su, sudo, અથવા userhelper મારફતે પહોંચવા માટે પરવાનગી "
-+"આપો. નહિંતર, માત્ર staff_r આવું કરી શકશે"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "વપરાશકર્તાઓને mount આદેશ ચલાવવા માટે પરવાનગી આપો"
--#~ msgid "Admin"
--#~ msgstr "સંચાલક"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"નિયમિત વપરાશકર્તાઓને સીધો માઉસ વપરાશની પરવાનગી આપો (માત્ર X સર્વરને પરવાનગી આપો)"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "ડિમનોને મૂળફાઈલો / માં લખવા માટે પરવાનગી આપો"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "વપરાશકર્તાઓને dmesg આદેશ ચલાવવા માટે પરવાનગી આપો"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "બધા ડિમનોને બિન ફાળવેલ ttys વાપરવા માટેની ક્ષમતા આપો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"વપરાશકર્તાઓને નેટવર્ક ઈન્ટરફેસો નિયંત્રિત કરવા માટે પરવાનગી આપો (USERCTL=true ની પણ "
-+"જરૂર છે)"
--#~ msgid "User Privs"
--#~ msgstr "વપરાશકર્તા વિશેષાધિકારો"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "સામાન્ય વપરાશકર્તાને ping ચલાવવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "વપરાશકર્તાને r/w noextattrfile માટે પરવાનગી આપો (FAT, CDROM, FLOPPY)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "વપરાકર્તાઓને rw usb ઉપકરણોની પરવાનગી આપો"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો એક્ઝેક્યુટ "
--#~ "કરવા માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"વપરાશકર્તાઓને TCP સર્વરો ચલાવવા માટે પરવાનગી આપો (પોર્ટો સાથે બાંધો અને એક જ ડોમેઈન "
-+"અને બાહ્ય વપરાશકર્તાઓમાંથી જોડાણ સ્વીકારો)  આને નિષ્ક્રિય કરવાનું FTP પેસીવ સ્થિતિને દબાણ "
-+"કરે છે અને અન્ય પ્રોટોકોલોને પણ બદલશે"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "વપરાશકર્તાઓને ttyfiles ની પરિસ્થિતિ આપવા માટે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen ને ભૌતિક ડિસ્ક ઉપકરણ પર વાંચવા/લખવાની પરવાનગી આપો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen કન્સોલ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS પાસવર્ડ ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS પરિવહન ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "મહેમાન SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp ડિરેક્ટરીમાં ફાઈલો "
--#~ "એક્ઝેક્યુટ કરવાની પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારી વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓની વ્યવસ્થા "
-+"કરવા માટે પરવાનગી આપો"
--#~ msgid "Memory Protection"
--#~ msgstr "મેમરી સુરક્ષા"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારીત વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓ વાંચવા માટે "
-+"પરવાનગી આપો"
--#~ msgid "Allow java executable stack"
--#~ msgstr "java એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "શું તમે ખરેખર %s '%s' કાઢી નાંખવા માંગો છો?"
--#~ msgid "Mount"
--#~ msgstr "માઉન્ટ"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s કાઢી નાંખો"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "mount ને કોઈપણ ફાઈલ માઉન્ટ કરવા માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s ઉમેરો"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "mount ને કોઈપણ ડિરેક્ટરી માઉન્ટ કરવા માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s સુધારો"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer એક્ઝેક્યુટેબલ સ્ટેકને પરવાનગી આપો"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "છૂટ આપનારું"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "દબાણ કરવુ"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh ને ssh-keysign ચલાવવા માટે પરવાનગી આપો"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Disabled"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "સ્ટાફ SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
--#~ "માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "પરિસ્થિતિ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
--#~ "માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"પોલિસી પ્રકાર બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ આપી "
-+"શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું તમે ચાલુ "
-+"રાખવા માંગો છો?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "unconfined SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો "
--#~ "ચલાવવા માટે પરવાનગી આપો"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -88651,82 +96018,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux નિષ્ક્રિયકૃતમાં બદલવા માટે રીબુટ જરૂરી છે.  એ આગ્રહણીય નથી.  જો તમે પછીથી "
-+"SELinux ને પાછું ચાલુ કરવાનું નક્કી કરો, તો સિસ્ટમને પુનઃલેબલ કરવાની જરૂર રહેશે.  જો તમે "
-+"ખાલી એ જોવા માંગો કે શું SELinux એ તમારી સિસ્ટમ પર સમસ્યા સર્જી રહી છે, તો તમે "
-+"પરવાનગીય સ્થિતિમાં જઈ શકશો કે જે માત્ર ભૂલો જ લોગ કરશે અને SELinux પોલિસીને દબાણ કરશે "
-+"નહિં. પરવાનગીય સ્થિતિને રીબુટ કરવાની જરૂર રહેતી નથી    શું તમે ચાલુ રાખવા માંગો છો?"
--#~ msgid "Network Configuration"
--#~ msgstr "નેટવર્ક રૂપરેખાંકન"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux સક્રિયકૃતમાં બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ "
-+"આપી શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું તમે "
-+"ચાલુ રાખવા માંગો છો?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "લેબલ વિનાના પેકેટોને નેટવર્ક પર વહેવા માટે પરવાનગી આપો"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "SELinux વપરાશકર્તા ખાતાઓને તેની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા માટે "
--#~ "પરવાનગી આપો"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux પ્રવેશ મેપીંગ ઉમેરો"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux નેટવર્ક પોર્ટો ઉમેરો"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux પ્રકાર"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "unconfined dyntrans ને unconfined_execmem ની પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"સ્તર"
--#~ msgid "Databases"
--#~ msgstr "ડેટાબેઝો"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "ફાઈલ સ્પષ્ટીકરણ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ફાઈલ પ્રકાર"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "વપરાશકર્તાને mysql સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -88737,2857 +96069,2092 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"બધી ફાઈલો\n"
-+"નિયમિત ફાઈલ\n"
-+"ડિરેક્ટરી\n"
-+"અક્ષર ઉપકરણ\n"
-+"બ્લોક ઉપકરણ\n"
-+"સોકેટ\n"
-+"સાંકેતિક કડી\n"
-+"નામવાળું પાઈપ\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux વપરાશકર્તા ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux સંચાલન"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "ગુણધર્મો (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "કાઢો (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "વ્યવસ્થાપન ઓબ્જેક્ટ પસંદ કરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>પસંદ કરો:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "સિસ્ટમ મૂળભૂત દબાણ સ્થિતિ"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "વપરાશકર્તાને postgres સોકેટ સાથે જોડાવા માટે પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"નિષ્ક્રિય થયેલ\n"
-+"છૂટ આપનારુ\n"
-+"દબાણ કરવુ\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "વર્તમાન દબાણ સ્થિતિ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "સિસ્ટમ મૂળભૂત પોલિસી પ્રકાર: "
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"આગળના રીબુટ પર તમે શું વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવા ઈચ્છો છો તે પસંદ કરો.  પુનઃલેબલ "
-+"કરવાનું લાંબો સમય લઈ શકે છે, સિસ્ટમના માપ પર આધાર રાખીને.  જો તમે પોલિસી પ્રકારો બદલી "
-+"રહ્યા હોય અથવા દબાણ પૂર્વક નિષ્ક્રિય થયેલ હોય, તો પુનઃલેબલ જરૂરી છે."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "આગળના પુનઃબુટ પર પુનઃલેબલ."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "લેબલ૩૭"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "બુલિયન સુયોજનને સિસ્ટમ મૂળભૂતમાં ઉલટાવો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા બુલિયનો વચ્ચે ફેરબદલી કરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "બુલિયન લોકડાઉન વિઝાર્ડને ચલાવો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "લોકડાઉન..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "ગાળક"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "લેબલ૫૦"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "ફાઈલ સંદર્ભ ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "ફાઈલ સંદર્ભ સુધારો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "ફાઈલ સંદર્ભ કાઢો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "બધા અને વૈવિધ્યપૂર્ણ બનાવેલ ફાઈલ સંદર્ભ વચ્ચે બદલો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "લેબલ૩૮"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux વપરાશકર્તા મેપીંગ ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux વપરાશકર્તા માપન સુધારો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux વપરાશકર્તા માપન કાઢો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "લેબલ૩૯"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "વપરાશકર્તાને ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "વપરાશકર્તાને બદલો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "વપરાશકર્તાને કાઢી નાંખો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "લેબલ૪૧"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "ભાષાંતર ઉમેરો"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "ભાષાંતર સુધારો"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "ભાષાંતર કાઢો"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "નેટવર્ક પોર્ટ ઉમેરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "નેટવર્ક પોર્ટમાં ફેરફાર કરો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "નેટવર્ક પોર્ટ કાઢો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા પોર્ટ વચ્ચે બદલો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "લેબલ૪૨"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "નવું પોલિસી મોડ્યુલ બનાવો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "પોલિસી મોડ્યુલ લાવો"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "લાવી શકાય તેવું પોલિસી મોડ્યુલ દૂર કરો"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "ક્લાઈન્ટોને X વહેંચાયેલ મેમરીમાં લખવા માટે પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"વધારાના સંપાદન નિયમો સક્રિય/નિષ્ક્રિય કરો, કે જેઓ સામાન્ય રીતે લોગ ફાઈલોમાં અહેવાલ "
-+"અપાયેલ નહિં હોય."
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/hi.po b/policycoreutils/po/hi.po
+index f1a3b31..09de31c 100644
+--- a/policycoreutils/po/hi.po
++++ b/policycoreutils/po/hi.po
+@@ -1,36 +1,22 @@
+-# translation of policycoreutils.HEAD.hi.po to Hindi
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
+-# Rajesh Ranjan <rranjan@redhat.com>, 2006, 2007, 2008.
++# Translators:
++# Rajesh Ranjan <rranjan@redhat.com>, 2006, 2007, 2008, 2009, 2010.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD.hi\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-31 15:14+0530\n"
+-"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
+-"Language-Team: Hindi <hindi.sf.net>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Hindi <indlinux-hindi@lists.sourceforge.net>\n"
+ "Language: hi\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -125,9 +111,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage संबंधन स्थापित नहीं कर सका"
+ #: ../semanage/seobject.py:245
 -#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux વપરાશકર્તા ખાતાઓને તેમની ઘર ડિરેક્ટરી અથવા /tmp માં ફાઈલો ચલાવવા "
--#~ "માટે પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "લેબલ૪૪"
+ msgid "Could not test MLS enabled status"
+-msgstr "MLS परिसर %s के लिये सेट नहीं कर सका"
++msgstr "MLS सक्रिय स्थिति जाँच नहीं सका"
  
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "છૂટ અપાય એવુ મેળવવા માટે પ્રક્રિયા સ્થિતિને બદલો."
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -135,36 +120,33 @@ msgstr "अब तक लागू नहीं"
  
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "ડિમનોને NIS સાથે ચલાવવા માટે પરવાનગી આપો"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "દબાણ કરવા મેળવવા માટે પ્રક્રિયાને બદલો"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "सीमैनेज लेनदेन पहले से प्रगति पर है"
  
--#~ msgid "Web Applications"
--#~ msgstr "વેબ કાર્યક્રમો"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "પ્રક્રિયા ડોમેઇન"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage विनिमय आरंभ नहीं कर सका"
  
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "પરિવહન સ્ટાફ SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈનમાં"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage विनिमय आरंभ नहीं कर सका"
++msgstr "semanage विनिमय सौंप नहीं सका"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "सीमैनेज लेनदेन प्रगति पर नहीं है"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux उपयोक्ता सूचीबद्ध नहीं सका"
++msgstr "SELinux मॉड्यूल सूचीबद्ध नहीं सका"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "मॉड्यूल नाम"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "संस्करण"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "निष्क्रिय"
+@@ -174,9 +156,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s भूमिका %s के लिये जोड़ नहीं सका"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -188,24 +170,22 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "अनुज्ञात्मक"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "अनुज्ञात्मक"
++msgstr ""
+ #: ../semanage/seobject.py:438
+ #, python-format
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "अनुज्ञात्मक डोमेन %s (मॉड्यूल संस्थापन विफल) सेट नहीं कर सका"
+ #: ../semanage/seobject.py:444
+ #, python-format
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "अनुज्ञात्मक डोमेन %s (हटाना विफल) हटा नहीं सका"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -225,9 +205,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "नहीं जांच सका अगर %s के लिये लॉगिन मैपिंग परिभाषित है"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux उपयोक्ता %s मौजूद नहीं है"
++msgstr "Linux समूह %s मौजूद नहीं है"
+ #: ../semanage/seobject.py:497
+ #, python-format
+@@ -294,15 +274,20 @@ msgid "Could not list login mappings"
+ msgstr "लॉगिन मैपिंग नहीं सूचीबद्ध कर सका"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "लॉगिन नाम"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "SELinux उपयोक्ता"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "MLS/MCS परिसर"
+@@ -320,9 +305,9 @@ msgid "Could not query user for %s"
+ msgstr "%s के लिये उपयोक्ता को प्रश्न नहीं कर सकता"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s के लिये फाइल संदर्भ नहीं जोड़ सका"
++msgstr "आपको कम से कम एक भूमिका %s के लिए जरूर जोड़ना चाहिए"
+ #: ../semanage/seobject.py:737
+ #, python-format
+@@ -412,6 +397,7 @@ msgid "MCS Range"
+ msgstr "MCS परिसर"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux भूमिका"
+@@ -424,9 +410,8 @@ msgid "Port is required"
+ msgstr "पोर्ट जरूरी है"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "अवैध उपसर्ग %s"
++msgstr ""
+ #: ../semanage/seobject.py:979
+ #, python-format
+@@ -543,18 +528,17 @@ msgstr "SELinux पोर्ट प्रकार"
+ msgid "Proto"
+ msgstr "प्रोटो"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr "पोर्ट संख्या"
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "पोर्ट जरूरी है"
++msgstr "नोड पता जरूरी है"
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+-msgstr ""
++msgstr "अज्ञात व अनुपस्थित प्रोटोकॉल"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -571,14 +555,14 @@ msgstr "%s के लिये कुंजी नहीं बना सका"
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not check if addr %s is defined"
+-msgstr "जांच नहीं सका अगर पोर्ट %s/%s परिभाषित है"
++msgstr "जांच नहीं सका अगर addr %s परिभाषित है"
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create addr for %s"
+-msgstr "%s के लिये कुंजी नहीं बना सका"
++msgstr "%s के लिये addr नहीं बना सका"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -587,74 +571,72 @@ msgid "Could not create context for %s"
+ msgstr "%s के लिये संदर्भ बना नहीं सका"
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mask for %s"
+-msgstr "%s के लिये नाम सेट नहीं कर सका"
++msgstr "%s के लिये मास्क सेट नहीं कर सका"
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set user in addr context for %s"
+-msgstr "%s के लिये फाइल संदर्भ में उपयोक्ता सेट नहीं कर सका"
++msgstr "%s के लिये addr संदर्भ में उपयोक्ता सेट नहीं कर सका"
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set role in addr context for %s"
+-msgstr "%s के लिये फाइल संदर्भ में भूमिका सेट नहीं कर सका"
++msgstr "%s के लिये addr संदर्भ में भूमिका सेट नहीं कर सका"
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set type in addr context for %s"
+-msgstr "%s के लिये फाइल संदर्भ में टाइप सेट नहीं कर सका"
++msgstr "%s के लिये addr संदर्भ में टाइप सेट नहीं कर सका"
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "mls क्षेत्र %s के लिये फाइल संदर्भ के क्रम में नहीं सेट कर सका"
++msgstr "%s के लिये addr संदर्भ के mls क्षेत्र में नहीं सेट कर सका"
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set addr context for %s"
+-msgstr "%s के लिये फाइल संदर्भ नहीं सेट कर सका"
++msgstr "%s के लिये addr संदर्भ नहीं सेट कर सका"
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not add addr %s"
+-msgstr "%s/%s पोर्ट जोड़ नहीं सका"
++msgstr "%s पोर्ट जोड़ नहीं सका"
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is not defined"
+-msgstr "पोर्ट %s/%s परिभाषित नहीं है"
++msgstr "Addr %s परिभाषित नहीं है"
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not query addr %s"
+-msgstr "%s/%s पोर्ट प्रश्न नहीं कर सका"
++msgstr "addr %s को प्रश्न नहीं कर सका"
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not modify addr %s"
+-msgstr "%s/%s पोर्ट रूपांतरित नहीं कर सका"
++msgstr "addr %s रूपांतरित नहीं कर सका"
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "%s/%s नीति में परिभाषित है, मिटा नहीं सकता"
++msgstr "Addr %s नीति में परिभाषित है, मिटाया नहीं जा सकता है"
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete addr %s"
+-msgstr "%s मिटा नहीं सका"
++msgstr "addr %s मिटा नहीं सका"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s के लिये लॉगिन मैपिंग नहीं मिटा सका"
++msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "पोर्ट सूची बद्ध नहीं कर सका"
++msgstr "addrs सूची बद्ध नहीं कर सका"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -728,9 +710,8 @@ msgid "Could not delete interface %s"
+ msgstr "%s अंतरफलक मिटा नहीं सका"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s अंतरफलक मिटा नहीं सका"
++msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -745,9 +726,9 @@ msgid "Context"
+ msgstr "संदर्भ"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s के लिये फाइल संदर्भ पहले से परिभाषित है"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -755,9 +736,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux उपयोक्ता %s मौजूद नहीं है"
++msgstr ""
+ #: ../semanage/seobject.py:1692
+ #, python-format
+@@ -877,11 +858,10 @@ msgid ""
+ msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -900,14 +880,14 @@ msgid "Could not query file context %s"
+ msgstr "%s फाइल संदर्भ को प्रश्न नहीं कर सका"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "आपको एक मान अवश्य निर्दिष्ट करना है"
++msgstr "आपको निम्नलिखित मान अवश्य निर्दिष्ट करना है: %s"
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "%s बुलियन मिटा नहीं सका"
++msgstr "%s बुलियन का सक्रिय मान सेट नहीं कर सका"
+ #: ../semanage/seobject.py:2007
+ #, python-format
+@@ -917,7 +897,7 @@ msgstr "%s बुलियन रूपांतरित नहीं कर 
+ #: ../semanage/seobject.py:2025
+ #, python-format
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "खराब प्रारूप %s: रिकार्ड %s"
+ #: ../semanage/seobject.py:2048
+ #, python-format
+@@ -950,15 +930,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux बूलियन"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "स्तर"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "विवरण"
+@@ -1295,1729 +1275,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "विकल्प त्रुटि %s"
  
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "પરિવહન sysadm SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "પરિવહન વપરાશકર્તા SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "પરિવહન xguest SELinux વપરાશકર્તાથી વેબ બ્રાઉઝર ડોમેઈન"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "સ્ટાફ વેબ બ્રાઉઝરોને ઘર ડિરેક્ટરીઓમાં લખવાની પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "SELinux સુરક્ષાને amanda માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "SELinux સુરક્ષાને amavis માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "SELinux સુરક્ષાને apmd ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "SELinux સુરક્ષાને arpwatch ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "SELinux સુરક્ષાને auditd ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "SELinux સુરક્ષાને automount ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "SELinux સુરક્ષાને avahi માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "SELinux સુરક્ષાને bluetooth ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "SELinux સુરક્ષાને canna ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "SELinux સુરક્ષાને cardmgr ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "SELinux સુરક્ષાને ક્લસ્ટર સર્વર માટે નિષ્ક્રિય કરો"
--
 -#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "cdrecord ને વિવિધ સમાવિષ્ટ વાંચવા માટે પરવાનગી આપો. nfs, samba, દૂર કરી શકાય "
--#~ "તેવા ઉપકરણો, વપરાશકર્તા કામચલાઉ અને અવિશ્વાસુ સમાવિષ્ટ ફાઈલો"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "SELinux સુરક્ષાને ciped ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "SELinux સુરક્ષાને clamd ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "SELinux સુરક્ષાને clamscan માટે નિષ્ક્રિય કરો"
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s खोलने में असमर्थ: गैर-MLS मशीन पर अनुवाद समर्थित नहीं: %s"
 -
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "SELinux સુરક્ષાને clvmd માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "SELinux સુરક્ષાને comsat ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "SELinux સુરક્ષાને courier ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "SELinux સુરક્ષાને cpucontrol ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "SELinux સુરક્ષાને cpuspeed ડિમન માટે નિષ્ક્રિય કરો"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Printing"
--#~ msgstr "છાપન"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd બેકેન્ડ સર્વર માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Level"
+-#~ msgstr "स्तर"
 -
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Translation"
+-#~ msgstr "अनुवाद"
 -
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t ને ડિમનો સીધા જ શરૂ કરવા માટે પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ઈવોલ્યુશન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Games"
--#~ msgstr "રમતો"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "રમતો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "વેબ બ્રાઉઝરો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "થન્ડરબર્ડ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Compatibility"
--#~ msgstr "સુગમતા"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "अनुवाद में '%s' खाली स्थान नहीं होते हैं."
 -
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "अवैध स्तर '%s' "
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s पहले से अनुवाद में परिभाषित है"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s अनुवाद में परिभाषित नहीं है"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s के लिये लॉगिन मैपिंग पहले से परिभाषित है"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux उपयोक्ता मैपिंग जोड़ें"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux उपयोक्ता %s पहले से परिभाषित है"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "पोर्ट जरूरी है"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "%s/%s पोर्ट पहले से परिभाषित है"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s अंतरफलक पहले से परिभाषित है"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "त्रुटि initing क्षमता, त्याग रहा है.\n"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "त्रुटि सेटिंग क्षमता, रोक रहा है\n"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS सेट करने में त्रुटि, रोक रहा है\n"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "त्रुटि त्याग क्षमता, त्याग रहा है\n"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "त्रुटि SETUID क्षमता छोड़ रहा है, त्याग रहा है\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps स्वतंत्र करने में त्रुटि\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "गैर-MLS मशीन पर अनुवाद समर्थित नहीं"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Boolean"
+-#~ msgstr "बूलिये"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "all"
+-#~ msgstr "सभी"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "Customized"
+-#~ msgstr "पसंदीदा"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "फाइल लेबलिंग"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 -#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
+-#~ "File\n"
+-#~ "Specification"
 -#~ msgstr ""
--#~ "વસ્તુઓનું સંપાદન કરો નહિં કે જેને આપણે જાણતા હોઈએ કે ભાંગેલ છે પરંતુ જેઓને સુરક્ષા જોખમો નથી"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "hplip ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD સેવા"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd બાળ ડિમનો માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Kerberos"
--#~ msgstr "કર્બરોઝ"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "ઈવોલ્યુશન અને થન્ડરબર્ડને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "મોઝિલ્લા બ્રાઉઝરને વપરાશકર્તા ફાઈલો વાંચવા માટે પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Name Service"
--#~ msgstr "નામ સેવા"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Samba"
--#~ msgstr "સામ્બા"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ "फाइल\n"
+-#~ "विनिर्दिष्टता"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "फाइल प्रकार"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "फाइल\n"
+-#~ "प्रकार"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
+-#~ msgid "User Mapping"
+-#~ msgstr "उपयोक्ता मैपिंग"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "लॉगिन\n"
+-#~ "नाम"
 -
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "उपयोक्ता"
 -
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS परिसर"
 -
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "लॉगिन '%s' जरूरी है"
 -
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Policy Module"
+-#~ msgstr "पॉलिसी मॉड्यूल"
 -
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Disable Audit"
+-#~ msgstr "ऑडिट निष्क्रिय करें"
 -
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Enable Audit"
+-#~ msgstr "ऑडिट सक्रिय करें"
 -
--#~ msgid "pppd"
--#~ msgstr "pppd"
+-#~ msgid "Load Policy Module"
+-#~ msgstr "पॉलिसी मॉड्यूल लोड करें"
 -
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "pppd ને નિયમિત વપરાશકર્તા તરીકે ચલાવવા માટે પરવાનગી આપો"
+-#~ msgid "Polgen"
+-#~ msgstr "पोल्जेन"
 -
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
 -
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
 -
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "translator-credits"
+-#~ msgstr "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)"
 -
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux पॉलिसी जनन औजार"
 -
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "यह औजार एक पॉलिसी फ्रेमवर्क बनाने के लिए प्रयुक्त होता है, अनुप्रयोग या उपयोक्ता को "
+-#~ "SELinux के प्रयोग के लिए सीमति करने के लिए.   \n"
+-#~ "\n"
+-#~ "औजार बनाता है:\n"
+-#~ "प्रकार बाध्यकारी फाइल\n"
+-#~ "अंतरफलक फाइल (if)\n"
+-#~ "फाइल संदर्भ फाइल (fc)\n"
+-#~ "Shell script (sh) - पॉलिसी कंपाइल व अधिष्ठापित करने के लिए प्रयुक्त. "
 -
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "सीमित रहने के लिए अनुप्रयोग/उपयोक्ता भूमिका के प्रकार चुनें."
 -
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>अनुप्रयोग</b>"
 -
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "मानक Init डेमॉन वे डेमॉन हैं जो बूट पर init स्क्रिप्ट से होकर आरंभ किया गया.  प्रायः /"
+-#~ "etc/rc.d/init.d में एक स्क्रिप्ट की जरूरी है"
 -
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "मानक Init डेमॉन"
 -
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "इंटरनेट सेवा डेमॉन xinetd के द्वारा आरंभ किया जाता है"
 -
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readhead માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "इंटरनेट सर्विस डेमॉन (inetd)"
 -
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
 -#~ msgstr ""
--#~ "કાર્યક્રમોને બિન-પ્રમાણભૂત સ્થાનોએ રહેલ ફાઈલો વાંચવા માટે પરવાનગી આપો (default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ "वेब अनुप्रयोग/स्क्रिप्ट (CGI) CGI स्क्रिप्ट को वेब सर्वर के द्वारा आरंभ किया जाता है "
+-#~ "(apache)"
 -
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "वेब अनुप्रयोग/स्क्रिप्ट (CGI)"
 -
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "उपयोक्ता अनुप्रयोग कोई अनुप्रयोग है जो सीमित करना चाहेगा जो कि उपयोक्ता के द्वारा "
+-#~ "आरंभ हुआ है"
 -
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "User Application"
+-#~ msgstr "उपयोक्ता अनुप्रयोग"
 -
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>लॉगिन उपयोक्ता</b>"
 -
--#~ msgid "rsync"
--#~ msgstr "rsync"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "मौजूदा लॉगिन उपयोक्ता रिकार्ड रूपांतरित करें."
 -
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Existing User Roles"
+-#~ msgstr "मौजूदा उपयोक्ता भूमिका"
 -
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh ને ડિમન તરીકે ચલાવવાની જગ્યાએ inetd માંથી ચલાવવા માટે પરવાનગી આપો"
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "यह उपयोक्ता मशीन में लॉगिन मात्र टर्मिनल या दूरस्थ लॉगिन से होगा.  मूलभूत रूप से यह "
+-#~ "उपयोक्ता के पास कोई setuid नहीं होगा, कोई संजालन नहीं, कोई su नहीं, कोई sudo "
+-#~ "नहीं."
 -
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba ને nfs ડિરેક્ટરીઓ વહેંચવા માટે પરવાનગી આપો"
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "न्यूनतम टर्मिनल उपयोक्ता भूमिका"
 -
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL સત્તાધિકરણ સર્વર"
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "यह उपयोक्ता मशीन में लॉगिन X या टर्मिनल से कर सकता है.  मूलभूत रूप से यह उपयोक्ता के "
+-#~ "पास कोई setuid नहीं होगा, कोई संजालन नहीं, कोई sudo नहीं, कोई su नहीं."
 -
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl સત્તાધિકરણ સર્વરને /etc/shadow વાંચવા માટે પરવાનગી આપો"
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "न्यूनतम X विंडोज उपयोक्ता भूमिका"
 -
 -#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
 -#~ msgstr ""
--#~ "X-Windows સર્વરને મેમરી વિસ્તાર એક્ઝેક્યુટેબલ અને લખી શકાય તેવું એમ બંને સાથે મેપ કરવા માટે "
--#~ "પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ "पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई sudo "
+-#~ "नहीं, कोई su नहीं."
 -
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "User Role"
+-#~ msgstr "उपयोक्ता भूमिका"
 -
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo અને su effected માં રૂપાંતરણને પરવાનગી આપશો નહિં"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई su नहीं, "
+-#~ "रूट प्रशासन भूमिका को sudo कर सकता है."
 -
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "àª\95à«\8bàª\88પણ àªªà«\8dરàª\95à«\8dરિયાàª\93નà«\87 àª\95રà«\8dનલ àª®à«\8bડà«\8dયà«\81લà«\8b àª²àª¾àªµàªµàª¾ àª®àª¾àª\9fà«\87 àªªàª°àªµàª¾àª¨àª\97à«\80 àª\86પશà«\8b àª¨àª¹àª¿àª\82"
+-#~ msgid "Admin User Role"
+-#~ msgstr "पà¥\8dरशासन à¤\89पयà¥\8bà¤\95à¥\8dता à¤­à¥\82मिà¤\95ा"
 -
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "કોઈપણ પ્રક્રિયાઓને કર્નલ SELinux પોલિસી સુધારવા માટે પરવાનગી આપશો નહિં"
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>रूट उपयोक्ता</b>"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "रूट प्रशासन उपयोक्ता  भूमिका चुनें, यदि यह उपयोक्ता मशीन को प्रशासित करने के लिए "
+-#~ "प्रयोग किया जाता है रूट के रूप में कार्य करते हुए.  यह उपयोक्ता सिस्टम में सीधे लॉगिन "
+-#~ "होने के लिए समर्थ नहीं होगा."
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "रूट प्रशासन उपयोक्ता भूमिका"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "अनुप्रयोग का नाम व उपयोक्ता भूमिका सीमित रहने के लिए डालें."
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
+-#~ msgid "Name"
+-#~ msgstr "नाम"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "सीमित रहने के लिए एक्सक्यूटेबल का पूरा पथ दें."
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "सीमित अनुप्रयोग या उपयोक्ता भूमिका  के लिए अद्वितीय नाम दें."
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
+-#~ msgid "Executable"
+-#~ msgstr "एक्सक्यूटेबल"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
+-#~ msgid "Init script"
+-#~ msgstr "Init स्क्रिप्ट"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "सीमित अनुप्रयोग आरंभ करने के लिए init स्क्रिप्ट में पूरा पथ डालें."
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "उन उपयोक्ता भूमिकाओं को चुनें जिसे आप पसंदीदा बनाना चाहते हैं"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "उपयोक्ता भूमिका चुनें जो कि इस अनुप्रयोग डोमेन में संक्रमित करेगा."
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "अतिरिक्त डोमेन चुनें जिसमें यह उपयोक्ता भूमिका संक्रमण करेगा"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "अनुप्रयोग डोमेन चुनें जिसमें आप इस उपयोक्ता भूमिका को संक्रमण कराना चाहेंगे."
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "उन उपयोक्ता भूमिकाओं को चुनें जो इस डोमेन में संक्रमित किया जाएगा"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "अतिरिक्त डोमेन चुनें जिसे यह उपयोक्ता भूमिका प्रशासित करेगा"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "डोमेन चुनें जिसे आप इस उपयोक्ता के द्वारा प्रशासित कराना चाहेंगे."
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "इस उपयोक्ता के लिए अतिरिक्त भूमिकाएं चुनें"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता लाइसेंस लिया होता है."
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP पोर्ट</b>"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "सीमित अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट में बांधने के लिए स्वीकृति दें"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
+-#~ msgid "All"
+-#~ msgstr "सभी"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "अनुप्रयोग/उपयोक्ता भूमिका को bindresvport को 0 के साथ स्वीकृति दें. पोर्ट 600-1024 "
+-#~ "में बांध रहा है"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
+-#~ "अनुप्रयोग/प्रयोक्ता बंधा है. उदाहरण: 612, 650-660"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "अनारक्षित पोर्ट (>1024)"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "पोर्ट चुनें"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट से बांधने की स्वीकृति देता है > 1024"
 -
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP पोर्ट</b>"
 -
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता कनेक्ट होता है."
 -
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "tcp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
+-#~ "अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
 -
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
+-#~ "अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
 -
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select common application traits"
+-#~ msgstr "सामान्य अनुप्रयोग गुण चुनें"
 -
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog संदेश लिखता है\t"
 -
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp में अस्थायी फाइलों को बनाता / काम करता है"
 -
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "सत्यापन के लिए PAM का प्रयोग करता है"
 -
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch या getpw* कॉल प्रयोग करता है"
 -
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus का प्रयोग करें"
 -
--#~ msgid "Spam Protection"
--#~ msgstr "સà«\8dપામ àª¸à«\81રàª\95à«\8dષા"
+-#~ msgid "Sends audit messages"
+-#~ msgstr "à¤\91डिà¤\9f à¤¸à¤\82दà¥\87श à¤­à¥\87à¤\9cता à¤¹à¥\88"
 -
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "टर्मिनल के साथ अंतःक्रिया करता है"
 -
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd ને ઘર ડિરેક્ટરીઓ વાપરવા માટે પરવાનગી આપો"
+-#~ msgid "Sends email"
+-#~ msgstr "ईमेल भेजता है"
 -
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam Assasin ડિમન નેટવર્ક વપરાશને પરવાનગી આપો"
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "फाइल/निर्देशिका चुनें जिसे अनुप्रयोग प्रबंधित करता है"
 -
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "फाइल/निर्देशिका जोड़ें जिसकी इस अनुप्रयोग को \"Write\" लिखने की जरूरत होगी. Pid "
+-#~ "फाइल, लॉग फाइल, /var/lib फाइलें ..."
 -
--#~ msgid "Squid"
--#~ msgstr "Squid"
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "बुलियन को चुनें जिसे अनुप्रयोग प्रयोग करता है"
 -
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid ડિમનને નેટવર્ક સાથે જોડાવા માટે પરવાનગી આપો"
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "सीमित अनुप्रयोग/उपयोक्ता के लिए प्रयुक्त बुलियन जोड़ें/हटाएं."
 -
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को बनाना है"
 -
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Policy Directory"
+-#~ msgstr "पॉलिसी निर्देशिका"
 -
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "पॉलिसी फाइल उत्पन्न किया"
 -
 -#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "staff_r વપરાશકર્તાઓને sysadm ઘર ડિરેક્ટરીમાં શોધવા અને ફાઈલો વાંચવા માટે પરવાનગી "
--#~ "આપો (જેમ કે ~/.bashrc)"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "સાર્વત્રિક SSL ટનલ"
+-#~ "यह औजार निम्नलिखित को उत्पन्न करता है: \n"
+-#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
+-#~ "शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए "
+-#~ "चलाएं.\n"
+-#~ "semanage या useradd का प्रयोग Linux लॉगिन उपयोक्ता को उपयोक्ता भूमिका में मैप "
+-#~ "करने के लिए करें\n"
+-#~ "अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
+-#~ "उपयोक्ता के रूप में लॉगिन करें और इस उपयोक्ता भूमिका की जांच करें.\n"
+-#~ "audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
 -
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "यह औजार निम्नलिखित को उत्पन्न करता है: \n"
+-#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
+-#~ "\n"
+-#~ "शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए "
+-#~ "चलाएं. \n"
+-#~ "अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
+-#~ "avc संदेश चलाने के लिए अनुप्रयोग को चलाएं/फिर आरंभ करें.\n"
+-#~ "audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
 -
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "stunnel ડિમનને એકલું ચલાવવા માટે પરવાનગી આપો, xinetd ની બહાર"
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "बुलियन संवाद जोड़ रहा है"
 -
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Boolean Name"
+-#~ msgstr "बूलियन नाम"
 -
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Role"
+-#~ msgstr "भूमिका"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
+-#~ msgid "Existing_User"
+-#~ msgstr "मौजूदा उपयोक्ता (_U)"
 -
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Application"
+-#~ msgstr "अनुप्रयोग"
 -
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "સિસ્ટમ cron ક્રિયાઓ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s को जरूर निर्देशिका होनी चाहिए"
 -
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "You must select a user"
+-#~ msgstr "आपको जरूर उपयोक्ता चुनना है"
 -
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "सीमित रहने के लिए एक्सक्यूटेबल फाइल चुनें."
 -
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftp ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "सीमित होने के लिए init स्क्रिप्ट चुनें."
 -
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "फाइलों को चुनें जिसे सीमित अनुप्रयोग बनाता है व लिखता है"
 -
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "निर्देशिका चुनें जिसका सीमित अनुप्रयोग मालिक है व जिसमें लिखता है"
 -
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को लिखा जाना है"
 -
 -#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "xinetd ને unconfined ચલાવવા માટે પરવાનગી આપો, કોઈપણ સેવાઓનો સમાવેશ કરીને કે જેને "
--#~ "તà«\87 àª¶àª°à«\82 àª\95રà«\87 àª\9bà«\87 àª\85નà«\87 àª\9cà«\87નà«\80 àªªàª¾àª¸à«\87 àª¡à«\8bમà«\87àª\88ન àªªàª°àª¿àªµàª¹àª¨ àª¬àª¾àª¹à«\8dય àª°à«\80તà«\87 àªµà«\8dયાàª\96à«\8dયાયિત àª¥àª¯à«\87લ àª¨àª¹àª¿àª\82 àª¹à«\8bય"
+-#~ "मौजूदा नीति में %s_t पहले से परिभाषित है.\n"
+-#~ "à¤\95à¥\8dया à¤\86प à¤\9cारà¥\80 à¤°à¤\96ना à¤\9aाहतà¥\87 à¤¹à¥\88à¤\82?"
 -
+-#~ msgid "Verify Name"
+-#~ msgstr "नाम जांचें"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
 -#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "rc સ્ક્રિપ્ટોને unconfined ચલાવવા માટે પરવાનગી આપો, rc સ્ક્રિપ્ટ દ્વારા શરૂ થયેલ "
--#~ "àª\95à«\8bàª\88પણ àª¡àª¿àª®àª¨àª¨à«\8b àª¸àª®àª¾àªµà«\87શ àª\95રà«\80નà«\87 àª\95à«\87 àª\9cà«\87નà«\87 àªªàª°àª¿àªµàª¹àª¨ àª¬àª¾àª¹à«\8dય àª°à«\80તà«\87 àªµà«\8dયાàª\96à«\8dયાયિત àª¥àª¯à«\87લ àª¨àª¹àª¿àª\82 àª¹à«\8bય"
+-#~ "मॉड्यूल %s.pp पहले से मौजूदा नीति में लोड किया है.\n"
+-#~ "à¤\95à¥\8dया à¤\86प à¤\9cारà¥\80 à¤°à¤\96ना à¤\9aाहतà¥\87 à¤¹à¥\88à¤\82?"
 -
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm ને unconfined ચલાવવા માટે પરવાનગી આપો"
+-#~ msgid "You must enter a name"
+-#~ msgstr "आपको एक नाम अवश्य दाखिल करना है"
 -
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "hotplug અને insmod જેવી વિશેષાધિકારીત ઉપયોગીતાઓને unconfined ચલાવવા માટે "
--#~ "પરવાનગી આપો"
+-#~ msgid "You must enter a executable"
+-#~ msgstr "आप जरूर एक एक्सक्यूटेबल दें"
 -
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux विन्यस्त करें"
 -
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "utimed ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "पोर्ट को जरूर 1 से %d तक संख्या या संख्या का परिसर जरूर होना चाहिए."
 -
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r ને sysadm_r સુધી su, sudo, અથવા userhelper મારફતે પહોંચવા માટે પરવાનગી "
--#~ "આપો. નહિંતર, માત્ર staff_r આવું કરી શકશે"
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "अपनी सीमित प्रक्रिया/उपयोक्ता के लिए आप अपना नाम जरूर दें"
 -
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "વપરાશકર્તાઓને mount આદેશ ચલાવવા માટે પરવાનગી આપો"
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER प्रकार अनुमति प्राप्त एक्सक्यूटेबल नहीं है"
 -
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "નિયમિત વપરાશકર્તાઓને સીધો માઉસ વપરાશની પરવાનગી આપો (માત્ર X સર્વરને પરવાનગી "
--#~ "આપો)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "વપરાશકર્તાઓને dmesg આદેશ ચલાવવા માટે પરવાનગી આપો"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "વપરાશકર્તાઓને નેટવર્ક ઈન્ટરફેસો નિયંત્રિત કરવા માટે પરવાનગી આપો (USERCTL=true ની "
--#~ "પણ જરૂર છે)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "સામાન્ય વપરાશકર્તાને ping ચલાવવા માટે પરવાનગી આપો"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "વપરાશકર્તાને r/w noextattrfile માટે પરવાનગી આપો (FAT, CDROM, FLOPPY)"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "વપરાકર્તાઓને rw usb ઉપકરણોની પરવાનગી આપો"
--
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "વપરાશકર્તાઓને TCP સર્વરો ચલાવવા માટે પરવાનગી આપો (પોર્ટો સાથે બાંધો અને એક જ "
--#~ "ડોમેઈન અને બાહ્ય વપરાશકર્તાઓમાંથી જોડાણ સ્વીકારો)  આને નિષ્ક્રિય કરવાનું FTP પેસીવ "
--#~ "સ્થિતિને દબાણ કરે છે અને અન્ય પ્રોટોકોલોને પણ બદલશે"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "વપરાશકર્તાઓને ttyfiles ની પરિસ્થિતિ આપવા માટે પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm પ્રવેશોને sysadm_r:sysadm_t તરીકે પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen ને ભૌતિક ડિસ્ક ઉપકરણ પર વાંચવા/લખવાની પરવાનગી આપો"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen કન્સોલ માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS પાસવર્ડ ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS પરિવહન ડિમન માટે SELinux સુરક્ષા નિષ્ક્રિય કરો"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારી વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓની વ્યવસ્થા "
--#~ "કરવા માટે પરવાનગી આપો"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm વપરાશકર્તાને બિનવિશેષાધિકારીત વપરાશકર્તાઓ ઘર ડિરેક્ટરીઓ વાંચવા "
--#~ "માટે પરવાનગી આપો"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "શું તમે ખરેખર %s '%s' કાઢી નાંખવા માંગો છો?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s કાઢી નાંખો"
--
--#~ msgid "Add %s"
--#~ msgstr "%s ઉમેરો"
--
--#~ msgid "Modify %s"
--#~ msgstr "%s સુધારો"
--
--#~ msgid "Permissive"
--#~ msgstr "Permissive"
--
--#~ msgid "Enforcing"
--#~ msgstr "Enforcing"
--
--#~ msgid "Disabled"
--#~ msgstr "Disabled"
--
--#~ msgid "Status"
--#~ msgstr "પરિસ્થિતિ"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "પોલિસી પ્રકાર બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ આપી "
--#~ "શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું તમે "
--#~ "ચાલુ રાખવા માંગો છો?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux નિષ્ક્રિયકૃતમાં બદલવા માટે રીબુટ જરૂરી છે.  એ આગ્રહણીય નથી.  જો તમે પછીથી "
--#~ "SELinux ને પાછું ચાલુ કરવાનું નક્કી કરો, તો સિસ્ટમને પુનઃલેબલ કરવાની જરૂર રહેશે.  જો તમે "
--#~ "ખાલી એ જોવા માંગો કે શું SELinux એ તમારી સિસ્ટમ પર સમસ્યા સર્જી રહી છે, તો તમે "
--#~ "પરવાનગીય સ્થિતિમાં જઈ શકશો કે જે માત્ર ભૂલો જ લોગ કરશે અને SELinux પોલિસીને દબાણ "
--#~ "કરશે નહિં. પરવાનગીય સ્થિતિને રીબુટ કરવાની જરૂર રહેતી નથી    શું તમે ચાલુ રાખવા માંગો "
--#~ "છો?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux સક્રિયકૃતમાં બદલવાનું આગળના બુટ પર વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવાનું કારણ "
--#~ "આપી શકશે. પુનઃલેબલીંગ કરવાનું ફાઈલ સિસ્ટમના માપ પર આધાર રાખીને લાંબો સમય લે છે.  શું "
--#~ "તમે ચાલુ રાખવા માંગો છો?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux પ્રવેશ મેપીંગ ઉમેરો"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux નેટવર્ક પોર્ટો ઉમેરો"
--
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux પ્રકાર"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "સ્તર"
--
--#~ msgid "File Specification"
--#~ msgstr "ફાઈલ સ્પષ્ટીકરણ"
--
--#~ msgid "File Type"
--#~ msgstr "ફાઈલ પ્રકાર"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "બધી ફાઈલો\n"
--#~ "નિયમિત ફાઈલ\n"
--#~ "ડિરેક્ટરી\n"
--#~ "અક્ષર ઉપકરણ\n"
--#~ "બ્લોક ઉપકરણ\n"
--#~ "સોકેટ\n"
--#~ "સાંકેતિક કડી\n"
--#~ "નામવાળું પાઈપ\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux વપરાશકર્તા ઉમેરો"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux સંચાલન"
--
--#~ msgid "Add"
--#~ msgstr "ઉમેરો"
--
--#~ msgid "_Properties"
--#~ msgstr "ગુણધર્મો (_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "કાઢો (_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "વ્યવસ્થાપન ઓબ્જેક્ટ પસંદ કરો"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>પસંદ કરો:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "સિસ્ટમ મૂળભૂત દબાણ સ્થિતિ"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "વર્તમાન દબાણ સ્થિતિ"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "સિસ્ટમ મૂળભૂત પોલિસી પ્રકાર: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "આગળના રીબુટ પર તમે શું વર્તમાન ફાઈલ સિસ્ટમને પુનઃલેબલ કરવા ઈચ્છો છો તે પસંદ કરો.  "
--#~ "પુનઃલેબલ કરવાનું લાંબો સમય લઈ શકે છે, સિસ્ટમના માપ પર આધાર રાખીને.  જો તમે પોલિસી "
--#~ "પ્રકારો બદલી રહ્યા હોય અથવા disabled થી enforcing માં જઈ રહ્યા હોય, તો પુનઃલેબલ "
--#~ "જરૂરી છે."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "આગળના પુનઃબુટ પર પુનઃલેબલ."
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "બુલિયન સુયોજનને સિસ્ટમ મૂળભૂતમાં ઉલટાવો"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા બુલિયનો વચ્ચે ફેરબદલી કરો"
--
--#~ msgid "Filter"
--#~ msgstr "ગાળક"
--
--#~ msgid "Add File Context"
--#~ msgstr "ફાઈલ સંદર્ભ ઉમેરો"
--
--#~ msgid "Modify File Context"
--#~ msgstr "ફાઈલ સંદર્ભ સુધારો"
--
--#~ msgid "Delete File Context"
--#~ msgstr "ફાઈલ સંદર્ભ કાઢો"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "બધા અને વૈવિધ્યપૂર્ણ બનાવેલ ફાઈલ સંદર્ભ વચ્ચે બદલો"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux વપરાશકર્તા મેપીંગ ઉમેરો"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux વપરાશકર્તા માપન સુધારો"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux વપરાશકર્તા માપન કાઢો"
--
--#~ msgid "Add Translation"
--#~ msgstr "ભાષાંતર ઉમેરો"
--
--#~ msgid "Modify Translation"
--#~ msgstr "ભાષાંતર સુધારો"
--
--#~ msgid "Delete Translation"
--#~ msgstr "ભાષાંતર કાઢો"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux વપરાશકર્તા સુધારો"
--
--#~ msgid "Add Network Port"
--#~ msgstr "નેટવર્ક પોર્ટ ઉમેરો"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "નેટવર્ક પોર્ટમાં ફેરફાર કરો"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "નેટવર્ક પોર્ટ કાઢો"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "વૈવિધ્યપૂર્ણ બનાવેલ અને બધા પોર્ટ વચ્ચે બદલો"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "નવું પોલિસી મોડ્યુલ બનાવો"
--
--#~ msgid "Load policy module"
--#~ msgstr "પોલિસી મોડ્યુલ લાવો"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "લાવી શકાય તેવું પોલિસી મોડ્યુલ દૂર કરો"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "વધારાના સંપાદન નિયમો સક્રિય/નિષ્ક્રિય કરો, કે જેઓ સામાન્ય રીતે લોગ ફાઈલોમાં અહેવાલ "
--#~ "અપાયેલ નહિં હોય."
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "સંવેદનશીલતા સ્તર"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux વપરાશકર્તા '%s' જરૂરી છે"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Requires value"
--#~ msgstr "કિંમત જરૂરી છે"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "અયોગ્ય પૂર્વગ %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ tcp પોર્ટો > 1024 બાંધવા માટે પરવાનગી આપે છે"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "શુદ્ધિ થયેલ કાર્યક્રમ/વપરાશકર્તા ભૂમિકાને કોઈપણ tcp પોર્ટ સાથે બાંધવા માટે પરવાનગી આપે "
--#~ "છે"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "અલ્પવિરામથી અલગ પડેલ tcp પોર્ટોની યાદી અથવા પોર્ટોનો વિસ્તાર દાખલ કરો કે જેને "
--#~ "કાર્યક્રમ/વપરાશકર્તા ભૂમિકા બાંધે. ઉદાહરણ: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux પોલિસી બનાવટ ડ્રુડ"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "બિનઆરક્ષિત પોર્ટો  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "જો તમારો કાર્યક્રમ bindresvport ને 0 સાથે બાંધે તો આ ચકાસણીબટન વાપરો."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux વપરાશકર્તા '%s' જરૂરી છે"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils-2.0.85/po/he.po
---- nsapolicycoreutils/po/he.po        2011-02-17 15:11:25.161734275 -0500
-+++ policycoreutils-2.0.85/po/he.po    2011-02-18 16:03:41.369975751 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "सिर्फ DAEMON apps एक init स्क्रिप्ट का प्रयोग कर सकता है"
++#: ../gui/polgen.glade:871
++msgid "Executable"
 +msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog के पास जरूर बूलियन मान होना चाहिए"
++#: ../gui/polgen.glade:899
++msgid "Init script"
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER प्रकार को स्वतः tmp प्रकार लेना चाहिए"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "अपने सीमति प्रक्रिया के लिए आप जरूर अपना एक्सक्यूटेबल पथ दें"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "टाइप बाध्यकारी फाइल"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "अंतरफलक फाइल"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "फाइल संदर्भ फाइल"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "सेटअप स्क्रिप्ट"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux पोर्ट\n"
+-#~ "प्रकार"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "प्रोटोकॉल"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "स्तर"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "पोर्ट"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "पोर्ट संख्या \"%s\" वैध नहीं है.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "अंतिम दृश्य"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "समूह दृश्य"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux सेवा सुरक्षा"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "सभी डेमॉन को कोरफाइलों को / में लिखने की स्वीकृति दें"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "सभी डेमॉन को गैर आबंटति ttys के प्रयोग की छूट दें"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "उपयोक्ता Privs"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux उपयोक्ता खाता को फाइलों को उनके होम निर्देशिका या /tmp में "
+-#~ "निष्पादित करने की अनुमति दें"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "अतिथि SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित "
+-#~ "करने की अनुमति दें"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "स्मृति सुरक्षा"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java एक्सक्यूटेबल स्टैक की स्वीकृति दें"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "आरोह"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "किसी फाइल को माउंट करने के लिए mount को अनुमति दें"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "किसी निर्देशिका को माउंट करने के लिए mount को अनुमति दें"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer एक्सक्यूटेबल स्टैक की स्वीकृति दें"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh को ssh-keysign चलाने की स्वीकृति दें"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "स्टाफ SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
+-#~ "स्वीकृति दें"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
+-#~ "स्वीकृति दें"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "असीमित SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
+-#~ "स्वीकृति दें"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "संजाल विन्यास"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "संजाल पर बिना लेबल किये पैकेट को स्वीकृति दें"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "उपयोक्ता SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन "
+-#~ "की स्वीकृति दें"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "असीमित को dyntrans से unconfined_execmem में स्वीकृति दें"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "डाटाबेस"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "उपयोक्ता को mysql सॉकेट में जोड़ने की स्वीकृति दें"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "उपयोक्ता को postgres सॉकेट में जोड़ने की स्वीकृति दें"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "क्लाइंट को X साझा स्मृति में लिखने की अनुमति दें"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित "
+-#~ "करने की अनुमति दें"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "NIS के डेमॉन चलाने की स्वीकृति दें"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "वेब अनुप्रयोग"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "स्टाफ SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "sysadm SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "उपयोक्ता SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "xguest SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "स्टाफ वेब ब्रॉउजर को होम निर्देशिका में लिखने की स्वीकृति दें"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Cluster Server के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord को विभिन्न सामग्री को पढ़ने के लिए स्वीकृति दें. nfs, samba, विस्थापनीय "
+-#~ "युक्तियां, user temp और अविश्वसनीय सामग्री फाइलें"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "क्रॉन"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "छाप रहा है"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd बैकेंड सर्वर के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
  
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "sysadm_t को सीधे डेमॉन को आरंभ करने की स्वीकृति दें"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Evolution के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "खेल"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "गेम के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "वेब ब्रॉउजर के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Thunderbird के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -91635,26 +98202,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -91663,119 +98240,175 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "सुसंगतता"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "उन चीजों का ऑडिट मत करें जिसे हम टूटे हुए के तौर पर जानते हैं लेकिन जो सुरक्षा खतरा नहीं "
+-#~ "है"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "hplip डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD सेवा"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd child डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -91783,156 +98416,230 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "करबरोस"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "उपयोक्ता फाइल पढ़ने के लिए evolution और thunderbird को स्वीकृति दें"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "मोजिला ब्रॉउजर को उपयोक्ता फाइलें पढ़ने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "नाम सेवा"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "सांबा"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
@@ -91964,7 +98671,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
@@ -91976,19 +98685,27 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "pppd को नियमित उपयोक्ता के रूप में चलने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
@@ -92004,495 +98721,979 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "गैर मानक स्थान में फाइलों को पढ़ने की प्रोग्राम को अनुमति दें (default_t)"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh को inetd से चलने की स्वीकृति डेमॉन के रूप के बजाय दें"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba को nfs निर्देशिका साझा करने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL सत्यापन सर्वर"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl सत्यापन सर्वर को /etc/shadow को पढ़ने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "X-Windows सर्वर को एक्सक्यूटेबल व लिखने योग्य दोनों रूप में स्मृति क्षेत्र में मैप करने की "
+-#~ "स्वीकृति दें"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo और su प्रभावित में संक्रमण की स्वीकृति मत दें"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "कर्नेल मॉड्यूल लोड करने के लिए किसी प्रक्रिया की अनुमति मत दें"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "कर्नेल SELinux पॉलिसी में किसी प्रक्रिया को मत स्वीकृति दें"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroublesoot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "स्पैम सुरक्षा"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd को होम निर्देशिका के अभिगम की स्वीकृति दें"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Spam Assasin डेमॉन संजाल अभिगम की स्वीकृति दें"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid डेमॉन को संजाल से कनेक्ट होने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r उपयोक्ता को sysadm होम निर्देशिका व रीड फाइल कों खोजने की स्वीकृति दें (जैसे "
+-#~ "कि ~/.bashrc)"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "सार्वभौमिक SSL टनेल"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "stunnel डेमॉन को पृथक चलाने की स्वीकृति दें, xinetd के बाहर"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "system cron jobs  के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो यह आरंभ करती है जो "
+-#~ "डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "rc स्क्रिप्ट को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो rc स्क्रिप्ट आरंभ "
+-#~ "करती है जो डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm को असीमित रूप से चलने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "हॉटप्लग और insmod की तरह के सुविधा प्राप्त उपयोगिता को असीमित रूप से चलने की "
+-#~ "स्वीकृति दें"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r को sysadm_r पर su, sudo, या userhelper से होकर पहुंचने की अनुमति दें. "
+-#~ "अन्यथा, सिर्फ staff_r ऐसा कर सकता है"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "उपयोक्ता को mount कमांड चलाने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "नियमित उपयोक्ता को सीधा माउस अभिगम की स्वीकृति दें (सिर्फ X सर्वर को अनुमति दें)"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "उपयोक्ता को dmesg कमांड चलाने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "उपयोक्ता को संजाल अंतरफलक नियंत्रित करने की स्वीकृति दें (USERCTL=true के सही की "
+-#~ "जरूरत है)"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "सामान्य उपयोक्ता को पिंग करने की स्वीकृति दें"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "r/w noextattrfile (FAT, CDROM, FLOPPY) करने के लिए उपयोक्ता को स्वीकृति दें"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "usb युक्ति को rw बनाने के लिए उपयोक्ता को स्वीकृति दें"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "उपयोक्ता को TCP सर्वर (bind to ports and accept connection from the same "
+-#~ "domain and outside users) चलाने की स्वीकृति दें इन बलों को FTP निष्क्रिय मोड में "
+-#~ "निष्क्रिय करते हुए और अन्य प्रोटोकॉल बदल सकता है"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ttyfiles को stat के लिए उपयोक्ता को स्वीकृति दें"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "भौतिक डिस्क युक्ति को xen को पढ़ने/लिखने की स्वीकृति दें"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "SELinux सुरक्षा को xen नियंत्रण के लिए निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS Password डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS Transfer डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को प्रबंधित करने की "
+-#~ "स्वीकृति दें"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को पढ़ने स्वीकृति दें"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "क्या आप निश्चित हैं कि आप %s '%s' को मिटाना चाहते हैं?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s मिटाएं"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s जोड़ें"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s बदलें"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "अनुज्ञात्मक"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "बाध्यकारी"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "पॉलिसी प्रकार को बदलना पूरे फाइल सिस्टम को रिलेबल करने का कारण बनेगा अगले बूट पर. "
+-#~ "रिलेबलिंग लंबा समय लेता है फाइल सिस्टम के आकार पर निर्भर करते हुए.  क्या आप जारी "
+-#~ "रखना चाहते हैं?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux को निष्क्रिय में बदलने के लिए रिबूट की जरूरत होती है.  इसकी सलाह नहीं दी "
+-#~ "जाती है.  यदि आप SELinux को वापस लौटाने की सोचते हैं, सिस्टम को रिलेबल करने की "
+-#~ "जरूरत होगी.  यदि आप यह देखना चाहते हैं कि SELinux सिस्टम पर समस्या दे रहा है, आप "
+-#~ "अनुज्ञात्मक मोड में जा सकते हैं जो सिर्फ त्रुटि देगा और SELinux पॉलिसी को बाध्यकारी "
+-#~ "नहीं करेगा.  अनुज्ञात्मक मोड के लिए रिबूट की जरूरत नहीं है, क्या आप जारी रखना चाहते हैं?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "सक्रिय SELinux स्थिति में बदलना अगले बूट पर पूरे फाइल सिस्टम के फिर लेबल किये जाने का "
+-#~ "कारण बनेगा. फाइल सिस्टम के आकार के आधार पर फिर से लेबल किया जाना काफी समय लेता "
+-#~ "है. क्या आप जारी रखना चाहेंगे?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux लॉगिंग मैपिंग"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux संजाल पोर्ट"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux प्रकार"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "स्तर"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "फाइल विशेषता"
+-
+-#~ msgid "File Type"
+-#~ msgstr "फाइल प्रकार"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "सभी फाइलें\n"
+-#~ "नियमित फाइल\n"
+-#~ "निर्देशिका\n"
+-#~ "संप्रतीक युक्ति\n"
+-#~ "ब्लॉक युक्ति\n"
+-#~ "सॉकेट\n"
+-#~ "सांकेतिक लिंक\n"
+-#~ "नामित पाइप\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux उपयोक्ता जोड़ें"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux प्रशासन"
+-
+-#~ msgid "Add"
+-#~ msgstr "जोड़ें"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "गुण (_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "मिटाएँ (_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "प्रबंधन वस्तु चुनें"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>चुनें:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "सिस्टम मूलभूत बाध्यकारी मोड"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "मौजूदा पुनर्बलन मोड"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "सिस्टम मूलभूत पॉलिसी प्रकार: "
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "चुनें यदि आप पूरे फाइल सिस्टम को अगले रिबूट पर फिर लेबल करना चाहते हैं.  रिलेबल करना "
+-#~ "लंबा समय ले सकता है, सिस्टम के आकार पर निर्भर करते हुए.  यदि आप पॉलिसी प्रकार को "
+-#~ "निष्क्रिय से बाध्यकारी में बदल रहे हैं, फिर लेबल करना जरूरी है."
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "अगले रिबूट पर फिर लेबल करें."
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "सिस्टम मूलभूत में बुलियन सेटिंग वापस लाएं"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "पसंदीदा और सभी बुलियन के बीच टॉगल करें"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "फिल्टर"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "फाइल संदर्भ जोड़ें"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "फाइल संदर्भ बदलें"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "फाइल संदर्भ मिटाएं"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "सभी और पसंदीदा फाइल संदर्भ के बीच टॉगल करें"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux उपयोक्ता मैपिंग जोड़ें"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux उपयोक्ता मैपिंग बदलें"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux उपयोक्ता मैपिंग मिटाएं"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "अनुवाद जोड़ें"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "अनुवाद रूपांतरित करें"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Delete Translation"
+-#~ msgstr "अनुवाद मिटाएं"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux उपयोक्ता सुधारें"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "संजाल पोर्ट जोड़ें"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "संजाल पोर्ट संपादित करें"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "संजाल पोर्ट मिटाएं"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "पसंदीदा और सभी पोर्ट के बीच टॉगल करें"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "नया पॉलिसी मॉड्यूल उत्पन्न करें"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "पॉलिसी मॉड्यूल लोड करें."
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "लोड करने लायक सार्वजनिक मॉड्यूल हटाएं"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "अतिरिक्त ऑडिट नियम सक्रिय/निष्क्रिय करें, जो लॉग फाइल में सामान्यतः रिपोर्ट नहीं "
+-#~ "किया हुआ है."
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "संवेदनशीलता स्तर"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux उपयोक्ता '%s' जरूरी हैं"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "मान जरूरी"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr "अनुप्रयोग/उपयोक्ता भूमिका को किसी tcp पोर्ट से बाइंड करने दें > 1024"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr "किसी tcp पोर्ट में बांधने के लिए सीमित अनुप्रयोग/उपयोक्ता चुनें"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "tcp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
+-#~ "अनुप्रयोग/प्रयोक्ता बंधा है. उदाहरण: 612, 650-660"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux पॉलिसी जनन ड्र्यूड"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "अनारक्षित पोर्ट (> 1024)"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "इस चेकबटन को चुनें यदि आपका app bindresvport को 0 के साथ आह्वान करता है."
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "बाध्यकारी\n"
+-#~ "अनुज्ञात्मक\n"
+-#~ "निष्क्रिय\n"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
@@ -92712,18 +99913,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -92764,7 +99961,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -92773,25 +99969,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -92803,58 +99993,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -92862,169 +100052,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -93032,2089 +100205,1513 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils-2.0.85/po/hi.po
---- nsapolicycoreutils/po/hi.po        2011-02-17 15:11:25.876722465 -0500
-+++ policycoreutils-2.0.85/po/hi.po    2011-02-18 16:03:41.369975751 -0500
-@@ -1,16 +1,17 @@
--# translation of policycoreutils.HEAD.hi.po to Hindi
-+# translation of policycoreutils.HEAD.po to Hindi
- # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
--# Rajesh Ranjan <rranjan@redhat.com>, 2006, 2007, 2008.
-+# Rajesh Ranjan <rranjan@redhat.com>, 2006, 2007, 2008, 2009, 2010.
+diff --git a/policycoreutils/po/hr.po b/policycoreutils/po/hr.po
+index 8975247..0065118 100644
+--- a/policycoreutils/po/hr.po
++++ b/policycoreutils/po/hr.po
+@@ -1,17 +1,22 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
  msgid ""
  msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.hi\n"
-+"Project-Id-Version: policycoreutils.HEAD\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-03-31 15:14+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-30 14:23+0530\n"
- "Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
--"Language-Team: Hindi <hindi.sf.net>\n"
-+"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
-+"Language: hi\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-10-06 03:44+0100\n"
+-"Last-Translator: Renato Pavicic <renato@translator-shop.org>\n"
+-"Language-Team: Croatian <www.translator-shop.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: LANGUAGE <LL@li.org>\n"
+ "Language: hr\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-@@ -30,6 +31,25 @@
- "\n"
- "\n"
- "\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux को आलेखी सेटिंग में विन्यस्त करें"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux प्रबंधन"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "नया पॉलिसी मॉड्यूल उत्पन्न करें"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux पॉलिसी जनन औजार"
+-"X-Poedit-Language: Croatian\n"
+-"X-Poedit-Country: CROATIA\n"
++"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -120,9 +140,8 @@
- msgstr "semanage संबंधन स्थापित नहीं कर सका"
+@@ -106,9 +111,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Uspostavljanje semanage veze nije moguće"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "MLS परिसर %s के लिये सेट नहीं कर सका"
-+msgstr "MLS सक्रिय स्थिति जाँच नहीं सका"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -131,20 +150,21 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s खोलने में असमर्थ: गैर-MLS मशीन पर अनुवाद समर्थित नहीं: %s"
-+msgstr "%s खोलने में त्रुटि: गैर-MLS मशीन पर अनुवाद समर्थित नहीं: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "स्तर"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "अनुवाद"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "अनुवाद में '%s' खाली स्थान नहीं होते हैं."
-+msgstr "अनुवाद में स्थान '%s' नहीं हो सकता है"
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -154,12 +174,12 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s पहले से अनुवाद में परिभाषित है"
-+msgstr "%s को पहले से अनुवाद में परिभाषित किया गया है"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s अनुवाद में परिभाषित नहीं है"
-+msgstr "%s को अनुवादों में परिभाषित नहीं किया गया है"
+-msgstr "Zadavanje MLS raspona za %s nije moguće"
++msgstr ""
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
-@@ -167,764 +187,765 @@
+@@ -123,32 +127,28 @@ msgid "Could not start semanage transaction"
+ msgstr "Semanage transakciju nije moguće pokrenuti"
  
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "सीमैनेज लेनदेन पहले से प्रगति पर है"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage विनिमय आरंभ नहीं कर सका"
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "semanage विनिमय आरंभ नहीं कर सका"
-+msgstr "semanage विनिमय सौंप नहीं सका"
+-msgstr "Semanage transakciju nije moguće pokrenuti"
++msgstr ""
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "सीमैनेज लेनदेन प्रगति पर नहीं है"
+ msgstr ""
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "SELinux उपयोक्ता सूचीबद्ध नहीं सका"
-+msgstr "SELinux मॉड्यूल सूचीबद्ध नहीं सका"
+-msgstr "Ispisivanje popisa SELinux korisnika nije moguće"
++msgstr ""
  
- #: ../semanage/seobject.py:336
+ #: ../semanage/seobject.py:304
 -#, fuzzy
- msgid "Permissive Types"
--msgstr "अनुज्ञात्मक"
-+msgstr "अनुज्ञात्मक प्रकार"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "अनुज्ञात्मक डोमेन %s (मॉड्यूल संस्थापन विफल) सेट नहीं कर सका"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "अनुज्ञात्मक डोमेन %s (हटाना विफल) हटा नहीं सका"
+ msgid "Modules Name"
+-msgstr "Naziv modula"
++msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s के लिये कुंजी नहीं बना सका"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Verzija"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "नहीं जांच सका अगर %s के लिये लॉगिन मैपिंग परिभाषित है"
+-#: ../semanage/seobject.py:307
+-#, fuzzy
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "Onemogućeno"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s के लिये लॉगिन मैपिंग पहले से परिभाषित है"
+@@ -156,9 +156,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:333
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux उपयोक्ता %s मौजूद नहीं है"
-+msgstr "Linux समूह %s मौजूद नहीं है"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux उपयोक्ता %s मौजूद नहीं है"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s के लिये लॉगिन मैपिंग नहीं बना सका"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s के लिये नाम सेट नहीं कर सका"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "MLS परिसर %s के लिये सेट नहीं कर सका"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "SELinux उपयोक्ता %s के लिये सेट नहीं कर सका"
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Dodavanje uloge %s za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s के लिये लॉगिन मैपिंग जोड़ नहीं सका"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux उपयोक्ता मैपिंग जोड़ें"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser या serange जरूरी"
+@@ -170,14 +170,12 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s के लिये लॉगिन मैपिंग परिभाषित नहीं है"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Dopustivo"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "seuser को %s के लिये प्रश्न नहीं कर सका"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Dopustivo"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s के लिये लॉगिन मैपिंग नहीं रूपांतरित कर सका"
+@@ -207,9 +205,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Nije moguće provjeriti je li mapiranje za prijavu %s određeno"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "नीति में %s परिभाषित है, मिटाया नहीं जा सकता"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s के लिये लॉगिन मैपिंग नहीं मिटा सका"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "लॉगिन मैपिंग नहीं सूचीबद्ध कर सका"
+@@ -276,15 +274,20 @@ msgid "Could not list login mappings"
+ msgstr "Ispisivanje popisa mapiranja prijava nije moguće"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "लॉगिन नाम"
+ msgstr "Korisničko ime"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux उपयोक्ता"
+ msgstr "SELinux korisnik"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS परिसर"
+ msgstr "MLS/MCS raspon"
  
--#: ../semanage/seobject.py:594
+@@ -302,9 +305,9 @@ msgid "Could not query user for %s"
+ msgstr "Propitivanje korisnika za %s nije moguće"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
--msgstr "%s के लिये फाइल संदर्भ नहीं जोड़ सका"
-+msgstr "आपको कम से कम एक भूमिका %s के लिए जरूर जोड़ना चाहिए"
+-msgstr "Dodavanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "जांच नहीं सका कि SELinux उपयोक्ता %s परिभाषित है"
+@@ -394,6 +397,7 @@ msgid "MCS Range"
+ msgstr "MCS raspon"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux उपयोक्ता %s पहले से परिभाषित है"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux uloge"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "SELinux उपयोक्ता %s के लिये बना नहीं सका"
+@@ -406,9 +410,8 @@ msgid "Port is required"
+ msgstr "Potreban je port"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s भूमिका %s के लिये जोड़ नहीं सका"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Neispravan prefiks %s"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "MLS स्तर %s के लिये सेट नहीं कर सका"
+@@ -495,14 +498,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Uređivanje porta %s/%s nije moguće"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s उपसर्ग %s के लिये नहीं जोड़ सका"
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
+ msgid "Could not list the ports"
+-msgstr "Ispisivanje popisa portova nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s के लिये कुंजी निकाल नहीं सका"
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete the port %s"
+-msgstr "Brisanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux उपयोक्ता %s नहीं जोड़ सका"
+@@ -526,14 +528,13 @@ msgstr "SELinux vrsta porta"
+ msgid "Proto"
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "उपसर्ग, भूमिका, स्तर या परिसर जरूरी"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr "Broj porta"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "उपसर्ग या भूमिका जरूरी"
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "Potreban je port"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux उपयोक्ता %s परिभाषित नहीं है"
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+@@ -554,14 +555,14 @@ msgstr "Izrada ključa za %s nije moguća"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s के लिये उपयोक्ता को प्रश्न नहीं कर सकता"
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not check if addr %s is defined"
+-msgstr "Nije moguće provjeriti je li port %s/%s određen"
++msgstr ""
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux उपयोक्ता %s नहीं सुधार सकता"
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create addr for %s"
+-msgstr "Izrada ključa za %s nije moguća"
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux उपयोक्ता %s नीति में परिभाषित है, मिटा नहीं सकता"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -570,74 +571,72 @@ msgid "Could not create context for %s"
+ msgstr "Izrada konteksta za %s nije moguća"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux उपयोक्ता %s मिटा नहीं सका"
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mask for %s"
+-msgstr "Zadavanje naziva za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux उपयोक्ता सूचीबद्ध नहीं सका"
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set user in addr context for %s"
+-msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "%s उपयोक्ता के लिये भूमिका सूचीबद्ध नहीं कर सका"
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set role in addr context for %s"
+-msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "लेबलिंग"
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set type in addr context for %s"
+-msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "उपसर्ग"
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set addr context for %s"
+-msgstr "Zadavanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS स्तर"
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not add addr %s"
+-msgstr "Dodavanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS परिसर"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux भूमिका"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "प्रोटोकॉल udp या tcp जरूरी है"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "पोर्ट जरूरी है"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s के लिये कुंजी नहीं बना सका"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "टाइप जरूरी है"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "जांच नहीं सका अगर पोर्ट %s/%s परिभाषित है"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "%s/%s पोर्ट पहले से परिभाषित है"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s के लिये पोर्ट बना नहीं सका"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s के लिये संदर्भ बना नहीं सका"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s के लिये पोर्ट संदर्भ में उपयोक्ता सेट नहीं कर सका"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s के लिये पोर्ट संदर्भ में भूमिका सेट नहीं कर सका"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s के लिये पोर्ट संदर्भ में टाइप सेट नहीं कर सका"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s के लिये पोर्ट संदर्भ में क्षेत्र mls सेट नहीं कर सका"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s के लिये पोर्ट संदर्भ सेट नहीं कर सका"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s पोर्ट जोड़ नहीं सका"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype या serange जरूरी"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "सेटटाइप जरूरी"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "पोर्ट %s/%s परिभाषित नहीं है"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "%s/%s पोर्ट प्रश्न नहीं कर सका"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "%s/%s पोर्ट रूपांतरित नहीं कर सका"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "पोर्ट सूची बद्ध नहीं कर सका"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "%s पोर्ट मिटा नहीं सका"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "%s/%s नीति में परिभाषित है, मिटा नहीं सकता"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "%s/%s पोर्ट मिटा नहीं सका"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "पोर्ट सूची बद्ध नहीं कर सका"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux पोर्ट प्रकार"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "प्रोटो"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "पोर्ट संख्या"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "पोर्ट जरूरी है"
-+msgstr "नोड पता जरूरी है"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "पोर्ट जरूरी है"
-+msgstr "नोड नेटमास्क जरूरी है"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "अज्ञात व अनुपस्थित प्रोटोकॉल"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux प्रकार जरूरी है"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s के लिये कुंजी नहीं बना सका"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "जांच नहीं सका अगर पोर्ट %s/%s परिभाषित है"
-+msgstr "जांच नहीं सका अगर addr %s परिभाषित है"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "%s/%s पोर्ट पहले से परिभाषित है"
-+msgstr "%s पहले से परिभाषित है"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s के लिये कुंजी नहीं बना सका"
-+msgstr "%s के लिये addr नहीं बना सका"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s के लिये संदर्भ बना नहीं सका"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s के लिये नाम सेट नहीं कर सका"
-+msgstr "%s के लिये मास्क सेट नहीं कर सका"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s के लिये फाइल संदर्भ में उपयोक्ता सेट नहीं कर सका"
-+msgstr "%s के लिये addr संदर्भ में उपयोक्ता सेट नहीं कर सका"
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s के लिये फाइल संदर्भ में भूमिका सेट नहीं कर सका"
-+msgstr "%s के लिये addr संदर्भ में भूमिका सेट नहीं कर सका"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s के लिये फाइल संदर्भ में टाइप सेट नहीं कर सका"
-+msgstr "%s के लिये addr संदर्भ में टाइप सेट नहीं कर सका"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "mls क्षेत्र %s के लिये फाइल संदर्भ के क्रम में नहीं सेट कर सका"
-+msgstr "%s के लिये addr संदर्भ के mls क्षेत्र में नहीं सेट कर सका"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s के लिये फाइल संदर्भ नहीं सेट कर सका"
-+msgstr "%s के लिये addr संदर्भ नहीं सेट कर सका"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s पोर्ट जोड़ नहीं सका"
-+msgstr "%s पोर्ट जोड़ नहीं सका"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "पोर्ट %s/%s परिभाषित नहीं है"
-+msgstr "Addr %s परिभाषित नहीं है"
+-msgstr "Port %s/%s nije određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "%s/%s पोर्ट प्रश्न नहीं कर सका"
-+msgstr "addr %s को प्रश्न नहीं कर सका"
+-msgstr "Propitivanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "%s/%s पोर्ट रूपांतरित नहीं कर सका"
-+msgstr "addr %s रूपांतरित नहीं कर सका"
+-msgstr "Uređivanje porta %s/%s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "%s/%s नीति में परिभाषित है, मिटा नहीं सकता"
-+msgstr "Addr %s नीति में परिभाषित है, मिटाया नहीं जा सकता है"
+-msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
++msgstr ""
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "%s मिटा नहीं सका"
-+msgstr "addr %s मिटा नहीं सका"
+-msgstr "Brisanje sučelja %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "पोर्ट सूची बद्ध नहीं कर सका"
-+msgstr "addrs सूची बद्ध नहीं कर सका"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "जांच नहीं सका अगर %s अंतरफलक परिभाषित है"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s अंतरफलक पहले से परिभाषित है"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s के लिये अंतरफलक नहीं बना सका"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "उपयोक्ता को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "भूमिका को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "टाइप को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "mls क्षेत्र %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s के लिये अंतरफलक संदर्भ सेट नहीं कर सका"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s के लिये संदेश संदर्भ सेट नहीं कर सका"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s अंतरफलक जोड़ नहीं सका"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s अंतरफलक परिभाषित नहीं है"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "%s अंतरफलक प्रश्न नहीं कर सकता"
+ msgid "Could not deleteall node mappings"
+-msgstr "Brisanje mapiranja prijave za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "%s अंतरफलक रूपांतरित नहीं सक सका"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Ispisivanje popisa portova nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "अंतरफलक %s नीति में परिभाषित है, मिटाया नहीं जा सकता"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -711,9 +710,8 @@ msgid "Could not delete interface %s"
+ msgstr "Brisanje sučelja %s nije moguće"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "%s अंतरफलक मिटा नहीं सका"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Brisanje sučelja %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "अंतरफलक सूचीबद्ध नहीं कर सका"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux अंतरफलक"
+@@ -728,9 +726,9 @@ msgid "Context"
+ msgstr "Kontekst"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "संदर्भ"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Kontekst datoteke za %s već je određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s के लिये फाइल संदर्भ में उपयोक्ता सेट नहीं कर सका"
+@@ -738,9 +736,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s के लिये फाइल संदर्भ में भूमिका सेट नहीं कर सका"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "mls क्षेत्र %s के लिये फाइल संदर्भ के क्रम में नहीं सेट कर सका"
+@@ -758,9 +756,8 @@ msgid "Could not set mls fields in file context for %s"
+ msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
- msgstr "अवैध फाइल विशेषता"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "जांच नहीं सका अगर %s के लिये फाइल संदर्भ परिभाषित है"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s के लिये फाइल संदर्भ पहले से परिभाषित है"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s के लिये फाइल संदर्भ नहीं बना सका"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s के लिये फाइल संदर्भ में टाइप सेट नहीं कर सका"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s के लिये फाइल संदर्भ नहीं सेट कर सका"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s के लिये फाइल संदर्भ नहीं जोड़ सका"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "सेटटाइप जरूरी, serange या seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s के लिये फाइल संदर्भ परिभाषित नहीं है"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s के लिये फाइल संदर्भ को प्रश्न नहीं कर सका"
+-msgstr "Specifikacija:"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s के लिये फाइल संदर्भ नहीं सुधार सका"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -820,14 +817,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Uređivanje konteksta datoteke za %s nije moguće"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "फाइल संदर्भ सूचीबद्ध नहीं कर सका"
+-msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr "%s के लिये फाइल संदर्भ मिटा नहीं सका"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s के लिये फाइल संदर्भ नीति में परिभाषित है, मिटा नहीं सकता"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s के लिये फाइलसंदर्भ मिटा नहीं सका"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "फाइल संदर्भ सूचीबद्ध नहीं कर सका"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "स्थानीय फाइल संदर्भ सूचीबद्ध नहीं कर सका"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "प्रकार"
+-msgstr "Brisanje konteksta datoteke za %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "अगर %s बुलियन परिभाषित है तो जांच नहीं सका"
+@@ -862,11 +858,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "%s बुलियन परिभाषित नहीं है"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "%s फाइल संदर्भ को प्रश्न नहीं कर सका"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -885,14 +880,14 @@ msgid "Could not query file context %s"
+ msgstr "Propitivanje konteksta datoteke %s nije moguće"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "आपको एक मान अवश्य निर्दिष्ट करना है"
-+msgstr "आपको निम्नलिखित मान अवश्य निर्दिष्ट करना है: %s"
+-msgstr "Potrebno je odrediti prefiks"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
--msgstr "%s बुलियन मिटा नहीं सका"
-+msgstr "%s बुलियन का सक्रिय मान सेट नहीं कर सका"
+-msgstr "Brisanje Booleove vrijednosti %s nije moguće"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "%s बुलियन रूपांतरित नहीं कर सका"
+@@ -927,24 +922,23 @@ msgid "off"
+ msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "खराब प्रारूप %s: रिकार्ड %s"
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
+ msgid "on"
+-msgstr "Cron"
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "%s बुलियन नीति में परिभाषित है, मिटाया नहीं जा सकता"
+ #: ../semanage/seobject.py:2131
+ msgid "SELinux boolean"
+ msgstr "SELinux Booleov"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "%s बुलियन मिटा नहीं सका"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Stanje"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "बुलियन सूचीबद्ध नहीं कर सका"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "अज्ञात"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "बंद"
+@@ -1138,9 +1132,9 @@ msgid "failed to get old_context.\n"
+ msgstr "Dohvaćanje starog konteksta nije uspjelo.\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "चालू"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Pogreška! Dohvaćanje TTY podataka nije moguće.\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux बूलियन"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1187,9 +1181,9 @@ msgid "failed to exec shell\n"
+ msgstr "Izvršavanje ljuske nije uspjelo\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "विवरण"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "upotreba:  %s [-q]\n"
++msgstr ""
  
-@@ -964,9 +985,9 @@
- msgstr "वातावरण साफ करने में असमर्थ\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+@@ -1197,9 +1191,9 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
+ #: ../load_policy/load_policy.c:80
 -#, fuzzy, c-format
 +#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "त्रुटि initing क्षमता, त्याग रहा है.\n"
-+msgstr "क्षमता आरंभीकरण में त्रुटि, छोड़ रहा है.\n"
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s: Pravilo nije moguće učitati: %s\n"
++msgstr ""
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
+ #: ../load_policy/load_policy.c:90
  #, c-format
-@@ -1296,1678 +1317,2199 @@
+@@ -1285,1902 +1279,2096 @@ msgstr "chcat -- -TvrtkaPovjerljivo /docs/poslovniplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +TvrtkaPovjerljivo juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "विकल्प त्रुटि %s"
+ msgstr "Pogreška opcija %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "गैर-MLS मशीन पर अनुवाद समर्थित नहीं"
--
--#~ msgid "Boolean"
--#~ msgstr "बूलिये"
--
--#~ msgid "all"
--#~ msgstr "सभी"
--
--#~ msgid "Customized"
--#~ msgstr "पसंदीदा"
--
--#~ msgid "File Labeling"
--#~ msgstr "फाइल लेबलिंग"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "फाइल\n"
--#~ "विनिर्दिष्टता"
--
+-#, fuzzy
 -#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
 -#~ msgstr ""
--#~ "Selinux\n"
--#~ "फाइल प्रकार"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ "Otvaranje %s nije moguće: Prijevodi nisu podržani na ne-MLS računalima"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "बूलिये"
-+
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "Razina"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "सभी"
-+
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "Prijevod"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "पसंदीदा"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Prijevodi ne mogu sadržavati prazna mjesta (razmake) '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "फाइल लेबलिंग"
++msgstr ""
  
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "फाइल\n"
--#~ "प्रकार"
--
--#~ msgid "User Mapping"
--#~ msgstr "उपयोक्ता मैपिंग"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "लॉगिन\n"
--#~ "नाम"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "उपयोक्ता"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS परिसर"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "लॉगिन '%s' जरूरी है"
--
--#~ msgid "Policy Module"
--#~ msgstr "पॉलिसी मॉड्यूल"
--
--#~ msgid "Module Name"
--#~ msgstr "मॉड्यूल नाम"
--
--#~ msgid "Version"
--#~ msgstr "संस्करण"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Neispravna razina '%s'. "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"फाइल\n"
-+"विनिर्दिष्टता"
  
--#~ msgid "Disable Audit"
--#~ msgstr "ऑडिट निष्क्रिय करें"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s već je definiran u prijevodima"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"फाइल प्रकार"
  
--#~ msgid "Enable Audit"
--#~ msgstr "ऑडिट सक्रिय करें"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nije definiran u prijevodima"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"फाइल\n"
-+"प्रकार"
  
--#~ msgid "Load Policy Module"
--#~ msgstr "पॉलिसी मॉड्यूल लोड करें"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mapiranje prijave za %s već je određeno"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "उपयोक्ता मैपिंग"
++msgstr ""
  
--#~ msgid "Polgen"
--#~ msgstr "पोल्जेन"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "dodaj SELinux korisničko mapiranje"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"लॉगिन\n"
-+"नाम"
  
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux korisnik %s već je određen"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"उपयोक्ता"
  
--#~ msgid "GPL"
--#~ msgstr "GPL"
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Potreban je port"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS परिसर"
  
--#~ msgid "translator-credits"
--#~ msgstr "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)"
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s već je određen"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "लॉगिन '%s' जरूरी है"
++msgstr ""
  
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux पॉलिसी जनन औजार"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Sučelje %s već je određeno"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "पॉलिसी मॉड्यूल"
++msgstr ""
  
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "यह औजार एक पॉलिसी फ्रेमवर्क बनाने के लिए प्रयुक्त होता है, अनुप्रयोग या उपयोक्ता को "
--#~ "SELinux के प्रयोग के लिए सीमति करने के लिए.   \n"
--#~ "\n"
--#~ "औजार बनाता है:\n"
--#~ "प्रकार बाध्यकारी फाइल\n"
--#~ "अंतरफलक फाइल (if)\n"
--#~ "फाइल संदर्भ फाइल (fc)\n"
--#~ "Shell script (sh) - पॉलिसी कंपाइल व अधिष्ठापित करने के लिए प्रयुक्त. "
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Pogreška pri inicijalizaciji sposobnosti. Bit će prekinuto.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "मॉड्यूल नाम"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "सीमित रहने के लिए अनुप्रयोग/उपयोक्ता भूमिका के प्रकार चुनें."
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "संस्करण"
++msgstr ""
  
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>अनुप्रयोग</b>"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Pogreška pri postavljanju sposobnosti. Bit će prekinuto.\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "ऑडिट निष्क्रिय करें"
++msgstr ""
  
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "मानक Init डेमॉन वे डेमॉन हैं जो बूट पर init स्क्रिप्ट से होकर आरंभ किया गया.  प्रायः /"
--#~ "etc/rc.d/init.d में एक स्क्रिप्ट की जरूरी है"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Pogreška postavljanju KEEPCAPS. Bit će prekinuto.\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "ऑडिट सक्रिय करें"
++msgstr ""
  
--#~ msgid "Standard Init Daemon"
--#~ msgstr "मानक Init डेमॉन"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Pogreška pri ispuštanju sposobnosti. Bit će prekinuto.\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "पॉलिसी मॉड्यूल लोड करें"
++msgstr ""
  
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "इंटरनेट सेवा डेमॉन xinetd के द्वारा आरंभ किया जाता है"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Pogreška pri ispuštanju SETUID sposobnosti. Bit će prekinuto.\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "पोल्जेन"
++msgstr ""
  
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "इंटरनेट सर्विस डेमॉन (inetd)"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Pogreška pri oslobađanju sposobnosti\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
++msgstr ""
  
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "वेब अनुप्रयोग/स्क्रिप्ट (CGI) CGI स्क्रिप्ट को वेब सर्वर के द्वारा आरंभ किया जाता है "
--#~ "(apache)"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
++msgstr ""
  
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "वेब अनुप्रयोग/स्क्रिप्ट (CGI)"
+-#~ msgid "Boolean"
+-#~ msgstr "Booleova vrijednost"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)"
++msgstr ""
+-#, fuzzy
+-#~ msgid "all"
+-#~ msgstr "Sve"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "Označavanje datoteka"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
  
 -#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
+-#~ "File\n"
+-#~ "Specification"
 -#~ msgstr ""
--#~ "उपयोक्ता अनुप्रयोग कोई अनुप्रयोग है जो सीमित करना चाहेगा जो कि उपयोक्ता के द्वारा "
--#~ "आरंभ हुआ है"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"यह औजार एक पॉलिसी फ्रेमवर्क बनाने के लिए प्रयुक्त होता है, अनुप्रयोग या उपयोक्ता को "
-+"SELinux के प्रयोग के लिए सीमति करने के लिए.   \n"
-+"\n"
-+"औजार बनाता है:\n"
-+"प्रकार बाध्यकारी फाइल\n"
-+"अंतरफलक फाइल (if)\n"
-+"फाइल संदर्भ फाइल (fc)\n"
-+"Shell script (sh) - पॉलिसी कंपाइल व अधिष्ठापित करने के लिए प्रयुक्त. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "सीमित रहने के लिए अनुप्रयोग/उपयोक्ता भूमिका के प्रकार चुनें."
-+
-+#: ../gui/polgen.glade:196
+-#~ "Datoteka\n"
+-#~ "Specifikacija"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>अनुप्रयोग</b>"
++msgstr ""
  
--#~ msgid "User Application"
--#~ msgstr "उपयोक्ता अनुप्रयोग"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "Kontekst"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"मानक Init डेमॉन वे डेमॉन हैं जो बूट पर init स्क्रिप्ट से होकर आरंभ किया गया.  प्रायः /"
-+"etc/rc.d/init.d में एक स्क्रिप्ट की जरूरी है"
  
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>लॉगिन उपयोक्ता</b>"
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Datoteka\n"
+-#~ "Vrsta"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "मानक Init डेमॉन"
-+
-+#: ../gui/polgen.glade:280
++msgstr ""
+-#~ msgid "User Mapping"
+-#~ msgstr "Korisničko mapiranje"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS सिस्टम डेमॉन"
-+
-+#: ../gui/polgen.glade:299
++msgstr ""
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Prijava\n"
+-#~ "Ime"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "इंटरनेट सेवा डेमॉन xinetd के द्वारा आरंभ किया जाता है"
-+
-+#: ../gui/polgen.glade:301
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Korisnik"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "इंटरनेट सर्विस डेमॉन (inetd)"
++msgstr ""
  
--#~ msgid "Modify an existing login user record."
--#~ msgstr "मौजूदा लॉगिन उपयोक्ता रिकार्ड रूपांतरित करें."
-+#: ../gui/polgen.glade:320
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS raspon"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"वेब अनुप्रयोग/स्क्रिप्ट (CGI) CGI स्क्रिप्ट को वेब सर्वर के द्वारा आरंभ किया जाता है "
-+"(apache)"
  
--#~ msgid "Existing User Roles"
--#~ msgstr "मौजूदा उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:322
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Potrebna je '%s' prijava"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "वेब अनुप्रयोग/स्क्रिप्ट (CGI)"
++msgstr ""
  
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "यह उपयोक्ता मशीन में लॉगिन मात्र टर्मिनल या दूरस्थ लॉगिन से होगा.  मूलभूत रूप से यह "
--#~ "उपयोक्ता के पास कोई setuid नहीं होगा, कोई संजालन नहीं, कोई su नहीं, कोई sudo "
--#~ "नहीं."
-+#: ../gui/polgen.glade:341
+-#~ msgid "Policy Module"
+-#~ msgstr "Modul pravila"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"उपयोक्ता अनुप्रयोग कोई अनुप्रयोग है जो सीमित करना चाहेगा जो कि उपयोक्ता के द्वारा आरंभ "
-+"हुआ है"
  
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "न्यूनतम टर्मिनल उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:343
+-#, fuzzy
+-#~ msgid "Disable Audit"
+-#~ msgstr "Nepovezana revizija"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "उपयोक्ता अनुप्रयोग"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#, fuzzy
+-#~ msgid "Enable Audit"
+-#~ msgstr "Nepovezana revizija"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Učitaj modul pravila"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>लॉगिन उपयोक्ता</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "मौजूदा लॉगिन उपयोक्ता रिकार्ड रूपांतरित करें."
-+
++msgstr ""
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "मौजूदा उपयोक्ता भूमिका"
++msgstr ""
  
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "यह उपयोक्ता मशीन में लॉगिन X या टर्मिनल से कर सकता है.  मूलभूत रूप से यह उपयोक्ता के "
--#~ "पास कोई setuid नहीं होगा, कोई संजालन नहीं, कोई sudo नहीं, कोई su नहीं."
-+#: ../gui/polgen.glade:472
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"यह उपयोक्ता मशीन में लॉगिन मात्र टर्मिनल या दूरस्थ लॉगिन से होगा.  मूलभूत रूप से यह "
-+"उपयोक्ता के पास कोई setuid नहीं होगा, कोई संजालन नहीं, कोई su नहीं, कोई sudo नहीं."
  
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "न्यूनतम X विंडोज उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:474
+-#~ msgid "translator-credits"
+-#~ msgstr "Renato Pavičić, renato<AT>translator-shop.org"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "न्यूनतम टर्मिनल उपयोक्ता भूमिका"
++msgstr ""
  
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई sudo "
--#~ "नहीं, कोई su नहीं."
-+#: ../gui/polgen.glade:493
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Alat za izradu SELinux pravila"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"यह उपयोक्ता मशीन में लॉगिन X या टर्मिनल से कर सकता है.  मूलभूत रूप से यह उपयोक्ता के पास "
-+"कोई setuid नहीं होगा, कोई संजालन नहीं, कोई sudo नहीं, कोई su नहीं."
  
--#~ msgid "User Role"
--#~ msgstr "उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:495
+-#, fuzzy
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "न्यूनतम X विंडोज उपयोक्ता भूमिका"
++msgstr ""
  
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई su नहीं, "
--#~ "रूट प्रशासन भूमिका को sudo कर सकता है."
-+#: ../gui/polgen.glade:514
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Aplikacije</b>"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई sudo नहीं, "
-+"कोई su नहीं."
  
--#~ msgid "Admin User Role"
--#~ msgstr "प्रशासन उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:516
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Standardni demon inicijalizacije"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "उपयोक्ता भूमिका"
++msgstr ""
  
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>रूट उपयोक्ता</b>"
-+#: ../gui/polgen.glade:535
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Demon internetskih usluga (inetd)"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"पूर्ण संजालन के साथ उपयोक्ता, कोई setuid अनुप्रयोग बिना संक्रमण के नहीं, कोई su नहीं, रूट "
-+"प्रशासन भूमिका को sudo कर सकता है."
  
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "रूट प्रशासन उपयोक्ता  भूमिका चुनें, यदि यह उपयोक्ता मशीन को प्रशासित करने के लिए "
--#~ "प्रयोग किया जाता है रूट के रूप में कार्य करते हुए.  यह उपयोक्ता सिस्टम में सीधे लॉगिन "
--#~ "होने के लिए समर्थ नहीं होगा."
-+#: ../gui/polgen.glade:537
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Web-aplikacija/Skripta (CGI)"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "प्रशासन उपयोक्ता भूमिका"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#~ msgid "User Application"
+-#~ msgstr "Korisnička aplikacija"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>रूट उपयोक्ता</b>"
++msgstr ""
  
--#~ msgid "Root Admin User Role"
--#~ msgstr "रूट प्रशासन उपयोक्ता भूमिका"
-+#: ../gui/polgen.glade:645
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Korisnici</b>"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"रूट प्रशासन उपयोक्ता  भूमिका चुनें, यदि यह उपयोक्ता मशीन को प्रशासित करने के लिए प्रयोग "
-+"किया जाता है रूट के रूप में कार्य करते हुए.  यह उपयोक्ता सिस्टम में सीधे लॉगिन होने के लिए "
-+"समर्थ नहीं होगा."
-+
-+#: ../gui/polgen.glade:647
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "Uloga"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "रूट प्रशासन उपयोक्ता भूमिका"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "अनुप्रयोग का नाम व उपयोक्ता भूमिका सीमित रहने के लिए डालें."
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "नाम"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "सीमित रहने के लिए एक्सक्यूटेबल का पूरा पथ दें."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "सीमित अनुप्रयोग या उपयोक्ता भूमिका  के लिए अद्वितीय नाम दें."
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "एक्सक्यूटेबल"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init स्क्रिप्ट"
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Korisnici</b>"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Korijenski korisnik"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
+-#, fuzzy
 -#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "अनुप्रयोग का नाम व उपयोक्ता भूमिका सीमित रहने के लिए डालें."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr "सीमित अनुप्रयोग आरंभ करने के लिए init स्क्रिप्ट में पूरा पथ डालें."
+-#~ msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
+-#, fuzzy
 -#~ msgid "Name"
--#~ msgstr "नाम"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "उन उपयोक्ता भूमिकाओं को चुनें जिसे आप पसंदीदा बनाना चाहते हैं"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "उपयोक्ता भूमिका चुनें जो कि इस अनुप्रयोग डोमेन में संक्रमित करेगा."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "अतिरिक्त डोमेन चुनें जिसमें यह उपयोक्ता भूमिका संक्रमण करेगा"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "सीमित रहने के लिए एक्सक्यूटेबल का पूरा पथ दें."
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "अनुप्रयोग डोमेन चुनें जिसमें आप इस उपयोक्ता भूमिका को संक्रमण कराना चाहेंगे."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "उन उपयोक्ता भूमिकाओं को चुनें जो इस डोमेन में संक्रमित किया जाएगा"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "अतिरिक्त डोमेन चुनें जिसे यह उपयोक्ता भूमिका प्रशासित करेगा"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "डोमेन चुनें जिसे आप इस उपयोक्ता के द्वारा प्रशासित कराना चाहेंगे."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "इस उपयोक्ता के लिए अतिरिक्त भूमिकाएं चुनें"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता लाइसेंस लिया होता है."
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP पोर्ट</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "सीमित अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट में बांधने के लिए स्वीकृति दें"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "सभी"
+-#~ msgstr "Naziv"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
 -#~ msgid "..."
 -#~ msgstr "..."
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
 +msgstr ""
-+"अनुप्रयोग/उपयोक्ता भूमिका को bindresvport को 0 के साथ स्वीकृति दें. पोर्ट 600-1024 में "
-+"बांध रहा है"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "सीमित अनुप्रयोग या उपयोक्ता भूमिका  के लिए अद्वितीय नाम दें."
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
  
+-#, fuzzy
 -#~ msgid "Executable"
--#~ msgstr "एक्सक्यूटेबल"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
+-#~ msgstr "&Izvršna datoteka:"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+"udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
-+"अनुप्रयोग/प्रयोक्ता बंधा है. उदाहरण: 612, 650-660"
  
+-#, fuzzy
 -#~ msgid "Init script"
--#~ msgstr "Init स्क्रिप्ट"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "अनारक्षित पोर्ट (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "पोर्ट चुनें"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट से बांधने की स्वीकृति देता है > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP पोर्ट</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता कनेक्ट होता है."
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "सीमित अनुप्रयोग आरंभ करने के लिए init स्क्रिप्ट में पूरा पथ डालें."
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"tcp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
-+"अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "उन उपयोक्ता भूमिकाओं को चुनें जिसे आप पसंदीदा बनाना चाहते हैं"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
+-#~ msgstr "Korisnička skripta"
++#: ../gui/polgen.glade:871
++msgid "Executable"
 +msgstr ""
-+"udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
-+"अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "उपयोक्ता भूमिका चुनें जो कि इस अनुप्रयोग डोमेन में संक्रमित करेगा."
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "सामान्य अनुप्रयोग गुण चुनें"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog संदेश लिखता है\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp में अस्थायी फाइलों को बनाता / काम करता है"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "सत्यापन के लिए PAM का प्रयोग करता है"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch या getpw* कॉल प्रयोग करता है"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus का प्रयोग करें"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "ऑडिट संदेश भेजता है"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "टर्मिनल के साथ अंतःक्रिया करता है"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "ईमेल भेजता है"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "फाइल/निर्देशिका चुनें जिसे अनुप्रयोग प्रबंधित करता है"
  
+-#, fuzzy
 -#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "अतिरिक्त डोमेन चुनें जिसमें यह उपयोक्ता भूमिका संक्रमण करेगा"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
++#: ../gui/polgen.glade:899
++msgid "Init script"
 +msgstr ""
-+"फाइल/निर्देशिका जोड़ें जिसकी इस अनुप्रयोग को \"Write\" लिखने की जरूरत होगी. Pid फाइल, "
-+"लॉग फाइल, /var/lib फाइलें ..."
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "अनुप्रयोग डोमेन चुनें जिसमें आप इस उपयोक्ता भूमिका को संक्रमण कराना चाहेंगे."
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "बुलियन को चुनें जिसे अनुप्रयोग प्रयोग करता है"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "सीमित अनुप्रयोग/उपयोक्ता के लिए प्रयुक्त बुलियन जोड़ें/हटाएं."
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को बनाना है"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "पॉलिसी निर्देशिका"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "पॉलिसी फाइल उत्पन्न किया"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "उन उपयोक्ता भूमिकाओं को चुनें जो इस डोमेन में संक्रमित किया जाएगा"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"यह औजार निम्नलिखित को उत्पन्न करता है: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए चलाएं.\n"
-+"semanage या useradd का प्रयोग Linux लॉगिन उपयोक्ता को उपयोक्ता भूमिका में मैप करने के "
-+"लिए करें\n"
-+"अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
-+"उपयोक्ता के रूप में लॉगिन करें और इस उपयोक्ता भूमिका की जांच करें.\n"
-+"audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
  
+-#, fuzzy
 -#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "अतिरिक्त डोमेन चुनें जिसे यह उपयोक्ता भूमिका प्रशासित करेगा"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"यह औजार निम्नलिखित को उत्पन्न करता है: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"\n"
-+"शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए "
-+"चलाएं. \n"
-+"अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
-+"avc संदेश चलाने के लिए अनुप्रयोग को चलाएं/फिर आरंभ करें.\n"
-+"audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "बुलियन संवाद जोड़ रहा है"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "बूलियन नाम"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "भूमिका"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "मौजूदा उपयोक्ता (_U)"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "अनुप्रयोग"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s को जरूर निर्देशिका होनी चाहिए"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "आपको जरूर उपयोक्ता चुनना है"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "सीमित रहने के लिए एक्सक्यूटेबल फाइल चुनें."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "सीमित होने के लिए init स्क्रिप्ट चुनें."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "फाइलों को चुनें जिसे सीमित अनुप्रयोग बनाता है व लिखता है"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "निर्देशिका चुनें जिसका सीमित अनुप्रयोग मालिक है व जिसमें लिखता है"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को लिखा जाना है"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "डोमेन चुनें जिसे आप इस उपयोक्ता के द्वारा प्रशासित कराना चाहेंगे."
-+#: ../gui/polgengui.py:554
-+#, python-format
+-#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
++#: ../gui/polgen.glade:927
 +msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"मौजूदा नीति में %s_t पहले से परिभाषित है.\n"
-+"क्या आप जारी रखना चाहते हैं?"
  
+-#, fuzzy
 -#~ msgid "Select additional roles for this user"
--#~ msgstr "इस उपयोक्ता के लिए अतिरिक्त भूमिकाएं चुनें"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "नाम जांचें"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता लाइसेंस लिया होता है."
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
+-#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+"मॉड्यूल %s.pp पहले से मौजूदा नीति में लोड किया है.\n"
-+"क्या आप जारी रखना चाहते हैं?"
  
 -#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP पोर्ट</b>"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "आपको एक नाम अवश्य दाखिल करना है"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "सीमित अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट में बांधने के लिए स्वीकृति दें"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "आप जरूर एक एक्सक्यूटेबल दें"
+-#~ msgstr "<b>TCP portovi</b>"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
 -#~ msgid "All"
--#~ msgstr "सभी"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux विन्यस्त करें"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "अनुप्रयोग/उपयोक्ता भूमिका को bindresvport को 0 के साथ स्वीकृति दें. पोर्ट 600-1024 "
--#~ "में बांध रहा है"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "पोर्ट को जरूर 1 से %d तक संख्या या संख्या का परिसर जरूर होना चाहिए."
+-#~ msgstr "Sve"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "अपनी सीमित प्रक्रिया/उपयोक्ता के लिए आप अपना नाम जरूर दें"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
--#~ "अनुप्रयोग/प्रयोक्ता बंधा है. उदाहरण: 612, 650-660"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER प्रकार अनुमति प्राप्त एक्सक्यूटेबल नहीं है"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
+-#, fuzzy
 -#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "अनारक्षित पोर्ट (>1024)"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "सिर्फ DAEMON apps एक init स्क्रिप्ट का प्रयोग कर सकता है"
+-#~ msgstr "DSL 4096/1024"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
+-#, fuzzy
 -#~ msgid "Select Ports"
--#~ msgstr "पोर्ट चुनें"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog के पास जरूर बूलियन मान होना चाहिए"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "अनुप्रयोग/उपयोक्ता भूमिका को किसी udp पोर्ट से बांधने की स्वीकृति देता है > 1024"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER प्रकार को स्वतः tmp प्रकार लेना चाहिए"
+-#~ msgstr "Ostali portovi"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
 -#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP पोर्ट</b>"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "अपने सीमति प्रक्रिया के लिए आप जरूर अपना एक्सक्यूटेबल पथ दें"
+-#~ msgstr "<b>UDP portovi</b>"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "संजाल पोर्ट दाखिल करें जिससे अनुप्रयोग/उपयोक्ता कनेक्ट होता है."
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "प्रकार बाध्यकारी फाइल"
+-#, fuzzy
+-#~ msgid "Select common application traits"
+-#~ msgstr "Aplikacija za upravljanje glazbom"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
+-#, fuzzy
+-#~ msgid "Uses Pam for authentication"
 -#~ msgstr ""
--#~ "tcp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
--#~ "अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "अंतरफलक फाइल"
+-#~ "Pluggable Authentication Module (PAM) za upotrebu sa SMB poslužiteljima"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "udp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
--#~ "अनुप्रयोग/प्रयोक्ता जुड़ता है. उदाहरण: 612, 650-660"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "फाइल संदर्भ फाइल"
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Pogreška pri slanju poruke provjere.\n"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
--#~ msgid "Select common application traits"
--#~ msgstr "सामान्य अनुप्रयोग गुण चुनें"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "सेटअप स्क्रिप्ट"
+-#, fuzzy
+-#~ msgid "Policy Directory"
+-#~ msgstr "Zadana mapa"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog संदेश लिखता है\t"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "संजाल पोर्ट"
+-#, fuzzy
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Učitavanje generiranih datoteka…"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp में अस्थायी फाइलों को बनाता / काम करता है"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
+-#, fuzzy
+-#~ msgid "Boolean Name"
+-#~ msgstr "Booleova vrijednost"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+"SELinux पोर्ट\n"
-+"प्रकार"
  
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "सत्यापन के लिए PAM का प्रयोग करता है"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "प्रोटोकॉल"
+-#~ msgid "Role"
+-#~ msgstr "Uloga"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch या getpw* कॉल प्रयोग करता है"
+-#~ msgid "Application"
+-#~ msgstr "Aplikacija"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "%s must be a directory"
+-#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Potrebno je unijeti ime"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Odaberite _particiju na koju će biti smještena razmjenska datoteka:"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#~ msgid "You must enter a name"
+-#~ msgstr "Potrebno je unijeti ime"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Potrebno je unijeti izvršni program"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Konfiguriraj SELinux"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "Ping razdoblje mora biti između 1 i 10"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr ""
+-#~ "Ako je odabrano 'Nova usluga', potrebno je unijeti naziv nove usluge "
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Prazan certifikat autorizacije nije dopušten."
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
+-#, fuzzy
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr ""
+-#~ "Vrijednost opcije \"%s\" mora biti \"yes\" ili \"no\" (\"da\" ili \"ne\")"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Datoteke prisile vrste"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "Datoteka sučelja"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "Datoteka konteksta"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Setup Script"
+-#~ msgstr "Korisnička skripta"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr "Potreban je port"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "Protokol"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "Razina"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "Port"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Vrijednost koju ste unijeli nije ispravni broj."
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Group View"
+-#~ msgstr "Prikaz klijenata"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux usluga zaštite"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon acct"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "Korisničke privilegije"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "Zaštita memorije"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Ograničenje veličine spremnika memorije"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Pristupi"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Ograničenje veličine spremnika memorije"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Omogući da ssh pokreće ssh-keysign"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "Konfiguriranje mreže"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Dopusti neometeno djelovanje alatu rpm."
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Baze podataka"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Dopusti korisnicima povezivanje na mysql socket"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Dopusti korisnicima povezivanje na postgres socket"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Omogući demonima pokretanje s NIS."
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "Web aplikacije"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr ""
+-#~ "Dopusti alatu ftp da piše/čita datoteke u korisničkim glavnim mapama."
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Onemogući SELinux zaštitu za amanda"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Onemogući SELinux zaštitu za amavis"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon apmd"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon arpwatch"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon auditd"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon automount"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Onemogući SELinux zaštitu za avahi"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon bluetooth"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
++
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
++
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
++
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
++
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
++
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
++
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
++
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
++
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"स्तर"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus का प्रयोग करें"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "पोर्ट"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "पोर्ट संख्या \"%s\" वैध नहीं है.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "अंतिम दृश्य"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "समूह दृश्य"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -95162,26 +101759,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux सेवा सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "सभी डेमॉन को कोरफाइलों को / में लिखने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "सभी डेमॉन को गैर आबंटति ttys के प्रयोग की छूट दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -95190,176 +101787,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "उपयोक्ता Privs"
--#~ msgid "Sends audit messages"
--#~ msgstr "ऑडिट संदेश भेजता है"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux उपयोक्ता खाता को फाइलों को उनके होम निर्देशिका या /tmp में निष्पादित "
-+"करने की अनुमति दें"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "टर्मिनल के साथ अंतःक्रिया करता है"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"अतिथि SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित करने "
-+"की अनुमति दें"
--#~ msgid "Sends email"
--#~ msgstr "ईमेल भेजता है"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "स्मृति सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java एक्सक्यूटेबल स्टैक की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "आरोह"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "किसी फाइल को माउंट करने के लिए mount को अनुमति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "किसी निर्देशिका को माउंट करने के लिए mount को अनुमति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer एक्सक्यूटेबल स्टैक की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh को ssh-keysign चलाने की स्वीकृति दें"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "फाइल/निर्देशिका चुनें जिसे अनुप्रयोग प्रबंधित करता है"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"स्टाफ SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
-+"स्वीकृति दें"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "फाइल/निर्देशिका जोड़ें जिसकी इस अनुप्रयोग को \"Write\" लिखने की जरूरत होगी. Pid "
--#~ "फाइल, लॉग फाइल, /var/lib फाइलें ..."
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
-+"स्वीकृति दें"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "बुलियन को चुनें जिसे अनुप्रयोग प्रयोग करता है"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"असीमित SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
-+"स्वीकृति दें"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "सीमित अनुप्रयोग/उपयोक्ता के लिए प्रयुक्त बुलियन जोड़ें/हटाएं."
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "संजाल विन्यास"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "संजाल पर बिना लेबल किये पैकेट को स्वीकृति दें"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को बनाना है"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"उपयोक्ता SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
-+"स्वीकृति दें"
--#~ msgid "Policy Directory"
--#~ msgstr "पॉलिसी निर्देशिका"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "असीमित को dyntrans से unconfined_execmem में स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "डाटाबेस"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "उपयोक्ता को mysql सॉकेट में जोड़ने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "उपयोक्ता को postgres सॉकेट में जोड़ने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "क्लाइंट को X साझा स्मृति में लिखने की अनुमति दें"
--#~ msgid "Generated Policy Files"
--#~ msgstr "पॉलिसी फाइल उत्पन्न किया"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित करने "
-+"की अनुमति दें"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "यह औजार निम्नलिखित को उत्पन्न करता है: \n"
--#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
--#~ "शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए "
--#~ "चलाएं.\n"
--#~ "semanage या useradd का प्रयोग Linux लॉगिन उपयोक्ता को उपयोक्ता भूमिका में मैप "
--#~ "करने के लिए करें\n"
--#~ "अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
--#~ "उपयोक्ता के रूप में लॉगिन करें और इस उपयोक्ता भूमिका की जांच करें.\n"
--#~ "audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS के डेमॉन चलाने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -95367,1077 +101907,1336 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "वेब अनुप्रयोग"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "स्टाफ SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "उपयोक्ता SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "स्टाफ वेब ब्रॉउजर को होम निर्देशिका में लिखने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster Server के लिए SELinux सुरक्षा निष्क्रिय करें"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "यह औजार निम्नलिखित को उत्पन्न करता है: \n"
--#~ "Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
--#~ "\n"
--#~ "शेल स्क्रिप्ट को कंपाइल/अधिष्ठापित करने व फाइल/निर्देशिका को फिर लेबल करने के लिए "
--#~ "चलाएं. \n"
--#~ "अब आप मशीन को अनुज्ञात्मक मोड में (setenforce 0) रख सकते हैं. \n"
--#~ "avc संदेश चलाने के लिए अनुप्रयोग को चलाएं/फिर आरंभ करें.\n"
--#~ "audit2allow -R को te फाइल के लिए अतिरिक्त नियम बनाने के लिए प्रयोग करें.\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord को विभिन्न सामग्री को पढ़ने के लिए स्वीकृति दें. nfs, samba, विस्थापनीय "
-+"युक्तियां, user temp और अविश्वसनीय सामग्री फाइलें"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "बुलियन संवाद जोड़ रहा है"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "क्रॉन"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "छाप रहा है"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd बैकेंड सर्वर के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t को सीधे डेमॉन को आरंभ करने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "खेल"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "गेम के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "वेब ब्रॉउजर के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "सुसंगतता"
--#~ msgid "Boolean Name"
--#~ msgstr "बूलियन नाम"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"उन चीजों का ऑडिट मत करें जिसे हम टूटे हुए के तौर पर जानते हैं लेकिन जो सुरक्षा खतरा नहीं है"
--#~ msgid "Role"
--#~ msgstr "भूमिका"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD सेवा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd child डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "करबरोस"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "उपयोक्ता फाइल पढ़ने के लिए evolution और thunderbird को स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "मोजिला ब्रॉउजर को उपयोक्ता फाइलें पढ़ने की स्वीकृति दें"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon canna"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cardmgr"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "नाम सेवा"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ciped"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon clamd"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Onemogući SELinux zaštitu za clamscan"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Onemogući SELinux zaštitu za clvmd"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon comsat"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "सांबा"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon courier"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cpucontrol"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cpuspeed"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "Ispisivanje"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cupsd"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Onemogući SELinux zaštitu za cupsd_lpd"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cvs"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cyrus"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dbskkd"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dbusd"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd को नियमित उपयोक्ता के रूप में चलने की स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ddt"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon devfsd"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dhcpc"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dhcpd"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dictd"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Dopusti sysadm_t da izravno pokrene demone."
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Games"
+-#~ msgstr "Igre"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon distccd"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "गैर मानक स्थान में फाइलों को पढ़ने की प्रोग्राम को अनुमति दें (default_t)"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dmesg"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dnsmasq"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon dovecot"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon entropyd"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon fingerd"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon freshclam"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon fsdaemon"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon gpm"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh को inetd से चलने की स्वीकृति डेमॉन के रूप के बजाय दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon gss"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba को nfs निर्देशिका साझा करने की स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon hal"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL सत्यापन सर्वर"
-+
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Kompatibilnost"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl सत्यापन सर्वर को /etc/shadow को पढ़ने की स्वीकृति दें"
++msgstr ""
  
--#~ msgid "Existing_User"
--#~ msgstr "मौजूदा उपयोक्ता (_U)"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Ne provjeravaj stvari za koje znamo da su nedovršene, ali koje ne "
+-#~ "predstavljaju sigurnosni rizik."
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows सर्वर को एक्सक्यूटेबल व लिखने योग्य दोनों रूप में स्मृति क्षेत्र में मैप करने की "
-+"स्वीकृति दें"
  
--#~ msgid "Application"
--#~ msgstr "अनुप्रयोग"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon hostname"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon hotplug"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon howl"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo और su प्रभावित में संक्रमण की स्वीकृति मत दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "कर्नेल मॉड्यूल लोड करने के लिए किसी प्रक्रिया की अनुमति मत दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Onemogući SELinux zaštitu za demon httpd"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "कर्नेल SELinux पॉलिसी में किसी प्रक्रिया को मत स्वीकृति दें"
-+
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD usluga"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Onemogući SELinux zaštitu za http suexec"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon hwclock"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon i18n"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon imazesrv"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Onemogući SELinux zaštitu za demone inetd child"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon inetd"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon innd"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon iptables"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ircd"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon irqbalance"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "स्पैम सुरक्षा"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon jabberd"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd को होम निर्देशिका के अभिगम की स्वीकृति दें"
-+
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assasin डेमॉन संजाल अभिगम की स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon kadmind"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon klogd"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon krb5kdc"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid डेमॉन को संजाल से कनेक्ट होने की स्वीकृति दें"
-+
-+#: ../gui/selinux.tbl:186
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Onemogući SELinux zaštitu za demone ktalk"
++#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon kudzu"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon locate"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
++msgstr ""
  
--#~ msgid "%s must be a directory"
--#~ msgstr "%s को जरूर निर्देशिका होनी चाहिए"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon lpd"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r उपयोक्ता को sysadm होम निर्देशिका व रीड फाइल कों खोजने की स्वीकृति दें (जैसे कि "
-+"~/.bashrc)"
  
--#~ msgid "You must select a user"
--#~ msgstr "आपको जरूर उपयोक्ता चुनना है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon lrrd"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "सार्वभौमिक SSL टनेल"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon lvm"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel डेमॉन को पृथक चलाने की स्वीकृति दें, xinetd के बाहर"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Dopusti da Evolution i Thunderbird čitaju korisničke datoteke"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon mdadm"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon monopd"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Dopusti da preglednik Mozilla čita korisničke datoteke"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "system cron jobs  के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon mrtg"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon mysqld"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nagios"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Name Service"
+-#~ msgstr "Usluga naziva"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nazivatelja"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nessusd"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
  
--#~ msgid "Select executable file to be confined."
--#~ msgstr "सीमित रहने के लिए एक्सक्यूटेबल फाइल चुनें."
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Onemogući SELinux zaštitu za NetworkManager"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो यह आरंभ करती है जो "
-+"डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
  
--#~ msgid "Select init script file to be confined."
--#~ msgstr "सीमित होने के लिए init स्क्रिप्ट चुनें."
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nfsd"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc स्क्रिप्ट को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो rc स्क्रिप्ट आरंभ "
-+"करती है जो डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
  
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "फाइलों को चुनें जिसे सीमित अनुप्रयोग बनाता है व लिखता है"
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm को असीमित रूप से चलने की स्वीकृति दें"
++msgstr ""
  
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "निर्देशिका चुनें जिसका सीमित अनुप्रयोग मालिक है व जिसमें लिखता है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nmbd"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"हॉटप्लग और insmod की तरह के सुविधा प्राप्त उपयोगिता को असीमित रूप से चलने की स्वीकृति दें"
  
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "निर्देशिका चुनें जिसमें पॉलिसी फाइल को लिखा जाना है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nrpe"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
  
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "मौजूदा नीति में %s_t पहले से परिभाषित है.\n"
--#~ "क्या आप जारी रखना चाहते हैं?"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nscd"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
  
--#~ msgid "Verify Name"
--#~ msgstr "नाम जांचें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon nsd"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r को sysadm_r पर su, sudo, या userhelper से होकर पहुंचने की अनुमति दें. अन्यथा, "
-+"सिर्फ staff_r ऐसा कर सकता है"
  
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "मॉड्यूल %s.pp पहले से मौजूदा नीति में लोड किया है.\n"
--#~ "क्या आप जारी रखना चाहते हैं?"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ntpd"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "उपयोक्ता को mount कमांड चलाने की स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "नियमित उपयोक्ता को सीधा माउस अभिगम की स्वीकृति दें (सिर्फ X सर्वर को अनुमति दें)"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "उपयोक्ता को dmesg कमांड चलाने की स्वीकृति दें"
++msgstr ""
  
--#~ msgid "You must enter a name"
--#~ msgstr "आपको एक नाम अवश्य दाखिल करना है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon openvpn"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"उपयोक्ता को संजाल अंतरफलक नियंत्रित करने की स्वीकृति दें (USERCTL=true के सही की जरूरत है)"
  
--#~ msgid "You must enter a executable"
--#~ msgstr "आप जरूर एक एक्सक्यूटेबल दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon pam"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "सामान्य उपयोक्ता को पिंग करने की स्वीकृति दें"
++msgstr ""
  
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux विन्यस्त करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY) करने के लिए उपयोक्ता को स्वीकृति दें"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "पोर्ट को जरूर 1 से %d तक संख्या या संख्या का परिसर जरूर होना चाहिए."
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon perdition"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "usb युक्ति को rw बनाने के लिए उपयोक्ता को स्वीकृति दें"
++msgstr ""
  
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "अपनी सीमित प्रक्रिया/उपयोक्ता के लिए आप अपना नाम जरूर दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon portmap"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"उपयोक्ता को TCP सर्वर (bind to ports and accept connection from the same "
-+"domain and outside users) चलाने की स्वीकृति दें इन बलों को FTP निष्क्रिय मोड में "
-+"निष्क्रिय करते हुए और अन्य प्रोटोकॉल बदल सकता है"
-+
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon portslave"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ttyfiles को stat के लिए उपयोक्ता को स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon postgresql"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon prelink"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon privoxy"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ptal"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon pxe"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "भौतिक डिस्क युक्ति को xen को पढ़ने/लिखने की स्वीकृति दें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon quota"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon radiusd"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "SELinux सुरक्षा को xen नियंत्रण के लिए निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon radvd"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS Password डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Dopusti programima iščitavanje datoteka na nestandardnim lokacijama "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS Transfer डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
++msgstr ""
  
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER प्रकार अनुमति प्राप्त एक्सक्यूटेबल नहीं है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को प्रबंधित करने की "
-+"स्वीकृति दें"
  
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "सिर्फ DAEMON apps एक init स्क्रिप्ट का प्रयोग कर सकता है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon rhgb"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को पढ़ने स्वीकृति दें"
++msgstr ""
  
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog के पास जरूर बूलियन मान होना चाहिए"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "क्या आप निश्चित हैं कि आप %s '%s' को मिटाना चाहते हैं?"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER प्रकार को स्वतः tmp प्रकार लेना चाहिए"
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s मिटाएं"
++msgstr ""
  
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "अपने सीमति प्रक्रिया के लिए आप जरूर अपना एक्सक्यूटेबल पथ दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon rlogind"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s जोड़ें"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "टाइप बाध्यकारी फाइल"
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon rpcd"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s बदलें"
++msgstr ""
  
--#~ msgid "Interface file"
--#~ msgstr "अंतरफलक फाइल"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "अनुज्ञात्मक"
++msgstr ""
  
--#~ msgid "File Contexts file"
--#~ msgstr "फाइल संदर्भ फाइल"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "बाध्यकारी"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "निष्क्रिय"
++msgstr ""
  
--#~ msgid "Setup Script"
--#~ msgstr "सेटअप स्क्रिप्ट"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon rsync"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "स्तर"
++msgstr ""
  
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux पोर्ट\n"
--#~ "प्रकार"
+-#, fuzzy
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "Dopusti da se ssh pokreće iz inetd, umjesto kao demon"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"पॉलिसी प्रकार को बदलना पूरे फाइल सिस्टम को रिलेबल करने का कारण बनेगा अगले बूट पर. "
-+"रिलेबलिंग लंबा समय लेता है फाइल सिस्टम के आकार पर निर्भर करते हुए.  क्या आप जारी रखना "
-+"चाहते हैं?"
  
--#~ msgid "Protocol"
--#~ msgstr "प्रोटोकॉल"
+-#, fuzzy
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Dopusti da Samba razmjenjuje NFS mape."
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -96447,3292 +103246,2638 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux को निष्क्रिय में बदलने के लिए रिबूट की जरूरत होती है.  इसकी सलाह नहीं दी जाती "
-+"है.  यदि आप SELinux को वापस लौटाने की सोचते हैं, सिस्टम को रिलेबल करने की जरूरत "
-+"होगी.  यदि आप यह देखना चाहते हैं कि SELinux सिस्टम पर समस्या दे रहा है, आप अनुज्ञात्मक "
-+"मोड में जा सकते हैं जो सिर्फ त्रुटि देगा और SELinux पॉलिसी को बाध्यकारी नहीं करेगा.  "
-+"अनुज्ञात्मक मोड के लिए रिबूट की जरूरत नहीं है, क्या आप जारी रखना चाहते हैं?"
  
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "स्तर"
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL poslužitelj provjere autentičnosti"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"सक्रिय SELinux स्थिति में बदलना अगले बूट पर पूरे फाइल सिस्टम के फिर लेबल किये जाने का "
-+"कारण बनेगा. फाइल सिस्टम के आकार के आधार पर फिर से लेबल किया जाना काफी समय लेता है. "
-+"क्या आप जारी रखना चाहेंगे?"
-+
+-#, fuzzy
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr ""
+-#~ "Dopusti da sasl poslužitelj provjere autentičnosti čita mapu /etc/shadow"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
  
--#~ msgid "Port"
--#~ msgstr "पोर्ट"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon saslauthd"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon scannerdaemon"
+-
+-#, fuzzy
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Ne dopusti prijelaz u sysadm_t"
+-
+-#, fuzzy
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Nikakvim postupcima ne dopuštaj učitavanje kernelskih modula"
+-
+-#, fuzzy
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Nikakvim postupcima ne dopuštaj izmjenjivanje kernelskih SELinux pravila"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon sendmail"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Onemogući SELinux zaštitu za igre"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon slapd"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon slrnpull"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon smbd"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon snmpd"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
  
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "पोर्ट संख्या \"%s\" वैध नहीं है.  0 < PORT_NUMBER < 65536 "
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon snort"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux लॉगिंग मैपिंग"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux संजाल पोर्ट"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux प्रकार"
--#~ msgid "List View"
--#~ msgstr "अंतिम दृश्य"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"स्तर"
--#~ msgid "Group View"
--#~ msgstr "समूह दृश्य"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "फाइल विशेषता"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "फाइल प्रकार"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux सेवा सुरक्षा"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"सभी फाइलें\n"
-+"नियमित फाइल\n"
-+"निर्देशिका\n"
-+"संप्रतीक युक्ति\n"
-+"ब्लॉक युक्ति\n"
-+"सॉकेट\n"
-+"सांकेतिक लिंक\n"
-+"नामित पाइप\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux उपयोक्ता जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux प्रशासन"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "गुण (_P)"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "मिटाएँ (_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "प्रबंधन वस्तु चुनें"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>चुनें:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "सिस्टम मूलभूत बाध्यकारी मोड"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
 +msgstr ""
-+"निष्क्रिय\n"
-+"अनुज्ञात्मक\n"
-+"बाध्यकारी\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "मौजूदा पुनर्बलन मोड"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "सिस्टम मूलभूत पॉलिसी प्रकार: "
  
--#~ msgid "Admin"
--#~ msgstr "Admin"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon soundd"
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
 +msgstr ""
-+"चुनें यदि आप पूरे फाइल सिस्टम को अगले रिबूट पर फिर लेबल करना चाहते हैं.  रिलेबल करना लंबा "
-+"समय ले सकता है, सिस्टम के आकार पर निर्भर करते हुए.  यदि आप पॉलिसी प्रकार को निष्क्रिय "
-+"से बाध्यकारी में बदल रहे हैं, फिर लेबल करना जरूरी है."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "अगले रिबूट पर फिर लेबल करें."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "सिस्टम मूलभूत में बुलियन सेटिंग वापस लाएं"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "पसंदीदा और सभी बुलियन के बीच टॉगल करें"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "बुलियन लॉकडाउन सहायक चलाएँ"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "लॉकडाउन..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "फिल्टर"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "फाइल संदर्भ जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "फाइल संदर्भ बदलें"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "फाइल संदर्भ मिटाएं"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "सभी और पसंदीदा फाइल संदर्भ के बीच टॉगल करें"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "सभी डेमॉन को कोरफाइलों को / में लिखने की स्वीकृति दें"
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux उपयोक्ता मैपिंग जोड़ें"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "सभी डेमॉन को गैर आबंटति ttys के प्रयोग की छूट दें"
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux उपयोक्ता मैपिंग बदलें"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux उपयोक्ता मैपिंग मिटाएं"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "उपयोक्ता जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "उपयोक्ता बदलें"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "उपयोक्ता मिटाएँ"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "अनुवाद जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "अनुवाद बदलें"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "अनुवाद मिटाएँ"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "संजाल पोर्ट जोड़ें"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "संजाल पोर्ट संपादित करें"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "संजाल पोर्ट मिटाएं"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "पसंदीदा और सभी पोर्ट के बीच टॉगल करें"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "नया पॉलिसी मॉड्यूल उत्पन्न करें"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "पॉलिसी मॉड्यूल लोड करें."
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "लोड करने लायक सार्वजनिक मॉड्यूल हटाएं"
  
--#~ msgid "User Privs"
--#~ msgstr "उपयोक्ता Privs"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon sound"
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
 +msgstr ""
-+"अतिरिक्त ऑडिट नियम सक्रिय/निष्क्रिय करें, जो लॉग फाइल में सामान्यतः रिपोर्ट नहीं किया "
-+"हुआ है."
  
 -#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux उपयोक्ता खाता को फाइलों को उनके होम निर्देशिका या /tmp में "
--#~ "निष्पादित करने की अनुमति दें"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
+-#~ msgid "Spam Protection"
+-#~ msgstr "Spam zaštita"
+-
 -#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "अतिथि SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित "
--#~ "करने की अनुमति दें"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "प्रक्रिया विधि अनुज्ञात्मक में बदलें."
--#~ msgid "Memory Protection"
--#~ msgstr "स्मृति सुरक्षा"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "प्रक्रिया विधि बाध्यकारी में बदलें."
--#~ msgid "Allow java executable stack"
--#~ msgstr "java एक्सक्यूटेबल स्टैक की स्वीकृति दें"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "प्रक्रिया डोमेन"
--#~ msgid "Mount"
--#~ msgstr "आरोह"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "किसी फाइल को माउंट करने के लिए mount को अनुमति दें"
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon spamd"
 -
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "किसी निर्देशिका को माउंट करने के लिए mount को अनुमति दें"
+-#, fuzzy
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Dopusti da spamd ima pristup korisničkim glavnim mapama."
 -
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer एक्सक्यूटेबल स्टैक की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Dopusti demonu Spam Assasin pristup mreži"
 -
--#~ msgid "SSH"
--#~ msgstr "SSH"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon speedmgmt"
 -
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh को ssh-keysign चलाने की स्वीकृति दें"
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 -
 -#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "स्टाफ SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
--#~ "स्वीकृति दें"
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Dopusti demonu squid povezivanje na mrežu."
 -
 -#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
--#~ "स्वीकृति दें"
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 -
 -#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "असीमित SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन की "
--#~ "स्वीकृति दें"
--
--#~ msgid "Network Configuration"
--#~ msgstr "संजाल विन्यास"
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ssh"
 -
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "संजाल पर बिना लेबल किये पैकेट को स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Dopusti ssh prijavljivanja kao sysadm_r:sysadm_t"
 -
 -#, fuzzy
 -#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
 -#~ msgstr ""
--#~ "उपयोक्ता SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादन "
--#~ "की स्वीकृति दें"
+-#~ "Dopusti korisnicima staff_r da pretražuju i čitaju sadržaj mape sysadm "
+-#~ "home (poput ~/.bashrc)"
 -
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "असीमित को dyntrans से unconfined_execmem में स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Univerzalan SSL tunel"
 -
--#~ msgid "Databases"
--#~ msgstr "डाटाबेस"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon stunnel"
 -
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "उपयोक्ता को mysql सॉकेट में जोड़ने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "Dopusti demonu stunnel samostalno pokretanje, izvan xinetd"
 -
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "उपयोक्ता को postgres सॉकेट में जोड़ने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon swat"
 -
--#~ msgid "XServer"
--#~ msgstr "XServer"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon sxid"
 -
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "क्लाइंट को X साझा स्मृति में लिखने की अनुमति दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon syslogd"
 -
 -#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux उपयोक्ता खाता को उनके होम निर्देशिका या /tmp में फाइल निष्पादित "
--#~ "करने की अनुमति दें"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
 -
--#~ msgid "NIS"
--#~ msgstr "NIS"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 -
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "NIS के डेमॉन चलाने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon telnet"
 -
--#~ msgid "Web Applications"
--#~ msgstr "वेब अनुप्रयोग"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon tftpd"
 -
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "स्टाफ SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon transproxy"
 -
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon udev"
 -
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "उपयोक्ता SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon uml"
 -
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux उपयोक्ता को वेब ब्रॉउजर डोमेन में ले जाएं"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Dopusti nesputani rad xinetd, uključujući bilo koje usluge koje je "
+-#~ "pokrenuo, a koji nemaju izričito zadano pretvaranje domena."
 -
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "स्टाफ वेब ब्रॉउजर को होम निर्देशिका में लिखने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Dopusti nesputani rad rc skripti, uključujući bilo koji demon koje je "
+-#~ "pokrenula rc skripta, a koji nema izričito zadano pretvaranje domena."
 -
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Dopusti neometeno djelovanje alatu rpm."
 -
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Dopusti neometeno djelovanje privilegiranim alatima kao što su hotplug i "
+-#~ "insmod."
 -
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon updfstab"
 -
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon uptimed"
 -
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Dopusti da user_r pristupi u sysadm_r putem su, sudo, ili userhelper. U "
+-#~ "protivno dopušteno samo za staff_r."
 -
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
 -
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Dopusti redovnim korisnicima izravan pristup mišem (dopusti samo X "
+-#~ "poslužitelj)"
 -
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Dopusti korisnicima izvršavanje naredbe dmesg"
 -
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Dopusti korisnicima nadzor nad mrežnim sučeljima (potreban je i "
+-#~ "USERCTL=true)"
 -
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Dopusti normalnim korisnicima izvršavanje alata ping"
 -
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Cluster Server के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Dopusti korisnicima čitanja i pisanje noextattrfile (FAT, CDROM, FLOPPY)"
+-
+-#, fuzzy
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Dopusti korisnicima čitanja i pisanje USB uređaja"
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
 -#~ msgstr ""
--#~ "cdrecord को विभिन्न सामग्री को पढ़ने के लिए स्वीकृति दें. nfs, samba, विस्थापनीय "
--#~ "युक्तियां, user temp और अविश्वसनीय सामग्री फाइलें"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ "Dopusti korisnicima pokretanje TCP poslužitelja (povezivanje s portovima "
+-#~ "i prihvaćanje povezivanja iz iste domene i vanjskim korisnicima). "
+-#~ "Onemogućavanje ove opcije prisiljava pasivan način za FTP i može "
+-#~ "izmijeniti ostale protokole."
 -
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Dopusti korisnicima definiranje tty datoteka"
 -
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon uucpd"
 -
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon vmware"
 -
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon vmware"
 -
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon winbind"
 -
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon xdm"
 -
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Dopusti xdm prijave kao sysadm_r:sysadm_t"
 -
--#~ msgid "Cron"
--#~ msgstr "क्रॉन"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 -
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 -
--#~ msgid "Printing"
--#~ msgstr "छाप रहा है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon xfs"
 -
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd बैकेंड सर्वर के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 -
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ypbind"
 -
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 -
--#~ msgid "CVS"
--#~ msgstr "CVS"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ypserv"
 -
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 -
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
 -
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
 -
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Jeste li sigurni ste da želite izbrisati %s?"
 -
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Delete %s"
+-#~ msgstr "_Izbriši"
 -
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Add %s"
+-#~ msgstr "_Dodaj"
 -
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Modify %s"
+-#~ msgstr "&Uredi..."
 -
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Permissive"
+-#~ msgstr "Dopustivo"
 -
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Enforcing"
+-#~ msgstr "Prisiljavanje"
 -
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Promjena sigurnosnih pravila prisilit će ponovno označavanje cjelokupnog "
+-#~ "datotečnog sustava pri sljedećem pokretanju. Ponovno je označavanje "
+-#~ "dugotrajno i ovisi o veličini datotečnog sustava. Želite li nastaviti?"
 -
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Omogućavanje SELinux prisilit će ponovno označavanje cjelokupnog "
+-#~ "datotečnog sustava pri sljedećem pokretanju. Ponovno je označavanje "
+-#~ "dugotrajno i ovisi o veličini datotečnog sustava. Želite li nastaviti?"
 -
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "system-config-selinux"
+-#~ msgstr "System-Config-Printer"
 -
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t को सीधे डेमॉन को आरंभ करने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Dodavanje mapiranja prijave za %s nije moguće"
 -
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Evolution के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
 -
--#~ msgid "Games"
--#~ msgstr "खेल"
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux vrsta"
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
 -
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "गेम के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr "SELinux mls temeljna pravila"
 -
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "वेब ब्रॉउजर के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "File Specification"
+-#~ msgstr "Specifikacija:"
 -
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Thunderbird के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "File Type"
+-#~ msgstr "Vrsta _datotečnog sustava:"
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr ""
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
 -
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Dodaj SELinux korisnika"
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Administrativni alati"
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr ""
+-#~ msgid "Add"
+-#~ msgstr "Dodaj"
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr ""
+-#~ msgid "_Properties"
+-#~ msgstr "_Svojstva"
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
+-#~ msgid "_Delete"
+-#~ msgstr "_Izbriši"
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Select Management Object"
+-#~ msgstr "Odabir određenog dijela auta"
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Odaberite:</b>"
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
+-#, fuzzy
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Izmjena zadanog jezik sustava"
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Određivanje načina prisiljavanja nije moguće.\n"
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Dohvaćanje zadane vrste nije moguće.\n"
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Kod sljedećeg pokretanja sustava bit će prisiljen 'fsck'."
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
+-#~ msgid "label37"
+-#~ msgstr "label37"
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
+-#~ msgid "Filter"
+-#~ msgstr "Filtar"
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add File Context"
+-#~ msgstr "Dodavanje konteksta datoteke za %s nije moguće"
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify File Context"
+-#~ msgstr "Uređivanje konteksta datoteke za %s nije moguće"
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Delete File Context"
+-#~ msgstr "Brisanje konteksta datoteke za %s nije moguće"
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
+-#~ msgid "label38"
+-#~ msgstr "label38"
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Uredi mapiranje SELinux korisnika"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Izbriši mapiranje SELinux korisnika"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
+-#~ msgid "label39"
+-#~ msgstr "label39"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add Translation"
+-#~ msgstr "Pogreška pri prevođenju"
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify Translation"
+-#~ msgstr "Pogreška pri prevođenju"
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Delete Translation"
+-#~ msgstr "Pogreška pri prevođenju"
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Uredi SELinux korisnika"
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add Network Port"
+-#~ msgstr "Port za mrežno povezivanje"
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Port za mrežno povezivanje"
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Port za mrežno povezivanje"
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Generate new policy module"
+-#~ msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
+-#~ msgid "Load policy module"
+-#~ msgstr "Učitaj modul pravila"
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "RAID _razina:"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Potrebna je SELinux korisnik '%s'"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Zahtijeva vrijednost"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Druid za izradu SELinux pravila"
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "DSL 4096/1024"
 -
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "label34"
+-#~ msgstr "label34"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
+-#~ msgid "label35"
+-#~ msgstr "label35"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
 -
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr "'prisiljavanje', 'dopuštanje', ili 'onemogućeno'"
 -
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "value"
+-#~ msgstr "vrijednost"
 -
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Za pokretanje %s morate biti korijenski korisnik."
 -
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "Other"
+-#~ msgstr "Ostalo"
 -
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "XWindows Login User"
+-#~ msgstr "%1: TTY prijava"
 -
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Terminal Login User"
+-#~ msgstr "%1: TTY prijava"
 -
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Incoming Network Port Connections"
+-#~ msgstr "Čekanje dolaznih veza na portu %1."
 -
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Outgoing Network Port Connections"
+-#~ msgstr "%s: ip=%s, port=%s <mrežni powercontroller>"
 -
--#~ msgid "NFS"
--#~ msgstr "NFS"
+-#, fuzzy
+-#~ msgid "Files and Directories"
+-#~ msgstr "Dodatne razvojne datoteke 'include' i razvojne datoteke"
 -
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Generate policy in this directory"
+-#~ msgstr "this file must be located in your Template directory.;"
 -
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "Login"
+-#~ msgstr "Prijava"
 -
--#~ msgid "Compatibility"
--#~ msgstr "सुसंगतता"
+-#, fuzzy
+-#~ msgid "Allow cvs daemon to read shadow"
+-#~ msgstr ""
+-#~ "Dopusti da sasl poslužitelj provjere autentičnosti čita mapu /etc/shadow"
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
+-#~ "Allow unconfined executables to make their heap memory executable.  Doing "
+-#~ "this is a really bad idea. Probably indicates a badly coded executable, "
+-#~ "but could indicate an attack. This executable should be reported in "
+-#~ "bugzilla"
 -#~ msgstr ""
--#~ "उन चीजों का ऑडिट मत करें जिसे हम टूटे हुए के तौर पर जानते हैं लेकिन जो सुरक्षा खतरा नहीं "
--#~ "है"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "hplip डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD सेवा"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd child डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Kerberos"
--#~ msgstr "करबरोस"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "उपयोक्ता फाइल पढ़ने के लिए evolution और thunderbird को स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "मोजिला ब्रॉउजर को उपयोक्ता फाइलें पढ़ने की स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Name Service"
--#~ msgstr "नाम सेवा"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Samba"
--#~ msgstr "सांबा"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "pppd को नियमित उपयोक्ता के रूप में चलने की स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "गैर मानक स्थान में फाइलों को पढ़ने की प्रोग्राम को अनुमति दें (default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh को inetd से चलने की स्वीकृति डेमॉन के रूप के बजाय दें"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba को nfs निर्देशिका साझा करने की स्वीकृति दें"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL सत्यापन सर्वर"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl सत्यापन सर्वर को /etc/shadow को पढ़ने की स्वीकृति दें"
+-#~ "Dopusti nevezanim izvršnim datotekama da svoju memorijsku gomilu učine "
+-#~ "izvršnom.  Omogućavanje ove opcije je zaista loša zamisao.  Vjerojatno "
+-#~ "predstavlja loše kodiranu izvršnu datoteku, ali može predstavljati i "
+-#~ "napad. Izvršnu bi datoteku trebalo prijaviti pri bugzilla."
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
+-#~ "Allow unconfined executables to map a memory region as both executable "
+-#~ "and writable, this is dangerous and the executable should be reported in "
+-#~ "bugzilla"
 -#~ msgstr ""
--#~ "X-Windows सर्वर को एक्सक्यूटेबल व लिखने योग्य दोनों रूप में स्मृति क्षेत्र में मैप करने की "
--#~ "स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo और su प्रभावित में संक्रमण की स्वीकृति मत दें"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "कर्नेल मॉड्यूल लोड करने के लिए किसी प्रक्रिया की अनुमति मत दें"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "कर्नेल SELinux पॉलिसी में किसी प्रक्रिया को मत स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroublesoot डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ "Dopusti nevezanim izvršnim datotekama mapiranje memorijskih područja kao "
+-#~ "izvrših i kao zapisivih. Ovo je nepouzdano i izvršnu bi datoteku trebalo "
+-#~ "prijaviti pri bugzilla."
 -
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow all unconfined executables to use libraries requiring text "
+-#~ "relocation that are not labeled textrel_shlib_t"
+-#~ msgstr ""
+-#~ "Dopusti svim nevezanim izvršnim datotekama upotrebu biblioteka koje "
+-#~ "zahtijevaju premještanje teksta, bez označavanja kao textrel_shlib_t"
 -
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their stack executable.  This should "
+-#~ "never, ever be neessary. Probably indicates a badly coded executable, but "
+-#~ "could indicate an attack. This executable should be reported in bugzilla"
+-#~ msgstr ""
+-#~ "Dopusti nevezanim izvršnim datotekama da svoju memorijsku hrpu učine "
+-#~ "izvršnom.  Ovo nikad, ali nikad ne bi smjelo biti potrebno.  Vjerojatno "
+-#~ "predstavlja loše kodiranu izvršnu datoteku, ali može predstavljati i "
+-#~ "napad. Izvršnu bi datoteku trebalo prijaviti pri bugzilla."
 -
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
 -
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow ftpd to full access to the system"
+-#~ msgstr "Vaš će sustav zahtijevati pristup pretplati."
 -
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Dopusti da ftpd učitava datoteke u mape označene kao javni sadržaj "
+-#~ "(public_content_rw_t)"
 -
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow gpg executable stack"
+-#~ msgstr "Ograničenje veličine spremnika memorije"
 -
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow gssd to read temp directory"
+-#~ msgstr "Dopusti da HTTPD da iščitava glavne mape."
 -
--#~ msgid "Spam Protection"
--#~ msgstr "स्पैम सुरक्षा"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow httpd daemon to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Dopusti da demon httpd zapisuje datoteke u mapama označenim kao javni "
+-#~ "sadržaj (public_content_rw_t)"
 -
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow httpd scripts to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Dopusti da httpd skripte zapisuje datoteke u mapama označenim kao javni "
+-#~ "sadržaj (public_content_rw_t)"
 -
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd को होम निर्देशिका के अभिगम की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow daemons to use kerberos files"
+-#~ msgstr "Omogući demonima upotrebu kerberos datoteka."
 -
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam Assasin डेमॉन संजाल अभिगम की स्वीकृति दें"
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Polyinstatiation"
 -
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Enable polyinstantiated directory support"
+-#~ msgstr "Omogući podršku za Smart _Card"
 -
--#~ msgid "Squid"
--#~ msgstr "Squid"
+-#, fuzzy
+-#~ msgid "Allow sysadm_t to debug or ptrace applications"
+-#~ msgstr "Dopusti da sysadm_t otkriva nedostatke ili prati aplikacije)"
 -
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid डेमॉन को संजाल से कनेक्ट होने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow rsync to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Dopusti da rsync zapisuje datoteke u mapama označenim kao javni sadržaj "
+-#~ "(public_content_rw_t)"
 -
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow Samba to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Dopusti da Samba zapisuje datoteke u mapama označenim kao javni sadržaj "
+-#~ "(public_content_rw_t)"
 -
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
 -
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
+-#~ msgid "Allow zebra daemon to write it configuration files"
+-#~ msgstr "Dopusti da demon zebra zapisuje konfiguracijske datoteke"
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
+-#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
 -#~ msgstr ""
--#~ "staff_r उपयोक्ता को sysadm होम निर्देशिका व रीड फाइल कों खोजने की स्वीकृति दें (जैसे "
--#~ "कि ~/.bashrc)"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "सार्वभौमिक SSL टनेल"
+-#~ "Dopusti cron radnjama sustava ponovno označavanje sustava za potrebe "
+-#~ "obnavljanja."
 -
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon ftpd"
 -
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "stunnel डेमॉन को पृथक चलाने की स्वीकृति दें, xinetd के बाहर"
+-#, fuzzy
+-#~ msgid "Allow ftpd to run directly without inetd"
+-#~ msgstr "Dopusti izravno djelovanje alata ftpd bez inetd."
 -
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow ftp to read/write files in the user home directories"
+-#~ msgstr ""
+-#~ "Dopusti alatu ftp da piše/čita datoteke u korisničkim glavnim mapama."
 -
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD to support built-in scripting"
+-#~ msgstr "Dopusti da HTTPD podržava ugrađene skripte."
 -
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD to send mail"
+-#~ msgstr "Dopusti da HTTPD da iščitava glavne mape."
 -
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "system cron jobs  के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
+-#~ msgstr ""
+-#~ "Dopusti HTTPD skriptama i modulima mrežno povezivanje na bazu podataka."
 -
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD scripts and modules to connect to the network"
+-#~ msgstr "Dopusti HTTPD skriptama i modulima povezivanje na mrežu."
 -
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow httpd to act as a relay"
+-#~ msgstr "Dopusti da se HTTPD da pokreće kao FTP poslužitelj"
 -
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon httpd"
 -
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD cgi support"
+-#~ msgstr "Dopusti HTTPD cgi podršku"
 -
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD to run as a ftp server"
+-#~ msgstr "Dopusti da se HTTPD da pokreće kao FTP poslužitelj"
 -
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow HTTPD to read home directories"
+-#~ msgstr "Dopusti da HTTPD da iščitava glavne mape."
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
+-#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
+-#~ "scripts"
 -#~ msgstr ""
--#~ "xinetd को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो यह आरंभ करती है जो "
--#~ "डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
+-#~ "Dopusti da HTTPD pokreće SSI u istoj domeni kao i sistemske CGI skripte."
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
+-#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
+-#~ "certificates"
 -#~ msgstr ""
--#~ "rc स्क्रिप्ट को असीमित रूप से चलने की स्वीकृति दें, किसी सेवा के साथ जो rc स्क्रिप्ट आरंभ "
--#~ "करती है जो डोमेन संक्रमण को अलग से परिभाषित नहीं रखती है"
+-#~ "Objedini HTTPD radi komuniciranja s terminalom. Potrebno za rukovanje "
+-#~ "certifikatima."
 -
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm को असीमित रूप से चलने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Unify HTTPD handling of all content files"
+-#~ msgstr "Objedini HTTPD rukovanje svih datoteka sa sadržajem."
 -
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "हॉटप्लग और insmod की तरह के सुविधा प्राप्त उपयोगिता को असीमित रूप से चलने की "
--#~ "स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow named to overwrite master zone files"
+-#~ msgstr "Dopusti da nazivatelj prepisuje preko glavnih zonskih datoteka."
 -
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow openvpn service access to users home directories"
+-#~ msgstr "Dopusti korisnicima prijavljivanje s CIFS glavnom mapom."
 -
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Allow pppd daemon to insert modules into the kernel"
+-#~ msgstr "Dopusti demonu pppd umetanje modula u kernel."
 -
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r को sysadm_r पर su, sudo, या userhelper से होकर पहुंचने की अनुमति दें. "
--#~ "अन्यथा, सिर्फ staff_r ऐसा कर सकता है"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon pppd"
 -
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "उपयोक्ता को mount कमांड चलाने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za Mozilla demon ppp"
 -
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#, fuzzy
+-#~ msgid "Allow programs to read untrusted content without relabel"
 -#~ msgstr ""
--#~ "नियमित उपयोक्ता को सीधा माउस अभिगम की स्वीकृति दें (सिर्फ X सर्वर को अनुमति दें)"
+-#~ "Dopusti programima da čitaju nepouzdan sadržaj bez upotrebe programa "
+-#~ "relabel"
 -
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "उपयोक्ता को dmesg कमांड चलाने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
 -
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "उपयोक्ता को संजाल अंतरफलक नियंत्रित करने की स्वीकृति दें (USERCTL=true के सही की "
--#~ "जरूरत है)"
+-#, fuzzy
+-#~ msgid "Allow spammassasin to access the network"
+-#~ msgstr "Dopusti da spammassasin ima pristup na mrežu."
 -
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "सामान्य उपयोक्ता को पिंग करने की स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Use lpd server instead of cups"
+-#~ msgstr "Upotrijebi &sistemsko zvono umjesto obavijesti sustava"
 -
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "r/w noextattrfile (FAT, CDROM, FLOPPY) करने के लिए उपयोक्ता को स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Support NFS home directories"
+-#~ msgstr "Podrška za NFS glavne mape"
 -
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "usb युक्ति को rw बनाने के लिए उपयोक्ता को स्वीकृति दें"
+-#, fuzzy
+-#~ msgid "Allow users to login with CIFS home directories"
+-#~ msgstr "Dopusti korisnicima prijavljivanje s CIFS glavnom mapom."
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
+-#~ "Allow web applications to write untrusted content to disk (implies read)"
 -#~ msgstr ""
--#~ "उपयोक्ता को TCP सर्वर (bind to ports and accept connection from the same "
--#~ "domain and outside users) चलाने की स्वीकृति दें इन बलों को FTP निष्क्रिय मोड में "
--#~ "निष्क्रिय करते हुए और अन्य प्रोटोकॉल बदल सकता है"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ttyfiles को stat के लिए उपयोक्ता को स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm लॉगिन को sysadm_r:sysadm_t के रूप में स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "भौतिक डिस्क युक्ति को xen को पढ़ने/लिखने की स्वीकृति दें"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "SELinux सुरक्षा को xen नियंत्रण के लिए निष्क्रिय करें"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#~ "Dopusti web aplikacijama zapisivanje nepouzdanog sadržaja na disk "
+-#~ "(implicira i čitanje)"
 -
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS Password डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za demon zebra"
 -
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "Label Prefix"
+-#~ msgstr "Neispravan prefiks"
 -
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS Transfer डेमॉन के लिए SELinux सुरक्षा निष्क्रिय करें"
+-#, fuzzy
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "Zadavanje MLS razine za %s nije moguće"
 -
 -#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ "Labeling\n"
+-#~ "Prefix"
 -#~ msgstr ""
--#~ "SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को प्रबंधित करने की "
--#~ "स्वीकृति दें"
+-#~ "Označavanje\n"
+-#~ "Prefiks"
 -
+-#, fuzzy
 -#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm उपयोक्ता को अनधिकृत उपयोक्ता होम निर्देशिकाओं को पढ़ने स्वीकृति दें"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "क्या आप निश्चित हैं कि आप %s '%s' को मिटाना चाहते हैं?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s मिटाएं"
--
--#~ msgid "Add %s"
--#~ msgstr "%s जोड़ें"
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr "Zadavanje MLS razine za %s nije moguće"
 -
--#~ msgid "Modify %s"
--#~ msgstr "%s बदलें"
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Zahtijeva 2 ili više argumenta"
 -
--#~ msgid "Permissive"
--#~ msgstr "अनुज्ञात्मक"
+-#~ msgid "%s not defined"
+-#~ msgstr "%s nije određen"
 -
--#~ msgid "Enforcing"
--#~ msgstr "बाध्यकारी"
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s nije valjan za %s objekata\n"
 -
--#~ msgid "Disabled"
--#~ msgstr "निष्क्रिय"
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "Opseg nije podržan na ne-MLS računalima"
 -
--#~ msgid "Status"
--#~ msgstr "स्तर"
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Neispravna vrijednost '%s'. "
 -
 -#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "पॉलिसी प्रकार को बदलना पूरे फाइल सिस्टम को रिलेबल करने का कारण बनेगा अगले बूट पर. "
--#~ "रिलेबलिंग लंबा समय लेता है फाइल सिस्टम के आकार पर निर्भर करते हुए.  क्या आप जारी "
--#~ "रखना चाहते हैं?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux को निष्क्रिय में बदलने के लिए रिबूट की जरूरत होती है.  इसकी सलाह नहीं दी "
--#~ "जाती है.  यदि आप SELinux को वापस लौटाने की सोचते हैं, सिस्टम को रिलेबल करने की "
--#~ "जरूरत होगी.  यदि आप यह देखना चाहते हैं कि SELinux सिस्टम पर समस्या दे रहा है, आप "
--#~ "अनुज्ञात्मक मोड में जा सकते हैं जो सिर्फ त्रुटि देगा और SELinux पॉलिसी को बाध्यकारी "
--#~ "नहीं करेगा.  अनुज्ञात्मक मोड के लिए रिबूट की जरूरत नहीं है, क्या आप जारी रखना चाहते हैं?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "सक्रिय SELinux स्थिति में बदलना अगले बूट पर पूरे फाइल सिस्टम के फिर लेबल किये जाने का "
--#~ "कारण बनेगा. फाइल सिस्टम के आकार के आधार पर फिर से लेबल किया जाना काफी समय लेता "
--#~ "है. क्या आप जारी रखना चाहेंगे?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux लॉगिंग मैपिंग"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux संजाल पोर्ट"
--
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux प्रकार"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "स्तर"
--
--#~ msgid "File Specification"
--#~ msgstr "फाइल विशेषता"
--
--#~ msgid "File Type"
--#~ msgstr "फाइल प्रकार"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "सभी फाइलें\n"
--#~ "नियमित फाइल\n"
--#~ "निर्देशिका\n"
--#~ "संप्रतीक युक्ति\n"
--#~ "ब्लॉक युक्ति\n"
--#~ "सॉकेट\n"
--#~ "सांकेतिक लिंक\n"
--#~ "नामित पाइप\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux उपयोक्ता जोड़ें"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux प्रशासन"
--
--#~ msgid "Add"
--#~ msgstr "जोड़ें"
--
--#~ msgid "_Properties"
--#~ msgstr "गुण (_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "मिटाएँ (_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "प्रबंधन वस्तु चुनें"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>चुनें:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "सिस्टम मूलभूत बाध्यकारी मोड"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "मौजूदा पुनर्बलन मोड"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "सिस्टम मूलभूत पॉलिसी प्रकार: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "चुनें यदि आप पूरे फाइल सिस्टम को अगले रिबूट पर फिर लेबल करना चाहते हैं.  रिलेबल करना "
--#~ "लंबा समय ले सकता है, सिस्टम के आकार पर निर्भर करते हुए.  यदि आप पॉलिसी प्रकार को "
--#~ "निष्क्रिय से बाध्यकारी में बदल रहे हैं, फिर लेबल करना जरूरी है."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "अगले रिबूट पर फिर लेबल करें."
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "सिस्टम मूलभूत में बुलियन सेटिंग वापस लाएं"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "पसंदीदा और सभी बुलियन के बीच टॉगल करें"
--
--#~ msgid "Filter"
--#~ msgstr "फिल्टर"
--
--#~ msgid "Add File Context"
--#~ msgstr "फाइल संदर्भ जोड़ें"
--
--#~ msgid "Modify File Context"
--#~ msgstr "फाइल संदर्भ बदलें"
--
--#~ msgid "Delete File Context"
--#~ msgstr "फाइल संदर्भ मिटाएं"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "सभी और पसंदीदा फाइल संदर्भ के बीच टॉगल करें"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux उपयोक्ता मैपिंग जोड़ें"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux उपयोक्ता मैपिंग बदलें"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux उपयोक्ता मैपिंग मिटाएं"
--
--#~ msgid "Add Translation"
--#~ msgstr "अनुवाद जोड़ें"
--
--#~ msgid "Modify Translation"
--#~ msgstr "अनुवाद रूपांतरित करें"
--
--#~ msgid "Delete Translation"
--#~ msgstr "अनुवाद मिटाएं"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux उपयोक्ता सुधारें"
--
--#~ msgid "Add Network Port"
--#~ msgstr "संजाल पोर्ट जोड़ें"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "संजाल पोर्ट संपादित करें"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "संजाल पोर्ट मिटाएं"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "पसंदीदा और सभी पोर्ट के बीच टॉगल करें"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "नया पॉलिसी मॉड्यूल उत्पन्न करें"
--
--#~ msgid "Load policy module"
--#~ msgstr "पॉलिसी मॉड्यूल लोड करें."
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "लोड करने लायक सार्वजनिक मॉड्यूल हटाएं"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "अतिरिक्त ऑडिट नियम सक्रिय/निष्क्रिय करें, जो लॉग फाइल में सामान्यतः रिपोर्ट नहीं "
--#~ "किया हुआ है."
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "संवेदनशीलता स्तर"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux उपयोक्ता '%s' जरूरी हैं"
--
--#~ msgid "Requires value"
--#~ msgstr "मान जरूरी"
--
--#~ msgid ""
--#~ "\n"
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
 -#~ "\n"
--#~ "semodule -i %s\n"
+-#~ "semodule -i %s.pp\n"
 -#~ "\n"
 -#~ msgstr ""
+-#~ "Da bi se ovaj novoizrađeni paket pravila učitao u kernel,\n"
+-#~ "potrebno je da izvršite naredbu \n"
 -#~ "\n"
+-#~ "semodule -I %s.pp\n"
 -#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "अवैध उपसर्ग %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr "अनुप्रयोग/उपयोक्ता भूमिका को किसी tcp पोर्ट से बाइंड करने दें > 1024"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr "किसी tcp पोर्ट में बांधने के लिए सीमित अनुप्रयोग/उपयोक्ता चुनें"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "tcp पोर्ट या पोर्ट के परिसर का कौमा से अलग किया सूची दाखिल करें या परिसर जिसमें "
--#~ "अनुप्रयोग/प्रयोक्ता बंधा है. उदाहरण: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux पॉलिसी जनन ड्र्यूड"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "अनारक्षित पोर्ट (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "इस चेकबटन को चुनें यदि आपका app bindresvport को 0 के साथ आह्वान करता है."
 -
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "बाध्यकारी\n"
--#~ "अनुज्ञात्मक\n"
--#~ "निष्क्रिय\n"
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Pogreška opcija: %s "
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux उपयोक्ता '%s' जरूरी हैं"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils-2.0.85/po/hr.po
---- nsapolicycoreutils/po/hr.po        2011-02-17 15:11:25.790723886 -0500
-+++ policycoreutils-2.0.85/po/hr.po    2011-02-18 16:03:41.370975758 -0500
-@@ -2,16 +2,36 @@
++msgstr ""
+diff --git a/policycoreutils/po/hu.po b/policycoreutils/po/hu.po
+index 88f7c45..3045b7e 100644
+--- a/policycoreutils/po/hu.po
++++ b/policycoreutils/po/hu.po
+@@ -1,20 +1,24 @@
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
++# Translators:
+ # Arpad Biro <biro_arpad@yahoo.com>, 2006, 2007.
++# Nagy István Zoltán <nagyesta@gmail.com>, 2009.
++# Zoltan Hoppár <hopparz@gmail.com>, 2012.
+ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2007-10-06 03:44+0100\n"
- "Last-Translator: Renato Pavicic <renato@translator-shop.org>\n"
- "Language-Team: Croatian <www.translator-shop.org>\n"
-+"Language: hr\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-03-27 20:12+0200\n"
+-"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
+-"Language-Team: \n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-23 07:55+0000\n"
++"Last-Translator: Zoltan Hoppár <hopparz@gmail.com>\n"
++"Language-Team: Hungarian <trans-hu@lists.fedoraproject.org>\n"
++"Language: hu\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Poedit-Language: Croatian\n"
- "X-Poedit-Country: CROATIA\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Alat za izradu SELinux pravila"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +138,8 @@
- msgid "Level"
- msgstr "Razina"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Prijevod"
-@@ -173,743 +194,750 @@
- msgid "Permissive Types"
- msgstr "Dopustivo"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Izrada ključa za %s nije moguća"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, 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"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Mapiranje prijave za %s već je određeno"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux korisnik %s ne postoji"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux korisnik %s ne postoji"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Izrada mapiranja prijave za %s nije moguća"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Zadavanje naziva za %s nije moguće"
+@@ -81,24 +85,20 @@ msgid "Could not set exec context to %s.\n"
+ msgstr "Nem sikerült beállítani a végrehajtási kontextust erre: %s.\n"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Zadavanje MLS raspona za %s nije moguće"
+ #: ../audit2allow/audit2allow:230
+-#, fuzzy
+ msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-"\n"
+-"*********************** FONTOS ***********************\n"
++msgstr "*********************** FONTOS ***********************\n"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Zadavanje SELinux korisnika za %s nije moguće"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr ""
++msgstr "Ezen házirend aktiválásához futtassa:"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Dodavanje mapiranja prijave za %s nije moguće"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "globális"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "dodaj SELinux korisničko mapiranje"
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
++msgstr "Nem sikerült létrehozni az Semanage kezelőt"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Zahtijeva seuser ili serange"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+@@ -113,47 +113,44 @@ msgid "Could not establish semanage connection"
+ msgstr "Nem sikerült létrehozni Semanage-kapcsolatot"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Mapiranje prijave za %s nije određeno"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Nem sikerült MLS-tartományt beállítani ehhez: %s"
++msgstr "MLS aktív állapot tesztelése nem sikerült"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Propitivanje seusera za %s nije moguće"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "Még nincs megvalósítva."
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Uređivanje mapiranja prijave za %s nije moguće"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "SEmanage művelet már folyamatban"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- 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:264
+ msgid "Could not start semanage transaction"
+ msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Brisanje mapiranja prijave za %s nije moguće"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
++msgstr "Nem sikerült véglegesíteni az Semanage-tranzakciót"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Ispisivanje popisa mapiranja prijava nije moguće"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "SEmanage művelet nincs folyamatban"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "Korisničko ime"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Nem sikerült listázni az SELinux-felhasználókat"
++msgstr "Nem sikerült listázni az SELinux modulokat"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux korisnik"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+-msgstr ""
++msgstr "Modulok nevei"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS raspon"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "Verzió"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Dodavanje konteksta datoteke za %s nije moguće"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Kikapcsolva"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Nije moguće provjeriti je li SELinux korisnik %s određen"
+@@ -161,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux korisnik %s već je određen"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Nem sikerült felvenni \"%s\" szerepet ehhez: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Izrada SELinux korisnika za %s nije moguća"
+@@ -172,25 +169,25 @@ msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Dodavanje uloge %s za %s nije moguće"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "dontaudit-hoz szükséges vagy 'be\" vagy 'ki'"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Zadavanje MLS razine za %s nije moguće"
+ #: ../semanage/seobject.py:387
+ msgid "Builtin Permissive Types"
+-msgstr ""
++msgstr "Beépített elengedő típusok"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Dodavanje prefiksa %s za %s nije moguće"
+ #: ../semanage/seobject.py:397
+ msgid "Customized Permissive Types"
+-msgstr ""
++msgstr "Egyéni elengedő típusok"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not extract key for %s"
- msgstr "Izvlačenje ključa za %s nije moguće"
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "Nem állítható be a megengedő tartomány %s (sikertelen modul telepítés)"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Dodavanje SELinux korisnika %s nije moguće"
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "Nem törölhető a megengedő tartomány %s (sikertelen eltávolítás)"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
msgstr "Zahtijeva prefiks, uloge, razinu ili raspon"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -212,9 +209,9 @@ msgstr ""
"ehhez: %s"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Zahtijeva prefiks ili uloge"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Nem létezik %s nevű Linux-felhasználó"
++msgstr "A %s Linux csoport nem létezik"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux korisnik %s nije određen"
+@@ -282,18 +279,22 @@ msgid "Could not list login mappings"
+ msgstr "Nem sikerült listázni a bejelentkezési hozzárendeléseket"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Propitivanje korisnika za %s nije moguće"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+-msgstr ""
++msgstr "Bejelentkezési név"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Uređivanje SELinux korisnika %s nije moguće"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+-msgstr "Meg kell adni SELinux-típust"
++msgstr "SELinux felhasználó"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- 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:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+-msgstr ""
++msgstr "MLS/MCS hatáskör"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Brisanje SELinux korisnika %s nije moguće"
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -310,9 +311,9 @@ msgid "Could not query user for %s"
+ msgstr "Nem sikerült lekérdezni a felhasználót ehhez: %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Ispisivanje popisa SELinux korisnika nije moguće"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Nem sikerült felvenni fájlkontextust ehhez: %s"
++msgstr "Legalább egy szerepet meg kell adnia %s számára"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Ispisivanje popisa uloga korisnika %s nije moguće"
+@@ -384,27 +385,28 @@ msgstr "Nem sikerült listázni a(z) \"%s\" felhasználó szerepeit"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr "Označavanje"
+-msgstr ""
++msgstr "Címkézés"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr "MLS/"
+-msgstr ""
++msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
- msgstr "Prefiks"
+-msgstr ""
++msgstr "Előtag"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
- msgstr "MCS razina"
+-msgstr ""
++msgstr "MCS Szint"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr "MCS raspon"
+-msgstr ""
++msgstr "MCS hatáskör"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux uloge"
+-msgstr ""
++msgstr "SELinux szerepek"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Potreban je UDP ili TCP protokol"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Potreban je port"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Izrada ključa za %s/%s nije moguća"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Potrebna je vrsta"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Nije moguće provjeriti je li port %s/%s određen"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s već je određen"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Izrada porta za %s/%s nije moguća"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Izrada konteksta za %s/%s nije moguća"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Zadavanje korisnika u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Zadavanje uloge u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Zadavanje vrste u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Zadavanje MLS polja u kontekstu porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Zadavanje konteksta porta za %s/%s nije moguće"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Dodavanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Zahtijeva setype ili serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Zahtijeva setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s nije određen"
+@@ -415,9 +417,8 @@ msgid "Port is required"
+ msgstr "Meg kell adni portot"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Propitivanje porta %s/%s nije moguće"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Érvénytelen előtag: %s"
++msgstr "Hibás port"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Uređivanje porta %s/%s nije moguće"
+@@ -504,14 +505,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Nem sikerült módosítani ezt a portot: %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "Ispisivanje popisa portova nije moguće"
+ msgstr "Nem sikerült listázni a portokat"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "Brisanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
+-msgstr "Nem sikerült törölni ezt a portot: %s/%s"
++msgstr "Nem sikerült törölni a portot: %s"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Brisanje porta %s/%s nije moguće"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Ispisivanje popisa portova nije moguće"
+@@ -529,24 +529,23 @@ msgstr "Nem sikerült listázni a portokat"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "SELinux vrsta porta"
+-msgstr ""
++msgstr "SELinux Port típus"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr "Proto"
+-msgstr ""
++msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "Broj porta"
+-msgstr ""
++msgstr "Portszám"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "Potreban je port"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Potreban je port"
+-msgstr "Meg kell adni portot"
++msgstr "Csomópont cím szükséges"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Potrebna je SELinux vrsta"
+-msgstr ""
++msgstr "Ismeretlen vagy hiányzó protokoll"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Izrada ključa za %s nije moguća"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -563,14 +562,14 @@ msgstr "Nem sikerült létrehozni kulcsot ehhez: %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "Nije moguće provjeriti je li port %s/%s određen"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Port %s/%s već je određen"
+-msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e a(z) %s/%s port"
++msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e a(z) %s"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Izrada ključa za %s nije moguća"
+-msgstr "Nem sikerült létrehozni kulcsot ehhez: %s"
++msgstr "Nem sikerült létrehozni addr-t %s-hez"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Izrada konteksta za %s nije moguća"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -579,74 +578,72 @@ msgid "Could not create context for %s"
+ msgstr "Nem sikerült létrehozni kontextust ehhez: %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Zadavanje naziva za %s nije moguće"
+-msgstr "Nem sikerült nevet beállítani ehhez: %s"
++msgstr "Nem állítható be a(z) %s maszkja"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
+-msgstr "Nem sikerült beállítani a felhasználót %s fájlkontextusban"
++msgstr "Nem sikerült beállítani a felhasználót %s addr kontextusban"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
+-msgstr "Nem sikerült beállítani a szerepet %s fájlkontextusban"
++msgstr "Nem sikerült beállítani a szerepet %s addr kontextusban"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
+-msgstr "Nem sikerült beállítani a típust %s fájlkontextusban"
++msgstr "Nem sikerült beállítani a típust %s addr kontextusban"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
+-msgstr "Nem sikerült beállítani az MLS-mezőket %s fájlkontextusban"
++msgstr "Nem sikerült beállítani az MLS-mezőket %s addr kontextusban"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Zadavanje konteksta datoteke za %s nije moguće"
+-msgstr "Nem sikerült beállítani a fájlkontextust ehhez: %s"
++msgstr "Nem sikerült beállítani a(z) %s addr kontextust"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Dodavanje porta %s/%s nije moguće"
+-msgstr "Nem sikerült felvenni ezt a portot: %s/%s"
++msgstr "Nem adható hozzá %s addr"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "Port %s/%s nije određen"
+-msgstr "%s/%s port nincs definiálva"
++msgstr "%s addr nincs definiálva"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Propitivanje porta %s/%s nije moguće"
+-msgstr "Nem sikerült lekérdezni ezt a portot: %s/%s"
++msgstr "Nem kérdezhető le %s addr"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Uređivanje porta %s/%s nije moguće"
+-msgstr "Nem sikerült módosítani ezt a portot: %s/%s"
++msgstr "Nem módosítható %s addr"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
+-msgstr "A(z) %s/%s port szabályzatban van definiálva - nem törölhető"
++msgstr "A(z) %s addr nincs definiálva a házirendben, nem törölhető"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Brisanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
- msgid "Could not list addrs"
- msgstr "Ispisivanje popisa portova nije moguće"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Nije moguće provjeriti je li sučelje %s određeno"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Sučelje %s već je određeno"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Izrada sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Zadavanje korisnika u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Zadavanje uloge u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Zadavanje vrste u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Zadavanje MLS polja u kontekstu sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Zadavanje konteksta sučelja za %s nije moguće"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Zadavanje konteksta poruke za %s nije moguće"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Dodavanje sučelja %s nije moguće"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Sučelje %s nije određeno"
+-msgstr "Nem sikerült törölni ezt a csatolót: %s"
++msgstr "Nem törölhető %s addr"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Propitivanje sučelja %s nije moguće"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Nem sikerült törölni \"%s\" bejelentkezési hozzárendelését"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Uređivanje sučelja %s nije moguće"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Nem sikerült listázni a portokat"
++msgstr "Nem listázható addr"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- 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:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -720,9 +717,8 @@ msgid "Could not delete interface %s"
+ msgstr "Nem sikerült törölni ezt a csatolót: %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Brisanje sučelja %s nije moguće"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Nem sikerült törölni ezt a csatolót: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Ispisivanje popisa sučelja nije moguće"
+@@ -730,16 +726,16 @@ msgstr "Nem sikerült listázni a csatolókat"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr "SELinux sučelje"
+-msgstr ""
++msgstr "SELinux Interfész"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
- msgstr "Kontekst"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Zadavanje korisnika u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Zadavanje uloge u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Zadavanje MLS polja u kontekstu datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- #, fuzzy
- msgid "Invalid file specification"
- msgstr "Specifikacija:"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, 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"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Kontekst datoteke za %s već je određen"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Izrada konteksta datoteke za %s nije moguća"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Zadavanje vrste u kontekstu datoteke za %s nije moguće"
+-msgstr ""
++msgstr "Környezet"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Zadavanje konteksta datoteke za %s nije moguće"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Már van definiálva fájlkontextus ehhez: %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not add file context for %s"
- msgstr "Dodavanje konteksta datoteke za %s nije moguće"
+@@ -747,9 +743,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Zahtijeva setype, serange ili seuser"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Nem létezik %s nevű Linux-felhasználó"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "File context for %s is not defined"
- msgstr "Kontekst datoteke za %s nije određen"
+@@ -768,7 +764,7 @@ msgstr "Nem sikerült beállítani az MLS-mezőket %s fájlkontextusban"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Propitivanje konteksta datoteke za %s nije moguće"
+ #: ../semanage/seobject.py:1707
+ msgid "Invalid file specification"
+-msgstr ""
++msgstr "Érvénytelen fájl specifikáció"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Uređivanje konteksta datoteke za %s nije moguće"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -829,14 +825,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Nem sikerült módosítani a fájlkontextust ehhez: %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
+-msgstr "Nem sikerült listázni a fájlkontextusokat"
++msgstr "A fájl kontextus listázása nem sikerült"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr "Brisanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- 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."
+-msgstr "Nem sikerült törölni %s fájlkontextusát"
++msgstr "Nem sikerült a(z) %s fájl kontextus törlése"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Brisanje konteksta datoteke za %s nije moguće"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Ispisivanje popisa konteksta datoteke nije moguće"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Izrada popisa konteksta lokalnih datoteka nije moguća"
+@@ -858,23 +853,27 @@ msgstr "Nem sikerült listázni a helyi fájlkontextusokat"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
+-msgstr ""
++msgstr "SELinux fkörnyezet"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
- msgstr "vrsta"
+-msgstr ""
++msgstr "Típus"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, 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:1949
+ msgid ""
+ "\n"
+ "SELinux Distribution fcontext Equivalence \n"
+ msgstr ""
++"\n"
++"SELinux Distribution fcontext Equivalence \n"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Booleova vrijednost %s nije određena"
+ #: ../semanage/seobject.py:1954
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+ msgstr ""
++"\n"
++"SELinux Local fcontext Equivalence \n"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Propitivanje konteksta datoteke %s nije moguće"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -893,14 +892,14 @@ msgid "Could not query file context %s"
+ msgstr "Nem sikerült lekérdezni a fájlkontextust ehhez: %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Potrebno je odrediti prefiks"
+-msgstr "Meg kell adni egy előtagot"
++msgstr "A következő értékek egyikét kell megadnia: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Brisanje Booleove vrijednosti %s nije moguće"
+-msgstr "Nem sikerült törölni a(z) \"%s\" logikai értéket"
++msgstr "Nem lehet beállítani az aktív logikai értéket %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Uređivanje Booleove vrijednosti %s nije moguće"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -910,7 +909,7 @@ msgstr "Nem sikerült módosítani a(z) \"%s\" logikai értéket"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Booleova vrijednost %s određena je u pravilima. Brisanje nije moguće."
+-msgstr ""
++msgstr "Hibás formátum %s: Rekord %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Brisanje Booleove vrijednosti %s nije moguće"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Ispisivanje popisa Booleovih vrijednosti nije moguće"
+@@ -928,31 +927,32 @@ msgstr "Nem sikerült listázni a logikai értékeket"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr ""
+-msgstr ""
++msgstr "ismeretlen"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr ""
+-msgstr ""
++msgstr "ki"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- #, fuzzy
+ #: ../semanage/seobject.py:2117
  msgid "on"
- msgstr "Cron"
+-msgstr ""
++msgstr "be"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr "SELinux Booleov"
+-msgstr ""
++msgstr "SELinux Logikai érték"
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+-msgstr ""
++msgstr "Állapot"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Alapértelmezett"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
+-msgstr ""
++msgstr "Leírás"
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -962,12 +962,12 @@ msgstr "nem sikerült beállítani ezt: PAM_TTY\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "newrole: szolgáltatásnév beállító hasító tábla túlcsordulás\n"
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "newrole: %s: hiba a(z) %lu. sorban\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+@@ -1077,6 +1077,7 @@ msgstr "Hiba: több szint lett megadva\n"
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
  msgstr ""
++"Hiba: nem változtathat szinteket nem biztonságos terminálon keresztül \n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+@@ -1144,14 +1145,14 @@ msgid "failed to get old_context.\n"
+ msgstr "Nem sikerült meghatározni a régi kontextust.\n"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Hiba: nem sikerült lekérdezni a tty-információkat.\n"
++msgstr "Figyelem! Nem sikerült lekérdezni a tty információt.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr ""
++msgstr "hiba a PAM szolgáltatás beállításakor.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+@@ -1193,19 +1194,19 @@ msgid "failed to exec shell\n"
+ msgstr "nem sikerült végrehajtani a parancsértelmezőt\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "használat: %s [-bq]\n"
++msgstr "Használat: %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s: A házirend már be van töltve és kezdeti betöltés igényelt\n"
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s: szabályzat nem betölthető: %s\n"
++msgstr "%s: A házirend nem tölthető be és kikényszerítő mód igényelt: %s\n"
  
-@@ -1285,1463 +1313,2385 @@
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+@@ -1291,181 +1292,2111 @@ msgstr "chcat -- -Bizalmas /docs/üzletiterv.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +Bizalmas felhasználó1"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Pogreška opcija %s "
+ msgstr "Hiba az opciókban: %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
--
--#~ msgid "Boolean"
--#~ msgstr "Booleova vrijednost"
--
 -#, fuzzy
--#~ msgid "all"
--#~ msgstr "Sve"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Nem lehet megnyitni ezt: %s: a fordítások nem támogatottak a nem MLS-es "
+-#~ "gépeken"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Booleova vrijednost"
++msgstr "Bináris"
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+#, fuzzy
 +msgid "all"
-+msgstr "Sve"
++msgstr "összes"
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr ""
--#~ msgid "File Labeling"
--#~ msgstr "Označavanje datoteka"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++msgstr "Egyéni"
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Označavanje datoteka"
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Datoteka\n"
--#~ "Specifikacija"
++msgstr "Fájl cimke"
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Datoteka\n"
-+"Specifikacija"
++"Fájl\n"
++"Specifikáció"
++
 +#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "Kontekst"
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
 +"Selinux\n"
-+"Kontekst"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Datoteka\n"
--#~ "Vrsta"
++"Fájl típusa"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Datoteka\n"
-+"Vrsta"
--#~ msgid "User Mapping"
--#~ msgstr "Korisničko mapiranje"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++"Fájl\n"
++"Típus"
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Korisničko mapiranje"
++msgstr "Hozzárendelt felhasználó"
  
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Prijava\n"
--#~ "Ime"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "A fordítások nem tartalmazhatnak szóközöket - \"%s\" "
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Prijava\n"
-+"Ime"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "Korisnik"
++"Bejelentkezési\n"
++"Név"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
 +"SELinux\n"
-+"Korisnik"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS raspon"
++"Felhasználó"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
 +"MLS/\n"
-+"MCS raspon"
--#~ msgid "Login '%s' is required"
--#~ msgstr "Potrebna je '%s' prijava"
++"MCS Range"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Potrebna je '%s' prijava"
--#~ msgid "Policy Module"
--#~ msgstr "Modul pravila"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr "'%s' bejelentkezés szükséges"
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Modul pravila"
--#~ msgid "Module Name"
--#~ msgstr "Naziv modula"
++msgstr "Szabályzat modul"
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Naziv modula"
--#~ msgid "Version"
--#~ msgstr "Verzija"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Verzija"
++msgstr "Modul neve"
++
 +#: ../gui/modulesPage.py:134
- #, fuzzy
--#~ msgid "Disable Audit"
--#~ msgstr "Nepovezana revizija"
 +msgid "Disable Audit"
-+msgstr "Nepovezana revizija"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
- #, fuzzy
--#~ msgid "Enable Audit"
--#~ msgstr "Nepovezana revizija"
++msgstr "Auditálás kikapcsolása"
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Nepovezana revizija"
--#~ msgid "Load Policy Module"
--#~ msgstr "Učitaj modul pravila"
++msgstr "Audit engedélyezése"
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Učitaj modul pravila"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
++msgstr "Szabályzat modul betöltése"
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr "Polgen"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr "Red Hat 2007"
--#~ msgid "GPL"
--#~ msgstr "GPL"
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr "GPL"
--#~ msgid "translator-credits"
--#~ msgstr "Renato Pavičić, renato<AT>translator-shop.org"
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "Renato Pavičić, renato<AT>translator-shop.org"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Alat za izradu SELinux pravila"
-+#: ../gui/polgen.glade:125
++msgstr "Zoltan Hoppar"
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr "SELinux Szabályzatkészítő Eszköz"
++
++#: ../gui/polgen.glade:128
 +msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+#: ../gui/polgen.glade:165
- #, fuzzy
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Aplikacije</b>"
-+#: ../gui/polgen.glade:196
++
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Aplikacije</b>"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Standardni demon inicijalizacije"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr "<b>Alkalmazások</b>"
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
++"Szabványos Init Daemon-ok azok a szolgáltatások amelyeket rendszerindításkor "
++"init szkriptekkel indítanak.  Rendszerint egy szkriptet igényel az /etc/rc.d/"
++"init.d mappában"
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Standardni demon inicijalizacije"
++msgstr "Szabványos init daemon"
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr ""
++msgstr "DBUS rendszer daemon"
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr "Internet Services Daemon azok a daemonok amelyeket az xinetd indít el"
++
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
 +msgstr ""
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Demon internetskih usluga (inetd)"
++
 +#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Demon internetskih usluga (inetd)"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Web-aplikacija/Skripta (CGI)"
-+#: ../gui/polgen.glade:320
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
--#~ msgid "User Application"
--#~ msgstr "Korisnička aplikacija"
-+#: ../gui/polgen.glade:322
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Web-aplikacija/Skripta (CGI)"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Korisnička aplikacija"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
- #, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Korisnici</b>"
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Korisnici</b>"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
 +msgstr ""
 +
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+#: ../gui/polgen.glade:516
- #, fuzzy
--#~ msgid "User Role"
--#~ msgstr "Uloga"
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Uloga"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+#: ../gui/polgen.glade:583
- #, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Korisnici</b>"
++
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Korisnici</b>"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
- #, fuzzy
--#~ msgid "Root Admin User Role"
--#~ msgstr "Korijenski korisnik"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Korijenski korisnik"
-+#: ../gui/polgen.glade:732
- #, fuzzy
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Da biste pokrenuli ovu aplikaciju morate biti korijenski korisnik."
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
- #, fuzzy
--#~ msgid "Name"
--#~ msgstr "Naziv"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Naziv"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Érvénytelen szint: \"%s\" "
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr "..."
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s már definiálva van a fordításokban"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
  
-+#: ../gui/polgen.glade:845
- #, fuzzy
--#~ msgid "Executable"
--#~ msgstr "&Izvršna datoteka:"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nincs definiálva a fordításokban"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "&Izvršna datoteka:"
++msgstr ""
  
-+#: ../gui/polgen.glade:873
- #, fuzzy
--#~ msgid "Init script"
--#~ msgstr "Korisnička skripta"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Már van definiálva bejelentkezési hozzárendelés ehhez: %s"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Korisnička skripta"
++msgstr ""
  
-+#: ../gui/polgen.glade:901
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Nem sikerült felvenni \"%s\" SELinux-felhasználót"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "Már van definiálva \"%s\" nevű SELinux-felhasználó"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Meg kell adni portot"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "A(z) %s/%s port már definiálva van"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s csatoló már definiálva van"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Hiba a képességek inicializálásakor; megszakítás.\n"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Hiba a képességek beállításakor; megszakítás.\n"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Hiba a KEEPCAPS beállításakor; megszakítás.\n"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Hiba a képességek eldobásakor; megszakítás.\n"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Hiba a SETUID képesség eldobásakor; megszakítás.\n"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
- #, fuzzy
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Odaberite najmanje jednu grupu za korisnika."
  
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Hiba a képességek felszabadításakor\n"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "a fordítások nem támogatottak a nem MLS-es gépeken"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
- #, fuzzy
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Odaberite najmanje jednu grupu za korisnika."
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Meg kell adni SELinux-típust"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
  
-+#: ../gui/polgen.glade:1277
- #, fuzzy
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Odaberite najmanje jednu grupu za korisnika."
-+msgid "Select additional roles for this user"
-+msgstr "Odaberite najmanje jednu grupu za korisnika."
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Meg kell adni SELinux-típust"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP portovi</b>"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Hiba az auditálási üzenet küldésekor.\n"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Meg kell adni egy szerepet"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Meg kell adni egy szerepet"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Meg kell adni egy szerepet"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP portovi</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++msgstr "<b>TCP Portok</b>"
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Típuskényszerítési fájl készítése: %s.te"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "%s csatoló nincs definiálva"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Sve"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
  
--#~ msgid "All"
--#~ msgstr "Sve"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Nincs definiálva fájlkontextus ehhez: %s"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "\"%s\" SELinux-felhasználó nincs definiálva"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
  
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Szabályzat elkészítése"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
  
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
- #, fuzzy
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "DSL 4096/1024"
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "%s azonosítása.\n"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "DSL 4096/1024"
++msgstr ""
  
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
- #, fuzzy
--#~ msgid "Select Ports"
--#~ msgstr "Ostali portovi"
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Meg kell adni SELinux-típust"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Ostali portovi"
++msgstr ""
  
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP portovi</b>"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Nem sikerült felvenni \"%s\" SELinux-felhasználót"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
  
 -#, fuzzy
--#~ msgid "Select common application traits"
--#~ msgstr "Aplikacija za upravljanje glazbom"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Nem sikerült módosítani a(z) \"%s\" SELinux-felhasználót"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP portovi</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Nem sikerült törölni a(z) \"%s\" SELinux-felhasználót"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Nem sikerült módosítani a(z) \"%s\" SELinux-felhasználót"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Nem lehet olvasni a szabályzat-tárolót."
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Meg kell adni SELinux-típust"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Requires value"
+-#~ msgstr "Meg kell adni egy értéket"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Meg kell adni legalább 2 argumentumot"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
  
-+#: ../gui/polgen.glade:2183
- #, fuzzy
--#~ msgid "Uses Pam for authentication"
--#~ msgstr ""
--#~ "Pluggable Authentication Module (PAM) za upotrebu sa SMB poslužiteljima"
-+msgid "Select common application traits"
-+msgstr "Aplikacija za upravljanje glazbom"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "%s not defined"
+-#~ msgstr "%s nincs definiálva"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "\"%s\" nem érvényes \"%s\" objektumokhoz\n"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "a tartomány nem támogatott a nem MLS-es gépeken"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
  
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Érvénytelen érték: %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Az újonnan elkészített szabályzatcsomagnak a kernelbe való\n"
+-#~ "betöltéséhez végre kell hajtania a következő parancsot:\n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
- #, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Pogreška pri slanju poruke provjere.\n"
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Hiba az opciókban: %s "
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+"Pluggable Authentication Module (PAM) za upotrebu sa SMB poslužiteljima"
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+#: ../gui/polgen.glade:2297
- #, fuzzy
--#~ msgid "Policy Directory"
--#~ msgstr "Zadana mapa"
++
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Pogreška pri slanju poruke provjere.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
- #, fuzzy
--#~ msgid "Generated Policy Files"
--#~ msgstr "Učitavanje generiranih datoteka…"
-+msgid "Policy Directory"
-+msgstr "Zadana mapa"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
- #, fuzzy
--#~ msgid "Boolean Name"
--#~ msgstr "Booleova vrijednost"
-+msgid "Generated Policy Files"
-+msgstr "Učitavanje generiranih datoteka…"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
--#~ msgid "Role"
--#~ msgstr "Uloga"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
--#~ msgid "Application"
--#~ msgstr "Aplikacija"
-+#: ../gui/polgen.glade:3127
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+#: ../gui/polgen.glade:3200
- #, fuzzy
--#~ msgid "%s must be a directory"
--#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Booleova vrijednost"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Uloga"
++msgstr "Szabály"
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Aplikacija"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
-+#, fuzzy, python-format
++#: ../gui/polgengui.py:352
++#, python-format
 +msgid "%s must be a directory"
-+msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
- #, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Potrebno je unijeti ime"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Potrebno je unijeti ime"
-+#: ../gui/polgengui.py:453
- #, fuzzy
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Odaberite _particiju na koju će biti smještena razmjenska datoteka:"
++msgstr "Ki kell választania a felhasználót"
++
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Odaberite _particiju na koju će biti smještena razmjenska datoteka:"
--#~ msgid "You must enter a name"
--#~ msgstr "Potrebno je unijeti ime"
-+#: ../gui/polgengui.py:464
++msgstr ""
++
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
--#~ msgid "You must enter a executable"
--#~ msgstr "Potrebno je unijeti izvršni program"
-+#: ../gui/polgengui.py:474
++
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
--#~ msgid "Configue SELinux"
--#~ msgstr "Konfiguriraj SELinux"
-+#: ../gui/polgengui.py:481
++
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "Ping razdoblje mora biti između 1 i 10"
-+#: ../gui/polgengui.py:541
++
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+#: ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Potrebno je unijeti ime"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Potrebno je unijeti izvršni program"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Konfiguriraj SELinux"
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
-+#, fuzzy, python-format
++#: ../gui/polgen.py:197
++#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Ping razdoblje mora biti između 1 i 10"
++msgstr ""
 +
-+#: ../gui/polgen.py:204
- #, fuzzy
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr ""
--#~ "Ako je odabrano 'Nova usluga', potrebno je unijeti naziv nove usluge "
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Ako je odabrano 'Nova usluga', potrebno je unijeti naziv nove usluge "
-+#: ../gui/polgen.py:282
- #, fuzzy
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Prazan certifikat autorizacije nije dopušten."
-+msgid "USER Types are not allowed executables"
-+msgstr "Prazan certifikat autorizacije nije dopušten."
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
- #, fuzzy
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr ""
--#~ "Vrijednost opcije \"%s\" mora biti \"yes\" ili \"no\" (\"da\" ili \"ne\")"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+"Vrijednost opcije \"%s\" mora biti \"yes\" ili \"no\" (\"da\" ili \"ne\")"
-+#: ../gui/polgen.py:327
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
- #, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Datoteke prisile vrste"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Datoteke prisile vrste"
--#~ msgid "Interface file"
--#~ msgstr "Datoteka sučelja"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Datoteka sučelja"
--#~ msgid "File Contexts file"
--#~ msgstr "Datoteka konteksta"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Datoteka konteksta"
-+#: ../gui/polgen.py:851
- #, fuzzy
--#~ msgid "Setup Script"
--#~ msgstr "Korisnička skripta"
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Korisnička skripta"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
- #, fuzzy
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr "Potreban je port"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Port za mrežno povezivanje"
--#~ msgid "Protocol"
--#~ msgstr "Protokol"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
-+#, fuzzy
 +msgid ""
 +"SELinux Port\n"
 +"Type"
-+msgstr "Potreban je port"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "Razina"
++msgstr ""
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protokol"
--#~ msgid "Port"
--#~ msgstr "Port"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"Razina"
--#, fuzzy
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Vrijednost koju ste unijeli nije ispravni broj."
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
--#, fuzzy
--#~ msgid "Group View"
--#~ msgstr "Prikaz klijenata"
++msgstr ""
++
 +#: ../gui/portsPage.py:207
-+#, fuzzy, python-format
++#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Vrijednost koju ste unijeli nije ispravni broj."
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux usluga zaštite"
++msgstr ""
++
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon acct"
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+#, fuzzy
++
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Prikaz klijenata"
--#~ msgid "Admin"
--#~ msgstr "Admin"
++msgstr ""
++
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -99779,25 +105924,22 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux usluga zaštite"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Onemogući SELinux zaštitu za demon acct"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
++
 +#: ../gui/selinux.tbl:2
- #, fuzzy
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
@@ -99810,171 +105952,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Korisničke privilegije"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#~ msgid "User Privs"
--#~ msgstr "Korisničke privilegije"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#~ msgid "Memory Protection"
--#~ msgstr "Zaštita memorije"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Zaštita memorije"
++msgstr ""
++
 +#: ../gui/selinux.tbl:6
- #, fuzzy
--#~ msgid "Allow java executable stack"
--#~ msgstr "Ograničenje veličine spremnika memorije"
 +msgid "Allow java executable stack"
-+msgstr "Ograničenje veličine spremnika memorije"
--#~ msgid "Mount"
--#~ msgstr "Pristupi"
++msgstr ""
++
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Pristupi"
++msgstr ""
++
 +#: ../gui/selinux.tbl:7
- #, fuzzy
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
 +msgid "Allow mount to mount any file"
-+msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++msgstr ""
++
 +#: ../gui/selinux.tbl:8
- #, fuzzy
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
 +msgid "Allow mount to mount any directory"
-+msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++msgstr ""
++
 +#: ../gui/selinux.tbl:9
- #, fuzzy
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Ograničenje veličine spremnika memorije"
 +msgid "Allow mplayer executable stack"
-+msgstr "Ograničenje veličine spremnika memorije"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
--#~ msgid "SSH"
--#~ msgstr "SSH"
++msgstr ""
++
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Omogući da ssh pokreće ssh-keysign"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Omogući da ssh pokreće ssh-keysign"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#~ msgid "Network Configuration"
--#~ msgstr "Konfiguriranje mreže"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#, fuzzy
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Dopusti neometeno djelovanje alatu rpm."
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
--#~ msgid "Databases"
--#~ msgstr "Baze podataka"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Konfiguriranje mreže"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Dopusti korisnicima povezivanje na mysql socket"
++msgstr ""
++
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Dopusti korisnicima povezivanje na postgres socket"
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#~ msgid "XServer"
--#~ msgstr "XServer"
++
 +#: ../gui/selinux.tbl:16
-+#, fuzzy
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Dopusti neometeno djelovanje alatu rpm."
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
++msgstr ""
++
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Baze podataka"
--#~ msgid "NIS"
--#~ msgstr "NIS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Dopusti korisnicima povezivanje na mysql socket"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Omogući demonima pokretanje s NIS."
++msgstr ""
++
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Dopusti korisnicima povezivanje na postgres socket"
--#~ msgid "Web Applications"
--#~ msgstr "Web aplikacije"
++msgstr ""
++
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
--#, fuzzy
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "Dopusti alatu ftp da piše/čita datoteke u korisničkim glavnim mapama."
++msgstr ""
++
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Dopusti klijentima zapisivanje u X dijeljenu memoriju"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Onemogući SELinux zaštitu za amanda"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Onemogući SELinux zaštitu za amavis"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Omogući demonima pokretanje s NIS."
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -99982,22 +106072,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web aplikacije"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon apmd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon arpwatch"
++
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon auditd"
++
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
@@ -100005,1623 +106089,938 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon automount"
++
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
-+#, fuzzy
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Dopusti alatu ftp da piše/čita datoteke u korisničkim glavnim mapama."
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Onemogući SELinux zaštitu za avahi"
++msgstr ""
++
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Onemogući SELinux zaštitu za amanda"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon bluetooth"
++msgstr ""
++
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Onemogući SELinux zaštitu za amavis"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon canna"
++msgstr ""
++
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon apmd"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cardmgr"
++msgstr ""
++
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Onemogući SELinux zaštitu za demon arpwatch"
--#, fuzzy
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
++msgstr ""
++
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon auditd"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ciped"
++msgstr ""
++
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Onemogući SELinux zaštitu za demon automount"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon clamd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Onemogući SELinux zaštitu za avahi"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Onemogući SELinux zaštitu za clamscan"
++msgstr ""
++
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Onemogući SELinux zaštitu za demon bluetooth"
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Onemogući SELinux zaštitu za clvmd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Onemogući SELinux zaštitu za demon canna"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon comsat"
++msgstr ""
++
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cardmgr"
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon courier"
++msgstr ""
++
 +#: ../gui/selinux.tbl:40
-+#, fuzzy
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cpucontrol"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cpuspeed"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ciped"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon clamd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Onemogući SELinux zaštitu za clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Onemogući SELinux zaštitu za clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Onemogući SELinux zaštitu za demon comsat"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Onemogući SELinux zaštitu za demon courier"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cpucontrol"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cpuspeed"
--#~ msgid "Cron"
--#~ msgstr "Cron"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
--#~ msgid "Printing"
--#~ msgstr "Ispisivanje"
++msgstr ""
++
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Ispisivanje"
++msgstr ""
++
 +#: ../gui/selinux.tbl:55
- #, fuzzy
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
++msgstr ""
++
 +#: ../gui/selinux.tbl:56
- #, fuzzy
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cupsd"
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cupsd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:57
- #, fuzzy
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Onemogući SELinux zaštitu za cupsd_lpd"
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Onemogući SELinux zaštitu za cupsd_lpd"
--#~ msgid "CVS"
--#~ msgstr "CVS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:58
- #, fuzzy
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cvs"
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cvs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:59
- #, fuzzy
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cyrus"
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cyrus"
++msgstr ""
++
 +#: ../gui/selinux.tbl:60
- #, fuzzy
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dbskkd"
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dbskkd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:61
- #, fuzzy
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dbusd"
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dbusd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:62
- #, fuzzy
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:63
- #, fuzzy
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:64
- #, fuzzy
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:65
- #, fuzzy
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ddt"
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ddt"
++msgstr ""
++
 +#: ../gui/selinux.tbl:66
- #, fuzzy
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon devfsd"
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon devfsd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:67
- #, fuzzy
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dhcpc"
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dhcpc"
++msgstr ""
++
 +#: ../gui/selinux.tbl:68
- #, fuzzy
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dhcpd"
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dhcpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:69
- #, fuzzy
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dictd"
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dictd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:70
- #, fuzzy
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Dopusti sysadm_t da izravno pokrene demone."
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Dopusti sysadm_t da izravno pokrene demone."
++msgstr ""
++
 +#: ../gui/selinux.tbl:71
- #, fuzzy
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:72
- #, fuzzy
--#~ msgid "Games"
--#~ msgstr "Igre"
 +msgid "Games"
-+msgstr "Igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:72
- #, fuzzy
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for games"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:73
- #, fuzzy
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:74
- #, fuzzy
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:75
- #, fuzzy
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon distccd"
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon distccd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:76
- #, fuzzy
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dmesg"
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dmesg"
++msgstr ""
++
 +#: ../gui/selinux.tbl:77
- #, fuzzy
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dnsmasq"
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dnsmasq"
++msgstr ""
++
 +#: ../gui/selinux.tbl:78
- #, fuzzy
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon dovecot"
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Onemogući SELinux zaštitu za demon dovecot"
++msgstr ""
++
 +#: ../gui/selinux.tbl:79
- #, fuzzy
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon entropyd"
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon entropyd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:80
- #, fuzzy
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:81
- #, fuzzy
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon fingerd"
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon fingerd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:82
- #, fuzzy
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon freshclam"
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Onemogući SELinux zaštitu za demon freshclam"
++msgstr ""
++
 +#: ../gui/selinux.tbl:83
- #, fuzzy
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon fsdaemon"
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Onemogući SELinux zaštitu za demon fsdaemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:84
- #, fuzzy
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon gpm"
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Onemogući SELinux zaštitu za demon gpm"
--#~ msgid "NFS"
--#~ msgstr "NFS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:85
- #, fuzzy
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon gss"
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Onemogući SELinux zaštitu za demon gss"
++msgstr ""
++
 +#: ../gui/selinux.tbl:86
- #, fuzzy
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon hal"
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Onemogući SELinux zaštitu za demon hal"
--#~ msgid "Compatibility"
--#~ msgstr "Kompatibilnost"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Kompatibilnost"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
- #, fuzzy
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Ne provjeravaj stvari za koje znamo da su nedovršene, ali koje ne "
--#~ "predstavljaju sigurnosni rizik."
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Ne provjeravaj stvari za koje znamo da su nedovršene, ali koje ne "
-+"predstavljaju sigurnosni rizik."
++
 +#: ../gui/selinux.tbl:88
- #, fuzzy
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon hostname"
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Onemogući SELinux zaštitu za demon hostname"
++msgstr ""
++
 +#: ../gui/selinux.tbl:89
- #, fuzzy
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon hotplug"
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Onemogući SELinux zaštitu za demon hotplug"
++msgstr ""
++
 +#: ../gui/selinux.tbl:90
- #, fuzzy
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon howl"
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Onemogući SELinux zaštitu za demon howl"
++msgstr ""
++
 +#: ../gui/selinux.tbl:91
- #, fuzzy
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cups hplip"
++msgstr ""
++
 +#: ../gui/selinux.tbl:92
- #, fuzzy
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Onemogući SELinux zaštitu za demon httpd"
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Onemogući SELinux zaštitu za demon httpd"
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD usluga"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD usluga"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93
- #, fuzzy
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Onemogući SELinux zaštitu za http suexec"
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Onemogući SELinux zaštitu za http suexec"
++msgstr ""
++
 +#: ../gui/selinux.tbl:94
- #, fuzzy
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon hwclock"
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Onemogući SELinux zaštitu za demon hwclock"
++msgstr ""
++
 +#: ../gui/selinux.tbl:95
- #, fuzzy
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon i18n"
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Onemogući SELinux zaštitu za demon i18n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:96
- #, fuzzy
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon imazesrv"
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Onemogući SELinux zaštitu za demon imazesrv"
++msgstr ""
++
 +#: ../gui/selinux.tbl:97
- #, fuzzy
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Onemogući SELinux zaštitu za demone inetd child"
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Onemogući SELinux zaštitu za demone inetd child"
++msgstr ""
++
 +#: ../gui/selinux.tbl:98
- #, fuzzy
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon inetd"
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon inetd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:99
- #, fuzzy
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon innd"
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon innd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:100
- #, fuzzy
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon iptables"
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Onemogući SELinux zaštitu za demon iptables"
++msgstr ""
++
 +#: ../gui/selinux.tbl:101
- #, fuzzy
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ircd"
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ircd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:102
- #, fuzzy
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon irqbalance"
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Onemogući SELinux zaštitu za demon irqbalance"
++msgstr ""
++
 +#: ../gui/selinux.tbl:103
- #, fuzzy
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:104
- #, fuzzy
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon jabberd"
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon jabberd"
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105
- #, fuzzy
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon kadmind"
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Onemogući SELinux zaštitu za demon kadmind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:106
- #, fuzzy
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon klogd"
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon klogd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:107
- #, fuzzy
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon krb5kdc"
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Onemogući SELinux zaštitu za demon krb5kdc"
++msgstr ""
++
 +#: ../gui/selinux.tbl:108
- #, fuzzy
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Onemogući SELinux zaštitu za demone ktalk"
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Onemogući SELinux zaštitu za demone ktalk"
++msgstr ""
++
 +#: ../gui/selinux.tbl:109
- #, fuzzy
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon kudzu"
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Onemogući SELinux zaštitu za demon kudzu"
++msgstr ""
++
 +#: ../gui/selinux.tbl:110
- #, fuzzy
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon locate"
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Onemogući SELinux zaštitu za demon locate"
++msgstr ""
++
 +#: ../gui/selinux.tbl:111
- #, fuzzy
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon lpd"
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon lpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:112
- #, fuzzy
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon lrrd"
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon lrrd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:113
- #, fuzzy
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon lvm"
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Onemogući SELinux zaštitu za demon lvm"
++msgstr ""
++
 +#: ../gui/selinux.tbl:114
- #, fuzzy
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:115
- #, fuzzy
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Dopusti da Evolution i Thunderbird čitaju korisničke datoteke"
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Dopusti da Evolution i Thunderbird čitaju korisničke datoteke"
++msgstr ""
++
 +#: ../gui/selinux.tbl:116
- #, fuzzy
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon mdadm"
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Onemogući SELinux zaštitu za demon mdadm"
++msgstr ""
++
 +#: ../gui/selinux.tbl:117
- #, fuzzy
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon monopd"
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon monopd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:118
- #, fuzzy
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Dopusti da preglednik Mozilla čita korisničke datoteke"
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Dopusti da preglednik Mozilla čita korisničke datoteke"
++msgstr ""
++
 +#: ../gui/selinux.tbl:119
- #, fuzzy
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon mrtg"
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Onemogući SELinux zaštitu za demon mrtg"
++msgstr ""
++
 +#: ../gui/selinux.tbl:120
- #, fuzzy
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon mysqld"
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Onemogući SELinux zaštitu za demon mysqld"
++msgstr ""
++
 +#: ../gui/selinux.tbl:121
- #, fuzzy
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nagios"
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nagios"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
- #, fuzzy
--#~ msgid "Name Service"
--#~ msgstr "Usluga naziva"
 +msgid "Name Service"
-+msgstr "Usluga naziva"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122
- #, fuzzy
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nazivatelja"
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nazivatelja"
++msgstr ""
++
 +#: ../gui/selinux.tbl:123
- #, fuzzy
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nessusd"
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nessusd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:124
- #, fuzzy
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Onemogući SELinux zaštitu za NetworkManager"
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Onemogući SELinux zaštitu za NetworkManager"
++msgstr ""
++
 +#: ../gui/selinux.tbl:125
- #, fuzzy
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nfsd"
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nfsd"
--#~ msgid "Samba"
--#~ msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126
- #, fuzzy
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nmbd"
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nmbd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:127
- #, fuzzy
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nrpe"
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nrpe"
++msgstr ""
++
 +#: ../gui/selinux.tbl:128
- #, fuzzy
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nscd"
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nscd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:129
- #, fuzzy
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon nsd"
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon nsd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:130
- #, fuzzy
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ntpd"
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ntpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:131
- #, fuzzy
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:132
- #, fuzzy
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:133
- #, fuzzy
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon openvpn"
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Onemogući SELinux zaštitu za demon openvpn"
++msgstr ""
++
 +#: ../gui/selinux.tbl:134
- #, fuzzy
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon pam"
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Onemogući SELinux zaštitu za demon pam"
++msgstr ""
++
 +#: ../gui/selinux.tbl:135
- #, fuzzy
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:136
- #, fuzzy
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon perdition"
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Onemogući SELinux zaštitu za demon perdition"
++msgstr ""
++
 +#: ../gui/selinux.tbl:137
- #, fuzzy
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon portmap"
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Onemogući SELinux zaštitu za demon portmap"
++msgstr ""
++
 +#: ../gui/selinux.tbl:138
- #, fuzzy
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon portslave"
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Onemogući SELinux zaštitu za demon portslave"
++msgstr ""
++
 +#: ../gui/selinux.tbl:139
- #, fuzzy
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:140
- #, fuzzy
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon postgresql"
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Onemogući SELinux zaštitu za demon postgresql"
--#~ msgid "pppd"
--#~ msgstr "pppd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:142
- #, fuzzy
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:143
- #, fuzzy
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon prelink"
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Onemogući SELinux zaštitu za demon prelink"
++msgstr ""
++
 +#: ../gui/selinux.tbl:144
- #, fuzzy
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon privoxy"
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Onemogući SELinux zaštitu za demon privoxy"
++msgstr ""
++
 +#: ../gui/selinux.tbl:145
- #, fuzzy
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ptal"
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ptal"
++msgstr ""
++
 +#: ../gui/selinux.tbl:146
- #, fuzzy
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon pxe"
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Onemogući SELinux zaštitu za demon pxe"
++msgstr ""
++
 +#: ../gui/selinux.tbl:147
- #, fuzzy
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:148
- #, fuzzy
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon quota"
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Onemogući SELinux zaštitu za demon quota"
++msgstr ""
++
 +#: ../gui/selinux.tbl:149
- #, fuzzy
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon radiusd"
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon radiusd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:150
- #, fuzzy
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon radvd"
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon radvd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:151
- #, fuzzy
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:152
- #, fuzzy
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
- #, fuzzy
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Dopusti programima iščitavanje datoteka na nestandardnim lokacijama "
--#~ "(default_t)"
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Dopusti programima iščitavanje datoteka na nestandardnim lokacijama "
-+"(default_t)"
++
 +#: ../gui/selinux.tbl:154
- #, fuzzy
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
- #, fuzzy
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon rhgb"
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Onemogući SELinux zaštitu za demon rhgb"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
- #, fuzzy
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
- #, fuzzy
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
- #, fuzzy
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon rlogind"
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Onemogući SELinux zaštitu za demon rlogind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
- #, fuzzy
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon rpcd"
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon rpcd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
- #, fuzzy
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Onemogući SELinux zaštitu za igre"
--#~ msgid "rsync"
--#~ msgstr "rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
- #, fuzzy
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon rsync"
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Onemogući SELinux zaštitu za demon rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
- #, fuzzy
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "Dopusti da se ssh pokreće iz inetd, umjesto kao demon"
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Dopusti da se ssh pokreće iz inetd, umjesto kao demon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
- #, fuzzy
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Dopusti da Samba razmjenjuje NFS mape."
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Dopusti da Samba razmjenjuje NFS mape."
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL poslužitelj provjere autentičnosti"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL poslužitelj provjere autentičnosti"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
- #, fuzzy
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr ""
--#~ "Dopusti da sasl poslužitelj provjere autentičnosti čita mapu /etc/shadow"
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+"Dopusti da sasl poslužitelj provjere autentičnosti čita mapu /etc/shadow"
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
++
 +#: ../gui/selinux.tbl:166
- #, fuzzy
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon saslauthd"
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon saslauthd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:167
- #, fuzzy
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon scannerdaemon"
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Onemogući SELinux zaštitu za demon scannerdaemon"
++msgstr ""
++
 +#: ../gui/selinux.tbl:168
- #, fuzzy
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Ne dopusti prijelaz u sysadm_t"
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Ne dopusti prijelaz u sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:169
- #, fuzzy
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Nikakvim postupcima ne dopuštaj učitavanje kernelskih modula"
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Nikakvim postupcima ne dopuštaj učitavanje kernelskih modula"
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
- #, fuzzy
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Nikakvim postupcima ne dopuštaj izmjenjivanje kernelskih SELinux pravila"
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+"Nikakvim postupcima ne dopuštaj izmjenjivanje kernelskih SELinux pravila"
++
 +#: ../gui/selinux.tbl:171
- #, fuzzy
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon sendmail"
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Onemogući SELinux zaštitu za demon sendmail"
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
- #, fuzzy
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Onemogući SELinux zaštitu za igre"
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Onemogući SELinux zaštitu za igre"
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
- #, fuzzy
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
- #, fuzzy
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon slapd"
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon slapd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
- #, fuzzy
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon slrnpull"
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Onemogući SELinux zaštitu za demon slrnpull"
++msgstr ""
++
 +#: ../gui/selinux.tbl:176
- #, fuzzy
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon smbd"
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon smbd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:177
- #, fuzzy
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon snmpd"
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon snmpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:178
- #, fuzzy
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon snort"
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Onemogući SELinux zaštitu za demon snort"
++msgstr ""
++
 +#: ../gui/selinux.tbl:179
- #, fuzzy
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon soundd"
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon soundd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:180
- #, fuzzy
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon sound"
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Onemogući SELinux zaštitu za demon sound"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
- #, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "Spam zaštita"
 +msgid "Spam Protection"
-+msgstr "Spam zaštita"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181
- #, fuzzy
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon spamd"
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon spamd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:182
- #, fuzzy
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Dopusti da spamd ima pristup korisničkim glavnim mapama."
 +msgid "Allow spamd to access home directories"
-+msgstr "Dopusti da spamd ima pristup korisničkim glavnim mapama."
++msgstr ""
++
 +#: ../gui/selinux.tbl:183
- #, fuzzy
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Dopusti demonu Spam Assasin pristup mreži"
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Dopusti demonu Spam Assasin pristup mreži"
++msgstr ""
++
 +#: ../gui/selinux.tbl:184
- #, fuzzy
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon speedmgmt"
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Onemogući SELinux zaštitu za demon speedmgmt"
--#~ msgid "Squid"
--#~ msgstr "Squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185
- #, fuzzy
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Dopusti demonu squid povezivanje na mrežu."
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Dopusti demonu squid povezivanje na mrežu."
++msgstr ""
++
 +#: ../gui/selinux.tbl:186
- #, fuzzy
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:187
- #, fuzzy
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ssh"
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ssh"
++msgstr ""
++
 +#: ../gui/selinux.tbl:188
- #, fuzzy
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Dopusti ssh prijavljivanja kao sysadm_r:sysadm_t"
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Dopusti ssh prijavljivanja kao sysadm_r:sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
- #, fuzzy
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Dopusti korisnicima staff_r da pretražuju i čitaju sadržaj mape sysadm "
--#~ "home (poput ~/.bashrc)"
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Dopusti korisnicima staff_r da pretražuju i čitaju sadržaj mape sysadm home "
-+"(poput ~/.bashrc)"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
- #, fuzzy
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Univerzalan SSL tunel"
 +msgid "Universal SSL tunnel"
-+msgstr "Univerzalan SSL tunel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:190
- #, fuzzy
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon stunnel"
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Onemogući SELinux zaštitu za demon stunnel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
- #, fuzzy
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "Dopusti demonu stunnel samostalno pokretanje, izvan xinetd"
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Dopusti demonu stunnel samostalno pokretanje, izvan xinetd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:192
- #, fuzzy
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon swat"
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Onemogući SELinux zaštitu za demon swat"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
- #, fuzzy
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon sxid"
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Onemogući SELinux zaštitu za demon sxid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
- #, fuzzy
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon syslogd"
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon syslogd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
- #, fuzzy
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Onemogući Selinux zaštitu za cupsd backend poslužitelj"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
- #, fuzzy
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
- #, fuzzy
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon telnet"
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Onemogući SELinux zaštitu za demon telnet"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
- #, fuzzy
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon tftpd"
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon tftpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
- #, fuzzy
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon transproxy"
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Onemogući SELinux zaštitu za demon transproxy"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
- #, fuzzy
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon udev"
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Onemogući SELinux zaštitu za demon udev"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
- #, fuzzy
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon uml"
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Onemogući SELinux zaštitu za demon uml"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
- #, fuzzy
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Dopusti nesputani rad xinetd, uključujući bilo koje usluge koje je "
--#~ "pokrenuo, a koji nemaju izričito zadano pretvaranje domena."
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Dopusti nesputani rad xinetd, uključujući bilo koje usluge koje je pokrenuo, "
-+"a koji nemaju izričito zadano pretvaranje domena."
++
 +#: ../gui/selinux.tbl:203
- #, fuzzy
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Dopusti nesputani rad rc skripti, uključujući bilo koji demon koje je "
--#~ "pokrenula rc skripta, a koji nema izričito zadano pretvaranje domena."
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Dopusti nesputani rad rc skripti, uključujući bilo koji demon koje je "
-+"pokrenula rc skripta, a koji nema izričito zadano pretvaranje domena."
++
 +#: ../gui/selinux.tbl:204
- #, fuzzy
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Dopusti neometeno djelovanje alatu rpm."
 +msgid "Allow rpm to run unconfined"
-+msgstr "Dopusti neometeno djelovanje alatu rpm."
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
- #, fuzzy
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Dopusti neometeno djelovanje privilegiranim alatima kao što su hotplug i "
--#~ "insmod."
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Dopusti neometeno djelovanje privilegiranim alatima kao što su hotplug i "
-+"insmod."
++
 +#: ../gui/selinux.tbl:206
- #, fuzzy
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon updfstab"
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Onemogući SELinux zaštitu za demon updfstab"
++msgstr ""
++
 +#: ../gui/selinux.tbl:207
- #, fuzzy
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon uptimed"
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Onemogući SELinux zaštitu za demon uptimed"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
- #, fuzzy
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Dopusti da user_r pristupi u sysadm_r putem su, sudo, ili userhelper. U "
--#~ "protivno dopušteno samo za staff_r."
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Dopusti da user_r pristupi u sysadm_r putem su, sudo, ili userhelper. U "
-+"protivno dopušteno samo za staff_r."
++
 +#: ../gui/selinux.tbl:209
- #, fuzzy
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Dopusti korisnicima izvršavanje naredbe mount"
 +msgid "Allow users to execute the mount command"
-+msgstr "Dopusti korisnicima izvršavanje naredbe mount"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
- #, fuzzy
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Dopusti redovnim korisnicima izravan pristup mišem (dopusti samo X "
--#~ "poslužitelj)"
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Dopusti redovnim korisnicima izravan pristup mišem (dopusti samo X "
-+"poslužitelj)"
++
 +#: ../gui/selinux.tbl:211
- #, fuzzy
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Dopusti korisnicima izvršavanje naredbe dmesg"
 +msgid "Allow users to run the dmesg command"
-+msgstr "Dopusti korisnicima izvršavanje naredbe dmesg"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
- #, fuzzy
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Dopusti korisnicima nadzor nad mrežnim sučeljima (potreban je i "
--#~ "USERCTL=true)"
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Dopusti korisnicima nadzor nad mrežnim sučeljima (potreban je i USERCTL=true)"
++
 +#: ../gui/selinux.tbl:213
- #, fuzzy
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Dopusti normalnim korisnicima izvršavanje alata ping"
 +msgid "Allow normal user to execute ping"
-+msgstr "Dopusti normalnim korisnicima izvršavanje alata ping"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
- #, fuzzy
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "Dopusti korisnicima čitanja i pisanje noextattrfile (FAT, CDROM, FLOPPY)"
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Dopusti korisnicima čitanja i pisanje noextattrfile (FAT, CDROM, FLOPPY)"
++
 +#: ../gui/selinux.tbl:215
- #, fuzzy
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Dopusti korisnicima čitanja i pisanje USB uređaja"
 +msgid "Allow users to rw usb devices"
-+msgstr "Dopusti korisnicima čitanja i pisanje USB uređaja"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
- #, fuzzy
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Dopusti korisnicima pokretanje TCP poslužitelja (povezivanje s portovima "
--#~ "i prihvaćanje povezivanja iz iste domene i vanjskim korisnicima). "
--#~ "Onemogućavanje ove opcije prisiljava pasivan način za FTP i može "
--#~ "izmijeniti ostale protokole."
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Dopusti korisnicima pokretanje TCP poslužitelja (povezivanje s portovima i "
-+"prihvaćanje povezivanja iz iste domene i vanjskim korisnicima). "
-+"Onemogućavanje ove opcije prisiljava pasivan način za FTP i može izmijeniti "
-+"ostale protokole."
++
 +#: ../gui/selinux.tbl:217
- #, fuzzy
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Dopusti korisnicima definiranje tty datoteka"
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Dopusti korisnicima definiranje tty datoteka"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
- #, fuzzy
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon uucpd"
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Onemogući SELinux zaštitu za demon uucpd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
- #, fuzzy
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon vmware"
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Onemogući SELinux zaštitu za demon vmware"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
- #, fuzzy
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon vmware"
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Onemogući SELinux zaštitu za demon vmware"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
- #, fuzzy
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon winbind"
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Onemogući SELinux zaštitu za demon winbind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
- #, fuzzy
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon xdm"
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Onemogući SELinux zaštitu za demon xdm"
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
- #, fuzzy
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Dopusti xdm prijave kao sysadm_r:sysadm_t"
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Dopusti xdm prijave kao sysadm_r:sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
- #, fuzzy
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
--#~ msgid "XEN"
--#~ msgstr "XEN"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
++
 +#: ../gui/selinux.tbl:226
- #, fuzzy
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon xfs"
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Onemogući SELinux zaštitu za demon xfs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
- #, fuzzy
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Onemogući SELinux zaštitu za demon crond"
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Onemogući SELinux zaštitu za demon crond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
- #, fuzzy
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ypbind"
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ypbind"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
- #, fuzzy
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cups hplip"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
- #, fuzzy
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon ypserv"
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Onemogući SELinux zaštitu za demon ypserv"
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
- #, fuzzy
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Onemogući SELinux zaštitu za demon cups hplip"
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Onemogući SELinux zaštitu za demon cups hplip"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
- #, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
++msgstr ""
++
 +#: ../gui/selinux.tbl:233
- #, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "Dopusti da Samba razmjenjuje korisničkih glavnih mapa."
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
-+#, fuzzy, python-format
++#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Jeste li sigurni ste da želite izbrisati %s?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
-+#, fuzzy, python-format
++#, python-format
 +msgid "Delete %s"
-+msgstr "_Izbriši"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
-+#, fuzzy, python-format
++#, python-format
 +msgid "Add %s"
-+msgstr "_Dodaj"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
-+#, fuzzy, python-format
++#, python-format
 +msgid "Modify %s"
-+msgstr "&Uredi..."
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
- #, fuzzy
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Jeste li sigurni ste da želite izbrisati %s?"
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Dopustivo"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
- #, fuzzy
--#~ msgid "Delete %s"
--#~ msgstr "_Izbriši"
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Prisiljavanje"
-+#: ../gui/statusPage.py:75
- #, fuzzy
--#~ msgid "Add %s"
--#~ msgstr "_Dodaj"
-+msgid "Disabled"
-+msgstr "Onemogućeno"
++msgstr ""
++
 +#: ../gui/statusPage.py:94
- #, fuzzy
--#~ msgid "Modify %s"
--#~ msgstr "&Uredi..."
 +msgid "Status"
-+msgstr "Stanje"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
- #, fuzzy
--#~ msgid "Permissive"
--#~ msgstr "Dopustivo"
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Promjena sigurnosnih pravila prisilit će ponovno označavanje cjelokupnog "
-+"datotečnog sustava pri sljedećem pokretanju. Ponovno je označavanje "
-+"dugotrajno i ovisi o veličini datotečnog sustava. Želite li nastaviti?"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -101633,88 +107032,45 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/statusPage.py:152
- #, fuzzy
--#~ msgid "Enforcing"
--#~ msgstr "Prisiljavanje"
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Omogućavanje SELinux prisilit će ponovno označavanje cjelokupnog datotečnog "
-+"sustava pri sljedećem pokretanju. Ponovno je označavanje dugotrajno i ovisi "
-+"o veličini datotečnog sustava. Želite li nastaviti?"
++
 +#: ../gui/system-config-selinux.glade:11
- #, fuzzy
--#~ msgid "Disabled"
--#~ msgstr "Onemogućeno"
 +msgid "system-config-selinux"
-+msgstr "System-Config-Printer"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
- #, fuzzy
--#~ msgid "Status"
--#~ msgstr "Stanje"
 +msgid "Add SELinux Login Mapping"
-+msgstr "Dodavanje mapiranja prijave za %s nije moguće"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:257
- #, fuzzy
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Promjena sigurnosnih pravila prisilit će ponovno označavanje cjelokupnog "
--#~ "datotečnog sustava pri sljedećem pokretanju. Ponovno je označavanje "
--#~ "dugotrajno i ovisi o veličini datotečnog sustava. Želite li nastaviti?"
 +msgid "Add SELinux Network Ports"
-+msgstr "Dodavanje SELinux korisnika %s nije moguće"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux vrsta"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:622
- #, fuzzy
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Omogućavanje SELinux prisilit će ponovno označavanje cjelokupnog "
--#~ "datotečnog sustava pri sljedećem pokretanju. Ponovno je označavanje "
--#~ "dugotrajno i ovisi o veličini datotečnog sustava. Želite li nastaviti?"
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr "SELinux mls temeljna pravila"
-+#: ../gui/system-config-selinux.glade:814
- #, fuzzy
--#~ msgid "system-config-selinux"
--#~ msgstr "System-Config-Printer"
 +msgid "File Specification"
-+msgstr "Specifikacija:"
-+#: ../gui/system-config-selinux.glade:842
- #, fuzzy
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Dodavanje mapiranja prijave za %s nije moguće"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Vrsta _datotečnog sustava:"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -101726,6320 +107082,4232 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Dodaj SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:1271
- #, fuzzy
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Administrativni alati"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux vrsta"
-+#: ../gui/system-config-selinux.glade:1314
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Dodaj"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Svojstva"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Izbriši"
-+#: ../gui/system-config-selinux.glade:1449
- #, fuzzy
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr "SELinux mls temeljna pravila"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Odabir određenog dijela auta"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Odaberite:</b>"
-+#: ../gui/system-config-selinux.glade:1519
- #, fuzzy
--#~ msgid "File Specification"
--#~ msgstr "Specifikacija:"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Izmjena zadanog jezik sustava"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+#: ../gui/system-config-selinux.glade:1566
- #, fuzzy
--#~ msgid "File Type"
--#~ msgstr "Vrsta _datotečnog sustava:"
++
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Određivanje načina prisiljavanja nije moguće.\n"
--#~ msgid "MLS"
--#~ msgstr "MLS"
-+#: ../gui/system-config-selinux.glade:1611
-+#, fuzzy
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Dohvaćanje zadane vrste nije moguće.\n"
--#~ msgid "Add SELinux User"
--#~ msgstr "Dodaj SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+#: ../gui/system-config-selinux.glade:1702
- #, fuzzy
--#~ msgid "SELinux Administration"
--#~ msgstr "Administrativni alati"
++
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Kod sljedećeg pokretanja sustava bit će prisiljen 'fsck'."
--#~ msgid "Add"
--#~ msgstr "Dodaj"
-+#: ../gui/system-config-selinux.glade:1754
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
--#~ msgid "_Properties"
--#~ msgstr "_Svojstva"
-+#: ../gui/system-config-selinux.glade:1791
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
--#~ msgid "_Delete"
--#~ msgstr "_Izbriši"
-+#: ../gui/system-config-selinux.glade:1807
++
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
--#, fuzzy
--#~ msgid "Select Management Object"
--#~ msgstr "Odabir određenog dijela auta"
-+#: ../gui/system-config-selinux.glade:1825
++
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Odaberite:</b>"
-+#: ../gui/system-config-selinux.glade:1826
++
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filtar"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
-+#: ../gui/system-config-selinux.glade:1982
- #, fuzzy
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Izmjena zadanog jezik sustava"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Dodavanje konteksta datoteke za %s nije moguće"
-+#: ../gui/system-config-selinux.glade:1998
- #, fuzzy
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Određivanje načina prisiljavanja nije moguće.\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Uređivanje konteksta datoteke za %s nije moguće"
-+#: ../gui/system-config-selinux.glade:2014
- #, fuzzy
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Dohvaćanje zadane vrste nije moguće.\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Brisanje konteksta datoteke za %s nije moguće"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+#: ../gui/system-config-selinux.glade:2150
++
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
- #, fuzzy
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Kod sljedećeg pokretanja sustava bit će prisiljen 'fsck'."
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Dodavanje SELinux korisnika %s nije moguće"
--#~ msgid "label37"
--#~ msgstr "label37"
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Uredi mapiranje SELinux korisnika"
--#~ msgid "Filter"
--#~ msgstr "Filtar"
-+#: ../gui/system-config-selinux.glade:2219
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Izbriši mapiranje SELinux korisnika"
--#~ msgid "label50"
--#~ msgstr "label50"
-+#: ../gui/system-config-selinux.glade:2337
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
-+#: ../gui/system-config-selinux.glade:2374
- #, fuzzy
--#~ msgid "Add File Context"
--#~ msgstr "Dodavanje konteksta datoteke za %s nije moguće"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "_Dodaj"
-+#: ../gui/system-config-selinux.glade:2390
- #, fuzzy
--#~ msgid "Modify File Context"
--#~ msgstr "Uređivanje konteksta datoteke za %s nije moguće"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "&Uredi..."
-+#: ../gui/system-config-selinux.glade:2406
- #, fuzzy
--#~ msgid "Delete File Context"
--#~ msgstr "Brisanje konteksta datoteke za %s nije moguće"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "_Izbriši"
--#~ msgid "label38"
--#~ msgstr "label38"
-+#: ../gui/system-config-selinux.glade:2524
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+#: ../gui/system-config-selinux.glade:2561
- #, fuzzy
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Dodavanje SELinux korisnika %s nije moguće"
-+msgid "Add Translation"
-+msgstr "Pogreška pri prevođenju"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Uredi mapiranje SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:2577
-+#, fuzzy
-+msgid "Modify Translation"
-+msgstr "Pogreška pri prevođenju"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Izbriši mapiranje SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:2593
-+#, fuzzy
-+msgid "Delete Translation"
-+msgstr "Pogreška pri prevođenju"
--#~ msgid "label39"
--#~ msgstr "label39"
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+#: ../gui/system-config-selinux.glade:2748
- #, fuzzy
--#~ msgid "Add Translation"
--#~ msgstr "Pogreška pri prevođenju"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Port za mrežno povezivanje"
-+#: ../gui/system-config-selinux.glade:2764
- #, fuzzy
--#~ msgid "Modify Translation"
--#~ msgstr "Pogreška pri prevođenju"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Port za mrežno povezivanje"
-+#: ../gui/system-config-selinux.glade:2780
- #, fuzzy
--#~ msgid "Delete Translation"
--#~ msgstr "Pogreška pri prevođenju"
--
--#~ msgid "label41"
--#~ msgstr "label41"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Port za mrežno povezivanje"
--#~ msgid "Modify SELinux User"
--#~ msgstr "Uredi SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
--#~ msgid "label40"
--#~ msgstr "label40"
-+#: ../gui/system-config-selinux.glade:2954
++
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
-+#: ../gui/system-config-selinux.glade:2991
- #, fuzzy
--#~ msgid "Add Network Port"
--#~ msgstr "Port za mrežno povezivanje"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
--#, fuzzy
--#~ msgid "Edit Network Port"
--#~ msgstr "Port za mrežno povezivanje"
-+#: ../gui/system-config-selinux.glade:3007
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Učitaj modul pravila"
-+#: ../gui/system-config-selinux.glade:3023
- #, fuzzy
--#~ msgid "Delete Network Port"
--#~ msgstr "Port za mrežno povezivanje"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
--#~ msgid "label42"
--#~ msgstr "label42"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#, fuzzy
--#~ msgid "Generate new policy module"
--#~ msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
--#~ msgid "Load policy module"
--#~ msgstr "Učitaj modul pravila"
-+#: ../gui/system-config-selinux.glade:3234
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+#: ../gui/system-config-selinux.glade:3354
- #, fuzzy
--#~ msgid "Remove loadable policy module"
--#~ msgstr "SELinux referentna pravila - osnovni modul 'targeted'."
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label50"
--#~ msgid "label44"
--#~ msgstr "label44"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Potrebna je SELinux korisnik '%s'"
- #, fuzzy
--#~ msgid "Sensitvity Level"
-+#~ msgid "Sensitivity Level"
- #~ msgstr "RAID _razina:"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Potrebna je SELinux korisnik '%s'"
-+#~ msgid "Modify SELinux User"
-+#~ msgstr "Uredi SELinux korisnika"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "Prijevodi nisu podržani na ne-MLS računalima"
-+
-+#~ msgid ""
-+#~ "tcp\n"
-+#~ "udp"
-+#~ msgstr ""
-+#~ "tcp\n"
-+#~ "udp"
- #~ msgid "Requires value"
- #~ msgstr "Zahtijeva vrijednost"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hu.po policycoreutils-2.0.85/po/hu.po
---- nsapolicycoreutils/po/hu.po        2011-02-17 15:11:25.123734902 -0500
-+++ policycoreutils-2.0.85/po/hu.po    2011-02-18 16:03:41.370975758 -0500
-@@ -1,19 +1,42 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
- # Arpad Biro <biro_arpad@yahoo.com>, 2006, 2007.
-+# Nagy István Zoltán <nagyesta@gmail.com>, 2009.
- msgid ""
- msgstr ""
- "Project-Id-Version: policycoreutils\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-03-27 20:12+0200\n"
--"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
--"Language-Team: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-03-16 17:20+0100\n"
-+"Last-Translator: Peter Bojtos <ptr@ulx.hu>\n"
-+"Language-Team: Hungarian <fedora-trans-hu@redhat.com>\n"
-+"Language: hu\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
--"X-Generator: KBabel 1.11.4\n"
-+"X-Generator: Lokalize 0.3\n"
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Poedit-Language: Hungarian\n"
-+"X-Poedit-Country: HUNGARY\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
 +msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fkörnyezet"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Új házirend modul generálása"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux Házirend Generációs Eszköz"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -80,20 +103,16 @@
- msgstr "Nem sikerült beállítani a végrehajtási kontextust erre: %s.\n"
- #: ../audit2allow/audit2allow:217
+diff --git a/policycoreutils/po/hy.po b/policycoreutils/po/hy.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/hy.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
 -#, fuzzy
- msgid "******************** IMPORTANT ***********************\n"
--msgstr ""
--"\n"
--"*********************** FONTOS ***********************\n"
-+msgstr "*********************** FONTOS ***********************\n"
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
+-msgid ""
 -msgstr ""
-+msgstr "Ezen házirend aktiválásához futtassa:"
- #: ../semanage/seobject.py:48
--#, fuzzy
- msgid "Could not create semanage handle"
--msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
-+msgstr "Nem sikerült létrehozni az Semanage kezelőt"
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
-@@ -114,22 +133,23 @@
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
 -msgstr ""
-+msgstr "globális"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
- "Nem lehet megnyitni ezt: %s: a fordítások nem támogatottak a nem MLS-es "
--"gépeken"
-+"gépeken: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
 -msgstr ""
-+msgstr "Szint"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
 -msgstr ""
-+msgstr "Fordítás"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
-@@ -153,7 +173,7 @@
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
 -msgstr ""
-+msgstr "Még nincs megvalósítva."
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
-@@ -164,768 +184,766 @@
- msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Nem sikerült elindítani az Semanage-tranzakciót"
-+msgstr "Nem sikerült véglegesíteni az Semanage-tranzakciót"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
- msgstr ""
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "Nem sikerült listázni az SELinux-felhasználókat"
-+msgstr "Nem sikerült listázni az SELinux modulokat"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
 -msgstr ""
-+msgstr "Megengedő típusok"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
 -msgstr ""
-+msgstr "Nem állítható be a megengedő tartomány %s (sikertelen modul telepítés)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
 -msgstr ""
-+msgstr "Nem törölhető a megengedő tartomány %s (sikertelen eltávolítás)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Nem sikerült létrehozni kulcsot ehhez: %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
- "Nem sikerült ellenőrizni, hogy van-e definiálva bejelentkezési hozzárendelés "
- "ehhez: %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Már van definiálva bejelentkezési hozzárendelés ehhez: %s"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Nem létezik %s nevű Linux-felhasználó"
-+msgstr "A %s Linux csoport nem létezik"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Nem létezik %s nevű Linux-felhasználó"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Nem sikerült létrehozni bejelentkezési hozzárendelést ehhez: %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Nem sikerült nevet beállítani ehhez: %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Nem sikerült MLS-tartományt beállítani ehhez: %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Nem sikerült SELinux-felhasználót beállítani ehhez: %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Nem sikerült felvenni bejelentkezési hozzárendelést ehhez: %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
--#, fuzzy
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "Nem sikerült felvenni \"%s\" SELinux-felhasználót"
-+msgstr "SELinux felhasználó hozzárendelés hozzáadása"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Seuser vagy Serange szükséges"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Nincs definiálva bejelentkezési hozzárendelés ehhez: %s"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Nem sikerült végrehajtani Seuser-lekérdezést erre: %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Nem sikerült módosítani \"%s\" bejelentkezési hozzárendelését"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "%s bejelentkezési hozzárendelése szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Nem sikerült törölni \"%s\" bejelentkezési hozzárendelését"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Nem sikerült listázni a bejelentkezési hozzárendeléseket"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
 -msgstr ""
-+msgstr "Bejelentkezési név"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
--#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
--msgstr "Meg kell adni SELinux-típust"
-+msgstr "SELinux felhasználó"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
 -msgstr ""
-+msgstr "MLS/MCS hatáskör"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Nem sikerült felvenni fájlkontextust ehhez: %s"
-+msgstr "Legalább egy szerepet meg kell adnia %s számára"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
- "Nem sikerült ellenőrizni, hogy van-e definiálva \"%s\" SELinux-felhasználó"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "Már van definiálva \"%s\" nevű SELinux-felhasználó"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Nem sikerült létrehozni SELinux-felhasználót ehhez: %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Nem sikerült felvenni \"%s\" szerepet ehhez: %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Nem sikerült beállítani az MLS-szintet ehhez: %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Nem sikerült felvenni \"%s\" előtagot ehhez: %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Nem sikerült kinyerni a kulcsot ehhez: %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Nem sikerült felvenni \"%s\" SELinux-felhasználót"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Szükség van előtagra, szerepekre, szintre vagy tartományra"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Szükség van előtagra vagy szerepekre"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "\"%s\" SELinux-felhasználó nincs definiálva"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Nem sikerült lekérdezni a felhasználót ehhez: %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Nem sikerült módosítani a(z) \"%s\" SELinux-felhasználót"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "\"%s\" SELinux-felhasználó szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Nem sikerült törölni a(z) \"%s\" SELinux-felhasználót"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Nem sikerült listázni az SELinux-felhasználókat"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Nem sikerült listázni a(z) \"%s\" felhasználó szerepeit"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
 -msgstr ""
-+msgstr "Címkézés"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
 -msgstr ""
-+msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
 -msgstr ""
-+msgstr "Előtag"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
 -msgstr ""
-+msgstr "MCS Szint"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
 -msgstr ""
-+msgstr "MCS hatáskör"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
 -msgstr ""
-+msgstr "SELinux szerepek"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "UDP vagy TCP protokoll szükséges"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Meg kell adni portot"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Nem sikerült létrehozni kulcsot ehhez: %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Meg kell adni típust"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e a(z) %s/%s port"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "A(z) %s/%s port már definiálva van"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Nem sikerült létrehozni portot ehhez: %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Nem sikerült létrehozni kontextust ehhez: %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Nem sikerült beállítani a felhasználót %s/%s portkontextusban"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Nem sikerült beállítani a szerepet %s/%s portkontextusban"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Nem sikerült beállítani a típust %s/%s portkontextusban"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Nem sikerült beállítani az MLS-mezőket %s/%s portkontextusban"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Nem sikerült beállítani a portkontextust ehhez: %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Nem sikerült felvenni ezt a portot: %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Setype vagy Serange szükséges"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Setype szükséges"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "%s/%s port nincs definiálva"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Nem sikerült lekérdezni ezt a portot: %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Nem sikerült módosítani ezt a portot: %s/%s"
--#: ../semanage/seobject.py:921
--#, fuzzy
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Nem sikerült listázni a portokat"
--#: ../semanage/seobject.py:937
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
-+#, python-format
- msgid "Could not delete the port %s"
--msgstr "Nem sikerült törölni ezt a portot: %s/%s"
-+msgstr "Nem sikerült törölni a portot: %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "A(z) %s/%s port szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Nem sikerült törölni ezt a portot: %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Nem sikerült listázni a portokat"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
 -msgstr ""
-+msgstr "SELinux Port típus"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
 -msgstr ""
-+msgstr "Proto"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
 -msgstr ""
-+msgstr "Portszám"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "Meg kell adni portot"
-+msgstr "Csomópont cím szükséges"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Meg kell adni portot"
-+msgstr "Csomópont hálózati maszk szükséges"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
 -msgstr ""
-+msgstr "Ismeretlen vagy hiányzó protokoll"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Meg kell adni SELinux-típust"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Nem sikerült létrehozni kulcsot ehhez: %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e a(z) %s/%s port"
-+msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e a(z) %s"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "A(z) %s/%s port már definiálva van"
-+msgstr "A(z) %s már meg van határozva"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "Nem sikerült létrehozni kulcsot ehhez: %s"
-+msgstr "Nem sikerült létrehozni addr-t %s-hez"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Nem sikerült létrehozni kontextust ehhez: %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "Nem sikerült nevet beállítani ehhez: %s"
-+msgstr "Nem állítható be a(z) %s maszkja"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "Nem sikerült beállítani a felhasználót %s fájlkontextusban"
-+msgstr "Nem sikerült beállítani a felhasználót %s addr kontextusban"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Nem sikerült beállítani a szerepet %s fájlkontextusban"
-+msgstr "Nem sikerült beállítani a szerepet %s addr kontextusban"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Nem sikerült beállítani a típust %s fájlkontextusban"
-+msgstr "Nem sikerült beállítani a típust %s addr kontextusban"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "Nem sikerült beállítani az MLS-mezőket %s fájlkontextusban"
-+msgstr "Nem sikerült beállítani az MLS-mezőket %s addr kontextusban"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Nem sikerült beállítani a fájlkontextust ehhez: %s"
-+msgstr "Nem sikerült beállítani a(z) %s addr kontextust"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "Nem sikerült felvenni ezt a portot: %s/%s"
-+msgstr "Nem adható hozzá %s addr"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "%s/%s port nincs definiálva"
-+msgstr "%s addr nincs definiálva"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "Nem sikerült lekérdezni ezt a portot: %s/%s"
-+msgstr "Nem kérdezhető le %s addr"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "Nem sikerült módosítani ezt a portot: %s/%s"
-+msgstr "Nem módosítható %s addr"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "A(z) %s/%s port szabályzatban van definiálva - nem törölhető"
-+msgstr "A(z) %s addr nincs definiálva a házirendben, nem törölhető"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "Nem sikerült törölni ezt a csatolót: %s"
-+msgstr "Nem törölhető %s addr"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Nem sikerült listázni a portokat"
-+msgstr "Nem listázható addr"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Nem sikerült ellenőrizni, hogy definiálva van-e ez a csatoló: %s"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s csatoló már definiálva van"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Nem sikerült létrehozni csatolót ehhez: %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Nem sikerült beállítani a felhasználót %s csatolókontextusban"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Nem sikerült beállítani a szerepet %s csatolókontextusban"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Nem sikerült beállítani a típust %s csatolókontextusban"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Nem sikerült beállítani az MLS-mezőket %s csatolókontextusban"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Nem sikerült beállítani a csatolókontextust ehhez: %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Nem sikerült beállítani az üzenetkontextust ehhez: %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Nem sikerült felvenni ezt a csatolót: %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s csatoló nincs definiálva"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Nem sikerült lekérdezni ezt a csatolót: %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Nem sikerült módosítani ezt a csatolót: %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "A(z) %s csatoló szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Nem sikerült törölni ezt a csatolót: %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Nem sikerült listázni a csatolókat"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
 -msgstr ""
-+msgstr "SELinux Interfész"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
 -msgstr ""
-+msgstr "Környezet"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Nem sikerült beállítani a felhasználót %s fájlkontextusban"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Nem sikerült beállítani a szerepet %s fájlkontextusban"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Nem sikerült beállítani az MLS-mezőket %s fájlkontextusban"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Érvénytelen fájl specifikáció"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
- "Nem sikerült ellenőrizni, hogy van-e definiálva fájlkontextus ehhez: %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Már van definiálva fájlkontextus ehhez: %s"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Nem sikerült létrehozni fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Nem sikerült beállítani a típust %s fájlkontextusban"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Nem sikerült beállítani a fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Nem sikerült felvenni fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Setype, Serange vagy Seuser szükséges"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Nincs definiálva fájlkontextus ehhez: %s"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Nem sikerült lekérdezni a fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Nem sikerült módosítani a fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1560
--#, fuzzy
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "Nem sikerült listázni a fájlkontextusokat"
-+msgstr "A fájl kontextus listázása nem sikerült"
--#: ../semanage/seobject.py:1574
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
-+#, python-format
- msgid "Could not delete the file context %s"
--msgstr "Nem sikerült törölni %s fájlkontextusát"
-+msgstr "Nem sikerült a(z) %s fájl kontextus törlése"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s fájlkontextusa szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Nem sikerült törölni %s fájlkontextusát"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Nem sikerült listázni a fájlkontextusokat"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Nem sikerült listázni a helyi fájlkontextusokat"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
 -msgstr ""
-+msgstr "SELinux fkörnyezet"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
 -msgstr ""
-+msgstr "Típus"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Nem sikerült ellenőrizni, hogy \"%s\" logikai érték definiálva van-e"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "\"%s\" logikai érték nincs definiálva"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Nem sikerült lekérdezni a fájlkontextust ehhez: %s"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Meg kell adni egy előtagot"
-+msgstr "A következő értékek egyikét kell megadnia: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Nem sikerült törölni a(z) \"%s\" logikai értéket"
-+msgstr "Nem lehet beállítani az aktív logikai értéket %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Nem sikerült módosítani a(z) \"%s\" logikai értéket"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Hibás formátum %s: Rekord %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "A(z) \"%s\" logikai érték szabályzatban van definiálva - nem törölhető"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Nem sikerült törölni a(z) \"%s\" logikai értéket"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Nem sikerült listázni a logikai értékeket"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
 -msgstr ""
-+msgstr "ismeretlen"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
 -msgstr ""
-+msgstr "ki"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
 -msgstr ""
-+msgstr "be"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
 -msgstr ""
-+msgstr "SELinux Logikai érték"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
 -msgstr ""
-+msgstr "Leírás"
- #: ../newrole/newrole.c:198
- #, c-format
-@@ -935,12 +953,12 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
 -msgstr ""
-+msgstr "newrole: szolgáltatásnév beállító hasító tábla túlcsordulás\n"
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
 -msgstr ""
-+msgstr "newrole: %s: hiba a(z) %lu. sorban\n"
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -965,7 +983,7 @@
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
- #, fuzzy, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Hiba a képességek inicializálásakor; megszakítás.\n"
-+msgstr "Hiba történt az adottságok inicializálása közben, kilépés.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1080,6 +1098,7 @@
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
- msgstr ""
-+"Hiba: nem változtathat szinteket nem biztonságos terminálon keresztül \n"
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1147,14 +1166,14 @@
- msgstr "Nem sikerült meghatározni a régi kontextust.\n"
- #: ../newrole/newrole.c:1140
--#, fuzzy, c-format
-+#, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Hiba: nem sikerült lekérdezni a tty-információkat.\n"
-+msgstr "Figyelem! Nem sikerült lekérdezni a tty információt.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
 -msgstr ""
-+msgstr "hiba a PAM szolgáltatás beállításakor.\n"
- #: ../newrole/newrole.c:1196
- #, c-format
-@@ -1196,19 +1215,19 @@
- msgstr "nem sikerült végrehajtani a parancsértelmezőt\n"
- #: ../load_policy/load_policy.c:22
--#, fuzzy, c-format
-+#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "használat: %s [-bq]\n"
-+msgstr "Használat: %s [-qi]\n"
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
 -msgstr ""
-+msgstr "%s: A házirend már be van töltve és kezdeti betöltés igényelt\n"
- #: ../load_policy/load_policy.c:80
--#, fuzzy, c-format
-+#, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s: szabályzat nem betölthető: %s\n"
-+msgstr "%s: A házirend nem tölthető be és kikényszerítő mód igényelt: %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1299,86 +1318,2297 @@
- msgid "Options Error %s "
- msgstr "Hiba az opciókban: %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "a fordítások nem támogatottak a nem MLS-es gépeken"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Logikai"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "minden"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Testre szabott"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Fájl címkézés"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Meg kell adni SELinux-típust"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Fájl\n"
-+"Specifikáció"
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Meg kell adni SELinux-típust"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"Fájltípus"
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Hiba az auditálási üzenet küldésekor.\n"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Fájl\n"
-+"Típus"
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Meg kell adni egy szerepet"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Felhasználó hozzárendelés"
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Meg kell adni egy szerepet"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Bejelentkezési\n"
-+"Név"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Meg kell adni egy szerepet"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"Felhasználó"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Típuskényszerítési fájl készítése: %s.te"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS hatáskör"
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "%s csatoló nincs definiálva"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Bejelentkezés '%s' szükséges"
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Házirend modul"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Modulnév"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Verzió"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Audit letiltása"
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Audit engedélyezése"
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Házirend Modul Betöltése"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"Bán Szabolcs <shooby@gnome.hu>\n"
-+"Dvornik László <dvornik@gnome.hu>\n"
-+"Kelemen Gábor <kelemeng@gnome.hu>\n"
-+"Kovács Emese <emese@gnome.hu>\n"
-+"Nagy Gergely <greg@gnome.hu>\n"
-+"Nagy István Zoltán <nagyesta@gmail.com>\n"
-+"Tímár András <timar@gnome.hu>\n"
-+"Varga Szabolcs <shirokuma@shirokuma.hu>\n"
-+"\n"
-+"Launchpad Contributions:\n"
-+"  Daniel Ugra https://launchpad.net/~daniel-ugra\n"
-+"  Gabor Kelemen https://launchpad.net/~kelemeng\n"
-+"  Karoly Gossler https://launchpad.net/~connor\n"
-+"  Robert Biro https://launchpad.net/~darthjdg"
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Nincs definiálva fájlkontextus ehhez: %s"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Ez az eszköz házirend keretrendszer generálására használható, hogy az "
-+"SELinux korlátozza az alkalmazásokat és felhasználókat.   \n"
-+"\n"
-+"Az eszköz generál:\n"
-+"Típus kikényszerítő fájlt (te)\n"
-+"Interfész fájlt (if)\n"
-+"Fájl kontextus fájlt (fc)\n"
-+"Shell szkriptet (sh) - a házirend lefordításához és telepítéséhez. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Válassza ki a korlátozandó alkalmazás/felhasználó szerep típusát"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Alkalmazások</b>"
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "\"%s\" SELinux-felhasználó nincs definiálva"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"A szabványos Init Démonok olyan démonok, amelyeket a boot során indítanak "
-+"init szkriptekkel. Általában szükség van egy szkriptre a /etc/rc.d/init.d-ben"
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Szabályzat elkészítése"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Szabványos Init Démon"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "%s azonosítása.\n"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS rendszer-démon"
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Meg kell adni SELinux-típust"
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Az Internet Szolgáltatás Démonok a xinetd által indított démonok"
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Nem sikerült felvenni \"%s\" SELinux-felhasználót"
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Szolgáltatások Démon (inetd)"
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Nem sikerült módosítani a(z) \"%s\" SELinux-felhasználót"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Web alkalmazások/Szkriptek (CGI) a webkiszolgáló (apache) által indított CGI "
-+"szkriptek"
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Nem sikerült törölni a(z) \"%s\" SELinux-felhasználót"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Webalkalmazás/Szkript (CGI)"
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Nem sikerült módosítani a(z) \"%s\" SELinux-felhasználót"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Felhasználói alkalmazás bármelyik olyan alkalmazás, amelyet korlátozni "
-+"szeretne és egy felhasználó indított"
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Nem lehet olvasni a szabályzat-tárolót."
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Felhasználói Alkalmazás"
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Meg kell adni SELinux-típust"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Felhasználók bejelentkezése</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Egy létező felhasználói bejelentkező rekord módosítása."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Létező Felhasználói Szerepek"
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Ez a felhasználó csak terminállal vagy távoli bejelentkezéssel tud "
-+"bejelentkezni. Alapértelmezetten ennek a felhasználónak nem lesz setuid-je, "
-+"hálózata, su-ja, sudo-ja."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Minimális Terminál Felhasználói Szerep"
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Ez a felhasználó csak X-szel vagy terminállal tud bejelentkezni. "
-+"Alapértelmezetten ennek a felhasználónak nem lesz setuid-je, hálózata, sudo-"
-+"ja, su-ja."
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Minimális X Ablakok Felhasználói Szerep"
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Felhasználó teljes hálózati eléréssel, setuid nélkül átmenet mentes "
-+"alkalmazásokkal, sudo nélkül, su nélkül."
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Felhasználói Szerep"
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Felhasználó teljes hálózati eléréssel, setuid nélkül átmenet mentes "
-+"alkalmazásokkal, su nélkül, használhat sudo-t az alapvető adminisztrációs "
-+"szerepekhez"
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Rendszergazda Felhasználói Szerep"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>rendszergazdák</b>"
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Válassza az alapvető adminisztrátor felhasználói szerepet, ha ez a "
-+"felhasználó fogja igazgatni a gépet, ha rendszergazdaként futtatja. Ez a "
-+"felhasználó nem fog tudni bejelentkezni a rendszerbe közvetlenül."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Alapvető Adminisztrátori Felhasználói Szerep"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+"Adja meg az alkalmazás nevét vagy a felhasználói szerepet, amelyet "
-+"korlátozni szeretne"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Név"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Adja meg a korlátozandó futtatható állomány teljes elérési útvonalát."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+"Adja meg a korlátozott alkalmazás vagy felhasználói szerep egyedi nevét."
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Végrehajtható fájl"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init szkript"
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Adja meg a korlátozott alkalmazás futtatásához használt init szkript teljes "
-+"elérési útvonalát."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Válassza ki a felhasználói szerepeket, amelyeket testre kíván szabni"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Válassza ki a felhasználói szerepeket, amelyek átmenetet fognak képezni ezen "
-+"alkalmazás tartományába."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Válasszon ki további tartományokat, amelyekbe ez a felhasználói szerep "
-+"átmenetet fog képezni."
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Válassza ki az alkalmazások tartományát, amely ezzel a felhasználói "
-+"szereppel átmenetet képez."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+"Válassza ki a felhasználói szerepeket amelyek ebbe a tartományba átmenetet "
-+"képeznek"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+"Válasszon további tartományokat, amelyeket ez a felhasználói szerep fog "
-+"igazgatni"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+"Válassza ki a tartományokat, amelyeket szeretné, hogy ez a felhasználó "
-+"igazgasson."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Válasszon további szerepeket ennek a felhasználónak"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Adja meg a hálózati portokat, amelyeket az alkalmazás/felhasználói szerep "
-+"figyel"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP Portok</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Bármely udp porthoz engedélyezze a korlátozott alkalmazás/felhasználó "
-+"hozzárendelését"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Minden"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Engedélyezze az alkalmazásnak/felhasználói szerepnek a bindresvport 0-val "
-+"hívását. Kötés a 600-1024 porthoz"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Adja meg az alkalmazás/felhasználói szerep által kötött udp portok vagy port-"
-+"tartományok listáját vesszővel elválasztva. Példa: 612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Nem fenntartott portok (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Portok kiválasztása"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Engedélyezze az alkalmazás/felhasználói szerep számára a tetszőleges 1024 "
-+"feletti udp porthoz kötést"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP Portok</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Adja meg a hálózati portokat, amelyekhez az alkalmazás/felhasználói szerep "
-+"kapcsolódik"
-+
-+#: ../gui/polgen.glade:1958
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/id.po b/policycoreutils/po/id.po
+new file mode 100644
+index 0000000..ed854b6
+--- /dev/null
++++ b/policycoreutils/po/id.po
+@@ -0,0 +1,3366 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
 +msgstr ""
-+"Adja meg vesszővel elválasztva a tcp portok vagy port-tartományok listáját "
-+"amelyekhez az alkalmazás/felhasználói szerep kapcsolódik. Példa: 612, 650-660"
++"Project-Id-Version: Policycoreutils\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-03-30 18:14+0000\n"
++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
++"Language-Team: Indonesian <trans-id@lists.fedoraproject.org>\n"
++"Language: id\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=1; plural=0\n"
 +
-+#: ../gui/polgen.glade:2111
++#: ../run_init/run_init.c:67
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"USAGE: run_init <script> <args ...>\n"
++"  where: <script> is the name of the init script to run,\n"
++"         <args ...> are the arguments to that script."
 +msgstr ""
-+"Adja meg vesszővel elválasztva az udp portok vagy port-tartományok listáját "
-+"amelyekhez az alkalmazás/felhasználói szerep kapcsolódik. Példa: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Válasszon átlagos alkalmazás jellemzőket"
++#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
++#, c-format
++msgid "failed to initialize PAM\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Rendszernapló üzeneteket ír\t"
++#: ../run_init/run_init.c:139
++#, c-format
++msgid "failed to get account information\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Ideiglenes fájlok létrehozása/módosítása a /tmp-ben"
++#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
++msgid "Password:"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "PAM-et használ a hitelesítéshez"
++#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
++#, c-format
++msgid "Cannot find your entry in the shadow passwd file.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Nsswith vagy getpw* hívásokat használ"
++#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
++#, c-format
++msgid "getpass cannot open /dev/tty\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "DBus-t használ"
++#: ../run_init/run_init.c:275
++#, c-format
++msgid "run_init: incorrect password for %s\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Audit üzenetek küldése"
++#: ../run_init/run_init.c:309
++#, c-format
++msgid "Could not open file %s\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Kölcsönhatás a terminállal"
++#: ../run_init/run_init.c:336
++#, c-format
++msgid "No context in file %s\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Emailt küld"
++#: ../run_init/run_init.c:361
++#, c-format
++msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Válassza ki az alkalmazás által kezelt fájlokat/könyvtárakat"
++#: ../run_init/run_init.c:380
++#, c-format
++msgid "authentication failed.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
++#, c-format
++msgid "Could not set exec context to %s.\n"
 +msgstr ""
-+"Adjon hozzá Fájlokat/Könyvtárakat, amelyekbe az alkalmazásnak \"Írnia\" "
-+"kell. Pid fájlok, napló fájlok, /var/lib fájlok ..."
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Válassza ki a logikai értékeket, amelyeket az alkalmazás használ"
++#: ../audit2allow/audit2allow:230
++msgid "******************** IMPORTANT ***********************\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../audit2allow/audit2allow:231
++msgid "To make this policy package active, execute:"
 +msgstr ""
-+"Az alkalmazást/felhasználót korlátozó logikai értékek hozzáadása/eltávolítása"
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Válassza ki a könyvtárat a házirend generálására"
++#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
++msgid "global"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Házirend Könyvtár"
++#: ../semanage/seobject.py:222
++msgid "Could not create semanage handle"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Generált Házirend Fájlok"
++#: ../semanage/seobject.py:230
++msgid "SELinux policy is not managed or store cannot be accessed."
++msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+#, fuzzy
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ez az eszköz a következőket fogja legenerálni: \n"
-+"Típus kikényszerítés(te), Fájl kontextus(fc), Interfész(if), Shell szkript"
-+"(sh)\n"
-+"Futtassa rendszergazdaként a shell szkriptet a fordításhoz/telepítéshez és a "
-+"fájlok/könyvtárak újracímkézéséhez. \n"
-+"Használja az semanage-et vagy useradd-et a Linux felhasználók felhasználói "
-+"szerepekhez rendeléséhez.\n"
-+"Állítsa a gépet megengedő módba (setenforce 0). \n"
-+"Jelentkezzen be a felhasználóként és tesztelje ezt a felhasználói szerepet.\n"
-+"Használja az 'audit2allow -R'-t további szabályok generálására a te "
-+"fájlokhoz.\n"
-+
-+#: ../gui/polgen.glade:3025
-+#, fuzzy
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ez az eszköz a következőket fogja legenerálni: \n"
-+"Típus kikényszerítés(te), Fájl kontextus(fc), Interfész(if), Shell szkript"
-+"(sh)\n"
-+"\n"
-+"Futtassa rendszergazdaként a shell szkriptet a fordításhoz/telepítéshez és a "
-+"fájlok/könyvtárak újracímkézéséhez.  \n"
-+"Állítsa a gépet megengedő módba (setenforce 0). \n"
-+"Futtassa/indítsa újra az alkalmazást az avc üzenetek generálásához.\n"
-+"Használja az 'audit2allow -R'-t további szabályok generálására a te "
-+"fájlokhoz.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Logikai érték hozzáadása párbeszédpanel"
++#: ../semanage/seobject.py:235
++msgid "Cannot read policy store."
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Logikai Név"
++#: ../semanage/seobject.py:240
++msgid "Could not establish semanage connection"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Szerep"
++#: ../semanage/seobject.py:245
++msgid "Could not test MLS enabled status"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Létező_Felhasználó"
++#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
++msgid "Not yet implemented"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Alkalmazás"
++#: ../semanage/seobject.py:255
++msgid "Semanage transaction already in progress"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s csak könyvtár lehet"
++#: ../semanage/seobject.py:264
++msgid "Could not start semanage transaction"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Ki kell választania egy felhasználót"
++#: ../semanage/seobject.py:274
++msgid "Could not commit semanage transaction"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Válassza ki a korlátozandó futtatható fájlt."
++#: ../semanage/seobject.py:279
++msgid "Semanage transaction not in progress"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Válassza ki a korlátozandó init szkript fájlt."
++#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
++msgid "Could not list SELinux modules"
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
++#: ../semanage/seobject.py:304
++msgid "Modules Name"
 +msgstr ""
-+"Válassza ki a korlátozott alkalmazás által létrehozott vagy írt fájl(oka)t"
 +
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
++msgid "Version"
 +msgstr ""
-+"Válassza ki a korlátozott alkalmazás által birtokolt és írt könyvtár(ak)at"
 +
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Válassza ki a könyvtárat a házirend fájlok generálására"
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
++msgid "Disabled"
++msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../semanage/seobject.py:322
 +#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++msgid "Could not disable module %s (remove failed)"
 +msgstr ""
-+"A %s_t típus már definiálva van ebben a házirendben.\n"
-+"Folytatja?"
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Név megerősítése"
++#: ../semanage/seobject.py:333
++#, python-format
++msgid "Could not enable module %s (remove failed)"
++msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../semanage/seobject.py:348
 +#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
++msgid "Could not remove module %s (remove failed)"
 +msgstr ""
-+"A(z) %s.pp modul már be van töltve az aktuális házirendbe.\n"
-+"Folytatja?"
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Egy nevet kell megadnia"
++#: ../semanage/seobject.py:358
++msgid "dontaudit requires either 'on' or 'off'"
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Egy futtatható fájlt kell megadnia"
++#: ../semanage/seobject.py:387
++msgid "Builtin Permissive Types"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux beállítása"
++#: ../semanage/seobject.py:397
++msgid "Customized Permissive Types"
++msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../semanage/seobject.py:438
 +#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgid "Could not set permissive domain %s (module installation failed)"
 +msgstr ""
-+"A portoknak számoknak vagy számok tartományának kell lennie 1 és %d között"
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Meg kell adnia egy nevet a korlátozott folyamat/felhasználó számára"
 +
-+#: ../gui/polgen.py:282
-+#, fuzzy
-+msgid "USER Types are not allowed executables"
-+msgstr "USER Típusok nem engedélyezik a futtatható fájlokat"
++#: ../semanage/seobject.py:444
++#, python-format
++msgid "Could not remove permissive domain %s (remove failed)"
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Csak DÉMON alkalmazások használhatnak init szkripteket"
++#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
++#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
++#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
++#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
++#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
++#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
++#: ../semanage/seobject.py:2037
++#, python-format
++msgid "Could not create a key for %s"
++msgstr ""
 +
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "a use_syslog értékének logikainak kell lennie."
++#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
++#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
++#, python-format
++msgid "Could not check if login mapping for %s is defined"
++msgstr ""
 +
-+#: ../gui/polgen.py:327
-+#, fuzzy
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER Típusok automatikusan kapnak egy tmp típust"
++#: ../semanage/seobject.py:492
++#, python-format
++msgid "Linux Group %s does not exist"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
++#: ../semanage/seobject.py:497
++#, python-format
++msgid "Linux User %s does not exist"
 +msgstr ""
-+"Meg kell adnia a futtatható elérési útvonalát a korlátozott folyamata számára"
 +
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Típus kikényszerítés fájl"
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Interfész fájl"
++#: ../semanage/seobject.py:501
++#, python-format
++msgid "Could not create login mapping for %s"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Fájl kontextus fájl"
++#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
++#, python-format
++msgid "Could not set name for %s"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Beállító parancsfájl"
++#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
++#, python-format
++msgid "Could not set MLS range for %s"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Hálózati port"
++#: ../semanage/seobject.py:514
++#, python-format
++msgid "Could not set SELinux user for %s"
++msgstr ""
 +
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
++#: ../semanage/seobject.py:518
++#, python-format
++msgid "Could not add login mapping for %s"
 +msgstr ""
-+"SELinux Port\n"
-+"Típus"
 +
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protokoll"
++#: ../semanage/seobject.py:536
++msgid "Requires seuser or serange"
++msgstr ""
 +
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
++#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
++#, python-format
++msgid "Login mapping for %s is not defined"
 +msgstr ""
-+"MLS/MCS\n"
-+"Szint"
 +
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
++#: ../semanage/seobject.py:563
++#, python-format
++msgid "Could not query seuser for %s"
++msgstr ""
 +
-+#: ../gui/portsPage.py:207
++#: ../semanage/seobject.py:577
 +#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "A port szám \"%s\" nem érvényes.  0 < PORT_SZÁM < 65536 "
++msgid "Could not modify login mapping for %s"
++msgstr ""
 +
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Listanézet"
++#: ../semanage/seobject.py:611
++#, python-format
++msgid "Login mapping for %s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Csoportnézet"
++#: ../semanage/seobject.py:615
++#, python-format
++msgid "Could not delete login mapping for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux Szolgáltatásvédelem"
++#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
++#: ../semanage/seobject.py:893
++msgid "Could not list login mappings"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Az acct démon SELinux védelmének letiltása"
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
++msgid "Login Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Rendszergazda"
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
++msgid "SELinux User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Minden démonnak engedélyezze a magfájlok írását a /-be"
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
++msgid "MLS/MCS Range"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Engedélyezze minden démonnak a le nem foglalt tty-k használatát"
++#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
++#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
++#: ../semanage/seobject.py:860
++#, python-format
++msgid "Could not check if SELinux user %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Felhasználói kiváltságok"
++#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
++#: ../semanage/seobject.py:866
++#, python-format
++msgid "Could not query user for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:722
++#, python-format
++msgid "You must add at least one role for %s"
 +msgstr ""
-+"Engedélyezze a gadmin SELinux felhasználónak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:737
++#, python-format
++msgid "Could not create SELinux user for %s"
 +msgstr ""
-+"Engedélyezze a vendég SELinux felhasználóknak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Memória Védelem"
++#: ../semanage/seobject.py:746
++#, python-format
++msgid "Could not add role %s for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Engedélyezze a java futtatható vermet"
++#: ../semanage/seobject.py:755
++#, python-format
++msgid "Could not set MLS level for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Felkapcsolás"
++#: ../semanage/seobject.py:758
++#, python-format
++msgid "Could not add prefix %s for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Engedélyezze, hogy a mount minden fájlt csatolhasson"
++#: ../semanage/seobject.py:761
++#, python-format
++msgid "Could not extract key for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Engedélyezze, hogy a mount minden könyvtárat csatlakoztathasson"
++#: ../semanage/seobject.py:765
++#, python-format
++msgid "Could not add SELinux user %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Engedélyezze az mplayer futtatható vermet"
++#: ../semanage/seobject.py:787
++msgid "Requires prefix, roles, level or range"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
++#: ../semanage/seobject.py:789
++msgid "Requires prefix or roles"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Engedélyezze az ssh-nak az ssh-keysign futtatását"
++#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
++#, python-format
++msgid "SELinux user %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:828
++#, python-format
++msgid "Could not modify SELinux user %s"
 +msgstr ""
-+"Engedélyezze a staff SELinux felhasználónak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:862
++#, python-format
++msgid "SELinux user %s is defined in policy, cannot be deleted"
 +msgstr ""
-+"Engedélyezze a sysadm SELinux felhasználónak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
++#: ../semanage/seobject.py:873
++#, python-format
++msgid "Could not delete SELinux user %s"
 +msgstr ""
-+"Engedélyezze a nem megerősített SELinux felhasználónak a fájlok futtatását a "
-+"saját könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Hálózati beállítások"
++#: ../semanage/seobject.py:911
++msgid "Could not list SELinux users"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Engedélyezze a címkézetlen csomagok áramlását a hálózaton"
++#: ../semanage/seobject.py:917
++#, python-format
++msgid "Could not list roles for user %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:942
++msgid "Labeling"
 +msgstr ""
-+"Engedélyezze a user SELinux felhasználónak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Meg nem erősített dyntrans engedélyezése az unconfined_execmem-be"
++#: ../semanage/seobject.py:942
++msgid "MLS/"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Adatbázisok"
++#: ../semanage/seobject.py:943
++msgid "Prefix"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "A felhasználó mysql foglalathoz csatlakozásának engedélyezése"
++#: ../semanage/seobject.py:943
++msgid "MCS Level"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "A felhasználó postgres foglalathoz csatlakozásának engedélyezése"
++#: ../semanage/seobject.py:943
++msgid "MCS Range"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "X-Kiszolgáló"
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
++msgid "SELinux Roles"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "A kliensek számára az X osztott memória írásának engedélyezése"
++#: ../semanage/seobject.py:963
++msgid "Protocol udp or tcp is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:965
++msgid "Port is required"
 +msgstr ""
-+"Engedélyezze a xguest SELinux felhasználónak a fájlok futtatását a saját "
-+"könyvtárban vagy /tmp-ben"
 +
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
++#: ../semanage/seobject.py:975
++msgid "Invalid Port"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Démonok NIS-szel futtatásának engedélyezése"
++#: ../semanage/seobject.py:979
++#, python-format
++msgid "Could not create a key for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Webalkalmazások"
++#: ../semanage/seobject.py:990
++msgid "Type is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "A staff SELinux felhasználó átmenete Webböngésző tartományba"
++#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
++#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
++#, python-format
++msgid "Could not check if port %s/%s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "A sysadm SELinux felhasználó átmenete Webböngésző tartományba"
++#: ../semanage/seobject.py:998
++#, python-format
++msgid "Port %s/%s already defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "A user SELinux felhasználó átmenete Webböngésző tartományba"
++#: ../semanage/seobject.py:1002
++#, python-format
++msgid "Could not create port for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Az xguest SELinux felhasználó átmenete Webböngésző tartományba"
++#: ../semanage/seobject.py:1008
++#, python-format
++msgid "Could not create context for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
++#: ../semanage/seobject.py:1012
++#, python-format
++msgid "Could not set user in port context for %s/%s"
 +msgstr ""
-+"A staff webböngészőknek a felhasználók saját könyvtáraiba írás engedélyezése"
 +
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Az amanda SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1016
++#, python-format
++msgid "Could not set role in port context for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Az amavis SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1020
++#, python-format
++msgid "Could not set type in port context for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Az apmd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1025
++#, python-format
++msgid "Could not set mls fields in port context for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Az arpwatch démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1029
++#, python-format
++msgid "Could not set port context for %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Az auditd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1033
++#, python-format
++msgid "Could not add port %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Az automount démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
++#: ../semanage/seobject.py:1508
++msgid "Requires setype or serange"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Az avachi SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1049
++msgid "Requires setype"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "A bluetooth démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
++#, python-format
++msgid "Port %s/%s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "A canna démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1061
++#, python-format
++msgid "Could not query port %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "A cardmgr démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1072
++#, python-format
++msgid "Could not modify port %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "A Fürt Kiszolgáló SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1085
++msgid "Could not list the ports"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
++#: ../semanage/seobject.py:1101
++#, python-format
++msgid "Could not delete the port %s"
 +msgstr ""
-+"Engedélyezze, hogy a cdrecord különböző tartalmakat olvasson. nfs, samba, "
-+"eltávolítható eszközök, felhasználói temp és nem megbízható tartalomfájlok"
 +
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "A ciped démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1118
++#, python-format
++msgid "Port %s/%s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "A clamd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1122
++#, python-format
++msgid "Could not delete port %s/%s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "A clamscan SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
++msgid "Could not list ports"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "A clvmd SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1199
++msgid "SELinux Port Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "A comstat démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1199
++msgid "Proto"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "A courier démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
++msgid "Port Number"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "A cpucontrol démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1218
++msgid "Node Address is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "A cpuspeed SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1233
++msgid "Unknown or missing protocol"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
++#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
++#: ../semanage/seobject.py:1724
++msgid "SELinux Type is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "A crond SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
++#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
++#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
++#: ../semanage/seobject.py:1728
++#, python-format
++msgid "Could not create key for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Nyomtatás"
++#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
++#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
++#, python-format
++msgid "Could not check if addr %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "A cupsd back end kiszolgáló SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1262
++#, python-format
++msgid "Could not create addr for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "A cupsd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
++#: ../semanage/seobject.py:1686
++#, python-format
++msgid "Could not create context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "A cupsd_lpd SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1272
++#, python-format
++msgid "Could not set mask for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
++#: ../semanage/seobject.py:1276
++#, python-format
++msgid "Could not set user in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "A cvs démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1280
++#, python-format
++msgid "Could not set role in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "A cyrus démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1284
++#, python-format
++msgid "Could not set type in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "A dbskkd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1289
++#, python-format
++msgid "Could not set mls fields in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "A dbus démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1293
++#, python-format
++msgid "Could not set addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "A dccd SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1297
++#, python-format
++msgid "Could not add addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "A dccifd SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
++#, python-format
++msgid "Addr %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "A dccm SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1326
++#, python-format
++msgid "Could not query addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "A ddt démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1336
++#, python-format
++msgid "Could not modify addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "A devfsd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1364
++#, python-format
++msgid "Addr %s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "A dhcpc démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1368
++#, python-format
++msgid "Could not delete addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "A dhcpd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1380
++msgid "Could not deleteall node mappings"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "A dictd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1394
++msgid "Could not list addrs"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Engedélyezze, hogy a sysadm_t közvetlenül indíthasson démonokat"
++#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
++#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
++#, python-format
++msgid "Could not check if interface %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Az Evolution SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1461
++#, python-format
++msgid "Could not create interface for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Játékok"
++#: ../semanage/seobject.py:1470
++#, python-format
++msgid "Could not set user in interface context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "A játékok SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1474
++#, python-format
++msgid "Could not set role in interface context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "A webböngészők SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1478
++#, python-format
++msgid "Could not set type in interface context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "A Thunderbird SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1483
++#, python-format
++msgid "Could not set mls fields in interface context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "A distccd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not set interface context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "A dmesg démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1491
++#, python-format
++msgid "Could not set message context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "A dnsmasq démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1495
++#, python-format
++msgid "Could not add interface %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "A dovecot démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
++#, python-format
++msgid "Interface %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Az entropyd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1522
++#, python-format
++msgid "Could not query interface %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "A fetchmail SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1533
++#, python-format
++msgid "Could not modify interface %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "A fingerd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1558
++#, python-format
++msgid "Interface %s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "A freshclam démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1562
++#, python-format
++msgid "Could not delete interface %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Az fsdaemon démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1574
++msgid "Could not delete all interface  mappings"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "A gpm démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1588
++msgid "Could not list interfaces"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
++#: ../semanage/seobject.py:1613
++msgid "SELinux Interface"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "A gss démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
++msgid "Context"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "A Hal démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1663
++#, python-format
++msgid "Equivalence class for %s already exists"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Kompatibilitás"
++#: ../semanage/seobject.py:1669
++#, python-format
++msgid "File spec %s conflicts with equivalency rule '%s %s'"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
++#: ../semanage/seobject.py:1678
++#, python-format
++msgid "Equivalence class for %s does not exists"
 +msgstr ""
-+"Ne vizsgáljon olyan dolgokat, amelyekről tudjuk, hogy hibásak, de nem "
-+"jelentenek biztonsági rést"
 +
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "A hostname démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1692
++#, python-format
++msgid "Could not set user in file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "A hotplug démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1696
++#, python-format
++msgid "Could not set role in file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "A howl démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
++#, python-format
++msgid "Could not set mls fields in file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "A cups hplib démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1707
++msgid "Invalid file specification"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "A httpd rotatelogs SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1709
++msgid "File specification can not include spaces"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD Szolgáltatás"
++#: ../semanage/seobject.py:1714
++#, python-format
++msgid ""
++"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "A http suexec SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
++#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
++#: ../semanage/seobject.py:1876
++#, python-format
++msgid "Could not check if file context for %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "A hwclock démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1745
++#, python-format
++msgid "Could not create file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Az i18n démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1753
++#, python-format
++msgid "Could not set type in file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Az imazesrv démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
++#: ../semanage/seobject.py:1822
++#, python-format
++msgid "Could not set file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Az inetd gyermek démonainak SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1767
++#, python-format
++msgid "Could not add file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Az inetd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1781
++msgid "Requires setype, serange or seuser"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Az innd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
++#, python-format
++msgid "File context for %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Az iptables démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1800
++#, python-format
++msgid "Could not query file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Az ircd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1826
++#, python-format
++msgid "Could not modify file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Az irqbalance démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1839
++msgid "Could not list the file contexts"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Az iscsi démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1853
++#, python-format
++msgid "Could not delete the file context %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "A jabberd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1878
++#, python-format
++msgid "File context for %s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
++#: ../semanage/seobject.py:1884
++#, python-format
++msgid "Could not delete file context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "A kabmid démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1899
++msgid "Could not list file contexts"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "A klogd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1903
++msgid "Could not list local file contexts"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "A krb5kdc démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1936
++msgid "SELinux fcontext"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "A ktalk SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1936
++msgid "type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "A kudzu démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1949
++msgid ""
++"\n"
++"SELinux Distribution fcontext Equivalence \n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "A locate démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1954
++msgid ""
++"\n"
++"SELinux Local fcontext Equivalence \n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Z lpd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
++#: ../semanage/seobject.py:2046
++#, python-format
++msgid "Could not check if boolean %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Az lrrd SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
++#, python-format
++msgid "Boolean %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Az lvm démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1994
++#, python-format
++msgid "Could not query file context %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "A mailman SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:1999
++#, python-format
++msgid "You must specify one of the following values: %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
++#: ../semanage/seobject.py:2004
++#, python-format
++msgid "Could not set active value of boolean %s"
 +msgstr ""
-+"A thunderbird és evolution számára engedélyezze a felhasználói fájlok "
-+"olvasását"
 +
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Az mdadm démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2007
++#, python-format
++msgid "Could not modify boolean %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "A monopd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2025
++#, python-format
++msgid "Bad format %s: Record %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
++#: ../semanage/seobject.py:2048
++#, python-format
++msgid "Boolean %s is defined in policy, cannot be deleted"
 +msgstr ""
-+"A mozilla böngésző számára engedélyezze a felhasználói fájlok olvasását"
 +
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Az mrtg démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2052
++#, python-format
++msgid "Could not delete boolean %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "A mysqld démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
++msgid "Could not list booleans"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "A nagios démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2104
++msgid "unknown"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Név Szolgáltatás:"
++#: ../semanage/seobject.py:2117
++msgid "off"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "A named démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2117
++msgid "on"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "A nessusd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2131
++msgid "SELinux boolean"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "A Hálózatkezelő SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2131
++msgid "State"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Az nfsd démon SELinux védelmének kikapcsolása"
++#: ../semanage/seobject.py:2131
++msgid "Default"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
++msgid "Description"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Az nmbd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:201
++#, c-format
++msgid "failed to set PAM_TTY\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Az nrpe démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:290
++#, c-format
++msgid "newrole: service name configuration hashtable overflow\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Az nscd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:300
++#, c-format
++msgid "newrole:  %s:  error on line %lu.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Az nsd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:439
++#, c-format
++msgid "cannot find valid entry in the passwd file.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Az ntpd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:450
++#, c-format
++msgid "Out of memory!\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Az oddjob SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:455
++#, c-format
++msgid "Error!  Shell is not valid.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Az oddjob_mkhomedir SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:512
++#, c-format
++msgid "Unable to clear environment\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Az openvpn démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
++#, c-format
++msgid "Error changing uid, aborting.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "A pam démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:612
++#, c-format
++msgid "Error resetting KEEPCAPS, aborting\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "A pegasus SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:635
++#, c-format
++msgid "Error connecting to audit system.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "A perdition démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:641
++#, c-format
++msgid "Error allocating memory.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "A portmap démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:648
++#, c-format
++msgid "Error sending audit message.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "A portslave démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
++#, c-format
++msgid "Could not determine enforcing mode.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "A postfix SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:699
++#, c-format
++msgid "Error!  Could not open %s.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "A postgresql démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:705
++#, c-format
++msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
++#: ../newrole/newrole.c:715
++#, c-format
++msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "A pppd átlagos felhasználó általi futtatásának engedélyezése"
++#: ../newrole/newrole.c:725
++#, c-format
++msgid "%s!  Could not set new context for %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "A pptp SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:772
++#, c-format
++msgid "%s changed labels.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "A prelink démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:778
++#, c-format
++msgid "Warning! Could not restore context for %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "A privoxy démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:835
++#, c-format
++msgid "Error: multiple roles specified\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "A ptal démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:843
++#, c-format
++msgid "Error: multiple types specified\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "A pxe démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:850
++#, c-format
++msgid "Sorry, -l may be used with SELinux MLS support.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "A pyzord démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:855
++#, c-format
++msgid "Error: multiple levels specified\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "A quota démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:865
++#, c-format
++msgid "Error: you are not allowed to change levels on a non secure terminal \n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "A radiusd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:891
++#, c-format
++msgid "Couldn't get default type.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "A radvd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:901
++#, c-format
++msgid "failed to get new context.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Az rdisc SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:908
++#, c-format
++msgid "failed to set new role %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "A readahead SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:915
++#, c-format
++msgid "failed to set new type %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
++#: ../newrole/newrole.c:925
++#, c-format
++msgid "failed to build new range with level %s\n"
 +msgstr ""
-+"Engedélyezze a programoknak, hogy nem-szabványos helyekről olvassanak "
-+"fájlokat (default_t)"
 +
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "A restorecond SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:930
++#, c-format
++msgid "failed to set new range %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Az rhgb démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:938
++#, c-format
++msgid "failed to convert new context to string\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "A ricci SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:943
++#, c-format
++msgid "%s is not a valid context\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "A ricci_modclustered SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:950
++#, c-format
++msgid "Unable to allocate memory for new_context"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Az rlogin démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:976
++#, c-format
++msgid "Unable to obtain empty signal set\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Az rpcd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:984
++#, c-format
++msgid "Unable to set SIGHUP handler\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Az rshd SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:1053
++#, c-format
++msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
++#: ../newrole/newrole.c:1070
++#, c-format
++msgid "failed to get old_context.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Az rsync démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:1077
++#, c-format
++msgid "Warning!  Could not retrieve tty information.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Az ssh nem démonként, hanem inetd-ből való futtatásának engedélyezése"
++#: ../newrole/newrole.c:1098
++#, c-format
++msgid "error on reading PAM service configuration.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Az nfs könyvtárak megosztásának engedélyezése Samba-val"
++#: ../newrole/newrole.c:1133
++#, c-format
++msgid "newrole: incorrect password for %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL hitelesítő kiszolgáló"
++#: ../newrole/newrole.c:1160
++#, c-format
++msgid "newrole: failure forking: %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
++#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
++#, c-format
++msgid "Unable to restore tty label...\n"
 +msgstr ""
-+"A /etc/shadow olvasásának engedélyezése az sasl hitelesítő kiszolgáló számára"
 +
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
++#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
++#, c-format
++msgid "Failed to close tty properly\n"
 +msgstr ""
-+"Engedélyezze az X-Ablakok kiszolgálónak egyszerre futtatható és írható "
-+"memória régió feltérképezését"
 +
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Az saslauthd démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:1224
++#, c-format
++msgid "Could not close descriptors.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "A scannerdaemon démon SELinux védelmének kikapcsolása"
++#: ../newrole/newrole.c:1251
++#, c-format
++msgid "Error allocating shell's argv0.\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Ne engedélyezzen átmenetet a sysadm_t-ba, sudo és su esetén"
++#: ../newrole/newrole.c:1287
++#, c-format
++msgid "Unable to restore the environment, aborting\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Ne engedélyezze bármely folyamatnak, hogy kernelmodulokat töltsön be"
++#: ../newrole/newrole.c:1298
++msgid "failed to exec shell\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
++#: ../load_policy/load_policy.c:22
++#, c-format
++msgid "usage:  %s [-qi]\n"
 +msgstr ""
-+"Ne engedélyezze bármely folyamatnak az kernel SELinux házirend módosítását"
 +
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "A sendmail démon SELinux védelmének kikapcsolása"
++#: ../load_policy/load_policy.c:71
++#, c-format
++msgid "%s:  Policy is already loaded and initial load requested\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Az setrans SELinux védelmének kikapcsolása"
++#: ../load_policy/load_policy.c:80
++#, c-format
++msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Az setroubleshoot démon SELinux védelmének kikapcsolása"
++#: ../load_policy/load_policy.c:90
++#, c-format
++msgid "%s:  Can't load policy:  %s\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "A slapd démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:92 ../scripts/chcat:169
++msgid "Requires at least one category"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Az slrnpull démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:106 ../scripts/chcat:183
++#, c-format
++msgid "Can not modify sensitivity levels using '+' on %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Az smbd démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:110
++#, c-format
++msgid "%s is already in %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Az snmpd démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:188 ../scripts/chcat:198
++#, c-format
++msgid "%s is not in %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "A snort démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:267 ../scripts/chcat:272
++msgid "Can not combine +/- with other types of categories"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "A soundd démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:319
++msgid "Can not have multiple sensitivities"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "A sound démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:325
++#, c-format
++msgid "Usage %s CATEGORY File ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Levélszemét Védelem"
++#: ../scripts/chcat:326
++#, c-format
++msgid "Usage %s -l CATEGORY user ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "A spamd démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:327
++#, c-format
++msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Engedélyezze a spamd-nek a felhasználók saját könyvtárainak elérését"
++#: ../scripts/chcat:328
++#, c-format
++msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "A Spam Assassin démon hálózatelérésének engedélyezése"
++#: ../scripts/chcat:329
++#, c-format
++msgid "Usage %s -d File ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "A speedmgmt démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:330
++#, c-format
++msgid "Usage %s -l -d user ..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
++#: ../scripts/chcat:331
++#, c-format
++msgid "Usage %s -L"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "A squid démon hálózati kapcsolódásának engedélyezése"
++#: ../scripts/chcat:332
++#, c-format
++msgid "Usage %s -L -l user"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "A squid démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:333
++msgid "Use -- to end option list.  For example"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Az ssh démon SELinux védelmének kikapcsolása"
++#: ../scripts/chcat:334
++msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "A sysadm_r:sysadm_t ssh bejelentkezések engedélyezése"
++#: ../scripts/chcat:335
++msgid "chcat -l +CompanyConfidential juser"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:189
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
++msgid "Options Error %s "
++msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
++#: ../gui/fcontextPage.py:74
 +msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
++"File\n"
++"Specification"
 +msgstr ""
-+"Engedélyezze, hogy a staff_r felhasználók keressenek és olvashassák a "
-+"fájlokat (mint pl.: ~/.bashrc) a sysadm saját könyvtárában"
 +
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Univerzális SSL alagút"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Az stunnel démon SELinux védelmének kikapcsolása"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Az stunnel számára a különálló, xinetd-n kívüli futás engedélyezése"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "A swat démon SELinux védelmének kikapcsolása"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "A sxid démon SELinux védelmének kikapcsolása"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "A syslogd démon SELinux védelmének kikapcsolása"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "A rendszer cron feladatok SELinux védelmének kikapcsolása"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "A tcp démon SELinux védelmének kikapcsolása"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "A telnet démon SELinux védelmének kikapcsolása"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "A tftpd démon SELinux védelmének kikapcsolása"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "A transproxy démon SELinux védelmének kikapcsolása"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Az udev démon SELinux védelmének kikapcsolása"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Az uml démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:202
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
++
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
++
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
 +msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+"A xinetd korlátozás nélküli futtatásának engedélyezése, beleértve minden "
-+"olyan elindított szolgáltatását, amelynek nincs explicit megadott tartomány "
-+"átmenete"
 +
-+#: ../gui/selinux.tbl:203
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Az rc szkriptek korlátozás nélküli futtatásának engedélyezése, beleértve "
-+"minden olyan démont, amelyet egy rc szkript indít, aminek nincs explicit "
-+"definiált tartomány átmenete"
 +
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Az rpm korlátozás nélküli futtatásának engedélyezése"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
 +msgstr ""
-+"A kiváltságos segédprogramok, mint hotplug és insmod korlátozás nélküli "
-+"futtatásának engedélyezése"
 +
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Az updfstab démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Az uptimed démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:208
++#: ../gui/polgen.glade:301
 +msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"A sysadm_r su-val, sudo-val, vagy userhelper-rel elérésének engedélyezése a "
-+"user_r számára. Egyébként csak a staff_r teheti ezt meg"
 +
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "A mount parancs használatának engedélyezése a felhasználók számára"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
-+"Közvetlen egér-hozzáférés engedélyezése az átlagos felhasználóknak (csak az "
-+"X kiszolgáló engedélyezése)"
 +
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "A dmesg parancs futtatásának engedélyezése a felhasználóknak"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
 +msgstr ""
-+"A hálózati interfészek vezérlésének engedélyezése a felhasználóknak "
-+"(szükséges a USERCTL=igaz is)"
 +
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "A ping futtatásának engedélyezése a normál felhasználónak"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
 +msgstr ""
-+"A felhasználó számára az noextattrfile írás/olvasás engedélyezése (FAT, "
-+"CDROM, FLOPPY)"
 +
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "USB eszközök írásának és olvasásának engedélyezése a felhasználóknak"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:216
++#: ../gui/polgen.glade:474
 +msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"TCP kiszolgálók futtatásának engedélyezése a felhasználóknak (portok kötése "
-+"és kapcsolatok fogadása ugyanabból a tartományból és külső felhasználóktól)  "
-+"ennek a letiltása kikényszeríti az FTP passzív módot és más protokollokat is "
-+"megváltoztathat"
 +
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "A tty fájlok statisztikáinak engedélyezése a felhasználók számára"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Az uucpd démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "A vmware démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "A watchdog démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "A winbind démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Az xdm démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "A sysadm_r:sysadm_t xdm bejelentkezések engedélyezése"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "A xen démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "A xen számára a fizikai lemezek olvasásának/írásának engedélyezése"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Az xfs démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "A xen vezérlés SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Az ypbind démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Az NIS Jelszó Démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Az ypserv démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Az NIS Transzfer Démon SELinux védelmének kikapcsolása"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++#: ../gui/polgen.glade:871
++msgid "Executable"
 +msgstr ""
-+"A nem kiváltságos felhasználói saját könyvtárak menedzselésének "
-+"engedélyezése az SELinux webadm felhasználónak"
 +
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
++#: ../gui/polgen.glade:899
++msgid "Init script"
 +msgstr ""
-+"A nem kiváltságos felhasználói saját könyvtárak olvasásának engedélyezése az "
-+"SELinux webadm felhasználónak"
 +
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Biztos, hogy törölni akarja a %st: '%s'?"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
 +
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s törlése"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s hozzáadása"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
 +
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s módosítása"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Megengedő"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Kikényszerítő"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Kikapcsolva"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
 +
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Állapot"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
 +
-+#: ../gui/statusPage.py:133
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"A házirend típus megváltoztatása miatt az egész fájlrendszert újra kell "
-+"címkézni a következő újraindításkor. Az újracímkézés hosszú időt vehet "
-+"igénybe a fájlrendszer méretétől függően.  Folytatja?"
 +
-+#: ../gui/statusPage.py:147
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
++
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Az SELinux kikapcsolása újraindítást igényel.  Ez nem ajánlott.  Ha később "
-+"úgy dönt, hogy ismét bekapcsolja az SELinux-ot, szükség lesz a rendszer "
-+"újracímkézésére.  Ha csak azt szeretné megnézni, hogy az SELinux okoz-e "
-+"problémát a rendszerén, akkor átválthat megengedő módba, amelyik csak "
-+"naplózza a hibákat és nem kényszeríti ki az SELinux házirend betartását.  A "
-+"megengedő mód nem igényel újraindítást    Folytatja?"
 +
-+#: ../gui/statusPage.py:152
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Az SELinux engedélyezése miatt újra kell címkéznie az egész fájlrendszert a "
-+"következő újraindításkor. Az újracímkézés hosszú időt vehet igénybe a "
-+"fájlrendszer méretétől függően.  Folytatja?"
 +
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:12
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
++
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
++
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
++
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
++
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
++
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
++
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
++
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "SELinux bejelentkezés hozzárendelés hozzáadása"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux hálózati portok hozzáadása"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux típus"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:622
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
++
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
++
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
++
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
++
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
++
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
++
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
++
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
++
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
++
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
++
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
++
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
++
++#: ../gui/polgengui.py:649
++#, python-format
 +msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Szint"
 +
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Fájl Specifikáció"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Fájltípus"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/polgengui.py:699
 +msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+"minden fájl\n"
-+"átlagos fájl\n"
-+"könyvtár\n"
-+"karakteres eszköz\n"
-+"blokk eszköz\n"
-+"csatlakozó\n"
-+"szimbolikus link\n"
-+"nevesített csővezeték\n"
 +
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux felhasználó hozzáadása"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux Adminisztráció"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Hozzáadás"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Tulajdonságok"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Törlés"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Menedzsment objektum kiválasztása"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Kiválasztás:</b>"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Rendszer alapértelmezett kikényszerítő mód"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
++
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
++
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
++
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
++
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
++
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/polgen.py:1290
++#, python-format
 +msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
 +msgstr ""
-+"Kikapcsolva\n"
-+"Megengedő\n"
-+"Kikényszerítő\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Jelenlegi kikényszerítő mód"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Rendszer alapértelmezett házirend típus:"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/portsPage.py:85
 +msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
++"SELinux Port\n"
++"Type"
 +msgstr ""
-+"Válassza ki, ha újra szeretné címkézni az egész fájlrendszert a következő "
-+"újraindításkor.  Az újracímkézés hosszú időt vehet igénybe a fájlrendszer "
-+"méretétől függően.  Ha megváltoztatja a házirend típusát, vagy kikapcsolt "
-+"állapotról vált kikényszerítőre, akkor újracímkézésre van szükség."
 +
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Újracímkézés a következő újraindításkor."
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "A logikai beállítások visszaállítása alapértelmezettre"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Átkapcsolás testre szabott és Minden logikai érték között"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "A logikai értékeket lezáró varázsló futtatása"
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Zárolás..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Szűrő"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Fájlkontextus hozzáadása"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Fájlkontextus módosítása"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Fájlkontextus törlése"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Átváltás minden és testre szabott fájl kontextus között"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux felhasználó hozzárendelés hozzáadása"
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux felhasználó hozzárendelés szerkesztése"
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux felhasználó hozzárendelés törlése"
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Felhasználó hozzáadása"
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Felhasználó módosítása"
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Felhasználó törlése"
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
++
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
++
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Fordítás hozzáadása"
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Fordítás módosítása"
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Fordítás törlése"
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Hálózati port hozzáadása"
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Hálózati port szerkesztése"
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Hálózati port törlése"
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Átkapcsolás Testre szabott ás Minden Port között"
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Új házirend modul generálása"
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Házirend modul betöltése"
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "A betölthető házirend modul eltávolítása"
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/selinux.tbl:20
 +msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Engedélyezze/Tiltsa le a további vizsgálati szabályokat, amelyek normálisan "
-+"nincsenek jelentve a napló fájlokban."
 +
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Váltás megengedő módra"
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "SELinux kikényszerítő módjának bekapcsolása"
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Tartomány feldolgozása"
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
 +
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux felhasználó '%s' szükséges"
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
 +
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Érzékenységi szint"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "a fordítások nem támogatottak a nem MLS-es gépeken"
-+
-+#~ msgid ""
-+#~ "tcp\n"
-+#~ "udp"
-+#~ msgstr ""
-+#~ "tcp\n"
-+#~ "udp"
-+
-+#~ msgid "Modify SELinux User"
-+#~ msgstr "SELinux felhasználó szerkesztése"
- #~ msgid "Requires value"
- #~ msgstr "Meg kell adni egy értéket"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils-2.0.85/po/hy.po
---- nsapolicycoreutils/po/hy.po        2011-02-17 15:11:24.927738117 -0500
-+++ policycoreutils-2.0.85/po/hy.po    2011-02-18 16:03:41.378975814 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
 +
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
 +
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:52
++#: ../gui/selinux.tbl:41
 +msgid ""
-+"Login\n"
-+"Name"
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
++#: ../gui/selinux.tbl:54
++msgid "Cron"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
 +
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/selinux.tbl:58
++msgid "CVS"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
++#: ../gui/selinux.tbl:72
++msgid "Games"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
-+msgid "Role"
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++#: ../gui/selinux.tbl:141
++msgid "pppd"
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:101
-+msgid "Port"
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:252
-+msgid "List View"
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
++#: ../gui/selinux.tbl:161
++msgid "rsync"
 +msgstr ""
 +
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:162
@@ -108382,18 +111650,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -108434,7 +111698,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -108443,25 +111706,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -108473,58 +111730,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -108532,169 +111789,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -108702,965 +111942,94 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hy.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils-2.0.85/po/id.po
---- nsapolicycoreutils/po/id.po        2011-02-17 15:11:25.825723306 -0500
-+++ policycoreutils-2.0.85/po/id.po    2011-02-18 16:03:41.378975814 -0500
-@@ -1,3 +1,20 @@
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -100,7 +117,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -152,736 +170,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
+diff --git a/policycoreutils/po/is.po b/policycoreutils/po/is.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/is.po
++++ b/policycoreutils/po/is.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1252,3 +1277,2064 @@
- #, c-format
- msgid "Options Error %s "
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -109669,13 +112038,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -109697,7 +112066,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -109724,7 +112093,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -109732,15 +112101,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -109765,481 +112130,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -110272,7 +112697,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -111400,18 +113825,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -111452,7 +113873,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -111461,25 +113881,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -111491,58 +113905,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -111550,169 +113964,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -111720,1753 +114117,2138 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/id.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils-2.0.85/po/is.po
---- nsapolicycoreutils/po/is.po        2011-02-17 15:11:25.943721358 -0500
-+++ policycoreutils-2.0.85/po/is.po    2011-02-18 16:03:41.378975814 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/it.po b/policycoreutils/po/it.po
+index 5e8f8e1..cd444fc 100644
+--- a/policycoreutils/po/it.po
++++ b/policycoreutils/po/it.po
+@@ -1,21 +1,23 @@
+-# translation of it.po to
+-# This file is distributed under the same license as the policycoreutils package.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
+-# Francesco Tombolini <tombo@adamantio.net>, 2006, 2007, 2008.
++# Translators:
++# Francesco Tombolini <tombo@adamantio.net>, 2006, 2007, 2008, 2009.
++# Silvio Pierro <perplesso82@gmail.com>, 2008.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: it\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-07-13 01:02+0200\n"
+-"Last-Translator: Francesco Tombolini <tombo@adamantio.net>\n"
+-"Language-Team: Italian <fedora-trans-it@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Italian <trans-it@lists.fedoraproject.org>\n"
+ "Language: it\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KAider 0.1\n"
+-"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+@@ -111,9 +113,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Impossibile stabilire connessione semanage"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Impossibile impostare range MLS per %s"
++msgstr "Impossibile verificare lo stato MLS abilitato"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -121,36 +122,33 @@ msgstr "Non ancora implementato"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Una transazione semanage è già in esecuzione"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "Impossibile avviare transazione semanage"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Impossibile avviare transazione semanage"
++msgstr "Impossibile eseguire la transazione semanage"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Transazione semanage non in esecuzione"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Impossibile elencare gli utenti SELinux"
++msgstr "Impossibile elencare i moduli SELinux"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Nome della policy"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versione"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Disabilitato"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -160,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Impossibile aggiungere il ruolo %s per %s"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -174,24 +172,24 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Tipi permissivi"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Tipi permissivi"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
+ msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
++"Impossibile impostare il dominio permissive %s (installazione del modulo "
++"fallita)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "Impossibile rimuovere il dominio permissive %s (rimozione fallita)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -211,9 +209,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Impossibile controllare se è definito il login mapping per %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "L'utente linux %s non esiste"
++msgstr "Il gruppo linux %s non esiste"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -281,15 +279,20 @@ msgid "Could not list login mappings"
+ msgstr "Impossibile elencare i login mappings"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "Nome di registrazione"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "Utente di SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "Gamma MLS/MCS"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -307,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "Impossibile interrogare l'utente per %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Impossibile aggiungere il contesto del file per %s"
++msgstr "Si deve aggiungere almeno un ruolo per %s"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -399,6 +402,7 @@ msgid "MCS Range"
+ msgstr "Gamma MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "Ruoli SELinux"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -411,9 +415,8 @@ msgid "Port is required"
+ msgstr "E' richiesta la porta"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Prefisso non valido %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -530,18 +533,17 @@ msgstr "Tipo di porta SELinux"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "Numero porta"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "E' richiesta la porta"
++msgstr "L'indirizzo del nodo è necessario"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "Protocollo mancante o sconosciuto"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -558,14 +560,14 @@ msgstr "Impossibile creare la chiave per %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "Impossibile controllare se la porta %s/%s è definita"
++msgstr "Impossibile controllare se la porta %s è definita"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "Impossibile creare una chiave per %s"
++msgstr "Impossibile creare un indirizzo per %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -574,74 +576,72 @@ msgid "Could not create context for %s"
+ msgstr "Impossibile creare il contesto per %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "Impossibile impostare nome per %s"
++msgstr "Impossibile impostare una maschera per %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "Impossibile impostare l'utente nel contesto del file per %s"
++msgstr "Impossibile impostare l'utente nel contesto indirizzo per %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "Impossibile impostare il ruolo nel contesto del file per %s"
++msgstr "Impossibile impostare il ruolo nel contesto indirizzo per %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "Impossibile impostare il tipo nel contesto del file per %s"
++msgstr "Impossibile impostare il tipo nel contesto indirizzo per %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "Impossibile impostare i campi mls nel contesto del file per %s"
++msgstr "Impossibile impostare i campi mls nel contesto indirizzo per %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "Impossibile impostare il contesto del file per %s"
++msgstr "Impossibile impostare il contesto indirizzo per %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "Impossibile aggiungere la porta %s/%s"
++msgstr "Impossibile aggiungere l'indirizzo %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "La porta %s/%s non è definita"
++msgstr "Indirizzo %s non definito"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "Impossibile interrogare la porta %s/%s"
++msgstr "Impossibile interrogare l'indirizzo %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "Impossibile modificare la porta %s/%s"
++msgstr "Impossibile modificare l'indirizzo %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "La porta %s/%s è definita nella policy, non può essere eliminata"
++msgstr "L'indirizzo %s è definito nella policy, non può essere eliminato"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "Impossibile eliminare %s"
++msgstr "Impossibile eliminare l'indirizzo %s"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Impossibile eliminare il login mapping per %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Impossibile elencare le porte"
++msgstr "Impossibile elencare gli indirizzi"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -715,9 +715,8 @@ msgid "Could not delete interface %s"
+ msgstr "Impossibile eliminare l'interfaccia %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Impossibile eliminare l'interfaccia %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+@@ -732,9 +731,9 @@ msgid "Context"
+ msgstr "Contesto"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Contesto del file per %s già definito"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
+@@ -742,9 +741,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "L'utente linux %s non esiste"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -865,11 +864,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "fcontext di SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -888,9 +886,9 @@ msgid "Could not query file context %s"
+ msgstr "Impossibile interrogare il contesto del file %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "È necessario specificare un valore"
++msgstr "E' necessario specificare uno dei seguenti valori: %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2004
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -905,7 +903,7 @@ msgstr "Impossibile modificare la booleana %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Formato non valido %s: Record %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -938,15 +936,15 @@ msgid "SELinux boolean"
+ msgstr "Booleana di SELinux"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Stato"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "Descrizione"
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+@@ -1292,1791 +1290,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "Errore opzioni %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Impossibile aprire %s: traduzioni non supportate su macchine non-MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "Livello"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "Traduzione"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Le traduzioni non possono contenere spazi '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Livello non valido '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s già definito nelle traduzioni"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s non definito nelle traduzioni"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Il login mapping per %s è già definito"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "aggiungi mappatura dell'utente di SELinux"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "L'utente SELinux %s è già definito"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "E' richiesta la porta"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Porta %s/%s già definita"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Interfaccia %s già definita"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Errore inizializzazione capacità, abbandono.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Errore impostazione capacità, abbandono.\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Errore impostazione KEEPCAPS, abbandono\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Errore rilascio capacità, abbandono\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Errore rilascio capacità SETUID, abbandono\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Errore nel liberare caps\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "traduzioni non supportate su macchine non-MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "Boolean"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "Tutte/i"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "Personalizzato"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "File Labeling"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Specifiche\n"
+-#~ "del file"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Tipo di file\n"
+-#~ "Selinux"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Tipo\n"
+-#~ "di file"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "User Mapping"
+-#~ msgstr "Mappatura utente"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Nome\n"
+-#~ "di login"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Utente"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "Gamma MCS/\n"
+-#~ "MLS"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Il login '%s' è necessario"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Modulo della policy"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Disabilita audit"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Abilita audit"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Carica modulo della policy"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "crediti-traduttore"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Tool di generazione della policy di SELinux"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "Questo tool può essere usato per generare una struttura per la policy, "
+-#~ "per confinare le applicazioni o gli utenti che utilizzano SELinux.   \n"
+-#~ "\n"
+-#~ "Il tool genera:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - usato per compilare ed installare la policy. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Selezionare il tipo di ruolo utente/applicazione da confinare"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Applicazioni</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Il demone init standard è un demone avviato al momento dell'avvio tramite "
+-#~ "gli script init.  Generalmente richiede uno script in /etc/init.d"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Demone init standard"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Internet Services Daemon sono demoni avviati da xinetd"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Internet Services Daemon (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "Script CGI Web Applications/Script (CGI) vengono avviati dal server web "
+-#~ "(apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Web Application/Script (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Una User Application rappresenta qualsiasi applicazione che desiderate "
+-#~ "confinare avviata da un utente"
+-
+-#~ msgid "User Application"
+-#~ msgstr "User Application"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Utenti di registrazione</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "Modifica una voce esistente dell'utente di registrazione."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "Utenti esistenti"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "Questo utente eseguirà la registrazione solo tramite un terminale o un "
+-#~ "login remoto.  Per default il suddetto utente non avrà alcun setuid, no "
+-#~ "networking, no su e no sudo."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "Ruolo utente del terminale minimo"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "Questo utente può registrarsi ad una macchina tramite X o terminale.  Per "
+-#~ "default il suddetto utente non avrà alcun setuid, nessun networking, no "
+-#~ "sudo, e no su"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "Ruolo utente X Windows minimo"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "Utente con networking conpleto, nessuna applicazione setuid senza "
+-#~ "transizione, no sudo e no su."
+-
+-#~ msgid "User Role"
+-#~ msgstr "Ruolo utente"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "Utente con un network completo, nessuna applicazione setuid senza "
+-#~ "transizione, no su, può eseguire il sudo nei ruoli di amministrazione root"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "Ruolo Utente amministratore"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Utenti root</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Selezionare il Ruolo utente amministratore root, se l'utente verrà "
+-#~ "impiegato per amministrare la macchina operando come utente root.  Il "
+-#~ "suddetto utente non sarà in grado di eseguire il login diretto sul "
+-#~ "sistema."
+-
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Ruolo utente amministratore root"
+-
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr ""
+-#~ "Inserisci il nome dell'applicazione o il ruolo dell'utente da confinare"
+-
+-#~ msgid "Name"
+-#~ msgstr "Nome"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Inserire il percorso completo per confinare l'eseguibile."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Inserire un nome unico per un ruolo utente o applicazione confinata."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Eseguibile"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Script init"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Inserire il percorso completo sullo script init usato per avviare "
+-#~ "l'applicazione confinata."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "Selezionare i ruoli utente che desiderate personalizzare"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr ""
+-#~ "Selezionare i ruoli utente che eseguiranno la transizione a questi domini "
+-#~ "delle applicazioni. "
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr ""
+-#~ "Selezionare i domini aggiuntivi ai quali questo ruolo utente eseguirà la "
+-#~ "transizione"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Selezionare i domini delle applicazioni dasiderati per la transizione di "
+-#~ "questo ruolo utente."
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr ""
+-#~ "Selezionare i ruoli utente che eseguiranno la transizione a questo dominio"
+-
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr ""
+-#~ "Selezionare i domini aggiuntivi che questo utente dovrà amministrare"
+-
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "Selezionare i domini che si desidera che questo utente amministri."
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Selezionare i ruoli aggiuntivi per questo utente"
+-
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr ""
+-#~ "Inserisci le porte di rete alle quali un ruolo utente/applicazione è in "
+-#~ "ascolto"
+-
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>Porte TCP</b>"
+-
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
+-#~ "porta udp"
+-
+-#~ msgid "All"
+-#~ msgstr "Tutte/i"
+-
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Permetti ad un ruolo utente/applicazione di chiamare bindresvport con 0. "
+-#~ "Binding alle porte 600-1024 in corso"
+-
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Inserisci un elenco di porte udp o una gamma di porte separato da "
+-#~ "virgole, alle quali un ruolo utente/applicazione può eseguire il bind. Ad "
+-#~ "esempio: 612, 650-660"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Porte non riservate (>1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Seleziona porte"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
+-#~ "porta udp > 1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>Porte UDP</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Inserisci le porte di rete alle quali un ruolo utente/applicazione può "
+-#~ "collegarsi"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Inserire un elenco di porte tcp o una gamma di porte separato da virgole, "
+-#~ "alle quali un ruolo utente/applicazione può collegarsi. Ad esempio: 612, "
+-#~ "650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Inserisci un elenco di porte udp o una gamma di porte separato da "
+-#~ "virgole, alle quali un ruolo utente/applicazione si può collegare. Ad "
+-#~ "esempio: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "Selezionare le caratteristiche di applicazione comune"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "Scrive i messaggi syslog\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "Crea/Manipola i file temporanei in /tmp"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "Utilizza Pam per l'autenticazione"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "Utilizza le chiamate getpw* o nsswitch"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "Utilizza dbus"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Invia messaggi audit"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "Interagisce con il terminale"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "Invia email"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "Selezionare i file/directory gestiti dall'applicazione"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Aggiungi File/Directory sulle quali questa applicazione deve eseguire la "
+-#~ "\"scrittura\". Pid Files, File di log, /var/lib Files ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Selezionare le booleane usate dall'applicazione"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Aggiungi/Rimuovi valori della booleana usati per questa applicazione/"
+-#~ "utente confinati"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "Selezionare la directory per generare la policy in"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Directory della policy"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "File della policy generati"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Questo tool genererà quanto segue: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Eseguire lo script della shell per compilare/installare e rietichettare i "
+-#~ "file/directory.  \n"
+-#~ "Utilizzare semanage o useradd per mappare gli utenti di registrazione di "
+-#~ "Linux con i ruoli\n"
+-#~ " utente. Impostare la macchina in modalità permissiva (setenforce 0). \n"
+-#~ "Registratevi come utente e testate questo ruolo utente.\n"
+-#~ "Utilizzare audit2allow -R per generare le regole aggiuntive per il file "
+-#~ "te.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Questo tool genererà quanto segue: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Eseguire lo script della shell per compilare/installare e rietichettare "
+-#~ "i  \n"
+-#~ "file/directory.  Impostare la macchina in modalità permissiva (setenforce "
+-#~ "0). \n"
+-#~ "Eseguire/riavviare l'applicazione per generare i messaggi avc.\n"
+-#~ "Utilizzare audit2allow -R per generare le regole aggiuntive per il file "
+-#~ "te.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "Aggiungi dialogo booleana"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "Nome booleana"
+-
+-#~ msgid "Role"
+-#~ msgstr "Ruolo"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "Utente_esistente"
+-
+-#~ msgid "Application"
+-#~ msgstr "Applicazione"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s deve essere una directory"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "È necessario selezionare un utente"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Selezionare il file eseguibile da confinare."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Selezionare il file dello script init da confinare."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "Selezionare i file che l'applicazione confinata crea o scrive"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Selezionare le directory che l'applicazione confinata possiede o nelle "
+-#~ "quali scrive"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "Selezionare la directory per generare i file della policy in"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Tipo %s_t già definito nella policy corrente.\n"
+-#~ "Desideri continuare?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "Verifica nome"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Modulo %s.pp già caricato nella policy corrente.\n"
+-#~ "Desideri continuare?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "È necessario inserire un nome"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "È necessario inserire un eseguibile"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Configura SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr ""
+-#~ "Le porte devono essere numerate o avere una gamma di numeri da 1 a %d "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr ""
+-#~ "È necessario inserire un nome per il vostro processo/utente confinato"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "I tipi di UTENTI non sono eseguibili permessi"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "Solo le applicazioni DAEMON possono utilizzare uno script init"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog deve essere un valore boolean"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "I tipi di UTENTE ottengono automaticamente un tipo di tmp"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "È necessario inserire il percorso eseguibile per il vostro processo "
+-#~ "confinato"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "File tipo enforcement"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
+-#~ msgid "Interface file"
+-#~ msgstr "File dell'interfaccia"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
+-#~ msgid "File Contexts file"
+-#~ msgstr "File dei contesti del file"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
+-#~ msgid "Setup Script"
+-#~ msgstr "Script d'impostazione"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Tipo di\n"
+-#~ "porta di SELinux"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
+-#~ msgid "Protocol"
+-#~ msgstr "Protocollo"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Livello MLS/\n"
+-#~ "MCS"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
+-#~ msgid "Port"
+-#~ msgstr "Porta"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Numero porta \"%s\" non valido.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
+-#~ msgid "List View"
+-#~ msgstr "Vista elenco"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
+-#~ msgid "Group View"
+-#~ msgstr "Vista del gruppo"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Protezione del servizio di SELiunx"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone acct"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
+-#~ msgid "Admin"
+-#~ msgstr "Amministratore"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Permetti a tutti i demoni di scrivere i corefile su /"
++#: ../gui/polgen.glade:647
 +msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "Permetti a tutti i demoni di utilizzare i tty non assegnati"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
+-#~ msgid "User Privs"
+-#~ msgstr "Priv utente"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux gadmin di eseguire i file nella "
+-#~ "home directory o /tmp"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente SELinux guest di eseguire i file nella home "
+-#~ "directory o /tmp"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
+-#~ msgid "Memory Protection"
+-#~ msgstr "Protezione memoria"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Permetti lo stack eseguibile di java"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Permetti a mount di montare qualsiasi file"
++#: ../gui/polgen.glade:871
++msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Permetti a mount di montare qualsiasi directory"
++#: ../gui/polgen.glade:899
++msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Permetti lo stack eseguibile di mplayer"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Permetti a ssh di eseguire ssh-keysign"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux staff di eseguire i file nella "
+-#~ "home directory o /tmp"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux sysadm di eseguire i file nella "
+-#~ "home directory o /tmp"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux unconfined di eseguire i file "
+-#~ "nella home directory o /tmp"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
+-#~ msgid "Network Configuration"
+-#~ msgstr "Configurazione di rete"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Permetti ai pacchetti non etichettati di percorrere la rete"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux user di eseguire i file nella home "
+-#~ "directory o /tmp"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Permetti non confinato a dyntrans su unconfined_execmem"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
+-#~ msgid "Databases"
+-#~ msgstr "Database"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Permetti all'utente di collegarsi al socket mysql"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Permetti all'utente di collegarsi al socket postgres"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Permetti ai client di scrivere sulla memoria condivisa di X"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permetti all'account utente di SELinux xguest di eseguire i file nella "
+-#~ "home directory o /tmp"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Permetti ai demoni di essere eseguiti con NIS"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
+-#~ msgid "Web Applications"
+-#~ msgstr "Web Application"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "Transizione utente di SELinux staff su Web Browser Domain"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "Transizione utente di SELinux sysadm su Web Browser Domain"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "Transizione utente di SELinux user su Web Browser Domain"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:5
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "Transizione utente di SELinux xguest su Web Browser Domain"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "Permetti ai web browser di staff di scrivere sulle home directory"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Disabilita la protezione SELinux per amanda"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Disabilita la protezione SELinux per amavis"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone apmd"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone arpwatch"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone auditd"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone automount"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:11
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Disabilita la protezione SELinux per avahi"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone bluetooth"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:13
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone canna"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cardmgr"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Disabilita la protezione SELinux per il Cluster server"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Permetti a cdrecord di leggere vari contenuti. nfs, samba, dispositivi "
+-#~ "estraibili, user-temp e file con contenuti non fidati"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone ciped"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone clamd"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Disabilita la protezione SELinux per clamscan"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Disabilita la protezione SELinux per clvmd"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone comsat"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone courier"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cpucontrol"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cpuspeed"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone crond"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "Stampa"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Disabilita la protezione SELinux per il server backend di cupsd"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cupsd"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Disabilita la protezione SELinux per cupsd_lpd"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cvs"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone cyrus"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dbskkd"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dbusd"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Disabilita la protezione SELinux per dccd"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Disabilita la protezione SELinux per dccifd"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Disabilita la protezione SELinux per dccm"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone ddt"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone devfsd"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dhcpc"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dhcpd"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dictd"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Permetti a sysadm_t di avviare direttamente i demoni"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Disabilita la protezione SELinux per Evolution"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "Giochi"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Disabilita la protezione SELinux per i giochi"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Disabilita la protezione SELinux per i web browser"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Disabilita la protezione SELinux per Thunderbird"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone distccd"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dmesg"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dnsmasq"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone dovecot"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone entropyd"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Disabilita la protezione SELinux per fetchmail"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone fingerd"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone freshclam"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone fsdaemon"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone gpm"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone gss"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone Hal"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Compatibilità"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Non eseguire l'audit degli oggetti che sappiamo essere corrotti ma che "
+-#~ "non rappresentano alcun rischio della sicurezza"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone hostname"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone hotplug"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone howl"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone hplip di cups"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Disabilita la protezione SELinux per httpd rotatelog"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Servizio HTTPD"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Disabilita la protezione SELinux per http suexec"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone hwclock"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone i18n"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone imazesrv"
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Disabilita la protezione SELinux per il demone figlio inetd"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone inetd"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone innd"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone iptables"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone ircd"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone irqbalance"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
++
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
++
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
++
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
++
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
++
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
++
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
++
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
++
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
++
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
++
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
++
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
++
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
++
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
++
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:18
@@ -113917,7 +116699,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone iscsi"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
@@ -114111,7 +116895,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone jabberd"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
@@ -114127,333 +116913,493 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone kadmind"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone klogd"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone krb5kdc"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Disabilita la protezione SELinux per il demone ktalk"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone kudzu"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone locate"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone lpd"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone lrrd"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone lvm"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Disabilita la protezione SELinux per mailman"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Permetti a evolution e thunderbird di leggere i file dell'utente"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone mdadm"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone monopd"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Permetti al browser di mozilla di leggere i file dell'utente"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone mrtg"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone mysqld"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nagios"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "Nome servizio"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone named"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nessusd"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Disabilita la protezione SELinux per NetworkManager"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nfsd"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nmbd"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nrpe"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nscd"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone nsd"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone ntpd"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Disabilita la protezione SELinux per oddjob"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Disabilita la protezione SELinux per oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone openvpn"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone pam"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Disabilita la protezione SELinux per pegasus"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone perdition"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone portmap"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone portslave"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Disabilita la protezione SELinux per postfix"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Disabilita la protezione SELinux per il demone postgresql"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Permetti a pppd di essere eseguito per un utente normale"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Disabilita protezione SELinux per pptp"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone prelink"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone privoxy"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone ptal"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone pxe"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Disabilita protezione SELinux per pyzord"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone quota"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone radiusd"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone radvd"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Disabilita protezione SELinux per rdisc"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Disabilita protezione SELinux per readahead"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Permetti ai programmi di leggere i file in posizioni non-standard "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Disabilita protezione SELinux per restorecond"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone rhgb"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Disabilita protezione SELinux per ricci"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Disabilita protezione SELinux per ricci_modclusterd"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone rlogind"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone rpcd"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Disabilita protezione SELinux per rshd"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone rsync"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr ""
+-#~ "Permetti a ssh di essere eseguito da inetd invece di essere eseguito come "
+-#~ "demone"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Permetti a Samba di condividere le directory nfs"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Server per l'autenticazione SASL"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Permetti al server di autenticazione sasl di leggere /etc/shadow"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Permetti al server di X-Windows di mappare una regione della memoria come "
+-#~ "eseguibile e scrivibile"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone saslauthd"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone scannerdaemon"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Non permettere la transizione a sysadm_t, sudo e su sono affetti"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Non permettere ad alcun processo di caricare i moduli del kernel"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Non permettere ad alcun processo di modificare la policy SELinux del "
+-#~ "kernel"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone sendmail"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Disabilita protezione SELinux per setrans"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone setroubleshoot"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone slapd"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone slrnpull"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -114463,54 +117409,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone smbd"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone snmpd"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone snort"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone soundd"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone sound"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "Spam Protection"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone spamd"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Permetti a spamd di accedere alle home directory "
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Permetti l'accesso alla rete del demone Spam Assasin"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -114521,1505 +117478,1311 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/is.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone speedmgmt"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Permetti al demone squid di collegarsi alla rete"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone squid"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone ssh"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permetti i login ssh come sysadm_r:sysadm_t"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Permetti agli utenti staff_r di eseguire una ricerca della home dir di "
+-#~ "sysadm e leggere i file (come ad esempio ~/.bashrc)"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Tunnel SSL universale"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone stunnel"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Permetti al demone stunnel di essere eseguito come standalone, "
+-#~ "esternamente a xinetd"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone swat"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone sxid"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone syslogd"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Disabilita protezione SELinux per i cron job del sistema"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone tcp"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone telnet"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone tftpd"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone transproxy"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone udev"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone uml"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permetti a xinetd di essere eseguito come non confinato, incluso "
+-#~ "qualsiasi servizio avviato che non possiede una transizione del dominio "
+-#~ "definita in modo esplicito"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permetti agli script rc di essere eseguiti come non confinati, incluso "
+-#~ "qualsiasi demone avviato da uno script rc che non possiede una "
+-#~ "transizione del dominio definita in modo esplicito"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Permetti ad rpm di essere eseguito in modo non confinato"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Permetti alle utilità privilegiate, come hotplug e insmod, di essere "
+-#~ "eseguite in modo non confinato"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone updfstab"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone uptimed"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Permetti a user_r di raggiungere sysadm_r tramite su, sudo, o userhelper. "
+-#~ "Altrimenti solo staff_r può eseguire tale operazione"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Permetti agli utenti di eseguire il comando mount"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Permetti l'accesso diretto del mouse agli utenti normali (abilita solo il "
+-#~ "server X)"
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Permetti agli utenti di eseguire il comando dmesg"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Permetti agli utenti di controllare le interfacce di rete (necessita "
+-#~ "anche USERCTL=true)"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Permetti agli utenti normali di eseguire ping"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Permetti all'utente di leggere/scrivere noextattrfile (FAT, CDROM, FLOPPY)"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Permetti agli utenti di rw i dispositivi usb"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Permetti agli utenti di eseguire i server TCP (unisci alle porte ed "
+-#~ "accetta il collegamento dallo stesso dominio ed utenti esterni),  "
+-#~ "disabilitandolo verrà forzata la modalità passiva FTP e potrete "
+-#~ "modificare altri protocolli."
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Permetti agli utenti lo stat ttyfiles"
+-
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone uucpd"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone vmware"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone watchdog"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone winbind"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone xdm"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permetti login xdm come sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone xen"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Permetti a xen di leggere/scrivere i dispositivi fisici del disco"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone xfs"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Disabilita protezione SELinux per il controllo di xen"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone ypbind"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone della password NIS"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Disabilita protezione SELinux per il demone ypserv"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Disabilita protezione SELinux per il NIS Transfer Daemon"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permetti all'utente webadm di SELinux di gestire le directory home di "
+-#~ "utenti non privilegiati"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permetti all'utente webadm di SELinux di leggere le home directory di "
+-#~ "utenti non privilegiati"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Siete sicuri di voler cancellare %s '%s'?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Cancella %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Aggiungi %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Modifica %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Permissivo"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Enforcing"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Modificando il tipo di policy si provocherà la rietichettatura "
+-#~ "dell'intero file system al prossimo riavvio. La rietichettatura "
+-#~ "richiederà un temponotevole a seconda della grandezza del file system. "
+-#~ "Desiderate continuare?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Selezionando SELinux disabilitato sarà necessario riavviare il vostro "
+-#~ "sistema.  Tale azione non è consigliata.  Se desiderate attivare "
+-#~ "nuovamente SELinux, sarà necessario rietichettare il sistema.  Se "
+-#~ "desiderate sapere se SELinux è la causa di un problema che si è "
+-#~ "verificato sul vostro sistema, selezionate la modalità permissiva la "
+-#~ "quale è in grado di registrare i messaggi senza forzare la policy di "
+-#~ "SELinux.  La modalità permissiva non richiede un riavvio del sistema    "
+-#~ "Desiderate continuare?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Modificando su SELinux si provocherà la rietichettatura dell'intero "
+-#~ "filesystem al prossimo riavvio. La rietichettatura richiederà un tempo "
+-#~ "notevolea seconda della grandezza del file system. Desiderate continuare?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Aggiungi mappatura login di SELinux"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Aggiungi porte di rete di SELinux"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "Tipo di SELinux"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Livello MLS/MCS\n"
+-#~ "di SELinux"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Specifiche del file"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Tipo di file"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "tutti i files\n"
+-#~ "file regolari\n"
+-#~ "directory\n"
+-#~ "device a carattere\n"
+-#~ "device a blocchi\n"
+-#~ "socket\n"
+-#~ "link simbolici\n"
+-#~ "named pipe\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Aggiungi utente di SELinux"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Amministrazione SELinux"
+-
+-#~ msgid "Add"
+-#~ msgstr "Aggiungi"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Proprietà"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Cancella"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Seleziona oggetto di gestione"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Seleziona:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Modalità Enforcing predefinita del sistema"
+-
+-#~ msgid ""
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
+-#~ msgstr ""
+-#~ "Disabilitato\n"
+-#~ "Permissivo\n"
+-#~ "Enforcing\n"
+-
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Modalità Enforcing corrente"
+-
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Tipo di policy predefinita del sistema: "
+-
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Selezionare se si desidera rietichettare l'intero file system al prossimo "
+-#~ "riavvio.  La rietichettatura può richiedere un tempo notevole, dependente "
+-#~ "dalla grandezza del sistema.  Se si sta cambiando tipi di policy o "
+-#~ "cambiando da disabilitato a enforcing, una rietichettatura è necessaria."
+-
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Rietichetta al riavvio successivo."
+-
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Ritorna le impostazioni booleane in default del sistema"
+-
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Attiva/Disattiva tra Personalizzata e Tutte booleane"
+-
+-#~ msgid "Filter"
+-#~ msgstr "Filtro"
+-
+-#~ msgid "Add File Context"
+-#~ msgstr "Aggiungi contesto del file"
+-
+-#~ msgid "Modify File Context"
+-#~ msgstr "Modifica contesto del file"
+-
+-#~ msgid "Delete File Context"
+-#~ msgstr "Cancella contesto del file"
+-
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Attiva/Disattiva tra tutte e contesto personalizzato del file"
+-
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Aggiungi mappatura utente SELinux"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Modifica mappatura utente SELinux"
+-
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Cancella mappatura utente SELinux %s"
+-
+-#~ msgid "Add Translation"
+-#~ msgstr "Aggiungi traduzione"
+-
+-#~ msgid "Modify Translation"
+-#~ msgstr "Modifica traduzione"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "Cancella traduzione"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Modifica utente SELinux"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid "Add Network Port"
+-#~ msgstr "Aggiungi porta di rete"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Modifica porta di rete"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Cancella porta di rete"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Attiva/Disattiva tra Personalizzata e Tutte le porte"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Genera nuovo modulo della policy"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Load policy module"
+-#~ msgstr "Carica modulo della policy"
+-
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Rimuovi modulo della policy caricabile"
+-
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Abilita/Disabilita le regole audit aggiuntive generalemente non riportate "
+-#~ "nei file di log."
+-
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Livello sensibilità"
+-
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "E' richiesto l'utente '%s' di SELinux"
+-
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-
+-#~ msgid "Requires value"
+-#~ msgstr "Richiede valore"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Permetti ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
+-#~ "porta tcp > 1024"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Permette ad un ruolo utente/applicazione confinata di eseguire il bind a "
+-#~ "qualsiasi porta tcp"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Inserisci un elenco di porte tcp o una gamma di porte separato da "
+-#~ "virgole, alle quali un ruolo utente/applicazione può eseguire il bind. Ad "
+-#~ "esempio: 612, 650-660"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Druid di generazione della policy di SELinux"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Porte non riservate  (> 1024)"
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Utilizzate questa casella se la vostra applicazione richiama bindresvport "
+-#~ "con 0."
+-
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Enforcing\n"
+-#~ "Permissiva\n"
+-#~ "Disabilitata\n"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils-2.0.85/po/it.po
---- nsapolicycoreutils/po/it.po        2011-02-17 15:11:25.522728311 -0500
-+++ policycoreutils-2.0.85/po/it.po    2011-02-18 16:03:41.380975827 -0500
-@@ -1,20 +1,41 @@
- # translation of it.po to
- # This file is distributed under the same license as the policycoreutils package.
+diff --git a/policycoreutils/po/ja.po b/policycoreutils/po/ja.po
+index 0cf90dc..6a4a6b6 100644
+--- a/policycoreutils/po/ja.po
++++ b/policycoreutils/po/ja.po
+@@ -1,26 +1,26 @@
+-# translation of ja.po to Japanese
+-# translation of ja.po to
+-# translation of ja.po to
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
  #
--# Francesco Tombolini <tombo@adamantio.net>, 2006, 2007, 2008.
-+# Francesco Tombolini <tombo@adamantio.net>, 2006, 2007, 2008, 2009.
-+# Silvio Pierro <perplesso82@gmail.com>, 2008.
+-# Takuro Nagamoto <tnagamot@redhat.com>, 2006.
+-# Noriko Mizumoto <noriko@redhat.com>, 2006, 2008.
++# Translators:
+ # Hyu_gabaru Ryu_ichi <hyu_gabaru@yahoo.co.jp>, 2007.
+-# Kiyoto Hashida <khashida@redhat.com>, 2008.
++# Kiyoto Hashida <khashida@redhat.com>, 2008, 2009, 2010.
++# Makoto Mizukami <makoto@fedoraproject.org>, 2008.
++# Noriko Mizumoto <noriko@redhat.com>, 2006, 2008, 2009.
++# Takuro Nagamoto <tnagamot@redhat.com>, 2006.
  msgid ""
  msgstr ""
- "Project-Id-Version: it\n"
+-"Project-Id-Version: ja\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-07-13 01:02+0200\n"
--"Last-Translator: Francesco Tombolini <tombo@adamantio.net>\n"
--"Language-Team: Italian <fedora-trans-it@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 11:49+1000\n"
-+"Last-Translator: \n"
-+"Language-Team:  <it@li.org>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-09-09 21:12+1000\n"
+-"Last-Translator: Noriko Mizumoto <noriko@redhat.com>\n"
+-"Language-Team: Japanese <fedora-trans-ja@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Japanese <trans-ja@lists.fedoraproject.org>\n"
+ "Language: ja\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
--"X-Generator: KAider 0.1\n"
--"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: KBabel 1.11.4\n"
-+"X-Poedit-Language: Italian\n"
-+"X-Poedit-Country: ITALY\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configura SELinux in una impostazione grafica"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Gestione di SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Genera moduli della politica di SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Tool di generazione della policy di SELinux"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=1; plural=0\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -106,9 +127,8 @@
- msgstr "Impossibile stabilire connessione semanage"
+@@ -29,8 +29,8 @@ msgid ""
+ "         <args ...> are the arguments to that script."
+ msgstr ""
+ "使い方: run_init <script> <args ...>\n"
+-"  ここで、 <script> は実行する init スクリプトの名前、\n"
+-"         <args ...> はそのスクリプトに対する引数になります。"
++"  ここで、 <script> に実行する init スクリプトの名前、\n"
++"         <args ...> にそのスクリプトに対する引数を指定します。"
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+@@ -117,9 +117,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage 接続を確立できませんでした"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "Impossibile impostare range MLS per %s"
-+msgstr "Impossibile verificare lo stato MLS abilitato"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -124,7 +144,8 @@
- msgid "Level"
- msgstr "Livello"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Traduzione"
+-msgstr "%s の MLS 範囲を設定できませんでした"
++msgstr "MLS を有効にした状態をテストできませんでした"
  
-@@ -154,765 +175,769 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -127,7 +126,7 @@ msgstr "まだ、実装されていません"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Una transazione semanage è già in esecuzione"
++msgstr "Semanage トランザクションは既に進行しています"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
- msgstr "Impossibile avviare transazione semanage"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Impossibile avviare transazione semanage"
-+msgstr "Impossibile eseguire la transazione semanage"
+@@ -139,53 +138,50 @@ msgstr "semanage トランザクションをコミットできませんでした
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Transazione semanage non in esecuzione"
++msgstr "Semanage トランザクションは進行していません"
  
- #: ../semanage/seobject.py:325
--#, fuzzy
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
--msgstr "Impossibile elencare gli utenti SELinux"
-+msgstr "Impossibile elencare i moduli SELinux"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
- msgstr "Tipi permissivi"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Impossibile impostare il dominio permissive %s (installazione del modulo "
-+"fallita)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Impossibile rimuovere il dominio permissive %s (rimozione fallita)"
+ msgstr "SELinux のモジュール一覧を表示できませんでした"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Impossibile creare una chiave per %s"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "モジュール名"
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Impossibile controllare se è definito il login mapping per %s"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "バージョン"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Il login mapping per %s è già definito"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "無効"
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:322
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "L'utente linux %s non esiste"
-+msgstr "Il gruppo linux %s non esiste"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "L'utente linux %s non esiste"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Impossibile creare il login mapping per %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Impossibile impostare nome per %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Impossibile impostare range MLS per %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Impossibile impostare utente SELinux per %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Impossibile aggiungere login mapping per %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "aggiungi mappatura dell'utente di SELinux"
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "許容ドメイン %s の削除ができませんでした (削除に失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Richiede seuser o serange"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "許容ドメイン %s の削除ができませんでした (削除に失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Il login mapping per %s non è definito"
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "許容ドメイン %s の削除ができませんでした (削除に失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Impossibile interrogare seuser per %s"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Impossibile modificare login mapping per %s"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "許容タイプ"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, 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"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "許容タイプ"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Impossibile eliminare il login mapping per %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Impossibile elencare i login mappings"
+@@ -285,15 +281,20 @@ msgid "Could not list login mappings"
+ msgstr "ログインマッピングの一覧を表示できませんでした"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "Nome di registrazione"
+ msgstr "ログイン名"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "Utente di SELinux"
+ msgstr "SELinux ユーザー"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "Gamma MLS/MCS"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Impossibile aggiungere il contesto del file per %s"
-+msgstr "Si deve aggiungere almeno un ruolo per %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Impossibile controllare se l'utente SELinux %s è definito"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "L'utente SELinux %s è già definito"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Impossibile creare l'utente SELinux per %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Impossibile aggiungere il ruolo %s per %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Impossibile impostare il livello MLS per %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Impossibile aggiungere il prefisso %s per %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Impossibile estrarre la chiave per %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Impossibile aggiungere l'utente SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Richiede prefisso, ruolo, livello o range"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Richiede prefisso o ruolo"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "L'utente SELinux %s non è definito"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Impossibile interrogare l'utente per %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Impossibile modificare l'utente SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "L'utente SELinux %s è definito nella policy, non può essere eliminato"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Impossibile eliminare l'utente SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Impossibile elencare gli utenti SELinux"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Impossibile elencare i ruoli per l'utente %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Etichettare"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefisso"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "Livello MCS"
+ msgstr "MLS/MCS 範囲"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "Gamma MCS"
+@@ -403,6 +404,7 @@ msgid "MCS Range"
+ msgstr "MCS 範囲"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "Ruoli SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "E' richiesto il protocollo udp o tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "E' richiesta la porta"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Impossibile creare una chiave per %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "E' richiesto il Tipo"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Impossibile controllare se la porta %s/%s è definita"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Porta %s/%s già definita"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Impossibile creare la porta per %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Impossibile creare il contesto per %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Impossibile impostare l'utente nel contesto della porta per %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Impossibile impostare il ruolo nel contesto della porta per %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Impossibile impostare il tipo nel contesto della porta per %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Impossibile impostare i campi mls nel contesto della porta per %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Impossibile impostare il contesto della porta per %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Impossibile aggiungere la porta %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Richiede setype o serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Richiede setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "La porta %s/%s non è definita"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Impossibile interrogare la porta %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Impossibile modificare la porta %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Impossibile elencare le porte"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "Impossibile eliminare la porta %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "La porta %s/%s è definita nella policy, non può essere eliminata"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Impossibile eliminare la porta %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Impossibile elencare le porte"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "Tipo di porta SELinux"
+ msgstr "SELinux ロール"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -533,18 +535,17 @@ msgstr "SELinux ポートタイプ"
  msgid "Proto"
- msgstr "Proto"
+ msgstr "プロト"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "Numero porta"
+ msgstr "ポート番号"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
--msgstr "E' richiesta la porta"
-+msgstr "L'indirizzo del nodo è necessario"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "E' richiesta la porta"
-+msgstr "La netmask del nodo è necessaria"
+-msgstr "ポートが必要です"
++msgstr "ノードアドレスが必要です"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
-+msgstr "Protocollo mancante o sconosciuto"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "E' richiesto un Tipo SELinux"
++msgstr "不明又は欠如したプロトコル"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Impossibile creare la chiave per %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -561,14 +562,14 @@ msgstr "%s のキーを作成できませんでした"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "Impossibile controllare se la porta %s/%s è definita"
-+msgstr "Impossibile controllare se la porta %s è definita"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Porta %s/%s già definita"
-+msgstr "Indirizzo %s già definito"
+-msgstr "ポート %s/%s が定義されているか確認できませんでした"
++msgstr "アドレス %s が定義されているか確認できませんでした"
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
--msgstr "Impossibile creare una chiave per %s"
-+msgstr "Impossibile creare un indirizzo per %s"
+-msgstr "%s のキーを作成できませんでした"
++msgstr "%s のアドレスを作成できませんでした"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Impossibile creare il contesto per %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -577,74 +578,72 @@ msgid "Could not create context for %s"
+ msgstr "%s のコンテキストを作成できませんでした"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
--msgstr "Impossibile impostare nome per %s"
-+msgstr "Impossibile impostare una maschera per %s"
+-msgstr "%s の名前を設定できませんでした"
++msgstr "%s のマスクを設定できませんでした"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "Impossibile impostare l'utente nel contesto del file per %s"
-+msgstr "Impossibile impostare l'utente nel contesto indirizzo per %s"
+-msgstr "%s のファイルコンテキストにユーザーを設定できませんでした"
++msgstr "%s のアドレスコンテキストにユーザーを設定できませんでした"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "Impossibile impostare il ruolo nel contesto del file per %s"
-+msgstr "Impossibile impostare il ruolo nel contesto indirizzo per %s"
+-msgstr "%s のファイルコンテキストにロールを設定できませんでした"
++msgstr "%s のアドレスコンテキストにロールを設定できませんでした"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "Impossibile impostare il tipo nel contesto del file per %s"
-+msgstr "Impossibile impostare il tipo nel contesto indirizzo per %s"
+-msgstr "%s のファイルコンテキストにタイプを設定できませんでした"
++msgstr "%s のアドレスコンテキストにタイプを設定できませんでした"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "Impossibile impostare i campi mls nel contesto del file per %s"
-+msgstr "Impossibile impostare i campi mls nel contesto indirizzo per %s"
+-msgstr "%s のファイルコンテキストに mls フィールドを設定できませんでした"
++msgstr "%s のアドレスコンテキストに mls フィールドを設定できませんでした"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
--msgstr "Impossibile impostare il contesto del file per %s"
-+msgstr "Impossibile impostare il contesto indirizzo per %s"
+-msgstr "%s のファイルコンテキストを設定できませんでした"
++msgstr "%s のアドレスコンテキストを設定できませんでした"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
--msgstr "Impossibile aggiungere la porta %s/%s"
-+msgstr "Impossibile aggiungere l'indirizzo %s"
+-msgstr "ポート %s/%s を追加できませんでした"
++msgstr "アドレス %s を追加できませんでした"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "La porta %s/%s non è definita"
-+msgstr "Indirizzo %s non definito"
+-msgstr "ポート %s/%s は定義されていません"
++msgstr "アドレス %s は定義されていません"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "Impossibile interrogare la porta %s/%s"
-+msgstr "Impossibile interrogare l'indirizzo %s"
+-msgstr "ポート %s/%s をクエリーできませんでした"
++msgstr "アドレス %s をクエリできませんでした"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "Impossibile modificare la porta %s/%s"
-+msgstr "Impossibile modificare l'indirizzo %s"
+-msgstr "ポート %s/%s を修正できませんでした"
++msgstr "アドレス %s を修正できませんでした"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "La porta %s/%s è definita nella policy, non può essere eliminata"
-+msgstr "L'indirizzo %s è definito nella policy, non può essere eliminato"
+-msgstr "ポート %s/%s はポリシーで定義されています、 削除できません"
++msgstr "アドレス %s はポリシー内で定義されています、削除できません"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "Impossibile eliminare %s"
-+msgstr "Impossibile eliminare l'indirizzo %s"
+-msgstr "ポート %s/%s を削除できませんでした"
++msgstr "アドレス %s を削除できませんでした"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Impossibile elencare le porte"
-+msgstr "Impossibile elencare gli indirizzi"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Impossibile controllare se l'interfaccia %s è definita"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Interfaccia %s già definita"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Impossibile creare l'interfaccia per %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Impossibile impostare l'utente nel contesto dell'interfaccia per %s"
+ msgid "Could not deleteall node mappings"
+-msgstr "%s のログインマッピングを削除できませんでした"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Impossibile impostare il ruolo nel contesto dell'interfaccia per %s"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "ポートの一覧を表示できませんでした"
++msgstr "アドレスの一覧を表示できませんでした"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Impossibile impostare il tipo nel contesto dell'interfaccia per %s"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -719,9 +718,8 @@ msgid "Could not delete interface %s"
+ msgstr "インターフェース %s を削除できませんでした"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Impossibile impostare i campi mls nel contesto dell'interfaccia per %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "インターフェース %s を削除できませんでした"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Impossibile impostare il contesto dell'interfaccia per %s"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -736,9 +734,9 @@ msgid "Context"
+ msgstr "コンテキスト"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Impossibile impostare il contesto dei messaggi per %s"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s のファイルコンテキストはすでに定義されています"
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not add interface %s"
- msgstr "Impossibile aggiungere l'interfaccia %s"
+@@ -746,9 +744,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "L'interfaccia %s non è definita"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux ユーザー %s は存在していません"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not query interface %s"
- msgstr "Impossibile interrogare l'interfaccia %s"
+@@ -868,11 +866,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Impossibile modificare l'interfaccia %s"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "L'interfaccia %s è definita nella policy, non può essere eliminata"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -941,15 +938,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux boolean"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Impossibile eliminare l'interfaccia %s"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "状態"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Impossibile elencare le interfacce"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr "デフォルト"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "Interfaccia di SELinux"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "説明"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Contesto"
+@@ -1204,7 +1201,7 @@ msgstr "%s:  ポリシーはすでにロード済みで初期ロードが必要
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  ポリシーと要求された強制モードをロード出来ません:  %s\n"
++msgstr "%s:  要求されたポリシーと強制モードをロード出来ません:  %s\n"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Impossibile impostare l'utente nel contesto del file per %s"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+@@ -1290,1799 +1287,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Impossibile impostare il ruolo nel contesto del file per %s"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "オプションエラー %s "
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Impossibile impostare i campi mls nel contesto del file per %s"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s を開けません: MLS 以外のマシンでは変換はサポートされません: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "Specifiche non valide del file"
+-#~ msgid "Level"
+-#~ msgstr "レベル"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Impossibile controllare se il contesto del file per %s è definito"
+-#~ msgid "Translation"
+-#~ msgstr "変換"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Contesto del file per %s già definito"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "変換に空白 '%s' を含ませることはできません"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Impossibile creare contesto del file per %s"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "無効なレベル '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Impossibile impostare il tipo nel contesto del file per %s"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s はすでに変換で定義されています"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Impossibile impostare il contesto del file per %s"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s は変換で定義されていません"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Impossibile aggiungere il contesto del file per %s"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s のログインマッピングはすでに定義されています"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Richiesto setype, serange o seuser"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ユーザーマッピングを追加"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Il contesto del file per %s non è definito"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ユーザー %s はすでに定義されています"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Impossibile interrogare il contesto del file per %s"
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "ポートが必要です"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Impossibile modificare il contesto del file per %s"
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "ポート %s/%s はすでに定義されています"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "Impossibile elencare i contesti del file"
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "インターフェース %s はすでに定義されています"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "Impossibile eliminare il contesto del file %s"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "機能の初期化中にエラーが発生、中止します。\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, 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"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "機能の設定中にエラーが発生、中止します。\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Impossibile eliminare il contesto del file per %s"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS の設定中にエラーが発生、中止します。\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Impossibile elencare i contesti del file"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "機能をドロップ中にエラーが発生、中止します。\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Impossibile elencare i contesti del file locale"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID 機能をドロップ中にエラーが発生、中止します\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "fcontext di SELinux"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps を解放中にエラーが発生\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "tipo"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "MLS 以外のマシンでは変換はサポートされません"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Impossibile controllare se la booleana %s è definita"
+-#~ msgid "Boolean"
+-#~ msgstr "ブーリアン値"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "La booleana %s non è definita"
+-#~ msgid "all"
+-#~ msgstr "全て"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Impossibile interrogare il contesto del file %s"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "È necessario specificare un valore"
-+msgstr "E' necessario specificare uno dei seguenti valori: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "Impossibile impostare il valore attivo della booleana %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Impossibile modificare la booleana %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Formato non valido %s: Record %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "La booleana %s è definita nella policy, non può essere eliminata"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Impossibile eliminare la booleana %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Impossibile elencare le booleane"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "sconosciuto"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "off"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "on"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "Booleana di SELinux"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "Descrizione"
-@@ -954,7 +979,7 @@
- msgstr "Impossibile ripulire l'ambiente\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Errore inizializzazione capacità, abbandono.\n"
-@@ -1293,1739 +1318,2250 @@
- msgid "Options Error %s "
- msgstr "Errore opzioni %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "traduzioni non supportate su macchine non-MLS"
--
--#~ msgid "Boolean"
--#~ msgstr "Boolean"
--
--#~ msgid "all"
--#~ msgstr "Tutte/i"
--
 -#~ msgid "Customized"
--#~ msgstr "Personalizzato"
+-#~ msgstr "カスタム化"
 -
 -#~ msgid "File Labeling"
--#~ msgstr "File Labeling"
+-#~ msgstr "ファイルラベリング"
 -
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
 -#~ msgstr ""
--#~ "Specifiche\n"
--#~ "del file"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Boolean"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "Tutte/i"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Personalizzato"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "File Labeling"
+-#~ "ファイル\n"
+-#~ "仕様"
+-
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr ""
--#~ "Tipo di file\n"
--#~ "Selinux"
--
+-#~ "Selinux\n"
+-#~ "ファイルタイプ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Type"
 -#~ msgstr ""
--#~ "Tipo\n"
--#~ "di file"
--
--#~ msgid "User Mapping"
--#~ msgstr "Mappatura utente"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
+-#~ "ファイル\n"
+-#~ "タイプ"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
 +msgstr ""
-+"Specifiche\n"
-+"del file"
  
+-#~ msgid "User Mapping"
+-#~ msgstr "ユーザーマッピング"
+-
 -#~ msgid ""
 -#~ "Login\n"
 -#~ "Name"
 -#~ msgstr ""
--#~ "Nome\n"
--#~ "di login"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Tipo di file\n"
-+"Selinux"
+-#~ "ログイン\n"
+-#~ "名"
+-
 -#~ msgid ""
 -#~ "SELinux\n"
 -#~ "User"
 -#~ msgstr ""
 -#~ "SELinux\n"
--#~ "Utente"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Tipo\n"
-+"di file"
+-#~ "ユーザー"
+-
 -#~ msgid ""
 -#~ "MLS/\n"
 -#~ "MCS Range"
 -#~ msgstr ""
--#~ "Gamma MCS/\n"
--#~ "MLS"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mappatura utente"
+-#~ "MLS/\n"
+-#~ "MCS 範囲"
+-
 -#~ msgid "Login '%s' is required"
--#~ msgstr "Il login '%s' è necessario"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Nome\n"
-+"di login"
+-#~ msgstr "ログイン '%s' が必要です"
+-
 -#~ msgid "Policy Module"
--#~ msgstr "Modulo della policy"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"Utente"
--#~ msgid "Module Name"
--#~ msgstr "Nome della policy"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"Gamma MCS/\n"
-+"MLS"
--#~ msgid "Version"
--#~ msgstr "Versione"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Il login '%s' è necessario"
+-#~ msgstr "ポリシーモジュール"
+-
 -#~ msgid "Disable Audit"
--#~ msgstr "Disabilita audit"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Modulo della policy"
+-#~ msgstr "監査を無効にする"
+-
 -#~ msgid "Enable Audit"
--#~ msgstr "Abilita audit"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Nome della policy"
+-#~ msgstr "監査を有効にする"
+-
 -#~ msgid "Load Policy Module"
--#~ msgstr "Carica modulo della policy"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versione"
+-#~ msgstr "ポリシーモジュールをロード"
+-
 -#~ msgid "Polgen"
 -#~ msgstr "Polgen"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Disabilita audit"
+-
 -#~ msgid "Red Hat 2007"
 -#~ msgstr "Red Hat 2007"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Abilita audit"
+-
 -#~ msgid "GPL"
 -#~ msgstr "GPL"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Carica modulo della policy"
+-
 -#~ msgid "translator-credits"
--#~ msgstr "crediti-traduttore"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
+-#~ msgstr ""
+-#~ "Takuro Nagamoto <tnagamot AT redhat DOT com>, 2006.\n"
+-#~ "Noriko Mizumoto <noriko AT redhat DOT com>, 2006.\n"
+-#~ "Hyu_gabaru Ryu_ichi <hyu_gabaru AT yahoo DOT co DOT jp>, 2007."
+-
 -#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Tool di generazione della policy di SELinux"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
+-#~ msgstr "SELinux ポリシー生成ツール"
+-
 -#~ msgid ""
 -#~ "This tool can be used to generate a policy framework, to confine "
 -#~ "applications or users using SELinux.   \n"
@@ -116030,833 +118793,327 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "File context file (fc)\n"
 -#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "Questo tool può essere usato per generare una struttura per la policy, "
--#~ "per confinare le applicazioni o gli utenti che utilizzano SELinux.   \n"
+-#~ "このツールは SELinux を使用してアプリケーションやユーザーを制限するポリ"
+-#~ "シーフレームワークを生成するのに使用できます。 \n"
 -#~ "\n"
--#~ "Il tool genera:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - usato per compilare ed installare la policy. "
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
+-#~ "ツールが生成するのは:\n"
+-#~ "タイプ強制ファイル (te)\n"
+-#~ "インターフェースファイル (if)\n"
+-#~ "ファイルコンテキストファイル (fc)\n"
+-#~ "シェルスクリプト (sh) - ポリシーをコンパイルしインストールするのに使用しま"
+-#~ "す"
+-
 -#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Selezionare il tipo di ruolo utente/applicazione da confinare"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"Francesco Tombolini <tombo@adamantio.net>.\n"
-+"Silvio Pierro <perplesso82@gmail.com>."
+-#~ msgstr "制限するアプリケーション/ユーザーロールのタイプを選択"
+-
 -#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Applicazioni</b>"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Questo tool può essere usato per generare una struttura per la policy, per "
-+"confinare le applicazioni o gli utenti che utilizzano SELinux.   \n"
-+"\n"
-+"Il tool genera:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - usato per compilare ed installare la policy. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Selezionare il tipo di ruolo utente/applicazione da confinare"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Applicazioni</b>"
+-#~ msgstr "<b>アプリケーション</b>"
+-
 -#~ msgid ""
 -#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
 -#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "Il demone init standard è un demone avviato al momento dell'avvio tramite "
--#~ "gli script init.  Generalmente richiede uno script in /etc/init.d"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Il demone init standard è un demone avviato al momento dell'avvio tramite "
-+"gli script init.  Generalmente richiede uno script in /etc/init.d"
+-#~ "標準 Init デーモンは init スクリプト経由でブート時に起動されるデーモンで"
+-#~ "す。通常 /etc/rc.d/init.d にスクリプトが必要です"
+-
 -#~ msgid "Standard Init Daemon"
--#~ msgstr "Demone init standard"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Demone init standard"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Demone di sistema DBUS"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon sono demoni avviati da xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
+-#~ msgstr "標準初期化デーモン"
+-
 -#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Internet Services Daemon sono demoni avviati da xinetd"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Script CGI Web Applications/Script (CGI) vengono avviati dal server web "
-+"(apache)"
+-#~ msgstr ""
+-#~ "インターネットサービスデーモンは xinetd により起動されるデーモンです"
+-
 -#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Internet Services Daemon (inetd)"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Web Application/Script (CGI)"
+-#~ msgstr "インターネットサービスデーモン (inetd)"
+-
 -#~ msgid ""
 -#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
 -#~ "(apache)"
 -#~ msgstr ""
--#~ "Script CGI Web Applications/Script (CGI) vengono avviati dal server web "
--#~ "(apache)"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Una User Application rappresenta qualsiasi applicazione che desiderate "
-+"confinare avviata da un utente"
+-#~ "ウェブサーバー (apache) により起動されるウェブアプリケーション/スクリプト "
+-#~ "(CGI) CGI スクリプト"
+-
 -#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Web Application/Script (CGI)"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "User Application"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Utenti di registrazione</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modifica una voce esistente dell'utente di registrazione."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Utenti esistenti"
+-#~ msgstr "ウェブアプリケーション/スクリプト (CGI)"
+-
 -#~ msgid ""
 -#~ "User Application are any application that you would like to confine that "
 -#~ "is started by a user"
 -#~ msgstr ""
--#~ "Una User Application rappresenta qualsiasi applicazione che desiderate "
--#~ "confinare avviata da un utente"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Questo utente eseguirà la registrazione solo tramite un terminale o un login "
-+"remoto.  Per default il suddetto utente non avrà alcun setuid, no "
-+"networking, no su e no sudo."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Ruolo utente del terminale minimo"
+-#~ "ユーザーアプリケーションはユーザーによって起動される、制限をかけたいアプリ"
+-#~ "ケーションです"
+-
 -#~ msgid "User Application"
--#~ msgstr "User Application"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Questo utente può registrarsi ad una macchina tramite X o terminale.  Per "
-+"default il suddetto utente non avrà alcun setuid, nessun networking, no "
-+"sudo, e no su"
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Ruolo utente X Windows minimo"
+-#~ msgstr "ユーザーアプリケーション"
+-
 -#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Utenti di registrazione</b>"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Utente con networking conpleto, nessuna applicazione setuid senza "
-+"transizione, no sudo e no su."
+-#~ msgstr "<b>ログインユーザー</b>"
+-
 -#~ msgid "Modify an existing login user record."
--#~ msgstr "Modifica una voce esistente dell'utente di registrazione."
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Ruolo utente"
+-#~ msgstr "既存のログインユーザー記録を修正"
+-
 -#~ msgid "Existing User Roles"
--#~ msgstr "Utenti esistenti"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Utente con un network completo, nessuna applicazione setuid senza "
-+"transizione, no su, può eseguire il sudo nei ruoli di amministrazione root"
+-#~ msgstr "既存ユーザーのロール"
+-
 -#~ msgid ""
 -#~ "This user will login to a machine only via a terminal or remote login.  "
 -#~ "By default this user will have  no setuid, no networking, no su, no sudo."
 -#~ msgstr ""
--#~ "Questo utente eseguirà la registrazione solo tramite un terminale o un "
--#~ "login remoto.  Per default il suddetto utente non avrà alcun setuid, no "
--#~ "networking, no su e no sudo."
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Ruolo Utente amministratore"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Utenti root</b>"
+-#~ "このユーザーはターミナル、又はリモートログインを介してログイン するでしょ"
+-#~ "う。デフォルトでは、このユーザーは setuid や networking や su や sudo を持"
+-#~ "ちません。"
+-
 -#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Ruolo utente del terminale minimo"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Selezionare il Ruolo utente amministratore root, se l'utente verrà impiegato "
-+"per amministrare la macchina operando come utente root.  Il suddetto utente "
-+"non sarà in grado di eseguire il login diretto sul sistema."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Ruolo utente amministratore root"
+-#~ msgstr "最小限のターミナルユーザーロール"
+-
 -#~ msgid ""
 -#~ "This user can login to a machine via X or terminal.  By default this user "
 -#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
--#~ "Questo utente può registrarsi ad una macchina tramite X o terminale.  Per "
--#~ "default il suddetto utente non avrà alcun setuid, nessun networking, no "
--#~ "sudo, e no su"
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+"Inserisci il nome dell'applicazione o il ruolo dell'utente da confinare"
+-#~ "このユーザーは X 又はターミナルを介してマシンにログインできます。デフォル"
+-#~ "ト では、このユーザーは setuid や networking や sudo や su を持ちません。"
+-
 -#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Ruolo utente X Windows minimo"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Nome"
+-#~ msgstr "最小限の X Windows ユーザーロール"
+-
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "sudo, no su."
 -#~ msgstr ""
--#~ "Utente con networking conpleto, nessuna applicazione setuid senza "
--#~ "transizione, no sudo e no su."
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Inserire il percorso completo per confinare l'eseguibile."
+-#~ "完全なネットワーキングを持ち、転移のない setuid アプリケーションや sudo "
+-#~ "や su を持たないユーザー。"
+-
 -#~ msgid "User Role"
--#~ msgstr "Ruolo utente"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
+-#~ msgstr "ユーザーロール"
+-
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "su, can sudo to Root Administration Roles"
 -#~ msgstr ""
--#~ "Utente con un network completo, nessuna applicazione setuid senza "
--#~ "transizione, no su, può eseguire il sudo nei ruoli di amministrazione root"
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Inserire un nome unico per un ruolo utente o applicazione confinata."
+-#~ "完全なネットワーキングを持ち、転移のない setuid アプリケーションや su を持"
+-#~ "たないユーザーは sudo で Root の管理ロールを使用できます。"
+-
 -#~ msgid "Admin User Role"
--#~ msgstr "Ruolo Utente amministratore"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Eseguibile"
+-#~ msgstr "管理ユーザーのロール"
+-
 -#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Utenti root</b>"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Script init"
+-#~ msgstr "<b>Root ユーザー</b>"
+-
 -#~ msgid ""
 -#~ "Select Root Administrator User Role, if this user will be used to "
 -#~ "administer the machine while running as root.  This user will not be able "
 -#~ "to login to the system directly."
 -#~ msgstr ""
--#~ "Selezionare il Ruolo utente amministratore root, se l'utente verrà "
--#~ "impiegato per amministrare la macchina operando come utente root.  Il "
--#~ "suddetto utente non sarà in grado di eseguire il login diretto sul "
--#~ "sistema."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Inserire il percorso completo sullo script init usato per avviare "
-+"l'applicazione confinata."
+-#~ "このユーザーが root として実行し、マシンの管理者として使用するユーザーなら"
+-#~ "ば Root 管理ユーザーロールを選択してください。このユーザーはシステムに 直"
+-#~ "接ログインすることはできません。"
+-
 -#~ msgid "Root Admin User Role"
--#~ msgstr "Ruolo utente amministratore root"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Selezionare i ruoli utente che desiderate personalizzare"
+-#~ msgstr "Root 管理ユーザーロール"
+-
 -#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr ""
--#~ "Inserisci il nome dell'applicazione o il ruolo dell'utente da confinare"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Selezionare i ruoli utente che eseguiranno la transizione a questi domini "
-+"delle applicazioni. "
+-#~ msgstr "制限するアプリケーションかユーザーロールの名前を入力"
+-
 -#~ msgid "Name"
--#~ msgstr "Nome"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Selezionare i domini aggiuntivi ai quali questo ruolo utente eseguirà la "
-+"transizione"
+-#~ msgstr "名前"
+-
 -#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Inserire il percorso completo per confinare l'eseguibile."
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Selezionare i domini delle applicazioni dasiderati per la transizione di "
-+"questo ruolo utente."
+-#~ msgstr "制限する実行ファイルのフルパスを入力してください。"
+-
 -#~ msgid "..."
 -#~ msgstr "..."
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+"Selezionare i ruoli utente che eseguiranno la transizione a questo dominio"
+-
 -#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Inserire un nome unico per un ruolo utente o applicazione confinata."
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Selezionare i domini aggiuntivi che questo utente dovrà amministrare"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Selezionare i domini che si desidera che questo utente amministri."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Selezionare i ruoli aggiuntivi per questo utente"
+-#~ msgstr "制限するアプリケーションかユーザーロールの特有な名前を入力"
+-
 -#~ msgid "Executable"
--#~ msgstr "Eseguibile"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Inserisci le porte di rete alle quali un ruolo utente/applicazione è in "
-+"ascolto"
+-#~ msgstr "実行ファイル"
+-
 -#~ msgid "Init script"
--#~ msgstr "Script init"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Porte TCP</b>"
+-#~ msgstr "初期化スクリプト"
+-
 -#~ msgid ""
 -#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
--#~ "Inserire il percorso completo sullo script init usato per avviare "
--#~ "l'applicazione confinata."
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
-+"porta udp"
+-#~ "制限されるアプリケーションの起動に使用される初期化スクリプトのフルパスを入"
+-#~ "力してください。"
+-
 -#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Selezionare i ruoli utente che desiderate personalizzare"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Tutte/i"
+-#~ msgstr "カスタマイズしたいユーザーロールを選択"
+-
 -#~ msgid ""
 -#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "Selezionare i ruoli utente che eseguiranno la transizione a questi domini "
--#~ "delle applicazioni. "
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Permetti ad un ruolo utente/applicazione di chiamare bindresvport con 0. "
-+"Binding alle porte 600-1024 in corso"
+-#~ msgstr "このアプリケーションドメインに転移するユーザーロールを選択"
+-
 -#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr ""
--#~ "Selezionare i domini aggiuntivi ai quali questo ruolo utente eseguirà la "
--#~ "transizione"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
+-#~ msgstr "このユーザーロールが転移する先の追加のドメインを選択してください"
+-
 -#~ msgid ""
 -#~ "Select the applications domains that you would like this user role to "
 -#~ "transition to."
 -#~ msgstr ""
--#~ "Selezionare i domini delle applicazioni dasiderati per la transizione di "
--#~ "questo ruolo utente."
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Inserisci un elenco di porte udp o una gamma di porte separato da virgole, "
-+"alle quali un ruolo utente/applicazione può eseguire il bind. Ad esempio: "
-+"612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Porte non riservate (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Seleziona porte"
+-#~ "このユーザーロールの転移先となるアプリケーションドメインを選択 してくださ"
+-#~ "い"
+-
 -#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr ""
--#~ "Selezionare i ruoli utente che eseguiranno la transizione a questo dominio"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
-+"porta udp > 1024"
+-#~ msgstr "このドメインに転移するユーザーロールを選択"
+-
 -#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr ""
--#~ "Selezionare i domini aggiuntivi che questo utente dovrà amministrare"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Porte UDP</b>"
+-#~ msgstr "このユーザーロールが管理する追加のドメインを選択してください"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
  
 -#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "Selezionare i domini che si desidera che questo utente amministri."
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "このユーザーに管理させたいドメインを選択してください。"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
 +msgstr ""
-+"Inserisci le porte di rete alle quali un ruolo utente/applicazione può "
-+"collegarsi"
  
 -#~ msgid "Select additional roles for this user"
--#~ msgstr "Selezionare i ruoli aggiuntivi per questo utente"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Inserire un elenco di porte tcp o una gamma di porte separato da virgole, "
-+"alle quali un ruolo utente/applicazione può collegarsi. Ad esempio: 612, "
-+"650-660"
+-#~ msgstr "このユーザー用の追加のロールを選択してください"
+-
 -#~ msgid "Enter network ports that application/user role listens to"
 -#~ msgstr ""
--#~ "Inserisci le porte di rete alle quali un ruolo utente/applicazione è in "
--#~ "ascolto"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
+-#~ "アプリケーション/ユーザーロールがリッスンするネットワークポートを入力しま"
+-#~ "す"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
 +msgstr ""
-+"Inserisci un elenco di porte udp o una gamma di porte separato da virgole, "
-+"alle quali un ruolo utente/applicazione si può collegare. Ad esempio: 612, "
-+"650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Selezionare le caratteristiche di applicazione comune"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Scrive i messaggi syslog\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Crea/Manipola i file temporanei in /tmp"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Utilizza Pam per l'autenticazione"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Utilizza le chiamate getpw* o nsswitch"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Utilizza dbus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Invia messaggi audit"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Interagisce con il terminale"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Invia email"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Selezionare i file/directory gestiti dall'applicazione"
  
 -#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>Porte TCP</b>"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgstr "<b>TCP ポート</b>"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+"Aggiungi File/Directory sulle quali questa applicazione deve eseguire la "
-+"\"scrittura\". Pid Files, File di log, /var/lib Files ..."
  
 -#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
--#~ "Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
--#~ "porta udp"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Selezionare le booleane usate dall'applicazione"
+-#~ "制限されたアプリケーション/ユーザーロールによる全ての udp ポートへのバイン"
+-#~ "ドを 許可"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
  
 -#~ msgid "All"
--#~ msgstr "Tutte/i"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "全て"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Aggiungi/Rimuovi valori della booleana usati per questa applicazione/utente "
-+"confinati"
  
 -#~ msgid ""
 -#~ "Allow application/user role to call bindresvport with 0. Binding to port "
 -#~ "600-1024"
 -#~ msgstr ""
--#~ "Permetti ad un ruolo utente/applicazione di chiamare bindresvport con 0. "
--#~ "Binding alle porte 600-1024 in corso"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Selezionare la directory per generare la policy in"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Directory della policy"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "File della policy generati"
+-#~ "アプリケーション/ユーザーロールが bindresvport を 0 でコールすることを許"
+-#~ "可。 ポート 600-1024 にバインド"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
  
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Questo tool genererà quanto segue: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Eseguire lo script della shell per compilare/installare e rietichettare i "
-+"file/directory.  \n"
-+"Utilizzare semanage o useradd per mappare gli utenti di registrazione di "
-+"Linux con i ruoli\n"
-+" utente. Impostare la macchina in modalità permissiva (setenforce 0). \n"
-+"Registratevi come utente e testate questo ruolo utente.\n"
-+"Utilizzare audit2allow -R per generare le regole aggiuntive per il file te.\n"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Inserisci un elenco di porte udp o una gamma di porte separato da "
--#~ "virgole, alle quali un ruolo utente/applicazione può eseguire il bind. Ad "
--#~ "esempio: 612, 650-660"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Questo tool genererà quanto segue: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Eseguire lo script della shell per compilare/installare e rietichettare i  \n"
-+"file/directory.  Impostare la macchina in modalità permissiva (setenforce "
-+"0). \n"
-+"Eseguire/riavviare l'applicazione per generare i messaggi avc.\n"
-+"Utilizzare audit2allow -R per generare le regole aggiuntive per il file te.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Aggiungi dialogo booleana"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Nome booleana"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Ruolo"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Utente_esistente"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Applicazione"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s deve essere una directory"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "È necessario selezionare un utente"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Selezionare il file eseguibile da confinare."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Selezionare il file dello script init da confinare."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Selezionare i file che l'applicazione confinata crea o scrive"
+-#~ "アプリケーション/ユーザーロールがバインドする udp ポートのカンマ区切りの一"
+-#~ "覧か、 又はポートの範囲を入力します。例: 612, 650-660"
+-
 -#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Porte non riservate (>1024)"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Selezionare le directory che l'applicazione confinata possiede o nelle quali "
-+"scrive"
+-#~ msgstr "予約されていないポート (> 1024)"
+-
 -#~ msgid "Select Ports"
--#~ msgstr "Seleziona porte"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Selezionare la directory per generare i file della policy in"
+-#~ msgstr "ポートを選択してください"
+-
 -#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
--#~ "Permette ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
--#~ "porta udp > 1024"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Tipo %s_t già definito nella policy corrente.\n"
-+"Desideri continuare?"
+-#~ "アプリケーション/ユーザーロールによる 1024 以上の全ての udp ポートへのバイ"
+-#~ "ンドを 許可"
+-
 -#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>Porte UDP</b>"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Verifica nome"
+-#~ msgstr "<b>UDP ポート</b>"
+-
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
--#~ "Inserisci le porte di rete alle quali un ruolo utente/applicazione può "
--#~ "collegarsi"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Modulo %s.pp già caricato nella policy corrente.\n"
-+"Desideri continuare?"
+-#~ "アプリケーション/ユーザーロールが接続するネットワークポートを入力します"
+-
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Inserire un elenco di porte tcp o una gamma di porte separato da virgole, "
--#~ "alle quali un ruolo utente/applicazione può collegarsi. Ad esempio: 612, "
--#~ "650-660"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "È necessario inserire un nome"
+-#~ "アプリケーション/ユーザーロールが接続する tcp ポートのカンマ区切りの一覧"
+-#~ "か、 又は、ポートの範囲を入力します。例: 612, 650-660"
+-
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Inserisci un elenco di porte udp o una gamma di porte separato da "
--#~ "virgole, alle quali un ruolo utente/applicazione si può collegare. Ad "
--#~ "esempio: 612, 650-660"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "È necessario inserire un eseguibile"
+-#~ "アプリケーション/ユーザーロールが接続する udp ポートのカンマ区切りの一覧"
+-#~ "か、 又はポートの範囲を入力します。例: 612, 650-660"
+-
 -#~ msgid "Select common application traits"
--#~ msgstr "Selezionare le caratteristiche di applicazione comune"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Configura SELinux"
+-#~ msgstr "共通のアプリケーション特質を選択してください"
+-
 -#~ msgid "Writes syslog messages\t"
--#~ msgstr "Scrive i messaggi syslog\t"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Le porte devono essere numeri o una gamma di numeri da 1 a %d "
+-#~ msgstr "syslog メッセージを書きます\t"
+-
 -#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "Crea/Manipola i file temporanei in /tmp"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "È necessario inserire un nome per il vostro processo/utente confinato"
+-#~ msgstr " /tmp 内の一時ファイルの作成/操作をします"
+-
 -#~ msgid "Uses Pam for authentication"
--#~ msgstr "Utilizza Pam per l'autenticazione"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "I tipi di UTENTI non sono eseguibili permessi"
+-#~ msgstr "Pam を認証に使用します"
+-
 -#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Utilizza le chiamate getpw* o nsswitch"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Solo le applicazioni DAEMON possono utilizzare uno script init"
+-#~ msgstr "nsswitch 又は getpw* コールを使用します"
+-
 -#~ msgid "Uses dbus"
--#~ msgstr "Utilizza dbus"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog deve essere un valore boolean"
+-#~ msgstr "dbus を使用します"
+-
 -#~ msgid "Sends audit messages"
--#~ msgstr "Invia messaggi audit"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "I tipi USER ottengono automaticamente un tipo tmp"
+-#~ msgstr "監査メッセージを送信します。"
+-
 -#~ msgid "Interacts with the terminal"
--#~ msgstr "Interagisce con il terminale"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+"È necessario inserire il percorso eseguibile per il vostro processo confinato"
+-#~ msgstr "ターミナルと相互作用"
+-
 -#~ msgid "Sends email"
--#~ msgstr "Invia email"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "File tipo enforcement"
+-#~ msgstr "電子メールを送信します"
+-
 -#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Selezionare i file/directory gestiti dall'applicazione"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "File dell'interfaccia"
+-#~ msgstr "アプリケーションが管理するファイル/ディレクトリーを選択してください"
+-
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr ""
--#~ "Aggiungi File/Directory sulle quali questa applicazione deve eseguire la "
--#~ "\"scrittura\". Pid Files, File di log, /var/lib Files ..."
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "File dei contesti del file"
+-#~ "アプリケーションが \"書き込む\" 必要があるファイル/ディレクトリーを追加し"
+-#~ "ます。Pid ファイル、ログファイル、/var/lib ファイル ..."
+-
 -#~ msgid "Select booleans that the application uses"
--#~ msgstr "Selezionare le booleane usate dall'applicazione"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Script d'impostazione"
+-#~ msgstr "アプリケーションが使用するブーリアン値を選択してください"
+-
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr ""
--#~ "Aggiungi/Rimuovi valori della booleana usati per questa applicazione/"
--#~ "utente confinati"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Porta di rete"
+-#~ "この制限されるアプリケーション/ユーザーに使用されるブーリアン値を追加/削除"
+-
 -#~ msgid "Select directory to generate policy in"
--#~ msgstr "Selezionare la directory per generare la policy in"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"Tipo di\n"
-+"porta di SELinux"
+-#~ msgstr "ポリシーを生成する場所のディレクトリーを選択してください"
+-
 -#~ msgid "Policy Directory"
--#~ msgstr "Directory della policy"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protocollo"
+-#~ msgstr "ポリシーディレクトリー"
+-
 -#~ msgid "Generated Policy Files"
--#~ msgstr "File della policy generati"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Livello MLS/\n"
-+"MCS"
+-#~ msgstr "生成したポリシーファイル"
+-
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -116867,109 +119124,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "Login as the user and test this user role.\n"
 -#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Questo tool genererà quanto segue: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Eseguire lo script della shell per compilare/installare e rietichettare i "
--#~ "file/directory.  \n"
--#~ "Utilizzare semanage o useradd per mappare gli utenti di registrazione di "
--#~ "Linux con i ruoli\n"
--#~ " utente. Impostare la macchina in modalità permissiva (setenforce 0). \n"
--#~ "Registratevi come utente e testate questo ruolo utente.\n"
--#~ "Utilizzare audit2allow -R per generare le regole aggiuntive per il file "
--#~ "te.\n"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Porta"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Numero porta \"%s\" non valido.  0 < PORT_NUMBER < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Vista elenco"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Vista del gruppo"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "Protezione del servizio di SELiunx"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Disabilita protezione SELinux per il demone acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Amministratore"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Permetti a tutti i demoni di scrivere i corefile su /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Permetti a tutti i demoni di utilizzare i tty non assegnati"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Priv utente"
+-#~ "このツールは以下を生成します: \n"
+-#~ "タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスク"
+-#~ "リプト(sh)。\n"
+-#~ "コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェ"
+-#~ "ルスクリプトを実行します。emanage 又は useradd を使用して Linux ログイン"
+-#~ "の ユーザーをユーザーロールにマップします。\n"
+-#~ "マシンを寛容モード (setenforce 0) にします。\n"
+-#~ "ユーザーとしてログインしてこのユーザーロールをテストします。audit2allow -"
+-#~ "R を使用し、te ファイルのための追加ルールを生成します。\n"
+-
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
 -#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
@@ -116979,2394 +119143,1892 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "Run/restart the application to generate avc messages.\n"
 -#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Questo tool genererà quanto segue: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Eseguire lo script della shell per compilare/installare e rietichettare "
--#~ "i  \n"
--#~ "file/directory.  Impostare la macchina in modalità permissiva (setenforce "
--#~ "0). \n"
--#~ "Eseguire/riavviare l'applicazione per generare i messaggi avc.\n"
--#~ "Utilizzare audit2allow -R per generare le regole aggiuntive per il file "
--#~ "te.\n"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux gadmin di eseguire i file nella home "
-+"directory o /tmp"
+-#~ "このツールは以下を生成します: \n"
+-#~ "タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスク"
+-#~ "リプト(sh)。\n"
+-#~ "コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェ"
+-#~ "ルスクリプトを実行します。マシンを寛容モード (setenforce 0) にします。\n"
+-#~ "アプリケーションを実行/再起動し、avc メッセージを生成します。\n"
+-#~ "audit2allow -R を使用し、te ファイルのための追加ルールを生成します。\n"
+-
 -#~ msgid "Add Booleans Dialog"
--#~ msgstr "Aggiungi dialogo booleana"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente SELinux guest di eseguire i file nella home "
-+"directory o /tmp"
+-#~ msgstr "ブーリアンダイアログを追加"
+-
 -#~ msgid "Boolean Name"
--#~ msgstr "Nome booleana"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Protezione memoria"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Permetti lo stack eseguibile di java"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Mount"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Permetti a mount di montare qualsiasi file"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Permetti a mount di montare qualsiasi directory"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Permetti lo stack eseguibile di mplayer"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Permetti a ssh di eseguire ssh-keysign"
+-#~ msgstr "ブーリアン値名"
+-
 -#~ msgid "Role"
--#~ msgstr "Ruolo"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux staff di eseguire i file nella home "
-+"directory o /tmp"
+-#~ msgstr "ロール"
+-
 -#~ msgid "Existing_User"
--#~ msgstr "Utente_esistente"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux sysadm di eseguire i file nella home "
-+"directory o /tmp"
+-#~ msgstr "既存ユーザー(_U)"
+-
 -#~ msgid "Application"
--#~ msgstr "Applicazione"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux unconfined di eseguire i file nella "
-+"home directory o /tmp"
+-#~ msgstr "アプリケーション"
+-
 -#~ msgid "%s must be a directory"
--#~ msgstr "%s deve essere una directory"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Configurazione di rete"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permetti ai pacchetti non etichettati di percorrere la rete"
+-#~ msgstr "%s  はディレクトリでなければなりません"
+-
 -#~ msgid "You must select a user"
--#~ msgstr "È necessario selezionare un utente"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux user di eseguire i file nella home "
-+"directory o /tmp"
+-#~ msgstr "ユーザーを選択する必要があります"
+-
 -#~ msgid "Select executable file to be confined."
--#~ msgstr "Selezionare il file eseguibile da confinare."
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Permetti non confinato a dyntrans su unconfined_execmem"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Database"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Permetti all'utente di collegarsi al socket mysql"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Permetti all'utente di collegarsi al socket postgres"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "XServer"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Permetti ai client di scrivere sulla memoria condivisa di X"
+-#~ msgstr "制限する実行ファイルを選択してください。"
+-
 -#~ msgid "Select init script file to be confined."
--#~ msgstr "Selezionare il file dello script init da confinare."
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permetti all'account utente di SELinux xguest di eseguire i file nella home "
-+"directory o /tmp"
+-#~ msgstr "制限する初期化スクリプトを選択してください。"
+-
 -#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Selezionare i file che l'applicazione confinata crea o scrive"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Permetti ai demoni di essere eseguiti con NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Web Application"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Transizione utente di SELinux staff su Web Browser Domain"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transizione utente di SELinux sysadm su Web Browser Domain"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transizione utente di SELinux user su Web Browser Domain"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transizione utente di SELinux xguest su Web Browser Domain"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Permetti ai web browser di staff di scrivere sulle home directory"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Disabilita la protezione SELinux per amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Disabilita la protezione SELinux per amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone apmd"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Disabilita la protezione SELinux per il demone arpwatch"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone auditd"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Disabilita la protezione SELinux per il demone automount"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Disabilita la protezione SELinux per avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Disabilita la protezione SELinux per il demone bluetooth"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Disabilita la protezione SELinux per il demone canna"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cardmgr"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Disabilita la protezione SELinux per il Cluster server"
+-#~ msgstr ""
+-#~ "制限されたアプリケーションが作成したり、書き込んだりするファイルを選択して"
+-#~ "ください"
+-
 -#~ msgid ""
 -#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr ""
--#~ "Selezionare le directory che l'applicazione confinata possiede o nelle "
--#~ "quali scrive"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Permetti a cdrecord di leggere vari contenuti. nfs, samba, dispositivi "
-+"estraibili, user-temp e file con contenuti non fidati"
+-#~ "制限するアプリケーションが所有していたり、書き込んだりするディレクトリーを"
+-#~ "選択してください"
+-
 -#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Selezionare la directory per generare i file della policy in"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Disabilita la protezione SELinux per il demone ciped"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone clamd"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Disabilita la protezione SELinux per clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Disabilita la protezione SELinux per clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Disabilita la protezione SELinux per il demone comsat"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Disabilita la protezione SELinux per il demone courier"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cpucontrol"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cpuspeed"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Disabilita la protezione SELinux per il demone crond"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Stampa"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Disabilita la protezione SELinux per il server backend di cupsd"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cupsd"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Disabilita la protezione SELinux per cupsd_lpd"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cvs"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Disabilita la protezione SELinux per il demone cyrus"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dbskkd"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dbusd"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Disabilita la protezione SELinux per dccd"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Disabilita la protezione SELinux per dccifd"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Disabilita la protezione SELinux per dccm"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Disabilita la protezione SELinux per il demone ddt"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone devfsd"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dhcpc"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dhcpd"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dictd"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Permetti a sysadm_t di avviare direttamente i demoni"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Disabilita la protezione SELinux per Evolution"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Giochi"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Disabilita la protezione SELinux per i giochi"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Disabilita la protezione SELinux per i web browser"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Disabilita la protezione SELinux per Thunderbird"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone distccd"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dmesg"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dnsmasq"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Disabilita la protezione SELinux per il demone dovecot"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone entropyd"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Disabilita la protezione SELinux per fetchmail"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone fingerd"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Disabilita la protezione SELinux per il demone freshclam"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Disabilita la protezione SELinux per il demone fsdaemon"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Disabilita la protezione SELinux per il demone gpm"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Disabilita la protezione SELinux per il demone gss"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Disabilita la protezione SELinux per il demone Hal"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Compatibilità"
+-#~ msgstr "生成するポリシーファイルを入れるディレクトリーを選択してください"
+-
 -#~ msgid ""
 -#~ "Type %s_t already defined in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "Tipo %s_t già definito nella policy corrente.\n"
--#~ "Desideri continuare?"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"Non eseguire l'audit degli oggetti che sappiamo essere corrotti ma che non "
-+"rappresentano alcun rischio della sicurezza"
+-#~ "タイプ %s_t は既に現在のポリシーで定義されています。\n"
+-#~ "継続しますか ?"
+-
 -#~ msgid "Verify Name"
--#~ msgstr "Verifica nome"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Disabilita la protezione SELinux per il demone hostname"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Disabilita la protezione SELinux per il demone hotplug"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Disabilita la protezione SELinux per il demone howl"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Disabilita la protezione SELinux per il demone hplip di cups"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Disabilita la protezione SELinux per httpd rotatelog"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "Servizio HTTPD"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Disabilita la protezione SELinux per http suexec"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Disabilita la protezione SELinux per il demone hwclock"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Disabilita la protezione SELinux per il demone i18n"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Disabilita la protezione SELinux per il demone imazesrv"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Disabilita la protezione SELinux per il demone figlio inetd"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone inetd"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone innd"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Disabilita la protezione SELinux per il demone iptables"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone ircd"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Disabilita la protezione SELinux per il demone irqbalance"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Disabilita la protezione SELinux per il demone iscsi"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone jabberd"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Disabilita la protezione SELinux per il demone kadmind"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone klogd"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Disabilita la protezione SELinux per il demone krb5kdc"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Disabilita la protezione SELinux per il demone ktalk"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Disabilita la protezione SELinux per il demone kudzu"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Disabilita la protezione SELinux per il demone locate"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone lpd"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone lrrd"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Disabilita la protezione SELinux per il demone lvm"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Disabilita la protezione SELinux per mailman"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Permetti a evolution e thunderbird di leggere i file dell'utente"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Disabilita la protezione SELinux per il demone mdadm"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone monopd"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Permetti al browser di mozilla di leggere i file dell'utente"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Disabilita la protezione SELinux per il demone mrtg"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Disabilita la protezione SELinux per il demone mysqld"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nagios"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Nome servizio"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Disabilita la protezione SELinux per il demone named"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nessusd"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Disabilita la protezione SELinux per NetworkManager"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nfsd"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nmbd"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nrpe"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nscd"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone nsd"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Disabilita la protezione SELinux per il demone ntpd"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Disabilita la protezione SELinux per oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Disabilita la protezione SELinux per oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Disabilita la protezione SELinux per il demone openvpn"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Disabilita la protezione SELinux per il demone pam"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Disabilita la protezione SELinux per pegasus"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Disabilita la protezione SELinux per il demone perdition"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Disabilita la protezione SELinux per il demone portmap"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Disabilita la protezione SELinux per il demone portslave"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Disabilita la protezione SELinux per postfix"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Disabilita la protezione SELinux per il demone postgresql"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Permetti a pppd di essere eseguito per un utente normale"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Disabilita protezione SELinux per pptp"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Disabilita protezione SELinux per il demone prelink"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Disabilita protezione SELinux per il demone privoxy"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Disabilita protezione SELinux per il demone ptal"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Disabilita protezione SELinux per il demone pxe"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Disabilita protezione SELinux per pyzord"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Disabilita protezione SELinux per il demone quota"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Disabilita protezione SELinux per il demone radiusd"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Disabilita protezione SELinux per il demone radvd"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Disabilita protezione SELinux per rdisc"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Disabilita protezione SELinux per readahead"
+-#~ msgstr "名前の証明"
+-
 -#~ msgid ""
 -#~ "Module %s.pp already loaded in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "Modulo %s.pp già caricato nella policy corrente.\n"
--#~ "Desideri continuare?"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Permetti ai programmi di leggere i file in posizioni non-standard (default_t)"
+-#~ "モジュール %s.pp は既に現在のポリシー内にロードされています。\n"
+-#~ "継続しますか ?"
+-
 -#~ msgid "You must enter a name"
--#~ msgstr "È necessario inserire un nome"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Disabilita protezione SELinux per restorecond"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Disabilita protezione SELinux per il demone rhgb"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Disabilita protezione SELinux per ricci"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Disabilita protezione SELinux per ricci_modclusterd"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Disabilita protezione SELinux per il demone rlogind"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Disabilita protezione SELinux per il demone rpcd"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Disabilita protezione SELinux per rshd"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Disabilita protezione SELinux per il demone rsync"
+-#~ msgstr "名前を指定する必要があります"
+-
 -#~ msgid "You must enter a executable"
--#~ msgstr "È necessario inserire un eseguibile"
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+"Permetti a ssh di essere eseguito da inetd invece di essere eseguito come "
-+"demone"
+-#~ msgstr "実行ファイルを指定する必要があります"
+-
 -#~ msgid "Configue SELinux"
--#~ msgstr "Configura SELinux"
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Permetti a Samba di condividere le directory nfs"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "Server per l'autenticazione SASL"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Permetti al server di autenticazione sasl di leggere /etc/shadow"
+-#~ msgstr "SELinux を設定する"
+-
 -#, fuzzy
 -#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 -#~ msgstr ""
--#~ "Le porte devono essere numerate o avere una gamma di numeri da 1 a %d "
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Permetti al server di X-Windows di mappare una regione della memoria come "
-+"eseguibile e scrivibile"
+-#~ "ポートは 1 から %d までの数字か、又は数字の範囲でなければなりません "
+-
 -#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr ""
--#~ "È necessario inserire un nome per il vostro processo/utente confinato"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Disabilita protezione SELinux per il demone saslauthd"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Disabilita protezione SELinux per il demone scannerdaemon"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Non permettere la transizione a sysadm_t, sudo e su sono affetti"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Non permettere ad alcun processo di caricare i moduli del kernel"
+-#~ msgstr "制限するプロセス/ユーザーの名前を入力しなければなりません"
+-
 -#~ msgid "USER Types are not allowed executables"
--#~ msgstr "I tipi di UTENTI non sono eseguibili permessi"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "USER タイプは実行ファイルとしては認められません"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
 +msgstr ""
-+"Non permettere ad alcun processo di modificare la policy SELinux del kernel"
  
 -#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "Solo le applicazioni DAEMON possono utilizzare uno script init"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Disabilita protezione SELinux per il demone sendmail"
+-#~ msgstr "DAEMON アプリのみが初期化スクリプトを使用できます"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
  
 -#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog deve essere un valore boolean"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Disabilita protezione SELinux per setrans"
+-#~ msgstr "use_syslog はブール値でなければなりません"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
  
 -#, fuzzy
 -#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "I tipi di UTENTE ottengono automaticamente un tipo di tmp"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Disabilita protezione SELinux per il demone setroubleshoot"
+-#~ msgstr "USER タイプは自動的に tmp タイプを得ます"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
  
 -#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "È necessario inserire il percorso eseguibile per il vostro processo "
--#~ "confinato"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Disabilita protezione SELinux per il demone slapd"
+-#~ msgstr "制限するプロセスの実行ファイルのバスを入力しなければなりません"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
  
 -#~ msgid "Type Enforcement file"
--#~ msgstr "File tipo enforcement"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Disabilita protezione SELinux per il demone slrnpull"
+-#~ msgstr "強制ファイルを入力してください"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
  
 -#~ msgid "Interface file"
--#~ msgstr "File dell'interfaccia"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Disabilita protezione SELinux per il demone smbd"
+-#~ msgstr "インターフェースファイル"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
  
 -#~ msgid "File Contexts file"
--#~ msgstr "File dei contesti del file"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Disabilita protezione SELinux per il demone snmpd"
+-#~ msgstr "ファイルコンテキストファイル"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
  
 -#~ msgid "Setup Script"
--#~ msgstr "Script d'impostazione"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Disabilita protezione SELinux per il demone snort"
+-#~ msgstr "設定スクリプト"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
  
 -#~ msgid ""
 -#~ "SELinux Port\n"
 -#~ "Type"
 -#~ msgstr ""
--#~ "Tipo di\n"
--#~ "porta di SELinux"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Disabilita protezione SELinux per il demone soundd"
+-#~ "SELinux ポート\n"
+-#~ "タイプ"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
  
 -#~ msgid "Protocol"
--#~ msgstr "Protocollo"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Disabilita protezione SELinux per il demone sound"
+-#~ msgstr "プロトコル"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
  
 -#~ msgid ""
 -#~ "MLS/MCS\n"
 -#~ "Level"
 -#~ msgstr ""
--#~ "Livello MLS/\n"
--#~ "MCS"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Spam Protection"
+-#~ "MLS/MCS\n"
+-#~ "レベル"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
  
 -#~ msgid "Port"
--#~ msgstr "Porta"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Disabilita protezione SELinux per il demone spamd"
+-#~ msgstr "ポート"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
  
 -#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Numero porta \"%s\" non valido.  0 < PORT_NUMBER < 65536 "
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Permetti a spamd di accedere alle home directory "
+-#~ msgstr "ポート番号 \"%s\" は有効ではありません。0 < ポート番号 < 65536 "
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
  
 -#~ msgid "List View"
--#~ msgstr "Vista elenco"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Permetti l'accesso alla rete del demone Spam Assasin"
+-#~ msgstr "一覧表示"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
  
 -#~ msgid "Group View"
--#~ msgstr "Vista del gruppo"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Disabilita protezione SELinux per il demone speedmgmt"
+-#~ msgstr "グループ表示"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
  
 -#~ msgid "SELinux Service Protection"
--#~ msgstr "Protezione del servizio di SELiunx"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
+-#~ msgstr "SELinux サービス保護"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone acct"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Permetti al demone squid di collegarsi alla rete"
+-#~ msgstr "acct デーモンの SELinux 保護を無効にします"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
 -#~ msgid "Admin"
--#~ msgstr "Amministratore"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Disabilita protezione SELinux per il demone squid"
+-#~ msgstr "管理者"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
 -#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Permetti a tutti i demoni di scrivere i corefile su /"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Disabilita protezione SELinux per il demone ssh"
+-#~ msgstr "全てのデーモンがコアファイルを / へ書き込むのを認めます"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
 -#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "Permetti a tutti i demoni di utilizzare i tty non assegnati"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Permetti i login ssh come sysadm_r:sysadm_t"
+-#~ msgstr "全てのデーモンが割り当てられていない tty を使用できることを認めます"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
 -#~ msgid "User Privs"
--#~ msgstr "Priv utente"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
+-#~ msgstr "ユーザー権限"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+"Permetti agli utenti staff_r di eseguire una ricerca della home dir di "
-+"sysadm e leggere i file (come ad esempio ~/.bashrc)"
  
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux gadmin di eseguire i file nella "
--#~ "home directory o /tmp"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Tunnel SSL universale"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Disabilita protezione SELinux per il demone stunnel"
+-#~ "gadmin SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
+-#~ "クトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente SELinux guest di eseguire i file nella home "
--#~ "directory o /tmp"
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ "ゲスト SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
+-#~ "クトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:899
++msgid "Init script"
 +msgstr ""
-+"Permetti al demone stunnel di essere eseguito come standalone, esternamente "
-+"a xinetd"
  
 -#~ msgid "Memory Protection"
--#~ msgstr "Protezione memoria"
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Disabilita protezione SELinux per il demone swat"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Disabilita protezione SELinux per il demone sxid"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Disabilita protezione SELinux per il demone syslogd"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Disabilita protezione SELinux per i cron job del sistema"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Disabilita protezione SELinux per il demone tcp"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Disabilita protezione SELinux per il demone telnet"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Disabilita protezione SELinux per il demone tftpd"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Disabilita protezione SELinux per il demone transproxy"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Disabilita protezione SELinux per il demone udev"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Disabilita protezione SELinux per il demone uml"
+-#~ msgstr "メモリ保護"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
 -#~ msgid "Allow java executable stack"
--#~ msgstr "Permetti lo stack eseguibile di java"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
+-#~ msgstr "java 実行可能スタックを認める"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+"Permetti a xinetd di essere eseguito come non confinato, incluso qualsiasi "
-+"servizio avviato che non possiede una transizione del dominio definita in "
-+"modo esplicito"
  
 -#~ msgid "Mount"
--#~ msgstr "Mount"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
+-#~ msgstr "マウント"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+"Permetti agli script rc di essere eseguiti come non confinati, incluso "
-+"qualsiasi demone avviato da uno script rc che non possiede una transizione "
-+"del dominio definita in modo esplicito"
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Permetti ad rpm di essere eseguito in modo non confinato"
  
 -#~ msgid "Allow mount to mount any file"
--#~ msgstr "Permetti a mount di montare qualsiasi file"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr "mount にあらゆるファイルをマウントすることを認める"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+"Permetti alle utilità privilegiate, come hotplug e insmod, di essere "
-+"eseguite in modo non confinato"
  
 -#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Permetti a mount di montare qualsiasi directory"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Disabilita protezione SELinux per il demone updfstab"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Disabilita protezione SELinux per il demone uptimed"
+-#~ msgstr "mount にあらゆるディレクトリーをマウントすることを認める"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
 -#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Permetti lo stack eseguibile di mplayer"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
+-#~ msgstr "mplayer 実行可能スタックを認める"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+"Permetti a user_r di raggiungere sysadm_r tramite su, sudo, o userhelper. "
-+"Altrimenti solo staff_r può eseguire tale operazione"
  
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Permetti agli utenti di eseguire il comando mount"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
 -#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Permetti a ssh di eseguire ssh-keysign"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr "ssh に ssh-keysign を実行することを認める"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+"Permetti l'accesso diretto del mouse agli utenti normali (abilita solo il "
-+"server X)"
  
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux staff di eseguire i file nella "
--#~ "home directory o /tmp"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Permetti agli utenti di eseguire il comando dmesg"
+-#~ "スタッフ SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディ"
+-#~ "レクトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux sysadm di eseguire i file nella "
--#~ "home directory o /tmp"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ "sysadm SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
+-#~ "クトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"Permetti agli utenti di controllare le interfacce di rete (necessita anche "
-+"USERCTL=true)"
  
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
 -#~ "or /tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux unconfined di eseguire i file "
--#~ "nella home directory o /tmp"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Permetti agli utenti normali di eseguire ping"
+-#~ "制限されていない SELinux ユーザーアカウントに自分のホームディレクトリや /"
+-#~ "tmp ディレクトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
 -#~ msgid "Network Configuration"
--#~ msgstr "Configurazione di rete"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "ネットワーク設定"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
-+"Permetti all'utente di leggere/scrivere noextattrfile (FAT, CDROM, FLOPPY)"
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Permetti ai pacchetti non etichettati di percorrere la rete"
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Permetti agli utenti di rw i dispositivi usb"
+-#~ msgstr "ラベルのないパケットがネットワークに流れるのを認める"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux user di eseguire i file nella home "
--#~ "directory o /tmp"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
+-#~ "ユーザー SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディ"
+-#~ "レクトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+"Permetti agli utenti di eseguire i server TCP (unisci alle porte ed accetta "
-+"il collegamento dallo stesso dominio ed utenti esterni),  disabilitandolo "
-+"verrà forzata la modalità passiva FTP e potrete modificare altri protocolli."
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Permetti agli utenti lo stat ttyfiles"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Disabilita protezione SELinux per il demone uucpd"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Disabilita protezione SELinux per il demone vmware"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Disabilita protezione SELinux per il demone watchdog"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Disabilita protezione SELinux per il demone winbind"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Disabilita protezione SELinux per il demone xdm"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Permetti login xdm come sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Disabilita protezione SELinux per il demone xen"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "Permetti a xen di leggere/scrivere i dispositivi fisici del disco"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Disabilita protezione SELinux per il demone xfs"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Disabilita protezione SELinux per il controllo di xen"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Disabilita protezione SELinux per il demone ypbind"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Disabilita protezione SELinux per il demone della password NIS"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Disabilita protezione SELinux per il demone ypserv"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Disabilita protezione SELinux per il NIS Transfer Daemon"
  
 -#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Permetti non confinato a dyntrans su unconfined_execmem"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "制限されていないものに unconfined_execmem に dyntrans することを認める"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+"Permetti all'utente webadm di SELinux di gestire le directory home di utenti "
-+"non privilegiati"
  
 -#~ msgid "Databases"
--#~ msgstr "Database"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr "データベース"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
-+"Permetti all'utente webadm di SELinux di leggere le home directory di utenti "
-+"non privilegiati"
  
 -#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Permetti all'utente di collegarsi al socket mysql"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Siete sicuri di voler cancellare %s '%s'?"
+-#~ msgstr "ユーザーに mysql ソケットに接続することを許可"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
 -#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Permetti all'utente di collegarsi al socket postgres"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Cancella %s"
+-#~ msgstr "ユーザーに postgres ソケットに接続することを認める"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
 -#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Aggiungi %s"
+-#~ msgstr "X サーバー"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
 -#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Permetti ai client di scrivere sulla memoria condivisa di X"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Modifica %s"
+-#~ msgstr "クライアントに X 共有メモリに書き込むことを認める"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
 -#~ msgstr ""
--#~ "Permetti all'account utente di SELinux xguest di eseguire i file nella "
--#~ "home directory o /tmp"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Permissivo"
+-#~ "xguest SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
+-#~ "クトリにあるファイルの実行を許可する"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
  
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Enforcing"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
  
 -#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Permetti ai demoni di essere eseguiti con NIS"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Disabilitato"
+-#~ msgstr "デーモンに NIS といっしょに実行することを認める"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Web Applications"
--#~ msgstr "Web Application"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Stato"
+-#~ msgstr "ウェブアプリケーション"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
  
 -#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "Transizione utente di SELinux staff su Web Browser Domain"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
+-#~ msgstr "スタッフ SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
 +msgstr ""
-+"Modificando il tipo di policy si provocherà la rietichettatura dell'intero "
-+"file system al prossimo riavvio. La rietichettatura richiederà un "
-+"temponotevole a seconda della grandezza del file system. Desiderate "
-+"continuare?"
  
 -#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "Transizione utente di SELinux sysadm su Web Browser Domain"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
+-#~ msgstr "sysadm SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"Selezionando SELinux disabilitato sarà necessario riavviare il vostro "
-+"sistema.  Tale azione non è consigliata.  Se desiderate attivare nuovamente "
-+"SELinux, sarà necessario rietichettare il sistema.  Se desiderate sapere se "
-+"SELinux è la causa di un problema che si è verificato sul vostro sistema, "
-+"selezionate la modalità permissiva la quale è in grado di registrare i "
-+"messaggi senza forzare la policy di SELinux.  La modalità permissiva non "
-+"richiede un riavvio del sistema    Desiderate continuare?"
  
 -#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "Transizione utente di SELinux user su Web Browser Domain"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
+-#~ msgstr "ユーザー SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
 +msgstr ""
-+"Modificando su SELinux si provocherà la rietichettatura dell'intero "
-+"filesystem al prossimo riavvio. La rietichettatura richiederà un tempo "
-+"notevolea seconda della grandezza del file system. Desiderate continuare?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
  
 -#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "Transizione utente di SELinux xguest su Web Browser Domain"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr "xguest SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
  
 -#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "Permetti ai web browser di staff di scrivere sulle home directory"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Aggiungi mappatura login di SELinux"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Aggiungi porte di rete di SELinux"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "Tipo di SELinux"
+-#~ msgstr ""
+-#~ "スタッフウェブブラウザーにホームディレクトリーに書き込むことを認める"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Disabilita la protezione SELinux per amanda"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
+-#~ msgstr "amanda 用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
-+"Livello MLS/MCS\n"
-+"di SELinux"
  
 -#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Disabilita la protezione SELinux per amavis"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Specifiche del file"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Tipo di file"
+-#~ msgstr "amavis 用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone apmd"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
+-#~ msgstr "apmd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"tutti i files\n"
-+"file regolari\n"
-+"directory\n"
-+"device a carattere\n"
-+"device a blocchi\n"
-+"socket\n"
-+"link simbolici\n"
-+"named pipe\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Aggiungi utente di SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "Amministrazione SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Aggiungi"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Proprietà"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Cancella"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Seleziona oggetto di gestione"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Seleziona:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Modalità Enforcing predefinita del sistema"
  
 -#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone arpwatch"
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgstr "arpwatch デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Disabilitato\n"
-+"Permissivo\n"
-+"Enforcing\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Modalità Enforcing corrente"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Tipo di policy predefinita del sistema: "
  
 -#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone auditd"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
+-#~ msgstr "auditd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"Selezionare se si desidera rietichettare l'intero file system al prossimo "
-+"riavvio.  La rietichettatura può richiedere un tempo notevole, dependente "
-+"dalla grandezza del sistema.  Se si sta cambiando tipi di policy o cambiando "
-+"da disabilitato a enforcing, una rietichettatura è necessaria."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Rietichetta al riavvio successivo."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Ritorna le impostazioni booleane in default del sistema"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Attiva/Disattiva tra Personalizzata e Tutte booleane"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Esegue l'autocomposizione di bloccaggio booleane"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Bloccaggio..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filtro"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Aggiungi contesto del file"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Modifica contesto del file"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Cancella contesto del file"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Attiva/Disattiva tra tutte e contesto personalizzato del file"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Aggiungi mappatura utente SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Modifica mappatura utente SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Cancella mappatura utente SELinux %s"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Aggiungi utente"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Modifica utente"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Cancella utente"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Aggiungi traduzione"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modifica traduzione"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Cancella traduzione"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Aggiungi porta di rete"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Modifica porta di rete"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Cancella porta di rete"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Attiva/Disattiva tra Personalizzata e Tutte le porte"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Genera nuovo modulo della policy"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Carica modulo della policy"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Rimuovi modulo della policy caricabile"
  
 -#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone automount"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
+-#~ msgstr "automount デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+"Abilita/Disabilita le regole audit aggiuntive generalemente non riportate "
-+"nei file di log."
  
 -#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Disabilita la protezione SELinux per avahi"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
+-#~ msgstr "avahi 用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone bluetooth"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Cambia la modalità processo a permissive."
+-#~ msgstr "bluetooth デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone canna"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Cambia la modalità processo a enforcing."
+-#~ msgstr "canna デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cardmgr"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Dominio dei processi"
+-#~ msgstr "cardmgr デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Disabilita la protezione SELinux per il Cluster server"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
+-#~ msgstr "クラスターサーバー用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
 -#~ "user temp and untrusted content files"
 -#~ msgstr ""
--#~ "Permetti a cdrecord di leggere vari contenuti. nfs, samba, dispositivi "
--#~ "estraibili, user-temp e file con contenuti non fidati"
--
+-#~ "cdrecord にいろいろな内容の読み込みを認める。nfs、samba、可搬性装置、ユー"
+-#~ "ザー temp、信頼できない内容のファイル"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone ciped"
--
+-#~ msgstr "ciped デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
 -#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone clamd"
--
+-#~ msgstr "clamd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
 -#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Disabilita la protezione SELinux per clamscan"
--
+-#~ msgstr "clamscan 用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
 -#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Disabilita la protezione SELinux per clvmd"
--
+-#~ msgstr "clvmd 用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 -#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone comsat"
--
+-#~ msgstr "comsat デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
 -#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone courier"
--
+-#~ msgstr "courier デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cpucontrol"
--
+-#~ msgstr "cpucontrol デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cpuspeed"
--
+-#~ msgstr "cpuspeed デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 -#~ msgid "Cron"
 -#~ msgstr "Cron"
--
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 -#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone crond"
--
+-#~ msgstr "crond デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
 -#~ msgid "Printing"
--#~ msgstr "Stampa"
--
+-#~ msgstr "印刷"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Disabilita la protezione SELinux per il server backend di cupsd"
--
+-#~ msgstr "cupsd バックエンドサーバー用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cupsd"
--
+-#~ msgstr "cupsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Disabilita la protezione SELinux per cupsd_lpd"
--
+-#~ msgstr "cupsd_lpd 用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
 -#~ msgid "CVS"
 -#~ msgstr "CVS"
--
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cvs"
--
+-#~ msgstr "cvs デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone cyrus"
--
+-#~ msgstr "cyrus デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
 -#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dbskkd"
--
+-#~ msgstr "dbskkd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
 -#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dbusd"
--
+-#~ msgstr "dbusd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
 -#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Disabilita la protezione SELinux per dccd"
--
+-#~ msgstr "dccd 用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
 -#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Disabilita la protezione SELinux per dccifd"
--
+-#~ msgstr "dccifd 用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
 -#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Disabilita la protezione SELinux per dccm"
--
+-#~ msgstr "dccm 用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone ddt"
--
+-#~ msgstr "ddt デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
 -#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone devfsd"
--
+-#~ msgstr "devfsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
 -#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dhcpc"
--
+-#~ msgstr "dhcpc デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
 -#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dhcpd"
--
+-#~ msgstr "dhcpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 -#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dictd"
--
+-#~ msgstr "dictd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
 -#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Permetti a sysadm_t di avviare direttamente i demoni"
--
+-#~ msgstr "sysadm_t に直接デーモンを起動することを認める"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
 -#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Disabilita la protezione SELinux per Evolution"
--
+-#~ msgstr "Evolution 用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
 -#~ msgid "Games"
--#~ msgstr "Giochi"
--
+-#~ msgstr "ゲーム"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
 -#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Disabilita la protezione SELinux per i giochi"
--
+-#~ msgstr "ゲーム用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
 -#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Disabilita la protezione SELinux per i web browser"
--
+-#~ msgstr "ウェブブラウザー用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
 -#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Disabilita la protezione SELinux per Thunderbird"
--
+-#~ msgstr "Thunderbird 用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 -#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone distccd"
--
+-#~ msgstr "distccd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 -#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dmesg"
--
+-#~ msgstr "dmesg デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
 -#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dnsmasq"
--
+-#~ msgstr "dnsmasq デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
 -#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone dovecot"
--
+-#~ msgstr "dovecot デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
 -#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone entropyd"
--
+-#~ msgstr "entropyd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
 -#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Disabilita la protezione SELinux per fetchmail"
--
+-#~ msgstr "fetchmail 用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
 -#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone fingerd"
--
+-#~ msgstr "fingerd デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
 -#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone freshclam"
--
+-#~ msgstr "freshclam デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
 -#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone fsdaemon"
--
+-#~ msgstr "fsdaemon デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
 -#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone gpm"
--
+-#~ msgstr "gpm デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
 -#~ msgid "NFS"
 -#~ msgstr "NFS"
--
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
 -#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone gss"
--
+-#~ msgstr "gss デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
 -#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone Hal"
--
+-#~ msgstr "Hal デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 -#~ msgid "Compatibility"
--#~ msgstr "Compatibilità"
--
+-#~ msgstr "互換性"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
 -#~ msgid ""
 -#~ "Do not audit things that we know to be broken but which are not security "
 -#~ "risks"
 -#~ msgstr ""
--#~ "Non eseguire l'audit degli oggetti che sappiamo essere corrotti ma che "
--#~ "non rappresentano alcun rischio della sicurezza"
--
+-#~ "壊れていることを知っているが、セキュリティリスクのないことが分かっているも"
+-#~ "のを監査しない"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone hostname"
--
+-#~ msgstr "hostname デーモン用の SELinux 保護を無効にする"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone hotplug"
--
+-#~ msgstr "hotplug デーモン用の SELinux 保護を無効にする"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
 -#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone howl"
--
+-#~ msgstr "howl デーモン用の SELinux 保護を無効にする"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
 -#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone hplip di cups"
--
+-#~ msgstr "cups hplip デーモン用の SELinux 保護を無効にする"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 -#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Disabilita la protezione SELinux per httpd rotatelog"
--
+-#~ msgstr "httpd 交代ログ用の SELinux 保護を無効にする"
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
 -#~ msgid "HTTPD Service"
--#~ msgstr "Servizio HTTPD"
--
+-#~ msgstr "HTTPD サービス"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
 -#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Disabilita la protezione SELinux per http suexec"
--
+-#~ msgstr "http suexec 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
 -#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone hwclock"
--
+-#~ msgstr "hwclock デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone i18n"
--
+-#~ msgstr "i18n デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
 -#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone imazesrv"
--
+-#~ msgstr "imazesrv デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
 -#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Disabilita la protezione SELinux per il demone figlio inetd"
--
+-#~ msgstr "inetd 子デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
 -#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone inetd"
--
+-#~ msgstr "inetd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
 -#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone innd"
--
+-#~ msgstr "innd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone iptables"
--
+-#~ msgstr "iptables デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone ircd"
--
+-#~ msgstr "ircd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
 -#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone irqbalance"
--
+-#~ msgstr "irqbalance デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
 -#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone iscsi"
--
+-#~ msgstr "iscsi デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
 -#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone jabberd"
--
+-#~ msgstr "jabberd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
 -#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
+-#~ msgstr "ケルベロス"
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
 -#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone kadmind"
--
+-#~ msgstr "kadmind デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
 -#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone klogd"
--
+-#~ msgstr "klogd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
 -#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone krb5kdc"
--
+-#~ msgstr "krb5kdc デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Disabilita la protezione SELinux per il demone ktalk"
--
+-#~ msgstr "ktalk デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone kudzu"
--
+-#~ msgstr "kudzu デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone locate"
--
+-#~ msgstr "locate デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone lpd"
--
+-#~ msgstr "lpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone lrrd"
--
+-#~ msgstr "lrrd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone lvm"
--
+-#~ msgstr "lvm デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Disabilita la protezione SELinux per mailman"
--
+-#~ msgstr "mailman 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
 -#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Permetti a evolution e thunderbird di leggere i file dell'utente"
--
+-#~ msgstr "evolution と thunderbird にユーザーファイルを読み込むのを認める"
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone mdadm"
--
+-#~ msgstr "mdadm デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
 -#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone monopd"
--
+-#~ msgstr "monopd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr ""
 -#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Permetti al browser di mozilla di leggere i file dell'utente"
--
+-#~ msgstr "mozilla ブラウザーにユーザーファイルを読み込むのを認める"
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone mrtg"
--
+-#~ msgstr "mrtg デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone mysqld"
--
+-#~ msgstr "mysqld デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nagios"
--
+-#~ msgstr "nagios デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr ""
 -#~ msgid "Name Service"
--#~ msgstr "Nome servizio"
--
+-#~ msgstr "名前サービス"
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone named"
--
+-#~ msgstr "named デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nessusd"
--
+-#~ msgstr "nessusd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Disabilita la protezione SELinux per NetworkManager"
--
+-#~ msgstr "NetworkManager 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nfsd"
--
+-#~ msgstr "nfsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Samba"
 -#~ msgstr "Samba"
--
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nmbd"
--
+-#~ msgstr "nmbd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nrpe"
--
+-#~ msgstr "nrpe デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nscd"
--
+-#~ msgstr "nscd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone nsd"
--
+-#~ msgstr "nsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone ntpd"
--
+-#~ msgstr "ntpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Disabilita la protezione SELinux per oddjob"
--
+-#~ msgstr "oddjob 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Disabilita la protezione SELinux per oddjob_mkhomedir"
--
+-#~ msgstr "oddjob mkhomedir 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone openvpn"
--
+-#~ msgstr "openvpn デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone pam"
--
+-#~ msgstr "pam デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Disabilita la protezione SELinux per pegasus"
--
+-#~ msgstr "pegasus 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone perdition"
--
+-#~ msgstr "perdition デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone portmap"
--
+-#~ msgstr "portmap デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone portslave"
--
+-#~ msgstr "portslave デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:41
++msgid ""
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Disabilita la protezione SELinux per postfix"
--
+-#~ msgstr "postfix 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Disabilita la protezione SELinux per il demone postgresql"
--
+-#~ msgstr "postgresql デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr ""
 -#~ msgid "pppd"
 -#~ msgstr "pppd"
--
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr ""
 -#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Permetti a pppd di essere eseguito per un utente normale"
--
+-#~ msgstr "pppd に一般ユーザーのために実行することを認める"
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Disabilita protezione SELinux per pptp"
--
+-#~ msgstr "pptp 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone prelink"
--
+-#~ msgstr "prelink デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone privoxy"
--
+-#~ msgstr "privoxy デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone ptal"
--
+-#~ msgstr "ptal デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone pxe"
--
+-#~ msgstr "pxe デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Disabilita protezione SELinux per pyzord"
--
+-#~ msgstr "pyzord 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone quota"
--
+-#~ msgstr "quota デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone radiusd"
--
+-#~ msgstr "radiusd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone radvd"
--
+-#~ msgstr "radvd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Disabilita protezione SELinux per rdisc"
--
+-#~ msgstr "rdisc 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Disabilita protezione SELinux per readahead"
--
+-#~ msgstr "rdisc 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:58
++msgid "CVS"
++msgstr ""
 -#~ msgid "Allow programs to read files in non-standard locations (default_t)"
 -#~ msgstr ""
--#~ "Permetti ai programmi di leggere i file in posizioni non-standard "
--#~ "(default_t)"
--
+-#~ "プログラムに標準以外の場所にあるファイルを読み込むことを認める (default_t)"
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Disabilita protezione SELinux per restorecond"
--
+-#~ msgstr "restorecond 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone rhgb"
--
+-#~ msgstr "rhgb デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Disabilita protezione SELinux per ricci"
--
+-#~ msgstr "ricci 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Disabilita protezione SELinux per ricci_modclusterd"
--
+-#~ msgstr "ricci_modclusterd 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone rlogind"
--
+-#~ msgstr "rlogind デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone rpcd"
--
+-#~ msgstr "rpcd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Disabilita protezione SELinux per rshd"
--
+-#~ msgstr "rshd 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
++msgstr ""
 -#~ msgid "rsync"
 -#~ msgstr "rsync"
--
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone rsync"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr ""
--#~ "Permetti a ssh di essere eseguito da inetd invece di essere eseguito come "
--#~ "demone"
--
+-#~ msgstr "rsync デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh にデーモンとしてではなく、inetd から実行することを認める"
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr ""
 -#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Permetti a Samba di condividere le directory nfs"
--
+-#~ msgstr "Samba に nfs ディレクトリーを共有することを認める"
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr ""
 -#~ msgid "SASL authentication server"
--#~ msgstr "Server per l'autenticazione SASL"
--
+-#~ msgstr "SASL 認証サーバー"
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr ""
 -#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Permetti al server di autenticazione sasl di leggere /etc/shadow"
--
+-#~ msgstr "sasl 認証サーバーに /etc/shadow を読み込むことを認める"
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow X-Windows server to map a memory region as both executable and "
 -#~ "writable"
 -#~ msgstr ""
--#~ "Permetti al server di X-Windows di mappare una regione della memoria come "
--#~ "eseguibile e scrivibile"
--
+-#~ "X-Windows サーバーにメモリ領域を実行可能と書込み可能の両方としてマップする"
+-#~ "ことを認める"
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr ""
 -#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone saslauthd"
--
+-#~ msgstr "saslauthd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr ""
 -#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone scannerdaemon"
--
+-#~ msgstr "scannerdaemon デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr ""
 -#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Non permettere la transizione a sysadm_t, sudo e su sono affetti"
--
+-#~ msgstr "sysadm_t への転位を認めない、sudo と su が影響している"
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr ""
 -#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Non permettere ad alcun processo di caricare i moduli del kernel"
--
+-#~ msgstr "どのプロセスにもカーネルモジュールをロードすることを認めない"
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr ""
 -#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Non permettere ad alcun processo di modificare la policy SELinux del "
--#~ "kernel"
--
+-#~ msgstr "どのプロセスにもカーネル SELinux ポリシーを変更することを認めない"
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone sendmail"
--
+-#~ msgstr "sendmail デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Disabilita protezione SELinux per setrans"
--
+-#~ msgstr "setrans 用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone setroubleshoot"
--
+-#~ msgstr "setroubleshoot デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone slapd"
--
+-#~ msgstr "slapd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone slrnpull"
--
+-#~ msgstr "slrnpull デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone smbd"
--
+-#~ msgstr "smbd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone snmpd"
--
+-#~ msgstr "snmpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone snort"
--
+-#~ msgstr "snort デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone soundd"
--
+-#~ msgstr "soundd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone sound"
--
+-#~ msgstr "sound デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr ""
 -#~ msgid "Spam Protection"
--#~ msgstr "Spam Protection"
--
+-#~ msgstr "スパム保護"
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone spamd"
--
+-#~ msgstr "spamd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr ""
 -#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Permetti a spamd di accedere alle home directory "
--
+-#~ msgstr "spamd にホームディレクトリーへのアクセスを認める"
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
++msgstr ""
 -#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Permetti l'accesso alla rete del demone Spam Assasin"
--
+-#~ msgstr "Spam Assassin デーモンにネットワークアクセスを認める"
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone speedmgmt"
--
+-#~ msgstr "speedmgmt デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
++msgstr ""
 -#~ msgid "Squid"
 -#~ msgstr "Squid"
--
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr ""
 -#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Permetti al demone squid di collegarsi alla rete"
--
+-#~ msgstr "squid デーモンにネットワークへの接続を認める"
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone squid"
--
+-#~ msgstr "squid デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone ssh"
--
+-#~ msgstr "ssh デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr ""
 -#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Permetti i login ssh come sysadm_r:sysadm_t"
--
+-#~ msgstr "ssh に sysadm_r:sysadm_t としてログインすることを認める"
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
 -#~ "~/.bashrc)"
 -#~ msgstr ""
--#~ "Permetti agli utenti staff_r di eseguire una ricerca della home dir di "
--#~ "sysadm e leggere i file (come ad esempio ~/.bashrc)"
--
+-#~ "staff_r ユーザーに sysadm ホームディレクトリーを捜し、(~/.bashrc のよう"
+-#~ "な) ファイルを読むことを認める"
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
++msgstr ""
 -#~ msgid "Universal SSL tunnel"
--#~ msgstr "Tunnel SSL universale"
--
+-#~ msgstr "汎用 SSL トンネル"
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone stunnel"
--
+-#~ msgstr "stunnel デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
++msgstr ""
 -#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 -#~ msgstr ""
--#~ "Permetti al demone stunnel di essere eseguito come standalone, "
--#~ "esternamente a xinetd"
--
+-#~ "stunnel デーモンに xinetd の外でスタンドアローンとして実行することを認める"
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr ""
 -#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone swat"
--
+-#~ msgstr "swat デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone sxid"
--
+-#~ msgstr "sxid デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone syslogd"
--
+-#~ msgstr "syslogd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Disabilita protezione SELinux per i cron job del sistema"
--
+-#~ msgstr "システム cron ジョブ用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone tcp"
--
+-#~ msgstr "tcp デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone telnet"
--
+-#~ msgstr "telnet デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone tftpd"
--
+-#~ msgstr "tftpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone transproxy"
--
+-#~ msgstr "transproxy デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr ""
 -#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone udev"
--
+-#~ msgstr "udev デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone uml"
--
+-#~ msgstr "uml デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow xinetd to run unconfined, including any services it starts that do "
 -#~ "not have a domain transition explicitly defined"
 -#~ msgstr ""
--#~ "Permetti a xinetd di essere eseguito come non confinato, incluso "
--#~ "qualsiasi servizio avviato che non possiede una transizione del dominio "
--#~ "definita in modo esplicito"
--
+-#~ "xinetd に、それが起動するドメイン転位が明に定義されていないサービスを含"
+-#~ "め、制限なしで実行することを認める"
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
 -#~ "script that does not have a domain transition explicitly defined"
 -#~ msgstr ""
--#~ "Permetti agli script rc di essere eseguiti come non confinati, incluso "
--#~ "qualsiasi demone avviato da uno script rc che non possiede una "
--#~ "transizione del dominio definita in modo esplicito"
--
+-#~ "rc スクリプトに、rc スクリプトにより起動されるドメイン転位が明に定義されて"
+-#~ "いないデーモンを含め、制限なしで実行することを認める"
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr ""
 -#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Permetti ad rpm di essere eseguito in modo non confinato"
--
+-#~ msgstr "rpm に制限なしで実行することを認める"
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr ""
 -#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 -#~ msgstr ""
--#~ "Permetti alle utilità privilegiate, come hotplug e insmod, di essere "
--#~ "eseguite in modo non confinato"
--
+-#~ "hotplug や insmod のような特権ユーティリティーに制限なしで実行することを認"
+-#~ "める"
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone updfstab"
--
+-#~ msgstr "updfstab デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone uptimed"
--
+-#~ msgstr "uptimed デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
 -#~ "only staff_r can do so"
 -#~ msgstr ""
--#~ "Permetti a user_r di raggiungere sysadm_r tramite su, sudo, o userhelper. "
--#~ "Altrimenti solo staff_r può eseguire tale operazione"
--
+-#~ "user_r に su か、sudo、userhelper 経由で sysadm_r に達することを認める。そ"
+-#~ "うでなければ staff_r のみがそうできる"
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr ""
 -#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Permetti agli utenti di eseguire il comando mount"
--
+-#~ msgstr "ユーザーに mount コマンドを実行することを認める"
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr ""
 -#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Permetti l'accesso diretto del mouse agli utenti normali (abilita solo il "
--#~ "server X)"
--
+-#~ msgstr "標準ユーザーに直接マウスアクセスを認める (X サーバーのみ認める)"
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr ""
 -#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Permetti agli utenti di eseguire il comando dmesg"
--
+-#~ msgstr "ユーザーに dmesg コマンドを実行することを認める"
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr ""
 -#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 -#~ msgstr ""
--#~ "Permetti agli utenti di controllare le interfacce di rete (necessita "
--#~ "anche USERCTL=true)"
--
+-#~ "ユーザーにネットワークインターフェースを制御することを認める "
+-#~ "(USERCTL=true も必要)"
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr ""
 -#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Permetti agli utenti normali di eseguire ping"
--
+-#~ msgstr "通常ユーザーに ping を実行することを認める"
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr ""
 -#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 -#~ msgstr ""
--#~ "Permetti all'utente di leggere/scrivere noextattrfile (FAT, CDROM, FLOPPY)"
--
+-#~ "ユーザーに ext 属性でないファイルの読み書きを認める (FAT、CDROM、フロッ"
+-#~ "ピー)"
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr ""
 -#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Permetti agli utenti di rw i dispositivi usb"
--
+-#~ msgstr "ユーザーに usb 装置の読み書きを認める"
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow users to run TCP servers (bind to ports and accept connection from "
 -#~ "the same domain and outside users)  disabling this forces FTP passive "
 -#~ "mode and may change other protocols"
 -#~ msgstr ""
--#~ "Permetti agli utenti di eseguire i server TCP (unisci alle porte ed "
--#~ "accetta il collegamento dallo stesso dominio ed utenti esterni),  "
--#~ "disabilitandolo verrà forzata la modalità passiva FTP e potrete "
--#~ "modificare altri protocolli."
--
+-#~ "ユーザーに TCP サーバーを実行することを認める (ポートと結びつけ、同一ドメ"
+-#~ "インや外部のユーザーからの接続を受け付ける) これを無効にすると FTP を受動"
+-#~ "モードにし、他のプロトコルも変更するかもしれない"
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr ""
 -#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Permetti agli utenti lo stat ttyfiles"
--
+-#~ msgstr "ユーザーに stat ttyfiles を認める"
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone uucpd"
--
+-#~ msgstr "uucpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone vmware"
+-#~ msgstr "vmware デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone watchdog"
+-#~ msgstr "watchdog デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone winbind"
+-#~ msgstr "winbind デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone xdm"
+-#~ msgstr "xdm デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Permetti login xdm come sysadm_r:sysadm_t"
+-#~ msgstr "xdm が sysadm_r:sysadm_t としてログインすることを認める"
 -
 -#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone xen"
+-#~ msgstr "xen デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "XEN"
 -#~ msgstr "XEN"
 -
 -#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Permetti a xen di leggere/scrivere i dispositivi fisici del disco"
+-#~ msgstr "xen に物理ディスク装置を読み書きすることを認める"
 -
 -#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone xfs"
+-#~ msgstr "xfs デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Disabilita protezione SELinux per il controllo di xen"
+-#~ msgstr "xen control 用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone ypbind"
+-#~ msgstr "ypbind デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone della password NIS"
+-#~ msgstr "NIS パスワードデーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Disabilita protezione SELinux per il demone ypserv"
+-#~ msgstr "ypserv デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Disabilita protezione SELinux per il NIS Transfer Daemon"
+-#~ msgstr "NIS 転送デーモン用の SELinux 保護を無効にする"
 -
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to manage unprivileged users home directories"
 -#~ msgstr ""
--#~ "Permetti all'utente webadm di SELinux di gestire le directory home di "
--#~ "utenti non privilegiati"
+-#~ "SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの管理を認"
+-#~ "める"
 -
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to read unprivileged users home directories"
 -#~ msgstr ""
--#~ "Permetti all'utente webadm di SELinux di leggere le home directory di "
--#~ "utenti non privilegiati"
+-#~ "SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの読み込み"
+-#~ "を認める"
 -
 -#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Siete sicuri di voler cancellare %s '%s'?"
+-#~ msgstr "%s '%s' を本当に削除したいのですか?"
 -
 -#~ msgid "Delete %s"
--#~ msgstr "Cancella %s"
+-#~ msgstr "%s を削除"
 -
 -#~ msgid "Add %s"
--#~ msgstr "Aggiungi %s"
+-#~ msgstr "%s を追加"
 -
 -#~ msgid "Modify %s"
--#~ msgstr "Modifica %s"
+-#~ msgstr "%s を変更"
 -
 -#~ msgid "Permissive"
--#~ msgstr "Permissivo"
+-#~ msgstr "許容"
 -
 -#~ msgid "Enforcing"
--#~ msgstr "Enforcing"
--
--#~ msgid "Disabled"
--#~ msgstr "Disabilitato"
--
--#~ msgid "Status"
--#~ msgstr "Stato"
+-#~ msgstr "強制"
 -
 -#~ msgid ""
 -#~ "Changing the policy type will cause a relabel of the entire file system "
 -#~ "on the next boot. Relabeling takes a long time depending on the size of "
 -#~ "the file system.  Do you wish to continue?"
 -#~ msgstr ""
--#~ "Modificando il tipo di policy si provocherà la rietichettatura "
--#~ "dell'intero file system al prossimo riavvio. La rietichettatura "
--#~ "richiederà un temponotevole a seconda della grandezza del file system. "
--#~ "Desiderate continuare?"
+-#~ "ポリシータイプを変更すると次の起動時に全ファイルシステムのリラベルを引き起"
+-#~ "します。ファイルシステムの大きさに依存してリラベルは長い時間を必要としま"
+-#~ "す。続けますか?"
 -
 -#~ msgid ""
 -#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
@@ -119376,23 +121038,20 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
 -#~ "Do you wish to continue?"
 -#~ msgstr ""
--#~ "Selezionando SELinux disabilitato sarà necessario riavviare il vostro "
--#~ "sistema.  Tale azione non è consigliata.  Se desiderate attivare "
--#~ "nuovamente SELinux, sarà necessario rietichettare il sistema.  Se "
--#~ "desiderate sapere se SELinux è la causa di un problema che si è "
--#~ "verificato sul vostro sistema, selezionate la modalità permissiva la "
--#~ "quale è in grado di registrare i messaggi senza forzare la policy di "
--#~ "SELinux.  La modalità permissiva non richiede un riavvio del sistema    "
--#~ "Desiderate continuare?"
+-#~ "SELinux を無効にするには再起動が必要です。薦められません。後に SELinux を"
+-#~ "有効に戻すことに決めたら、システムはリラベルが必要になります。単に "
+-#~ "SELinux がシステムに問題を起こしているかを知りたいのならば、エラーを記録す"
+-#~ "るだけで SELinux ポリシーを強制しない許容モードにすることができます。許容"
+-#~ "モードは再起動は必要ではありません。続けますか?"
 -
 -#~ msgid ""
 -#~ "Changing to SELinux enabled will cause a relabel of the entire file "
 -#~ "system on the next boot. Relabeling takes a long time depending on the "
 -#~ "size of the file system.  Do you wish to continue?"
 -#~ msgstr ""
--#~ "Modificando su SELinux si provocherà la rietichettatura dell'intero "
--#~ "filesystem al prossimo riavvio. La rietichettatura richiederà un tempo "
--#~ "notevolea seconda della grandezza del file system. Desiderate continuare?"
+-#~ "SELinux を有効に変更すると次の起動時に全ファイルシステムのリラベルを引き起"
+-#~ "します。ファイルシステムの大きさに依存してリラベルは長い時間を必要としま"
+-#~ "す。続けますか?"
 -
 -#~ msgid "system-config-selinux"
 -#~ msgstr "system-config-selinux"
@@ -119405,13 +121064,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 -
 -#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Aggiungi mappatura login di SELinux"
+-#~ msgstr "SELinux ログインマッピングを追加"
 -
 -#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Aggiungi porte di rete di SELinux"
+-#~ msgstr "SELinux ネットワークポートを追加"
 -
 -#~ msgid "SELinux Type"
--#~ msgstr "Tipo di SELinux"
+-#~ msgstr "SELinux タイプ"
 -
 -#~ msgid ""
 -#~ "tcp\n"
@@ -119424,14 +121083,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "SELinux MLS/MCS\n"
 -#~ "Level"
 -#~ msgstr ""
--#~ "Livello MLS/MCS\n"
--#~ "di SELinux"
+-#~ "SELinux MLS/MCS\n"
+-#~ "レベル"
 -
 -#~ msgid "File Specification"
--#~ msgstr "Specifiche del file"
+-#~ msgstr "ファイル仕様"
 -
 -#~ msgid "File Type"
--#~ msgstr "Tipo di file"
+-#~ msgstr "ファイルタイプ"
 -
 -#~ msgid ""
 -#~ "all files\n"
@@ -119443,147 +121102,245 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "symbolic link\n"
 -#~ "named pipe\n"
 -#~ msgstr ""
--#~ "tutti i files\n"
--#~ "file regolari\n"
--#~ "directory\n"
--#~ "device a carattere\n"
--#~ "device a blocchi\n"
--#~ "socket\n"
--#~ "link simbolici\n"
--#~ "named pipe\n"
+-#~ "全ファイル\n"
+-#~ "通常ファイル\n"
+-#~ "ディレクトリー\n"
+-#~ "文字装置\n"
+-#~ "ブロック装置\n"
+-#~ "ソケット\n"
+-#~ "シンボリックリンク\n"
+-#~ "名前付きパイプ\n"
 -
 -#~ msgid "MLS"
 -#~ msgstr "MLS"
 -
 -#~ msgid "Add SELinux User"
--#~ msgstr "Aggiungi utente di SELinux"
+-#~ msgstr "SELinux ユーザーの追加"
 -
 -#~ msgid "SELinux Administration"
--#~ msgstr "Amministrazione SELinux"
+-#~ msgstr "SELinux 管理者"
 -
 -#~ msgid "Add"
--#~ msgstr "Aggiungi"
+-#~ msgstr "追加"
 -
 -#~ msgid "_Properties"
--#~ msgstr "_Proprietà"
+-#~ msgstr "特性(_P)"
 -
 -#~ msgid "_Delete"
--#~ msgstr "_Cancella"
+-#~ msgstr "削除(_D)"
 -
 -#~ msgid "Select Management Object"
--#~ msgstr "Seleziona oggetto di gestione"
+-#~ msgstr "管理オブジェクトを選択"
 -
 -#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Seleziona:</b>"
+-#~ msgstr "<b>選択:</b>"
 -
 -#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Modalità Enforcing predefinita del sistema"
+-#~ msgstr "システムデフォルトの強制モード"
 -
 -#~ msgid ""
 -#~ "Disabled\n"
 -#~ "Permissive\n"
 -#~ "Enforcing\n"
 -#~ msgstr ""
--#~ "Disabilitato\n"
--#~ "Permissivo\n"
--#~ "Enforcing\n"
--
+-#~ "許容\n"
+-#~ "強制が\n"
+-#~ "無効になりました\n"
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr ""
 -#~ msgid "Current Enforcing Mode"
--#~ msgstr "Modalità Enforcing corrente"
--
+-#~ msgstr "現在の強制モード"
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr ""
 -#~ msgid "System Default Policy Type: "
--#~ msgstr "Tipo di policy predefinita del sistema: "
--
+-#~ msgstr "システムデフォルトのポリシータイプ: "
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Select if you wish to relabel then entire file system on next reboot.  "
 -#~ "Relabeling can take a very long time, depending on the size of the "
 -#~ "system.  If you are changing policy types or going from disabled to "
 -#~ "enforcing, a relabel is required."
 -#~ msgstr ""
--#~ "Selezionare se si desidera rietichettare l'intero file system al prossimo "
--#~ "riavvio.  La rietichettatura può richiedere un tempo notevole, dependente "
--#~ "dalla grandezza del sistema.  Se si sta cambiando tipi di policy o "
--#~ "cambiando da disabilitato a enforcing, una rietichettatura è necessaria."
--
+-#~ "リラベルしたいのならば選択し、そうすれば全ファイルシステムが次の再起動時"
+-#~ "に。システムの大きさに依存しますが、リラベルは非常に長い時間がかかります。"
+-#~ "ポリシータイプを変更したり無効から強制へ変える場合、リラベルが必要になりま"
+-#~ "す。"
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr ""
 -#~ msgid "Relabel on next reboot."
--#~ msgstr "Rietichetta al riavvio successivo."
--
+-#~ msgstr "次の再起動でリラベル"
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr ""
 -#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Ritorna le impostazioni booleane in default del sistema"
--
+-#~ msgstr "ブーリアン設定をシステムデフォルトに戻す"
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Attiva/Disattiva tra Personalizzata e Tutte booleane"
--
+-#~ msgstr "カスタム化と全ブーリアン値との間で切り替え"
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr ""
+-#~ msgid "Run booleans lockdown wizard"
+-#~ msgstr "boolean ロックダウンのウィザードを実行"
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr ""
+-#~ msgid "Lockdown..."
+-#~ msgstr "ロックダウン..."
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr ""
 -#~ msgid "Filter"
--#~ msgstr "Filtro"
--
+-#~ msgstr "フィルター"
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr ""
 -#~ msgid "Add File Context"
--#~ msgstr "Aggiungi contesto del file"
--
+-#~ msgstr "ファイルコンテキストの追加"
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr ""
 -#~ msgid "Modify File Context"
--#~ msgstr "Modifica contesto del file"
--
+-#~ msgstr "ファイルコンテキストの変更"
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr ""
 -#~ msgid "Delete File Context"
--#~ msgstr "Cancella contesto del file"
--
+-#~ msgstr "ファイルコンテキストの削除"
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr ""
 -#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Attiva/Disattiva tra tutte e contesto personalizzato del file"
--
+-#~ msgstr "全てとカスタム化ファイルコンテキストの間で切り替え"
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr ""
 -#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Aggiungi mappatura utente SELinux"
--
+-#~ msgstr "SELinux ユーザーマッピングの追加"
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr ""
 -#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Modifica mappatura utente SELinux"
--
+-#~ msgstr "SELinux ユーザーマッピングの変更"
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr ""
 -#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Cancella mappatura utente SELinux %s"
--
+-#~ msgstr "SELinux ユーザーマッピングの削除"
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr ""
 -#~ msgid "Add Translation"
--#~ msgstr "Aggiungi traduzione"
--
+-#~ msgstr "変換の追加"
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr ""
 -#~ msgid "Modify Translation"
--#~ msgstr "Modifica traduzione"
--
+-#~ msgstr "変換の変更"
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr ""
 -#~ msgid "Delete Translation"
--#~ msgstr "Cancella traduzione"
--
+-#~ msgstr "変換の削除"
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr ""
 -#~ msgid "Modify SELinux User"
--#~ msgstr "Modifica utente SELinux"
--
+-#~ msgstr "SELinux ユーザーの変更"
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr ""
 -#~ msgid "Add Network Port"
--#~ msgstr "Aggiungi porta di rete"
--
+-#~ msgstr "ネットワークポートの追加"
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr ""
 -#~ msgid "Edit Network Port"
--#~ msgstr "Modifica porta di rete"
--
+-#~ msgstr "ネットワークポートの編集"
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr ""
 -#~ msgid "Delete Network Port"
--#~ msgstr "Cancella porta di rete"
--
+-#~ msgstr "ネットワークポートの削除"
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Attiva/Disattiva tra Personalizzata e Tutte le porte"
--
+-#~ msgstr "カスタム化と全ポートの間で切り替え"
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr ""
 -#~ msgid "Generate new policy module"
--#~ msgstr "Genera nuovo modulo della policy"
--
+-#~ msgstr "新ポリシーモジュールの生成"
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr ""
 -#~ msgid "Load policy module"
--#~ msgstr "Carica modulo della policy"
--
+-#~ msgstr "ポリシーモジュールをロード"
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr ""
 -#~ msgid "Remove loadable policy module"
--#~ msgstr "Rimuovi modulo della policy caricabile"
--
+-#~ msgstr "ロード可能なポリシーモジュールを取り外す"
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Enable/Disable additional audit rules, that are normally not reported in "
 -#~ "the log files."
--#~ msgstr ""
--#~ "Abilita/Disabilita le regole audit aggiuntive generalemente non riportate "
--#~ "nei file di log."
--
+-#~ msgstr "通常はログファイルに報告されない追加の監査ルールを有効/無効にする。"
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr ""
 -#~ msgid "Sensitvity Level"
--#~ msgstr "Livello sensibilità"
--
+-#~ msgstr "感度"
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr ""
 -#~ msgid "SELinux user '%s' is required"
--#~ msgstr "E' richiesto l'utente '%s' di SELinux"
--
+-#~ msgstr "SELinux ユーザー '%s' が必要です"
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr ""
 -#~ msgid ""
 -#~ "\n"
 -#~ "\n"
@@ -119594,3642 +121351,2635 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/it.po policycoreutils
 -#~ "\n"
 -#~ "semodule -i %s\n"
 -#~ "\n"
--
--#~ msgid "Requires value"
--#~ msgstr "Richiede valore"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Prefisso non valido %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "Permetti ad un ruolo utente/applicazione di eseguire il bind a qualsiasi "
--#~ "porta tcp > 1024"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "Permette ad un ruolo utente/applicazione confinata di eseguire il bind a "
--#~ "qualsiasi porta tcp"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Inserisci un elenco di porte tcp o una gamma di porte separato da "
--#~ "virgole, alle quali un ruolo utente/applicazione può eseguire il bind. Ad "
--#~ "esempio: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "Druid di generazione della policy di SELinux"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Porte non riservate  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "Utilizzate questa casella se la vostra applicazione richiama bindresvport "
--#~ "con 0."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Enforcing\n"
--#~ "Permissiva\n"
--#~ "Disabilitata\n"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "E' richiesto l'utente '%s' di SELinux"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ja.po policycoreutils-2.0.85/po/ja.po
---- nsapolicycoreutils/po/ja.po        2011-02-17 15:11:25.206733533 -0500
-+++ policycoreutils-2.0.85/po/ja.po    2011-02-18 16:03:41.381975833 -0500
-@@ -1,25 +1,45 @@
- # translation of ja.po to Japanese
--# translation of ja.po to
--# translation of ja.po to
--# This file is distributed under the same license as the PACKAGE package.
--# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
-+# This file is distributed under the same license as the policycoreutils.HEAD.ja package.
-+# Copyright (C) 2008 THE policycoreutils.HEAD.ja'S COPYRIGHT HOLDER.
- #
- # Takuro Nagamoto <tnagamot@redhat.com>, 2006.
--# Noriko Mizumoto <noriko@redhat.com>, 2006, 2008.
-+# Noriko Mizumoto <noriko@redhat.com>, 2006, 2008, 2009.
- # Hyu_gabaru Ryu_ichi <hyu_gabaru@yahoo.co.jp>, 2007.
--# Kiyoto Hashida <khashida@redhat.com>, 2008.
-+# Kiyoto Hashida <khashida@redhat.com>, 2008, 2009, 2010.
-+# Makoto Mizukami <makoto@fedoraproject.org>, 2008.
- msgid ""
- msgstr ""
- "Project-Id-Version: ja\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-09-09 21:12+1000\n"
--"Last-Translator: Noriko Mizumoto <noriko@redhat.com>\n"
--"Language-Team: Japanese <fedora-trans-ja@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 10:52+0900\n"
-+"Last-Translator: Kiyoto Hashida <khashida@redhat.com>\n"
-+"Language-Team: Japanese <jp@li.org>\n"
-+"Language: ja\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "グラフィカル環境で SELinux を設定"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux の管理"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux ポリシーモジュールの生成"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux ポリシー生成ツール"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -28,8 +48,8 @@
- "         <args ...> are the arguments to that script."
- msgstr ""
- "使い方: run_init <script> <args ...>\n"
--"  ここで、 <script> は実行する init スクリプトの名前、\n"
--"         <args ...> はそのスクリプトに対する引数になります。"
-+"  ここで、 <script> に実行する init スクリプトの名前、\n"
-+"         <args ...> にそのスクリプトに対する引数を指定します。"
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr ""
  
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
- #, c-format
-@@ -112,9 +132,8 @@
- msgstr "semanage 接続を確立できませんでした"
+-#~ msgid "Disable"
+-#~ msgstr "無効"
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
  
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s の MLS 範囲を設定できませんでした"
-+msgstr "MLS を有効にした状態をテストできませんでした"
+-#~ msgid "Enable"
+-#~ msgstr "有効"
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr ""
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -123,20 +142,21 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s を開けません: MLS 以外のマシンでは変換はサポートされません: %s"
-+msgstr "%s を開けません: MLS マシン以外では翻訳はサポートがありません: %s"
+-#~ msgid "<b>Boolean</b>"
+-#~ msgstr "<b>Boolean</b>"
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr ""
  
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "レベル"
+-#~ msgid "<b>Description</b>"
+-#~ msgstr "<b>説明</b>"
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr "変換"
-+msgstr "翻訳"
+-#~ msgid "<b>Status</b>"
+-#~ msgstr "<b>ステータス</b>"
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr ""
  
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "変換に空白 '%s' を含ませることはできません"
-+msgstr "翻訳は空白 '%s' を含むことができません"
+-#~ msgid "Category: %s <br>"
+-#~ msgstr "カテゴリ: %s <br>"
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr ""
  
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -146,12 +166,12 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s はすでに変換で定義されています"
-+msgstr "%s はすでに翻訳で定義されています"
+-#~ msgid "Begin"
+-#~ msgstr "開始"
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
  
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s は変換で定義されていません"
-+msgstr "%s は翻訳で定義されていません"
+-#~ msgid ""
+-#~ "Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to "
+-#~ "lockdown SELinux booleans.The tool will generate a configuration file "
+-#~ "which can be used to lockdown this system or other SELinux systems.<br>"
+-#~ msgstr ""
+-#~ "SELinux ロックダウンツールにようこそ。 <br> <br>このツールを使用すると "
+-#~ "SELinux の boolean をロックダウンすることができます。 このシステムまたは他"
+-#~ "の SELinux システムのロックダウンに使用できる設定ファイルを生成します。"
+-#~ "<br>"
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr ""
  
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
-@@ -159,7 +179,7 @@
+-#~ msgid "Finish"
+-#~ msgstr "終了"
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr ""
++
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr ""
++
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
++
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
++
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr ""
  
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage トランザクションは既に進行しています"
+-#~ msgid "Category %s booleans completed <br><br>"
+-#~ msgstr "カテゴリ %s boolean は完了しました <br><br>"
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
  
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
-@@ -171,7 +191,7 @@
+-#~ msgid "Current settings:<br><br>"
+-#~ msgstr "現在の設定:<br><br>"
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
  
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage トランザクションは進行していません"
+-#~ msgid "Finish: <br><br>"
+-#~ msgstr "終了: <br><br>"
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr ""
  
- #: ../semanage/seobject.py:325
- msgid "Could not list SELinux modules"
-@@ -181,741 +201,745 @@
- msgid "Permissive Types"
- msgstr "許容タイプ"
+-#~ msgid "Category: %s<br><br>Current Settings<br><br>"
+-#~ msgstr "カテゴリ: %s<br><br>現在の設定<br><br>"
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
- "許容ドメイン %s を設定できませんでした (モジュールのインストールに失敗)"
+-#~ msgid "Boolean:   %s<br><br>"
+-#~ msgstr "Boolean:   %s<br><br>"
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "許容ドメイン %s の削除ができませんでした (削除に失敗)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s のキーを作成できませんでした"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s のログインマッピングが定義されているか確認できませんでした"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s のログインマッピングはすでに定義されています"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux グループ %s は存在していません"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux ユーザー %s は存在していません"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s のログインマッピングを作成できませんでした"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s の名前を設定できませんでした"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s の MLS 範囲を設定できませんでした"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s の SELinux ユーザーを設定できませんでした"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s のログインマッピングを追加できませんでした"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ユーザーマッピングを追加"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser または serange が必要です"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s のログインマッピングは定義されていません"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s の seuser をクエリーできませんでした"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s のログインマッピングを修正できませんでした"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s のログインマッピングはポリシーに定義されています、削除できません"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s のログインマッピングを削除できませんでした"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "ログインマッピングの一覧を表示できませんでした"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "ログイン名"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux ユーザー"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS 範囲"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr "少なくとも %s のロールを 1 つ追加する必要があります"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr " SELinux ユーザー %s が定義されているか確認できませんでした"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ユーザー %s はすでに定義されています"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s の SELinux ユーザーを作成できませんでした"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "ロール %s を %s に追加できませんでした"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "MLS レベルを %s に設定できませんでした"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "プレフィックス %s を %s に追加できませんでした"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s のキーを抽出できませんでした"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ユーザー %s を追加できませんでした"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "プレフィックスか、ロール、レベル、範囲のいずれかが必要です"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "プレフィックスかロールが必要です"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ユーザー %s は定義されていません"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s のユーザーをクエリーできませんでした"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ユーザー %s を修正できませんでした"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux ユーザー %s はポリシーで定義されています、削除できません"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ユーザー %s を削除できませんでした"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ユーザーの一覧を表示できませんでした"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "ユーザー %s のロール一覧を表示できませんでした"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "ラベリング"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "プレフィックス"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS レベル"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS 範囲"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux ロール"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "プロトコル udp か tcp が必要です"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "ポートが必要です"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s のキーを作成できませんでした"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "タイプが必要です"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "ポート %s/%s が定義されているか確認できませんでした"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "ポート %s/%s はすでに定義されています"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s のポートを作成できませんでした"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s のコンテキストを作成できませんでした"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s のポートコンテキストにユーザーを設定できませんでした"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s のポートコンテキストにロールを設定できませんでした"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s のポートコンテキストにタイプを設定できませんでした"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s のポートコンテキストに mls フィールドを設定できませんでした"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s のポートコンテキストを設定できませんでした"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "ポート %s/%s を追加できませんでした"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype か serange が必要です"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype が必要です"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "ポート %s/%s は定義されていません"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "ポート %s/%s をクエリーできませんでした"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "ポート %s/%s を修正できませんでした"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "ポートを一覧表示できませんでした"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "ポート %s を削除できませんでした"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "ポート %s/%s はポリシーで定義されています、 削除できません"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "ポート %s/%s を削除できませんでした"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "ポートの一覧を表示できませんでした"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux ポートタイプ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "プロト"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "ポート番号"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "ポートが必要です"
-+msgstr "ノードアドレスが必要です"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "ポートが必要です"
-+msgstr "ノードネットマスクが必要です"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "不明又は欠如したプロトコル"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux タイプが必要です"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s のキーを作成できませんでした"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "ポート %s/%s が定義されているか確認できませんでした"
-+msgstr "アドレス %s が定義されているか確認できませんでした"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "ポート %s/%s はすでに定義されています"
-+msgstr "アドレス %s はすでに定義されています"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s のキーを作成できませんでした"
-+msgstr "%s のアドレスを作成できませんでした"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s のコンテキストを作成できませんでした"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s の名前を設定できませんでした"
-+msgstr "%s のマスクを設定できませんでした"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s のファイルコンテキストにユーザーを設定できませんでした"
-+msgstr "%s のアドレスコンテキストにユーザーを設定できませんでした"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s のファイルコンテキストにロールを設定できませんでした"
-+msgstr "%s のアドレスコンテキストにロールを設定できませんでした"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s のファイルコンテキストにタイプを設定できませんでした"
-+msgstr "%s のアドレスコンテキストにタイプを設定できませんでした"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s のファイルコンテキストに mls フィールドを設定できませんでした"
-+msgstr "%s のアドレスコンテキストに mls フィールドを設定できませんでした"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s のファイルコンテキストを設定できませんでした"
-+msgstr "%s のアドレスコンテキストを設定できませんでした"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "ポート %s/%s を追加できませんでした"
-+msgstr "アドレス %s を追加できませんでした"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "ポート %s/%s は定義されていません"
-+msgstr "アドレス %s は定義されていません"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "ポート %s/%s をクエリーできませんでした"
-+msgstr "アドレス %s をクエリできませんでした"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "ポート %s/%s を修正できませんでした"
-+msgstr "アドレス %s を修正できませんでした"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "ポート %s/%s はポリシーで定義されています、 削除できません"
-+msgstr "アドレス %s はポリシー内で定義されています、削除できません"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "ポート %s/%s を削除できませんでした"
-+msgstr "アドレス %s を削除できませんでした"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "ポートの一覧を表示できませんでした"
-+msgstr "アドレスの一覧を表示できませんでした"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "インターフェース %s が定義されているか確認できませんでした"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "インターフェース %s はすでに定義されています"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s のインターフェースを作成できませんでした"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s のインターフェースコンテキストにユーザーを設定できませんでした"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s のインターフェースコンテキストにロールを設定できませんでした"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s のインターフェースコンテキストにタイプを設定できませんでした"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
- "%s のインターフェースコンテキストに mls フィールドを設定できませんでした"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s のインターフェースコンテキストを設定できませんでした"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s のメッセージコンテキストを設定できませんでした"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "インターフェース %s を追加できませんでした"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "インターフェース %s は定義されていません"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "インターフェース %s をクエリーできませんでした"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "インターフェース %s を修正できませんでした"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "インターフェース %s はポリシーで定義されています、 削除できません"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "インターフェース %s を削除できませんでした"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "インターフェースの一覧を表示できませんでした"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux インターフェース"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "コンテキスト"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s のファイルコンテキストにユーザーを設定できませんでした"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s のファイルコンテキストにロールを設定できませんでした"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s のファイルコンテキストに mls フィールドを設定できませんでした"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "無効なファイル使用"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s のファイルコンテキストが定義されているか確認できませんでした"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s のファイルコンテキストはすでに定義されています"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s のファイルコンテキストを作成できませんでした"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s のファイルコンテキストにタイプを設定できませんでした"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s のファイルコンテキストを設定できませんでした"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s のファイルコンテキストを追加できませんでした"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype、serange、または seuser のいずれかが必要です"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s のファイルコンテキストは定義されていません"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s のファイルコンテキストをクエリーできませんでした"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s のファイルコンテキストを修正できませんでした"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ファイルコンテキストを一覧表示できませんでした"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "ファイルコンテキスト %s を削除できませんでした"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s のファイルコンテキストはポリシーで定義されています、 削除できません"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s のファイルコンテキストを削除できませんでした"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ファイルコンテキストの一覧を表示できませんでした"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "ローカルファイルのコンテキスト一覧を表示できませんでした"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "タイプ"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "boolean %s が定義されているか確認できませんでした"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "boolean %s は定義されていません"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "ファイルコンテキスト %s をクエリーできませんでした"
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "次の値のいずれかひとつを指定してください: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "boolean %s のアクティブな値を設定できませんでした"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "boolean %s を修正できませんでした"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "不正な形式の %s: レコード %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "boolean %s はポリシーで定義されています、 削除できません"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "boolean %s を削除できませんでした"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "boolean の一覧を表示できませんでした"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "不明"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "オフ"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "オン"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux boolean"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "説明"
-@@ -955,7 +979,7 @@
- msgstr "環境を消去できません\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "機能の初期化中にエラーが発生、中止します。\n"
-@@ -1200,7 +1224,7 @@
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:  ポリシーと要求された強制モードをロード出来ません:  %s\n"
-+msgstr "%s:  要求されたポリシーと強制モードをロード出来ません:  %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1291,1748 +1315,2225 @@
- msgid "Options Error %s "
- msgstr "オプションエラー %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "MLS 以外のマシンでは変換はサポートされません"
--
--#~ msgid "Boolean"
--#~ msgstr "ブーリアン値"
--
--#~ msgid "all"
--#~ msgstr "全て"
--
--#~ msgid "Customized"
--#~ msgstr "カスタム化"
--
--#~ msgid "File Labeling"
--#~ msgstr "ファイルラベリング"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ファイル\n"
--#~ "仕様"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ファイルタイプ"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ファイル\n"
--#~ "タイプ"
--
--#~ msgid "User Mapping"
--#~ msgstr "ユーザーマッピング"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "ログイン\n"
--#~ "名"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ユーザー"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS 範囲"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "ログイン '%s' が必要です"
--
--#~ msgid "Policy Module"
--#~ msgstr "ポリシーモジュール"
--
--#~ msgid "Module Name"
--#~ msgstr "モジュール名"
--
--#~ msgid "Version"
--#~ msgstr "バージョン"
--
--#~ msgid "Disable Audit"
--#~ msgstr "監査を無効にする"
--
--#~ msgid "Enable Audit"
--#~ msgstr "監査を有効にする"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "ポリシーモジュールをロード"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "ブーリアン値"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "全て"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "カスタム化"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "ファイルラベリング"
--#~ msgid "translator-credits"
--#~ msgstr ""
--#~ "Takuro Nagamoto <tnagamot AT redhat DOT com>, 2006.\n"
--#~ "Noriko Mizumoto <noriko AT redhat DOT com>, 2006.\n"
--#~ "Hyu_gabaru Ryu_ichi <hyu_gabaru AT yahoo DOT co DOT jp>, 2007."
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux ポリシー生成ツール"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
+-#~ msgid "Lockdown SELinux Booleans"
+-#~ msgstr "SELinux boolean のロックダウン"
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+"ファイル\n"
-+"仕様"
  
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "このツールは SELinux を使用してアプリケーションやユーザーを制限するポリ"
--#~ "シーフレームワークを生成するのに使用できます。 \n"
--#~ "\n"
--#~ "ツールが生成するのは:\n"
--#~ "タイプ強制ファイル (te)\n"
--#~ "インターフェースファイル (if)\n"
--#~ "ファイルコンテキストファイル (fc)\n"
--#~ "シェルスクリプト (sh) - ポリシーをコンパイルしインストールするのに使用しま"
--#~ "す"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
+-#~ msgid "Apply"
+-#~ msgstr "適用"
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+"Selinux\n"
-+"ファイルタイプ"
  
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "制限するアプリケーション/ユーザーロールのタイプを選択"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
+-#~ msgid "SELinux Boolean Lockdown"
+-#~ msgstr "SELinux boolean のロックダウン"
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+"ファイル\n"
-+"タイプ"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>アプリケーション</b>"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "ユーザーマッピング"
  
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "標準 Init デーモンは init スクリプト経由でブート時に起動されるデーモンで"
--#~ "す。通常 /etc/rc.d/init.d にスクリプトが必要です"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
+-#~ msgid "Save As"
+-#~ msgstr "名前を付けて保存"
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+"ログイン\n"
-+"名"
  
--#~ msgid "Standard Init Daemon"
--#~ msgstr "標準初期化デーモン"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
+-#~ msgid "Save Boolean Configuration File"
+-#~ msgstr "Boolean 設定ファイルを保存"
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+"SELinux\n"
-+"ユーザー"
  
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr ""
--#~ "インターネットサービスデーモンは xinetd により起動されるデーモンです"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
+-#~ msgid "Select file name to save  boolean settings."
+-#~ msgstr "boolean 設定を保存するファイル名を選択します。"
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+"MLS/\n"
-+"MCS 範囲"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "インターネットサービスデーモン (inetd)"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "ログイン '%s' が必要です"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "ウェブサーバー (apache) により起動されるウェブアプリケーション/スクリプト "
--#~ "(CGI) CGI スクリプト"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "ポリシーモジュール"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "ウェブアプリケーション/スクリプト (CGI)"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "モジュール名"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "ユーザーアプリケーションはユーザーによって起動される、制限をかけたいアプリ"
--#~ "ケーションです"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "バージョン"
--#~ msgid "User Application"
--#~ msgstr "ユーザーアプリケーション"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "監査を無効にする"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ログインユーザー</b>"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "監査を有効にする"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "既存のログインユーザー記録を修正"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "ポリシーモジュールをロード"
--#~ msgid "Existing User Roles"
--#~ msgstr "既存ユーザーのロール"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "このユーザーはターミナル、又はリモートログインを介してログイン するでしょ"
--#~ "う。デフォルトでは、このユーザーは setuid や networking や su や sudo を持"
--#~ "ちません。"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "最小限のターミナルユーザーロール"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
  
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "このユーザーは X 又はターミナルを介してマシンにログインできます。デフォル"
--#~ "ト では、このユーザーは setuid や networking や sudo や su を持ちません。"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
+-#~ msgid "_Forward"
+-#~ msgstr "転送(_F)"
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+"Takuro Nagamoto <tnagamot AT redhat DOT com>, 2006.\n"
-+"Noriko Mizumoto <noriko AT redhat DOT com>, 2006.\n"
-+"Hyu_gabaru Ryu_ichi <hyu_gabaru AT yahoo DOT co DOT jp>, 2007."
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "最小限の X Windows ユーザーロール"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"このツールは SELinux を使用してアプリケーションやユーザーを制限するポリシーフ"
-+"レームワークを生成するのに使用できます。 \n"
-+"\n"
-+"ツールが生成するのは:\n"
-+"タイプ強制ファイル (te)\n"
-+"インターフェースファイル (if)\n"
-+"ファイルコンテキストファイル (fc)\n"
-+"シェルスクリプト (sh) - ポリシーをコンパイルしインストールするのに使用します"
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "制限するアプリケーション/ユーザーロールのタイプを選択"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>アプリケーション</b>"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "完全なネットワーキングを持ち、転移のない setuid アプリケーションや sudo "
--#~ "や su を持たないユーザー。"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+"標準 Init デーモンは init スクリプト経由でブート時に起動されるデーモンです。"
-+"通常 /etc/rc.d/init.d にスクリプトが必要です"
--#~ msgid "User Role"
--#~ msgstr "ユーザーロール"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "標準初期化デーモン"
 +
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS システムデーモン"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "インターネットサービスデーモンは xinetd により起動されるデーモンです"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "インターネットサービスデーモン (inetd)"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "完全なネットワーキングを持ち、転移のない setuid アプリケーションや su を持"
--#~ "たないユーザーは sudo で Root の管理ロールを使用できます。"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
 +msgstr ""
-+"ウェブサーバー (apache) により起動されるウェブアプリケーション/スクリプト "
-+"(CGI) CGI スクリプト"
--#~ msgid "Admin User Role"
--#~ msgstr "管理ユーザーのロール"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "ウェブアプリケーション/スクリプト (CGI)"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Root ユーザー</b>"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
++
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+"ユーザーアプリケーションはユーザーによって起動される、制限をかけたいアプリ"
-+"ケーションです"
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "このユーザーが root として実行し、マシンの管理者として使用するユーザーなら"
--#~ "ば Root 管理ユーザーロールを選択してください。このユーザーはシステムに 直"
--#~ "接ログインすることはできません。"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "ユーザーアプリケーション"
 +
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>ログインユーザー</b>"
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "既存のログインユーザー記録を修正"
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "既存ユーザーのロール"
--#~ msgid "Root Admin User Role"
--#~ msgstr "Root 管理ユーザーロール"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+"このユーザーはターミナル、又はリモートログインを介してログイン するでしょう。"
-+"デフォルトでは、このユーザーは setuid や networking や su や sudo を持ちませ"
-+"ん。"
 +
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "最小限のターミナルユーザーロール"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "制限するアプリケーションかユーザーロールの名前を入力"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+"このユーザーは X 又はターミナルを介してマシンにログインできます。デフォルト "
-+"では、このユーザーは setuid や networking や sudo や su を持ちません。"
--#~ msgid "Name"
--#~ msgstr "名前"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "最小限の X Windows ユーザーロール"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "制限する実行ファイルのフルパスを入力してください。"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
++
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+"完全なネットワーキングを持ち、転移のない setuid アプリケーションや sudo や "
-+"su を持たないユーザー。"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "ユーザーロール"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "制限するアプリケーションかユーザーロールの特有な名前を入力"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
++
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+"完全なネットワーキングを持ち、転移のない setuid アプリケーションや su を持た"
-+"ないユーザーは sudo で Root の管理ロールを使用できます。"
--#~ msgid "Executable"
--#~ msgstr "実行ファイル"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "管理ユーザーのロール"
 +
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root ユーザー</b>"
--#~ msgid "Init script"
--#~ msgstr "初期化スクリプト"
-+#: ../gui/polgen.glade:645
++#: ../gui/selinux.tbl:189
 +msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
 +msgstr ""
-+"このユーザーが root として実行し、マシンの管理者として使用するユーザーならば "
-+"Root 管理ユーザーロールを選択してください。このユーザーはシステムに 直接ログ"
-+"インすることはできません。"
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root 管理ユーザーロール"
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "制限するアプリケーションかユーザーロールの名前を入力"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "名前"
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "制限する実行ファイルのフルパスを入力してください。"
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
+-#~ msgid "_Previous"
+-#~ msgstr "前(_P)"
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "制限するアプリケーションかユーザーロールの特有な名前を入力"
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "実行ファイル"
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "初期化スクリプト"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "制限されるアプリケーションの起動に使用される初期化スクリプトのフルパスを入"
--#~ "力してください。"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+"制限されるアプリケーションの起動に使用される初期化スクリプトのフルパスを入力"
-+"してください。"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "カスタマイズしたいユーザーロールを選択"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "カスタマイズしたいユーザーロールを選択"
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "このアプリケーションドメインに転移するユーザーロールを選択"
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "このユーザーロールが転移する先の追加のドメインを選択してください"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "このアプリケーションドメインに転移するユーザーロールを選択"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+"このユーザーロールの転移先となるアプリケーションドメインを選択 してください"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "このユーザーロールが転移する先の追加のドメインを選択してください"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "このドメインに転移するユーザーロールを選択"
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "このユーザーロールが管理する追加のドメインを選択してください"
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "このユーザーに管理させたいドメインを選択してください。"
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "このユーザー用の追加のロールを選択してください"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "このユーザーロールの転移先となるアプリケーションドメインを選択 してくださ"
--#~ "い"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+"アプリケーション/ユーザーロールがリッスンするネットワークポートを入力します"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "このドメインに転移するユーザーロールを選択"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP ポート</b>"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "このユーザーロールが管理する追加のドメインを選択してください"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+"制限されたアプリケーション/ユーザーロールによる全ての udp ポートへのバインド"
-+"を 許可"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "このユーザーに管理させたいドメインを選択してください。"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "全て"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "このユーザー用の追加のロールを選択してください"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
++
++#: ../gui/selinux.tbl:202
 +msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
 +msgstr ""
-+"アプリケーション/ユーザーロールが bindresvport を 0 でコールすることを許可。 "
-+"ポート 600-1024 にバインド"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールがリッスンするネットワークポートを入力しま"
--#~ "す"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP ポート</b>"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++
++#: ../gui/selinux.tbl:203
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"アプリケーション/ユーザーロールがバインドする udp ポートのカンマ区切りの一覧"
-+"か、 又はポートの範囲を入力します。例: 612, 650-660"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "制限されたアプリケーション/ユーザーロールによる全ての udp ポートへのバイン"
--#~ "ドを 許可"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "予約されていないポート (> 1024)"
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "ポートを選択してください"
--#~ msgid "All"
--#~ msgstr "全て"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
 +msgstr ""
-+"アプリケーション/ユーザーロールによる 1024 以上の全ての udp ポートへのバイン"
-+"ドを 許可"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールが bindresvport を 0 でコールすることを許"
--#~ "可。 ポート 600-1024 にバインド"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP ポート</b>"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"アプリケーション/ユーザーロールが接続するネットワークポートを入力します"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールがバインドする udp ポートのカンマ区切りの一"
--#~ "覧か、 又はポートの範囲を入力します。例: 612, 650-660"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+"アプリケーション/ユーザーロールが接続する tcp ポートのカンマ区切りの一覧か、 "
-+"又は、ポートの範囲を入力します。例: 612, 650-660"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "予約されていないポート (> 1024)"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+"アプリケーション/ユーザーロールが接続する udp ポートのカンマ区切りの一覧か、 "
-+"又はポートの範囲を入力します。例: 612, 650-660"
--#~ msgid "Select Ports"
--#~ msgstr "ポートを選択してください"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "共通のアプリケーション特質を選択してください"
 +
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog メッセージを書きます\t"
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr " /tmp 内の一時ファイルの作成/操作をします"
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Pam を認証に使用します"
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch 又は getpw* コールを使用します"
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus を使用します"
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "監査メッセージを送信します。"
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "ターミナルと相互作用"
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "電子メールを送信します"
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "アプリケーションが管理するファイル/ディレクトリーを選択してください"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールによる 1024 以上の全ての udp ポートへのバイ"
--#~ "ンドを 許可"
-+#: ../gui/polgen.glade:2607
++#: ../gui/selinux.tbl:216
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
 +msgstr ""
-+"アプリケーションが \"書き込む\" 必要があるファイル/ディレクトリーを追加しま"
-+"す。Pid ファイル、ログファイル、/var/lib ファイル ..."
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP ポート</b>"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "アプリケーションが使用するブーリアン値を選択してください"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールが接続するネットワークポートを入力します"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+"この制限されるアプリケーション/ユーザーに使用されるブーリアン値を追加/削除"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールが接続する tcp ポートのカンマ区切りの一覧"
--#~ "か、 又は、ポートの範囲を入力します。例: 612, 650-660"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "ポリシーを生成する場所のディレクトリーを選択してください"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "アプリケーション/ユーザーロールが接続する udp ポートのカンマ区切りの一覧"
--#~ "か、 又はポートの範囲を入力します。例: 612, 650-660"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "ポリシーディレクトリー"
--#~ msgid "Select common application traits"
--#~ msgstr "共通のアプリケーション特質を選択してください"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "生成したポリシーファイル"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog メッセージを書きます\t"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"このツールは以下を生成します: \n"
-+"タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスクリ"
-+"プト(sh)。\n"
-+"コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェル"
-+"スクリプトを実行します。emanage 又は useradd を使用して Linux ログインの ユー"
-+"ザーをユーザーロールにマップします。\n"
-+"マシンを寛容モード (setenforce 0) にします。\n"
-+"ユーザーとしてログインしてこのユーザーロールをテストします。audit2allow -R を"
-+"使用し、te ファイルのための追加ルールを生成します。\n"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr " /tmp 内の一時ファイルの作成/操作をします"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"このツールは以下を生成します: \n"
-+"タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスクリ"
-+"プト(sh)。\n"
-+"コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェル"
-+"スクリプトを実行します。マシンを寛容モード (setenforce 0) にします。\n"
-+"アプリケーションを実行/再起動し、avc メッセージを生成します。\n"
-+"audit2allow -R を使用し、te ファイルのための追加ルールを生成します。\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "ブーリアンダイアログを追加"
 +
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "ブーリアン値名"
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "ロール"
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "既存ユーザー(_U)"
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "アプリケーション"
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s  はディレクトリでなければなりません"
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "ユーザーを選択する必要があります"
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "制限する実行ファイルを選択してください。"
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "制限する初期化スクリプトを選択してください。"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "Pam を認証に使用します"
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
++#: ../gui/selinux.tbl:225
++msgid "XEN"
 +msgstr ""
-+"制限されたアプリケーションが作成したり、書き込んだりするファイルを選択してく"
-+"ださい"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch 又は getpw* コールを使用します"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+"制限するアプリケーションが所有していたり、書き込んだりするディレクトリーを選"
-+"択してください"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus を使用します"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "生成するポリシーファイルを入れるディレクトリーを選択してください"
--#~ msgid "Sends audit messages"
--#~ msgstr "監査メッセージを送信します。"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+"タイプ %s_t は既に現在のポリシーで定義されています。\n"
-+"継続しますか ?"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ターミナルと相互作用"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "名前の証明"
--#~ msgid "Sends email"
--#~ msgstr "電子メールを送信します"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+"モジュール %s.pp は既に現在のポリシー内にロードされています。\n"
-+"継続しますか ?"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "アプリケーションが管理するファイル/ディレクトリーを選択してください"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "名前を指定する必要があります"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "アプリケーションが \"書き込む\" 必要があるファイル/ディレクトリーを追加し"
--#~ "ます。Pid ファイル、ログファイル、/var/lib ファイル ..."
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "実行ファイルを指定する必要があります"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "アプリケーションが使用するブーリアン値を選択してください"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux を設定する"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "この制限されるアプリケーション/ユーザーに使用されるブーリアン値を追加/削除"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "ポートは 1 から %d までの数字か、又は数字の範囲でなければなりません "
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "ポリシーを生成する場所のディレクトリーを選択してください"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "制限するプロセス/ユーザーの名前を入力しなければなりません"
--#~ msgid "Policy Directory"
--#~ msgstr "ポリシーディレクトリー"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER タイプは実行ファイルとしては認められません"
--#~ msgid "Generated Policy Files"
--#~ msgstr "生成したポリシーファイル"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "DAEMON アプリのみが初期化スクリプトを使用できます"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "このツールは以下を生成します: \n"
--#~ "タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスク"
--#~ "リプト(sh)。\n"
--#~ "コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェ"
--#~ "ルスクリプトを実行します。emanage 又は useradd を使用して Linux ログイン"
--#~ "の ユーザーをユーザーロールにマップします。\n"
--#~ "マシンを寛容モード (setenforce 0) にします。\n"
--#~ "ユーザーとしてログインしてこのユーザーロールをテストします。audit2allow -"
--#~ "R を使用し、te ファイルのための追加ルールを生成します。\n"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog はブール値でなければなりません"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "このツールは以下を生成します: \n"
--#~ "タイプ強制(te)、ファイルコンテキスト(fc)、インターフェース(if)、シェルスク"
--#~ "リプト(sh)。\n"
--#~ "コンパイル/インストールし、ファイル/ディレクトリーのリラベルするためにシェ"
--#~ "ルスクリプトを実行します。マシンを寛容モード (setenforce 0) にします。\n"
--#~ "アプリケーションを実行/再起動し、avc メッセージを生成します。\n"
--#~ "audit2allow -R を使用し、te ファイルのための追加ルールを生成します。\n"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER タイプは自動的に tmp タイプを得ます"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "ブーリアンダイアログを追加"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "制限するプロセスの実行ファイルのバスを入力しなければなりません"
--#~ msgid "Boolean Name"
--#~ msgstr "ブーリアン値名"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "強制ファイルを入力してください"
--#~ msgid "Role"
--#~ msgstr "ロール"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "インターフェースファイル"
--#~ msgid "Existing_User"
--#~ msgstr "既存ユーザー(_U)"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "ファイルコンテキストファイル"
--#~ msgid "Application"
--#~ msgstr "アプリケーション"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "設定スクリプト"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s  はディレクトリでなければなりません"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "ネットワークポート"
--#~ msgid "You must select a user"
--#~ msgstr "ユーザーを選択する必要があります"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+"SELinux ポート\n"
-+"タイプ"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "制限する実行ファイルを選択してください。"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "プロトコル"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "制限する初期化スクリプトを選択してください。"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+"MLS/MCS\n"
-+"レベル"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr ""
--#~ "制限されたアプリケーションが作成したり、書き込んだりするファイルを選択して"
--#~ "ください"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "ポート"
 +
-+#: ../gui/portsPage.py:207
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++
++#: ../gui/semanagePage.py:126
 +#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "ポート番号 \"%s\" は有効ではありません。0 < ポート番号 < 65536 "
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr ""
 +
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "一覧表示"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "グループ表示"
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux サービス保護"
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct デーモンの SELinux 保護を無効にします"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "管理者"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "全てのデーモンがコアファイルを / へ書き込むのを認めます"
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "全てのデーモンが割り当てられていない tty を使用できることを認めます"
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "ユーザー権限"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "制限するアプリケーションが所有していたり、書き込んだりするディレクトリーを"
--#~ "選択してください"
-+#: ../gui/selinux.tbl:4
++#: ../gui/statusPage.py:147
 +msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
 +msgstr ""
-+"gadmin SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレクト"
-+"リにあるファイルの実行を許可する"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "生成するポリシーファイルを入れるディレクトリーを選択してください"
-+#: ../gui/selinux.tbl:5
++
++#: ../gui/statusPage.py:152
 +msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
 +msgstr ""
-+"ゲスト SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレクト"
-+"リにあるファイルの実行を許可する"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "タイプ %s_t は既に現在のポリシーで定義されています。\n"
--#~ "継続しますか ?"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "メモリ保護"
 +
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "java 実行可能スタックを認める"
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "マウント"
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "mount にあらゆるファイルをマウントすることを認める"
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "mount にあらゆるディレクトリーをマウントすることを認める"
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "mplayer 実行可能スタックを認める"
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh に ssh-keysign を実行することを認める"
--#~ msgid "Verify Name"
--#~ msgstr "名前の証明"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
 +msgstr ""
-+"スタッフ SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレク"
-+"トリにあるファイルの実行を許可する"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "モジュール %s.pp は既に現在のポリシー内にロードされています。\n"
--#~ "継続しますか ?"
-+#: ../gui/selinux.tbl:12
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
 +msgstr ""
-+"sysadm SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレクト"
-+"リにあるファイルの実行を許可する"
--#~ msgid "You must enter a name"
--#~ msgstr "名前を指定する必要があります"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
++
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
 +msgstr ""
-+"制限されていない SELinux ユーザーアカウントに自分のホームディレクトリや /tmp "
-+"ディレクトリにあるファイルの実行を許可する"
--#~ msgid "You must enter a executable"
--#~ msgstr "実行ファイルを指定する必要があります"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "ネットワーク設定"
 +
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "ラベルのないパケットがネットワークに流れるのを認める"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux を設定する"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
 +msgstr ""
-+"ユーザー SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレク"
-+"トリにあるファイルの実行を許可する"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr ""
--#~ "ポートは 1 から %d までの数字か、又は数字の範囲でなければなりません "
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "制限されていないものに unconfined_execmem に dyntrans することを認める"
 +
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "データベース"
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "ユーザーに mysql ソケットに接続することを許可"
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "ユーザーに postgres ソケットに接続することを認める"
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "X サーバー"
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "クライアントに X 共有メモリに書き込むことを認める"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "制限するプロセス/ユーザーの名前を入力しなければなりません"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
 +msgstr ""
-+"xguest SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレクト"
-+"リにあるファイルの実行を許可する"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER タイプは実行ファイルとしては認められません"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
 +
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "デーモンに NIS といっしょに実行することを認める"
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "ウェブアプリケーション"
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "スタッフ SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "ユーザー SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
 +
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ユーザーからウェブブラウザードメインへの転位"
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "スタッフウェブブラウザーにホームディレクトリーに書き込むことを認める"
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "amanda 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "amavis 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "avahi 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "クラスターサーバー用の SELinux 保護を無効にする"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "DAEMON アプリのみが初期化スクリプトを使用できます"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
 +msgstr ""
-+"cdrecord にいろいろな内容の読み込みを認める。nfs、samba、可搬性装置、ユー"
-+"ザー temp、信頼できない内容のファイル"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog はブール値でなければなりません"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped デーモン用の SELinux 保護を無効にする"
 +
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "印刷"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd バックエンドサーバー用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "dccd 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
 +
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "dccm 用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd デーモン用の SELinux 保護を無効にする"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc デーモン用の SELinux 保護を無効にする"
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/ka.po b/policycoreutils/po/ka.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/ka.po
++++ b/policycoreutils/po/ka.po
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr ""
 +
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd デーモン用の SELinux 保護を無効にする"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd デーモン用の SELinux 保護を無効にする"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t に直接デーモンを起動することを認める"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution 用の SELinux 保護を無効にする"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "ゲーム"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "ゲーム用の SELinux 保護を無効にする"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "ウェブブラウザー用の SELinux 保護を無効にする"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird 用の SELinux 保護を無効にする"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd デーモン用の SELinux 保護を無効にする"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg デーモン用の SELinux 保護を無効にする"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq デーモン用の SELinux 保護を無効にする"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot デーモン用の SELinux 保護を無効にする"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd デーモン用の SELinux 保護を無効にする"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail 用の SELinux 保護を無効にする"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd デーモン用の SELinux 保護を無効にする"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam デーモン用の SELinux 保護を無効にする"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon デーモン用の SELinux 保護を無効にする"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss デーモン用の SELinux 保護を無効にする"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal デーモン用の SELinux 保護を無効にする"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
++
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
++
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
++
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
++
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
++
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
++
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
++
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
++
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
++
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
++
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
++
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
++
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
++
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
++
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
++
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
++
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
++
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
++
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
++
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
++
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
++
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
++
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
++
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
++
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
++
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
++
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
++
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
++
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
++
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
++
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
++
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
++
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
++
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
++
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
++
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
++
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
++
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
++
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
++
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
++
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
++
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr ""
++
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr ""
++
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr ""
++
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr ""
++
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr ""
++
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr ""
++
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr ""
++
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr ""
++
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr ""
++
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr ""
++
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr ""
++
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr ""
++
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr ""
++
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr ""
++
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr ""
++
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr ""
++
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr ""
++
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
++
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr ""
++
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr ""
++
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr ""
++
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr ""
++
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr ""
++
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr ""
++
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr ""
++
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr ""
++
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr ""
++
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr ""
++
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr ""
++
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
++msgstr ""
++
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr ""
++
++#: ../gui/selinux.tbl:41
++msgid ""
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
++msgstr ""
++
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr ""
++
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr ""
++
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr ""
++
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr ""
++
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr ""
++
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
++msgstr ""
++
++#: ../gui/selinux.tbl:58
++msgid "CVS"
++msgstr ""
++
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr ""
++
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
++msgstr ""
++
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
++msgstr ""
++
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr ""
++
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr ""
++
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr ""
++
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr ""
++
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr ""
++
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr ""
++
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr ""
++
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr ""
++
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "互換性"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER タイプは自動的に tmp タイプを得ます"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"壊れていることを知っているが、セキュリティリスクのないことが分かっているもの"
-+"を監査しない"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "制限するプロセスの実行ファイルのバスを入力しなければなりません"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd 交代ログ用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD サービス"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd 子デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "ケルベロス"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "evolution と thunderbird にユーザーファイルを読み込むのを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "mozilla ブラウザーにユーザーファイルを読み込むのを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "名前サービス"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob mkhomedir 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd に一般ユーザーのために実行することを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "rdisc 用の SELinux 保護を無効にする"
--#~ msgid "Type Enforcement file"
--#~ msgstr "強制ファイルを入力してください"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"プログラムに標準以外の場所にあるファイルを読み込むことを認める (default_t)"
--#~ msgid "Interface file"
--#~ msgstr "インターフェースファイル"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond 用の SELinux 保護を無効にする"
--#~ msgid "File Contexts file"
--#~ msgstr "ファイルコンテキストファイル"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb デーモン用の SELinux 保護を無効にする"
--#~ msgid "Setup Script"
--#~ msgstr "設定スクリプト"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci 用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux ポート\n"
--#~ "タイプ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd 用の SELinux 保護を無効にする"
--#~ msgid "Protocol"
--#~ msgstr "プロトコル"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind デーモン用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "レベル"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd デーモン用の SELinux 保護を無効にする"
--#~ msgid "Port"
--#~ msgstr "ポート"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd 用の SELinux 保護を無効にする"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "ポート番号 \"%s\" は有効ではありません。0 < ポート番号 < 65536 "
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
--#~ msgid "List View"
--#~ msgstr "一覧表示"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync デーモン用の SELinux 保護を無効にする"
--#~ msgid "Group View"
--#~ msgstr "グループ表示"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh にデーモンとしてではなく、inetd から実行することを認める"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux サービス保護"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba に nfs ディレクトリーを共有することを認める"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct デーモンの SELinux 保護を無効にします"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL 認証サーバー"
--#~ msgid "Admin"
--#~ msgstr "管理者"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl 認証サーバーに /etc/shadow を読み込むことを認める"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "全てのデーモンがコアファイルを / へ書き込むのを認めます"
-+#: ../gui/selinux.tbl:165
++msgstr ""
++
++#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows サーバーにメモリ領域を実行可能と書込み可能の両方としてマップするこ"
-+"とを認める"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "全てのデーモンが割り当てられていない tty を使用できることを認めます"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t への転位を認めない、sudo と su が影響している"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "どのプロセスにもカーネルモジュールをロードすることを認めない"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "どのプロセスにもカーネル SELinux ポリシーを変更することを認めない"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "スパム保護"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd にホームディレクトリーへのアクセスを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assassin デーモンにネットワークアクセスを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid デーモンにネットワークへの接続を認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh に sysadm_r:sysadm_t としてログインすることを認める"
--#~ msgid "User Privs"
--#~ msgstr "ユーザー権限"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r ユーザーに sysadm ホームディレクトリーを捜し、(~/.bashrc のような) "
-+"ファイルを読むことを認める"
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
--#~ "クトリにあるファイルの実行を許可する"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "汎用 SSL トンネル"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel デーモン用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ゲスト SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
--#~ "クトリにあるファイルの実行を許可する"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"stunnel デーモンに xinetd の外でスタンドアローンとして実行することを認める"
--#~ msgid "Memory Protection"
--#~ msgstr "メモリ保護"
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat デーモン用の SELinux 保護を無効にする"
--#~ msgid "Allow java executable stack"
--#~ msgstr "java 実行可能スタックを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid デーモン用の SELinux 保護を無効にする"
--#~ msgid "Mount"
--#~ msgstr "マウント"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd デーモン用の SELinux 保護を無効にする"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "mount にあらゆるファイルをマウントすることを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "システム cron ジョブ用の SELinux 保護を無効にする"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "mount にあらゆるディレクトリーをマウントすることを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp デーモン用の SELinux 保護を無効にする"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer 実行可能スタックを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet デーモン用の SELinux 保護を無効にする"
--#~ msgid "SSH"
--#~ msgstr "SSH"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd デーモン用の SELinux 保護を無効にする"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh に ssh-keysign を実行することを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy デーモン用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "スタッフ SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディ"
--#~ "レクトリにあるファイルの実行を許可する"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev デーモン用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
--#~ "クトリにあるファイルの実行を許可する"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml デーモン用の SELinux 保護を無効にする"
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "制限されていない SELinux ユーザーアカウントに自分のホームディレクトリや /"
--#~ "tmp ディレクトリにあるファイルの実行を許可する"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd に、それが起動するドメイン転位が明に定義されていないサービスを含め、制"
-+"限なしで実行することを認める"
--#~ msgid "Network Configuration"
--#~ msgstr "ネットワーク設定"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc スクリプトに、rc スクリプトにより起動されるドメイン転位が明に定義されてい"
-+"ないデーモンを含め、制限なしで実行することを認める"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "ラベルのないパケットがネットワークに流れるのを認める"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm に制限なしで実行することを認める"
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "ユーザー SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディ"
--#~ "レクトリにあるファイルの実行を許可する"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"hotplug や insmod のような特権ユーティリティーに制限なしで実行することを認め"
-+"る"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr ""
--#~ "制限されていないものに unconfined_execmem に dyntrans することを認める"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed デーモン用の SELinux 保護を無効にする"
--#~ msgid "Databases"
--#~ msgstr "データベース"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r に su か、sudo、userhelper 経由で sysadm_r に達することを認める。そう"
-+"でなければ staff_r のみがそうできる"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "ユーザーに mysql ソケットに接続することを許可"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "ユーザーに mount コマンドを実行することを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "標準ユーザーに直接マウスアクセスを認める (X サーバーのみ認める)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "ユーザーに dmesg コマンドを実行することを認める"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "ユーザーに postgres ソケットに接続することを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"ユーザーにネットワークインターフェースを制御することを認める (USERCTL=true も"
-+"必要)"
--#~ msgid "XServer"
--#~ msgstr "X サーバー"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "通常ユーザーに ping を実行することを認める"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "クライアントに X 共有メモリに書き込むことを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"ユーザーに ext 属性でないファイルの読み書きを認める (FAT、CDROM、フロッピー)"
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux ユーザーアカウントに自分のホームディレクトリや /tmp ディレ"
--#~ "クトリにあるファイルの実行を許可する"
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "ユーザーに usb 装置の読み書きを認める"
--#~ msgid "NIS"
--#~ msgstr "NIS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"ユーザーに TCP サーバーを実行することを認める (ポートと結びつけ、同一ドメイン"
-+"や外部のユーザーからの接続を受け付ける) これを無効にすると FTP を受動モードに"
-+"し、他のプロトコルも変更するかもしれない"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ユーザーに stat ttyfiles を認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm が sysadm_r:sysadm_t としてログインすることを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen に物理ディスク装置を読み書きすることを認める"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen control 用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS パスワードデーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv デーモン用の SELinux 保護を無効にする"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS 転送デーモン用の SELinux 保護を無効にする"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "デーモンに NIS といっしょに実行することを認める"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの管理を認める"
--#~ msgid "Web Applications"
--#~ msgstr "ウェブアプリケーション"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの読み込みを認"
-+"める"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "スタッフ SELinux ユーザーからウェブブラウザードメインへの転位"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "%s '%s' を本当に削除したいのですか?"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux ユーザーからウェブブラウザードメインへの転位"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s を削除"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "ユーザー SELinux ユーザーからウェブブラウザードメインへの転位"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s を追加"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux ユーザーからウェブブラウザードメインへの転位"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s を変更"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "スタッフウェブブラウザーにホームディレクトリーに書き込むことを認める"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "許容"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda 用の SELinux 保護を無効にする"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "強制"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis 用の SELinux 保護を無効にする"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "無効"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd デーモン用の SELinux 保護を無効にする"
++msgstr ""
++
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "状態"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch デーモン用の SELinux 保護を無効にする"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"ポリシータイプを変更すると次の起動時に全ファイルシステムのリラベルを引き起し"
-+"ます。ファイルシステムの大きさに依存してリラベルは長い時間を必要とします。続"
-+"けますか?"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd デーモン用の SELinux 保護を無効にする"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -123239,78 +123989,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ja.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux を無効にするには再起動が必要です。薦められません。後に SELinux を有効"
-+"に戻すことに決めたら、システムはリラベルが必要になります。単に SELinux がシス"
-+"テムに問題を起こしているかを知りたいのならば、エラーを記録するだけで SELinux "
-+"ポリシーを強制しない許容モードにすることができます。許容モードは再起動は必要"
-+"ではありません。続けますか?"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount デーモン用の SELinux 保護を無効にする"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux を有効に変更すると次の起動時に全ファイルシステムのリラベルを引き起し"
-+"ます。ファイルシステムの大きさに依存してリラベルは長い時間を必要とします。続"
-+"けますか?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi 用の SELinux 保護を無効にする"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth デーモン用の SELinux 保護を無効にする"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux ログインマッピングを追加"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux ネットワークポートを追加"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux タイプ"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna デーモン用の SELinux 保護を無効にする"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"レベル"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr デーモン用の SELinux 保護を無効にする"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "ファイル仕様"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ファイルタイプ"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "クラスターサーバー用の SELinux 保護を無効にする"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -123321,2834 +124040,2206 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ja.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"全ファイル\n"
-+"通常ファイル\n"
-+"ディレクトリー\n"
-+"文字装置\n"
-+"ブロック装置\n"
-+"ソケット\n"
-+"シンボリックリンク\n"
-+"名前付きパイプ\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux ユーザーの追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux 管理者"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "特性(_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "削除(_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "管理オブジェクトを選択"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>選択:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "システムデフォルトの強制モード"
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "cdrecord にいろいろな内容の読み込みを認める。nfs、samba、可搬性装置、ユー"
--#~ "ザー temp、信頼できない内容のファイル"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"無効\n"
-+"許容\n"
-+"強制\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "現在の強制モード"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "システムデフォルトのポリシータイプ: "
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped デーモン用の SELinux 保護を無効にする"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"リラベルしたいのならば選択し、そうすれば全ファイルシステムが次の再起動時に。"
-+"システムの大きさに依存しますが、リラベルは非常に長い時間がかかります。ポリ"
-+"シータイプを変更したり無効から強制へ変える場合、リラベルが必要になります。"
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "次の再起動でリラベル"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "ブーリアン設定をシステムデフォルトに戻す"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "カスタム化と全ブーリアン値との間で切り替え"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "boolean ロックダウンのウィザードを実行"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "ロックダウン..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "フィルター"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "ファイルコンテキストの追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "ファイルコンテキストの変更"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "ファイルコンテキストの削除"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "全てとカスタム化ファイルコンテキストの間で切り替え"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux ユーザーマッピングの追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux ユーザーマッピングの変更"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux ユーザーマッピングの削除"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "ユーザーを追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "ユーザーを変更"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "ユーザーを削除"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "翻訳を追加"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "翻訳を修正"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "翻訳を削除"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "ネットワークポートの追加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "ネットワークポートの編集"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "ネットワークポートの削除"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "カスタム化と全ポートの間で切り替え"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "新ポリシーモジュールの生成"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "ポリシーモジュールをロード"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "ロード可能なポリシーモジュールを取り外す"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd デーモン用の SELinux 保護を無効にする"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
-+msgstr "通常はログファイルに報告されない追加の監査ルールを有効/無効にする。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "プロセスモードを permissive に変更します。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "プロセスモードを enforcing に変更します"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "プロセスドメイン"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/kn.po b/policycoreutils/po/kn.po
+index 7d706a8..2c6f6e4 100644
+--- a/policycoreutils/po/kn.po
++++ b/policycoreutils/po/kn.po
+@@ -1,28 +1,23 @@
+-# translation of policycoreutils.HEAD.kn.po to Kannada
++# SOME DESCRIPTIVE TITLE.
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ #
+-# Shankar Prasad <svenkate@redhat.com>, 2007, 2008.
++# Translators:
++# Shankar Prasad <svenkate@redhat.com>, 2007, 2008, 2009, 2010.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD.kn\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-02 10:45+0530\n"
+-"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
+-"Language-Team: Kannada <en@li.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Kannada (http://www.transifex.net/projects/p/fedora/language/"
++"kn/)\n"
+ "Language: kn\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=1; plural=0\n"
  
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan 用の SELinux 保護を無効にする"
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -94,7 +89,7 @@ msgstr "******************** ಪ್ರಮುಖ ಅಂಶ **********************
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr "ಈ ನೀತಿ(ಪಾಲಿಸಿ) ಪ್ಯಾಕೇಜನ್ನು ಸಕ್ರಿಯವಾಗಿಸಲು, ಇದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ:"
++msgstr "ಈ ಪಾಲಿಸಿ(ಪಾಲಿಸಿ) ಪ್ಯಾಕೇಜನ್ನು ಸಕ್ರಿಯವಾಗಿಸಲು, ಇದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+@@ -106,20 +101,19 @@ msgstr "semanage ಹ್ಯಾಂಡಲನ್ನು ಸೃಜಿಸಲು ಸಾ
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "SELinux ನೀತಿಯನ್ನು ನಿರ್ವಹಿಸಲಾಗಿಲ್ಲ ಅಥವ ಶೇಖರಣೆಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲಾಗಿಲ್ಲ."
++msgstr "SELinux ಪಾಲಿಸಿಯನ್ನು ನಿರ್ವಹಿಸಲಾಗಿಲ್ಲ ಅಥವ ಶೇಖರಣೆಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲಾಗಿಲ್ಲ."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "ನೀತಿ ಶೇಖರಣೆಯನ್ನು ಓದಲಾಗಿಲ್ಲ."
++msgstr "ಪಾಲಿಸಿ ಶೇಖರಣೆಯನ್ನು ಓದಲಾಗಿಲ್ಲ."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+ msgstr "semanage ಸಂಪರ್ಕವನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s ಗಾಗಿ MLS ವ್ಯಾಪ್ತಿಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
++msgstr "MLS ಶಕ್ತಗೊಂಡಿರುವ ಸ್ಥಿತಿಯನ್ನು ಪರೀಕ್ಷಿಸಲಾಗಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -127,77 +121,73 @@ msgstr "ಇನ್ನೂ ಅನ್ವಯಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "ಸೆಮನೇಜ್ ವ್ಯವಹಾರವು ಈಗಾಗಲೆ ಪ್ರಗತಿಯಲ್ಲಿದೆ"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage ವಹಿವಾಟನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage ವಹಿವಾಟನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ"
++msgstr "semanage ವಹಿವಾಟನ್ನು ಸಲ್ಲಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "ಸೆಮನೇಜ್ ವ್ಯವಹಾರವು ಪ್ರಗತಿಯಲ್ಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux ಬಳಕೆದಾರರನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
++msgstr "SELinux ಮಾಡ್ಯೂಲ್‌ಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "ಘಟಕದ ಹೆಸರು"
++msgstr "ಮಾಡ್ಯೂಲಿನ ಹೆಸರು"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "ಆವೃತ್ತಿ"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "ಅಶಕ್ತಗೊಂಡ"
+ #: ../semanage/seobject.py:322
+ #, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr ""
++msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲ್ ಅನ್ನು ಅಶಕ್ತಗೊಳಿಸಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "ಪಾತ್ರ %s ಅನ್ನು %s ಗೆ ಸೇರಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲನ್ನು ಶಕ್ತಗೊಳಿಸಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
+ #: ../semanage/seobject.py:348
+ #, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr ""
++msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲನ್ನು ತೆಗೆದುಹಾಕಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "dontaudit ಗೆ 'on' ಅಥವ 'off' ಇವೆರಡರಲ್ಲಿ ಯಾವುದಾದರೂ ಒಂದರ ಅಗತ್ಯವಿದೆ"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
++msgstr ""
+ #: ../semanage/seobject.py:438
+ #, python-format
+ msgid "Could not set permissive domain %s (module installation failed)"
+ msgstr ""
++"ಅನುಮತಿಪೂರ್ವಕ ಡೊಮೈನ್ %s ಅನ್ನು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ (ಡೊಮೈನ್‌ ಅನುಸ್ಥಾಪನೆಯು ವಿಫಲಗೊಂಡಿದೆ)"
+ #: ../semanage/seobject.py:444
+ #, python-format
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "ಅನುಮತಿಪೂರ್ವಕವಾದ ಡೊಮೈನ್ %s ಅನ್ನು ತೆಗೆದುಹಾಕಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -208,7 +198,7 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
+ #, python-format
+ msgid "Could not create a key for %s"
+-msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+@@ -217,9 +207,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s ಗೆ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux ಬಳಕೆದಾರ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
++msgstr "Linux ಸಮೂಹ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:497
+ #, python-format
+@@ -273,7 +263,7 @@ msgstr "%s ಗಾಗಿ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು
+ #: ../semanage/seobject.py:611
+ #, python-format
+ msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:615
+ #, python-format
+@@ -286,15 +276,20 @@ msgid "Could not list login mappings"
+ msgstr "ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗುಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "ಪ್ರವೇಶ ಹೆಸರು"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "SELinux ಬಳಕೆದಾರ"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "MLS/MCS ವ್ಯಾಪ್ತಿ"
+@@ -312,9 +307,9 @@ msgid "Could not query user for %s"
+ msgstr "ಬಳಕೆದಾರನನ್ನು %s ಗಾಗಿ ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ಕನಿಷ್ಟ ಒಂದು ಪಾತ್ರವನ್ನು ಸೇರಿಸಬೇಕು"
+ #: ../semanage/seobject.py:737
+ #, python-format
+@@ -367,7 +362,7 @@ msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಮಾರ್ಪಡಿ
+ #: ../semanage/seobject.py:862
+ #, python-format
+ msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:873
+ #, python-format
+@@ -404,6 +399,7 @@ msgid "MCS Range"
+ msgstr "MCS ವ್ಯಾಪ್ತಿ"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux ಪಾತ್ರಗಳು"
+@@ -416,9 +412,8 @@ msgid "Port is required"
+ msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "ಅಮಾನ್ಯ ಪೂರ್ವಪ್ರತ್ಯಯ %s"
++msgstr ""
+ #: ../semanage/seobject.py:979
+ #, python-format
+@@ -516,7 +511,7 @@ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s ಅನ್ನು ಅಳಿಸಲಾ
+ #: ../semanage/seobject.py:1118
+ #, python-format
+ msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:1122
+ #, python-format
+@@ -535,18 +530,17 @@ msgstr "SELinux ಸಂಪರ್ಕ ಸ್ಥಾನದ ಬಗೆ"
+ msgid "Proto"
+ msgstr "Proto"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಸಂಖ್ಯೆ"
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
++msgstr "ನೋಡ್‌ನ ವಿಳಾಸದ ಅಗತ್ಯವಿದೆ"
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+-msgstr ""
++msgstr "ಗೊತ್ತಿರದ ಅಥವ ಕಾಣೆಯಾದ ಪ್ರೊಟೊಕಾಲ್"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -563,14 +557,14 @@ msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಲ
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not check if addr %s is defined"
+-msgstr "%s/%s ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ವಿವರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ವಿವರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create addr for %s"
+-msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -579,74 +573,72 @@ msgid "Could not create context for %s"
+ msgstr "%s ಗಾಗಿ ಸನ್ನಿವೇಶವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mask for %s"
+-msgstr "%s ಗಾಗಿ ಹೆಸರನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ಮಾಸ್ಕನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set user in addr context for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set role in addr context for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set type in addr context for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲ್ಲಿ ಬಗೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲ್ಲಿ ಬಗೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ mls ಕ್ಷೇತ್ರಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿನ mls ಕ್ಷೇತ್ರಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set addr context for %s"
+-msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not add addr %s"
+-msgstr "%s/%s ದಲ್ಲಿ ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is not defined"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವು ವಿವರಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ವಿವರಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not query addr %s"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not modify addr %s"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete addr %s"
+-msgstr "%s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "ವಿಳಾಸ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
++msgstr "ವಿಳಾಸಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -712,7 +704,7 @@ msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಮಾರ್ಪಡಿ
+ #: ../semanage/seobject.py:1558
+ #, python-format
+ msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:1562
+ #, python-format
+@@ -720,9 +712,8 @@ msgid "Could not delete interface %s"
+ msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
++msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -737,9 +728,9 @@ msgid "Context"
+ msgstr "ಸನ್ನಿವೇಶ"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ಈಗಾಗಲೆ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ"
++msgstr "%s ಕ್ಕೆ ಸಮನಾದ ವರ್ಗವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -747,9 +738,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux ಬಳಕೆದಾರ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
++msgstr "%s ಕ್ಕೆ ಸಮನಾದ ವರ್ಗವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:1692
+ #, python-format
+@@ -839,7 +830,7 @@ msgstr "%s ದ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಲ
+ #: ../semanage/seobject.py:1878
+ #, python-format
+ msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:1884
+ #, python-format
+@@ -869,11 +860,10 @@ msgid ""
+ msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -892,14 +882,14 @@ msgid "Could not query file context %s"
+ msgstr "ಕಡತ ಸನ್ನಿವೇಶ %s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "ನೀವು ಒಂದು ಮೌಲ್ಯವನ್ನು ನಮೂದಿಸಬೇಕು"
++msgstr "ಈ ಕೆಳಗಿನ ಮೌಲ್ಯಗಳಲ್ಲಿ ಒಂದನ್ನು ನೀವು ಸೂಚಿಸಲೇಬೇಕು: %s"
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "ಬೂಲಿಯನ್ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
++msgstr "ಬೂಲಿಯನ್ %s ಗೆ ಯಾವುದೆ ಸಕ್ರಿಯ ಮೌಲ್ಯವನ್ನು ರವಾನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:2007
+ #, python-format
+@@ -909,12 +899,12 @@ msgstr "ಬೂಲಿಯನ್ %s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾ
+ #: ../semanage/seobject.py:2025
+ #, python-format
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "ಸರಿಯಲ್ಲದ ವಿನ್ಯಾಸ %s: ರೆಕಾರ್ಡ್ %s"
+ #: ../semanage/seobject.py:2048
+ #, python-format
+ msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr "ಬೂಲಿಯನ್ %s ವು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "ಬೂಲಿಯನ್ %s ವು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:2052
+ #, python-format
+@@ -942,15 +932,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux ಬೂಲಿಯನ್"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "ಸ್ಥಿತಿ"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "ವಿವರಣೆ"
+@@ -1200,18 +1190,19 @@ msgstr "ಬಳಕೆ:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr "%s:  ನೀತಿಯು ಈಗಾಗಲೆ ಲೋಡ್‌ ಮಾಡಲಾಗಿದೆ ಹಾಗು ಆರಂಭಿಕ ಲೋಡ್‍ಗೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ\n"
++msgstr ""
++"%s:  ಪಾಲಿಸಿಯು ಈಗಾಗಲೆ ಲೋಡ್‌ ಮಾಡಲಾಗಿದೆ ಹಾಗು ಆರಂಭಿಕ ಲೋಡ್‍ಗೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+ msgstr ""
+-"%s:  ನೀತಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ ಹಾಗು ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ:  %s\n"
++"%s:  ಪಾಲಿಸಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ ಹಾಗು ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s:  ನೀತಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ:  %s\n"
++msgstr "%s:  ಪಾಲಿಸಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ:  %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+@@ -1293,1743 +1284,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "ಆಯ್ಕೆಗಳ ದೋಷ %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "%s ಅನ್ನು ತೆರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: MLS ಅಲ್ಲದ ಗಣಕಗಳಲ್ಲಿ ಅನುವಾದಗಳಿಗೆ ಬೆಂಬಲ ಇರುವುದಿಲ್ಲ:"
+-#~ "%s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "ಮಟ್ಟ"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "ಅನುವಾದ"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "ಅನುವಾದಗಳು ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "ಅಮಾನ್ಯ ಮಟ್ಟ '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ಅನ್ನು ಈಗಾಗಲೆ ಅನುವಾದದಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s ಅನುವಾದದಲ್ಲಿ ವಿವರಿಸಲಾಗಿಲ್ಲ"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s ಗಾಗಿ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ವಿವರಿಸಲಾಗಿದೆ"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s/%s ವನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವು ಈಗಾಗಲೆ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ, ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತದೆ.\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ, ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತದೆ.\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS ಅನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ, ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತಿದೆ\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ಸಾಮರ್ಥ್ಯಗಳನ್ನು ತ್ಯಜಿಸುವಲ್ಲಿ(dropping) ದೋಷ, ಕಾರ್ಯಭಂಗಗೊಳಿಸಲಾಗುತ್ತಿದೆ\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID ಸಾಮರ್ಥ್ಯವನ್ನು ತ್ಯಜಿಸುವಲ್ಲಿ(dropping) ದೋಷ, ಕಾರ್ಯಭಂಗಗೊಳಿಸಲಾಗುತ್ತಿದೆ\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps ಅನ್ನು ಮುಕ್ತಗೊಳಿಸುವಲ್ಲಿ ದೋಷ\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "MLS ಅಲ್ಲದ ಗಣಕಗಳಲ್ಲಿ ಅನುವಾದಗಳಿಗೆ ಬೆಂಬಲ ಇರುವುದಿಲ್ಲ್ಲ"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
+-#~ msgid "Boolean"
+-#~ msgstr "ಬೂಲಿಯನ್"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
+-#~ msgid "all"
+-#~ msgstr "ಎಲ್ಲಾ"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
+-#~ msgid "Customized"
+-#~ msgstr "ಕಸ್ಟಮೈಸ್ ಮಾಡಲಾದ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "ಕಡತವನ್ನು ಲೇಬಲ್ ಮಾಡುವುದು"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "ಕಡತದ\n"
+-#~ "ವಿಶಿಷ್ಟ ವಿವರಗಳು"
 -
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd 用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "ಕಡತದ ಬಗೆ"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "ಕಡತದ\n"
+-#~ "ಹೆಸರು"
 -
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat デーモン用の SELinux 保護を無効にする"
+-#~ msgid "User Mapping"
+-#~ msgstr "ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗ್"
 -
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier デーモン用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "ಪ್ರವೇಶದ\n"
+-#~ "ಹೆಸರು"
 -
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol デーモン用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "ಬಳಕೆದಾರ"
 -
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed デーモン用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS ವ್ಯಾಪ್ತಿ"
 -
--#~ msgid "Cron"
--#~ msgstr "Cron"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "'%s' ದ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ"
 -
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Policy Module"
+-#~ msgstr "ನೀತಿ ಘಟಕ"
 -
--#~ msgid "Printing"
--#~ msgstr "印刷"
+-#~ msgid "Disable Audit"
+-#~ msgstr "ಆಡಿಟನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 -
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd バックエンドサーバー用の SELinux 保護を無効にする"
+-#~ msgid "Enable Audit"
+-#~ msgstr "ಆಡಿಟನ್ನು ಶಕ್ತಗೊಳಿಸು"
 -
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Load Policy Module"
+-#~ msgstr "ನೀತಿ ಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡಿ"
 -
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd 用の SELinux 保護を無効にする"
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
 -
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t に直接デーモンを起動することを認める"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Evolution 用の SELinux 保護を無効にする"
--
--#~ msgid "Games"
--#~ msgstr "ゲーム"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "ゲーム用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "ウェブブラウザー用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Thunderbird 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
 -
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss デーモン用の SELinux 保護を無効にする"
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
 -
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal デーモン用の SELinux 保護を無効にする"
+-#~ msgid "translator-credits"
+-#~ msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ ಎಂ. ವಿ."
 -
--#~ msgid "Compatibility"
--#~ msgstr "互換性"
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux ನೀತಿ ಉತ್ಪಾದನಾ ಉಪಕರಣ"
 -
 -#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "壊れていることを知っているが、セキュリティリスクのないことが分かっているも"
--#~ "のを監査しない"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd 交代ログ用の SELinux 保護を無効にする"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD サービス"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd 子デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Kerberos"
--#~ msgstr "ケルベロス"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman 用の SELinux 保護を無効にする"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "evolution と thunderbird にユーザーファイルを読み込むのを認める"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "mozilla ブラウザーにユーザーファイルを読み込むのを認める"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Name Service"
--#~ msgstr "名前サービス"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob mkhomedir 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "pppd に一般ユーザーのために実行することを認める"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd デーモン用の SELinux 保護を無効にする"
+-#~ "ಈ ಉಪಕರಣದಿಂದ SELinux ಬಳಸಿಕೊಂಡು ನೀತಿ ಚೌಕಟ್ಟನ್ನು (framework), ಅನ್ವಯಗಳನ್ನು "
+-#~ "ಮಿತಿಗೊಳಿಸಲು ಅಥವ ಬಳಕೆದಾರರನ್ನು ನಿರ್ಮಿಸಲು ಬಳಸಬಹುದಾಗಿದೆ.   \n"
+-#~ "\n"
+-#~ "ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ:\n"
+-#~ "ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
+-#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if)\n"
+-#~ "ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc)\n"
+-#~ "ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh) - ನೀತಿಯನ್ನು ಸಂಕಲಿಸಲು ಹಾಗು ಅನುಸ್ಥಾಪಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ. "
 -
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc 用の SELinux 保護を無効にする"
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ/ಬಳಕೆದಾರನ ಪಾತ್ರವನ್ನು ಆರಿಸಿ"
 -
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "rdisc 用の SELinux 保護を無効にする"
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>ಅನ್ವಯಗಳು</b>"
 -
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "プログラムに標準以外の場所にあるファイルを読み込むことを認める (default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd 用の SELinux 保護を無効にする"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh にデーモンとしてではなく、inetd から実行することを認める"
+-#~ "ಸ್ಟಾಂಡರ್ಡ್ Init ಡೆಮನ್‍ಗಳೆಂದರೆ init ಸ್ಕ್ರಿಪ್ಟ್‍ಗಳ ಮೂಲಕ ಬೂಟ್ ಸಮಯದಲ್ಲಿ ಆರಂಭಗೊಳ್ಳುವ "
+-#~ "ಡೆಮನ್‍ಗಳಾಗಿರುತ್ತವೆ.  ಸಾಮಾನ್ಯವಾಗಿ /etc/rc.d/init.d ನಲ್ಲಿ ಒಂದು ಸ್ಕ್ರಿಪ್ಟ್‍ನ "
+-#~ "ಅಗತ್ಯವಿರುತ್ತದೆ"
 -
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba に nfs ディレクトリーを共有することを認める"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "ಸಾಮಾನ್ಯ init ಡೆಮೋನ್"
 -
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL 認証サーバー"
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನುಗಳು xinetd ಇಂದ ಆರಂಭಗೊಂಡವು"
 -
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl 認証サーバーに /etc/shadow を読み込むことを認める"
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನ್ (inetd)"
 -
 -#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
 -#~ msgstr ""
--#~ "X-Windows サーバーにメモリ領域を実行可能と書込み可能の両方としてマップする"
--#~ "ことを認める"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t への転位を認めない、sudo と su が影響している"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "どのプロセスにもカーネルモジュールをロードすることを認めない"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "どのプロセスにもカーネル SELinux ポリシーを変更することを認めない"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans 用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Spam Protection"
--#~ msgstr "スパム保護"
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd にホームディレクトリーへのアクセスを認める"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam Assassin デーモンにネットワークアクセスを認める"
+-#~ "ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI) ಜಾಲ ಪರಿಚಾರಕದಿಂದ (apache) ಆರಂಭಿಸಲಾದ CGI ಸ್ಕ್ರಿಪ್ಟುಗಳು"
 -
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI)"
 -
--#~ msgid "Squid"
--#~ msgstr "Squid"
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "ಬಳಕೆದಾರರಿಂದ ಆರಂಭಿಸಲ್ಪಟ್ಟಿದೆ ಎಂದು ನೀವು ಮಿತಿಗೊಳಪಡಿಸುವ ಯಾವುದೆ ಅನ್ವಯವು ಬಳಕೆದಾರ "
+-#~ "ಅನ್ವಯ ಆಗಿರುತ್ತದೆ"
 -
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid デーモンにネットワークへの接続を認める"
+-#~ msgid "User Application"
+-#~ msgstr "ಬಳಕೆದಾರ ಅನ್ವಯಗಳು"
 -
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid デーモン用の SELinux 保護を無効にする"
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>ಪ್ರವೇಶಿಸಿರುವ ಬಳಕೆದಾರರು</b>"
 -
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "ಈಗಿರುವ ಒಂದು ಪ್ರವೇಶ ಬಳಕೆದಾರ ದಾಖಲೆಯನ್ನು ಮಾರ್ಪಡಿಸು."
 -
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh に sysadm_r:sysadm_t としてログインすることを認める"
+-#~ msgid "Existing User Roles"
+-#~ msgstr "ಈಗಿರುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳು"
 -
 -#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
 -#~ msgstr ""
--#~ "staff_r ユーザーに sysadm ホームディレクトリーを捜し、(~/.bashrc のよう"
--#~ "な) ファイルを読むことを認める"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "汎用 SSL トンネル"
+-#~ "ಈ ಬಳಕೆದಾರನು ಒಂದು ಟರ್ಮಿನಲ್ ಅಥವ ದೂರಸ್ಥ ಪ್ರವೇಶದ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  "
+-#~ "ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಈ ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ "
+-#~ "ಯಾವುದನ್ನೂ ಹೊಂದಿರುವುದಿಲ್ಲ."
 -
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "ಕನಿಷ್ಟ ಟರ್ಮಿನಲ್ ಬಳಕೆದಾರ ಪಾತ್ರ"
 -
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
--#~ "stunnel デーモンに xinetd の外でスタンドアローンとして実行することを認める"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid デーモン用の SELinux 保護を無効にする"
+-#~ "ಈ ಬಳಕೆದಾರನು X ಅಥವ ಟರ್ಮಿನಲ್ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ "
+-#~ "ಈ ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ ಯಾವುದನ್ನೂ ಹೊಂದಿರುವುದಿಲ್ಲ"
 -
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "ಕನಿಷ್ಟ X Windows ಬಳಕೆದಾರ ಪಾತ್ರ"
 -
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "システム cron ジョブ用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, sudo ಇಲ್ಲದ "
+-#~ "ಹಾಗು ಯಾವುದೆ su ಇಲ್ಲದಿರುವ ಬಳಕೆದಾರ."
 -
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp デーモン用の SELinux 保護を無効にする"
+-#~ msgid "User Role"
+-#~ msgstr "ಬಳಕೆದಾರ ಪಾತ್ರ"
 -
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet デーモン用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, ಯಾವುದೆ su "
+-#~ "ಇಲ್ಲದಿರುವ ಆದರೆ ಮೂಲ ವ್ಯವಸ್ಥಾಪಕ ಪಾತ್ರಗಳಿಗೆ sudo ಮಾಡಬಹುದಾದ ಬಳಕೆದಾರ"
 -
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Admin User Role"
+-#~ msgstr "ನಿರ್ವಹಣಾ ಬಳಕೆದಾರ ಪಾತ್ರ"
 -
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy デーモン用の SELinux 保護を無効にする"
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>ಮೂಲ ಬಳಕೆದಾರರು</b>"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "ಈ ಬಳಕೆದಾರನನ್ನು ಮೂಲವಾಗಿ ಚಲಾಯಿಸುವಾಗ ಗಣಕದ ನಿರ್ವಹಣೆಗೆ ಬಳಸುವಂತಿದ್ದರೆ, ಮೂಲ "
+-#~ "ಬಳಕೆದಾರನನ್ನು ಆರಿಸಿ.  ಈ ಬಳಕೆದಾರನು ಗಣಕಕ್ಕೆ ನೇರವಾಗಿ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "ಮೂಲ ನಿರ್ವಾಹಕ ಬಳಕೆದಾರ ಪಾತ್ರ"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ ಅಥವ ಬಳಕೆದಾರನ ಪಾತ್ರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
+-#~ msgid "Name"
+-#~ msgstr "ಹೆಸರು"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲದುದನ್ನು ಪರಿಮಿತಿಗೆ ಒಳಪಡಿಸಲು ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
+-#~ msgid "..."
+-#~ msgstr "..."
 -
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "ಮಿತಿಗೊಳಿಸಬೇಕಿರುವ ಬಳಕೆದಾರ ಅಥವ ಅನ್ವಯದ ವಿಶೇಷವಾದ ಪ್ರಕಾರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ."
 -
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Executable"
+-#~ msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ"
 -
+-#~ msgid "Init script"
+-#~ msgstr "Init ಸ್ಕ್ರಿಪ್ಟ್"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
 -#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
+-#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
--#~ "xinetd に、それが起動するドメイン転位が明に定義されていないサービスを含"
--#~ "め、制限なしで実行することを認める"
--
+-#~ "ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯವನ್ನು ಆರಂಭಿಸಲು init ಸ್ಕ್ರಿಪ್ಟಿಗೆ ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "ನೀವು ಕಸ್ಟಮೈಝ್ ಮಾಡಲು ಬಯಸುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 -#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "ಈ ಅನ್ವಯ ಕ್ಷೇತ್ರಗಳಿಗೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ."
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಬೇಕಿರುವ ಹೆಚ್ಚುವರಿ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಲು ನೀವು ಬಯಸುವ ಅನ್ವಯ ಕ್ಷೇತ್ರಗಳನ್ನು ಅರಿಸಿ."
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "ಈ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಬಹುದಾದ ಹೆಚ್ಚುವರಿ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಲು ನೀವು ಬಯಸುವ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ."
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "ಈ ಬಳಕೆದಾರನಿಗೆ ಹೆಚ್ಚುವರಿ ಪಾತ್ರಗಳನ್ನು ಆರಿಸು"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಆಲಿಸುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು</b>"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
+-#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
--#~ "rc スクリプトに、rc スクリプトにより起動されるドメイン転位が明に定義されて"
--#~ "いないデーモンを含め、制限なしで実行することを認める"
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm に制限なしで実行することを認める"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ "ಮಿತಿಗೊಳಪಟ್ಟ ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
+-#~ msgid "All"
+-#~ msgstr "ಎಲ್ಲಾ"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
 -#~ msgstr ""
--#~ "hotplug や insmod のような特権ユーティリティーに制限なしで実行することを認"
--#~ "める"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab デーモン用の SELinux 保護を無効にする"
--
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed デーモン用の SELinux 保護を無効にする"
--
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನು ೦ ಯೊಂದಿಗೆ bindresvport ಅನ್ನು ಕರೆ ಮಾಡಲು ಅನುಮತಿಸು. ೬೦೦-೧೦೨೪ "
+-#~ "ಸಂಪರ್ಕಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಿಸಲಾಗುತ್ತಿದೆ"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
+-#~ msgid "600-1024"
+-#~ msgstr "೬೦೦-೧೦೨೪"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
 -#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "user_r に su か、sudo、userhelper 経由で sysadm_r に達することを認める。そ"
--#~ "うでなければ staff_r のみがそうできる"
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "ユーザーに mount コマンドを実行することを認める"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "標準ユーザーに直接マウスアクセスを認める (X サーバーのみ認める)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "ユーザーに dmesg コマンドを実行することを認める"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಬದ್ಧವಾಗಿರುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
+-#~ "ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "ಕಾದಿರಿಸದ ಸಂಪರ್ಕಸ್ಥಾನಗಳು (> ೧೦೨೪)"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಆರಿಸು"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
--#~ "ユーザーにネットワークインターフェースを制御することを認める "
--#~ "(USERCTL=true も必要)"
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಗಳಿಗೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು >೧೦೨೪"
 -
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "通常ユーザーに ping を実行することを認める"
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP ಸಂಪರ್ಕಸ್ಥಾನಗಳು</b>"
 -
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "ユーザーに ext 属性でないファイルの読み書きを認める (FAT、CDROM、フロッ"
--#~ "ピー)"
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತಗೊಳ್ಳುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
 -
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "ユーザーに usb 装置の読み書きを認める"
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ "
+-#~ "ವ್ಯಾಪ್ತಿಗಳ ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: "
+-#~ "612, 650-660"
 -
 -#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "ユーザーに TCP サーバーを実行することを認める (ポートと結びつけ、同一ドメ"
--#~ "インや外部のユーザーからの接続を受け付ける) これを無効にすると FTP を受動"
--#~ "モードにし、他のプロトコルも変更するかもしれない"
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ "
+-#~ "ವ್ಯಾಪ್ತಿಗಳ ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: "
+-#~ "612, 650-660"
 -
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ユーザーに stat ttyfiles を認める"
+-#~ msgid "Select common application traits"
+-#~ msgstr "ಸಾಮಾನ್ಯ ಅನ್ವಯ ವಿಶೇಷ ಗುಣಗಳನ್ನು(Traits) ಆರಿಸು"
 -
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog  ಸಂದೇಶಗಳನ್ನು ಬರೆಯುತ್ತದೆ\t"
 -
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp ತಾತ್ಕಾಲಿಕ ಕಡತಗಳನ್ನು ಸೃಜಿಸು/ಕುಶಲವಾಗಿ ನಿರ್ವಹಿಸು"
 -
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "ದೃಢೀಕರಣಕ್ಕಾಗಿ Pam ಅನ್ನು ಬಳಸುತ್ತದೆ"
 -
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch ಅಥವ getpw* ಕರೆಗಳನ್ನು ಬಳಸುತ್ತದೆ"
 -
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ಅನ್ನು ಬಳಸುತ್ತದೆ"
 -
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm が sysadm_r:sysadm_t としてログインすることを認める"
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ಆಡಿಟ್ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
 -
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "ಟರ್ಮಿನಲ್‍ನೊಂದಿಗೆ ವ್ಯವಹರಿಸುತ್ತದೆ"
 -
--#~ msgid "XEN"
--#~ msgstr "XEN"
+-#~ msgid "Sends email"
+-#~ msgstr "ಇಮೈಲ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
 -
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen に物理ディスク装置を読み書きすることを認める"
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "ಅನ್ವಯವು ನಿರ್ವಹಿಸುವ ಕಡತಗಳು/ಕಡತಕೋಶಗಳನ್ನು ಆರಿಸಿ"
 -
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs デーモン用の SELinux 保護を無効にする"
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ಈ ಅನ್ವಯವು \"ಬರೆಯ\"ಬೇಕಿರುವ ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು ಸೇರಿಸು. Pid ಕಡತಗಳು, Log "
+-#~ "ಕಡತಗಳು, /var/lib ಕಡತಗಳು ..."
 -
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen control 用の SELinux 保護を無効にする"
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "ಅನ್ವಯವು ಬಳಸುವ ಬೂಲಿಯನ್‍ಗಳು ಆರಿಸು"
 -
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "ಈ ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯಕ್ಕಾಗಿ ಬಳಸಲಾದ ಬೂಲಿಯನ್‍ಗಳನ್ನು ಸೇರಿಸು/ತೆಗೆದುಹಾಕು"
 -
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS パスワードデーモン用の SELinux 保護を無効にする"
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
 -
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Policy Directory"
+-#~ msgstr "ನೀತಿ ಕೋಶ"
 -
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS 転送デーモン用の SELinux 保護を無効にする"
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸು"
 -
 -#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの管理を認"
--#~ "める"
+-#~ "ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
+-#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
+-#~ "ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ "
+-#~ "ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ.  \n"
+-#~ " Linux ಲಾಗಿನ್ ಬಳಕೆದಾರರನ್ನು ಬಳಕೆದಾರರ ಪಾತ್ರಗಳಿಗೆ ಮ್ಯಾಪ್ ಮಾಡಲು semanage ಅಥವ "
+-#~ "useradd ಅನ್ನು ಬಳಸಿ.\n"
+-#~ "ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
+-#~ "ಬಳಕೆದಾರನಾಗಿ ಪ್ರವೇಶಿಸಿ ಹಾಗು ಈ ಬಳಕೆದಾರ ಪಾತ್ರವನ್ನು ಪರೀಕ್ಷಿಸಿ.\n"
+-#~ "te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
 -
 -#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "SELinux webadm ユーザーに、非特権ユーザーのホームディレクトリーの読み込み"
--#~ "を認める"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "%s '%s' を本当に削除したいのですか?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s を削除"
+-#~ "ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
+-#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
+-#~ "ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ "
+-#~ "ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ\n"
+-#~ " ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
+-#~ "avc ಸಂದೇಶಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಅನ್ವಯವನ್ನು ಚಲಾಯಿಸಿ/ಪುನರಾರಂಭಿಸಿ.\n"
+-#~ "te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
 -
--#~ msgid "Add %s"
--#~ msgstr "%s を追加"
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "ಬೂಲಿಯನ್ ಸಂವಾದವನ್ನು ಸೇರಿಸು"
 -
--#~ msgid "Modify %s"
--#~ msgstr "%s を変更"
+-#~ msgid "Boolean Name"
+-#~ msgstr "ಬೂಲಿಯನ್ ಹೆಸರು"
 -
--#~ msgid "Permissive"
--#~ msgstr "許容"
+-#~ msgid "Role"
+-#~ msgstr "ಪಾತ್ರ"
 -
--#~ msgid "Enforcing"
--#~ msgstr "強制"
+-#~ msgid "Existing_User"
+-#~ msgstr "ಬಳಕೆದಾರನಿಂದ ನಿರ್ಗಮಿಸುತ್ತಿದೆ(_U)"
 -
--#~ msgid "Disabled"
--#~ msgstr "無効"
+-#~ msgid "Application"
+-#~ msgstr "ಅನ್ವಯ"
 -
--#~ msgid "Status"
--#~ msgstr "状態"
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ವು ಕಡತಕೋಶ ಆಗಿರಬೇಕು"
 -
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "ポリシータイプを変更すると次の起動時に全ファイルシステムのリラベルを引き起"
--#~ "します。ファイルシステムの大きさに依存してリラベルは長い時間を必要としま"
--#~ "す。続けますか?"
+-#~ msgid "You must select a user"
+-#~ msgstr "ನೀವು ಒಬ್ಬ ಬಳಕೆದಾರನಾಗಿರಬೇಕು"
 -
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux を無効にするには再起動が必要です。薦められません。後に SELinux を"
--#~ "有効に戻すことに決めたら、システムはリラベルが必要になります。単に "
--#~ "SELinux がシステムに問題を起こしているかを知りたいのならば、エラーを記録す"
--#~ "るだけで SELinux ポリシーを強制しない許容モードにすることができます。許容"
--#~ "モードは再起動は必要ではありません。続けますか?"
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಕಡತವನ್ನು ಆರಿಸು."
 -
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux を有効に変更すると次の起動時に全ファイルシステムのリラベルを引き起"
--#~ "します。ファイルシステムの大きさに依存してリラベルは長い時間を必要としま"
--#~ "す。続けますか?"
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ init ಸ್ಕ್ರಿಪ್ಟ್ ಕಡತವನ್ನು ಆರಿಸು."
 -
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ನಿರ್ಮಿಸುವ ಅಥವ ಬರೆಯುವ ಕಡತವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
 -
 -#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux ログインマッピングを追加"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux ネットワークポートを追加"
+-#~ "ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ಅಧಿಕಾರ ಹೊಂದಿರುವ ಅಥವ ಬರೆಯುವ ಕಡತಕೋಶವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
 -
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux タイプ"
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
 -
 -#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
+-#~ "ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಬಗೆ %s_t ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
+-#~ "ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
 -
+-#~ msgid "Verify Name"
+-#~ msgstr "ಹೆಸರನ್ನು ಪರಿಶೀಲಿಸು"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
 -#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "レベル"
--
--#~ msgid "File Specification"
--#~ msgstr "ファイル仕様"
+-#~ "ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಘಟಕ %s.pp ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
+-#~ "ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
 -
--#~ msgid "File Type"
--#~ msgstr "ファイルタイプ"
+-#~ msgid "You must enter a name"
+-#~ msgstr "ನೀವು ಒಂದು ಹೆಸರನ್ನು ನಮೂದಿಸಬೇಕು"
 -
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "全ファイル\n"
--#~ "通常ファイル\n"
--#~ "ディレクトリー\n"
--#~ "文字装置\n"
--#~ "ブロック装置\n"
--#~ "ソケット\n"
--#~ "シンボリックリンク\n"
--#~ "名前付きパイプ\n"
+-#~ msgid "You must enter a executable"
+-#~ msgstr "ನೀವು ಒಂದು ಕಾರ್ಯಗೊಳಿಸಬಹುದಾದ್ದನ್ನು ನಮೂದಿಸಬೇಕು"
 -
--#~ msgid "MLS"
--#~ msgstr "MLS"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux ಅನ್ನು ಸಂರಚಿಸು"
 -
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ユーザーの追加"
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು 1 ರಿಂದ %d ರ ನಡುವಿನ ಸಂಖ್ಯೆ ಅಥವ ವ್ಯಾಪ್ತಿಯಾಗಿರಬೇಕು"
 -
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux 管理者"
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆ/ಬಳಕೆದಾರರಿಗಾಗಿ ಒಂದು ಹೆಸರನ್ನು ದಾಖಲಿಸಬೇಕು"
 -
--#~ msgid "Add"
--#~ msgstr "追加"
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER ಪ್ರಕಾರಗಳು ಅನುಮತಿಸಲಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲವುಗಳಲ್ಲ"
 -
--#~ msgid "_Properties"
--#~ msgstr "特性(_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "削除(_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "管理オブジェクトを選択"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>選択:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "システムデフォルトの強制モード"
--
--#~ msgid ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
--#~ msgstr ""
--#~ "許容\n"
--#~ "強制が\n"
--#~ "無効になりました\n"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "現在の強制モード"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "システムデフォルトのポリシータイプ: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "リラベルしたいのならば選択し、そうすれば全ファイルシステムが次の再起動時"
--#~ "に。システムの大きさに依存しますが、リラベルは非常に長い時間がかかります。"
--#~ "ポリシータイプを変更したり無効から強制へ変える場合、リラベルが必要になりま"
--#~ "す。"
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "次の再起動でリラベル"
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "ブーリアン設定をシステムデフォルトに戻す"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "カスタム化と全ブーリアン値との間で切り替え"
--
--#~ msgid "Run booleans lockdown wizard"
--#~ msgstr "boolean ロックダウンのウィザードを実行"
--
--#~ msgid "Lockdown..."
--#~ msgstr "ロックダウン..."
--
--#~ msgid "Filter"
--#~ msgstr "フィルター"
--
--#~ msgid "Add File Context"
--#~ msgstr "ファイルコンテキストの追加"
--
--#~ msgid "Modify File Context"
--#~ msgstr "ファイルコンテキストの変更"
--
--#~ msgid "Delete File Context"
--#~ msgstr "ファイルコンテキストの削除"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "全てとカスタム化ファイルコンテキストの間で切り替え"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux ユーザーマッピングの追加"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux ユーザーマッピングの変更"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux ユーザーマッピングの削除"
--
--#~ msgid "Add Translation"
--#~ msgstr "変換の追加"
--
--#~ msgid "Modify Translation"
--#~ msgstr "変換の変更"
--
--#~ msgid "Delete Translation"
--#~ msgstr "変換の削除"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux ユーザーの変更"
--
--#~ msgid "Add Network Port"
--#~ msgstr "ネットワークポートの追加"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "ネットワークポートの編集"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "ネットワークポートの削除"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "カスタム化と全ポートの間で切り替え"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "新ポリシーモジュールの生成"
--
--#~ msgid "Load policy module"
--#~ msgstr "ポリシーモジュールをロード"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ロード可能なポリシーモジュールを取り外す"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr "通常はログファイルに報告されない追加の監査ルールを有効/無効にする。"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux ユーザー '%s' が必要です"
- #~ msgid "Sensitvity Level"
--#~ msgstr "感度"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux ユーザー '%s' が必要です"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Disable"
--#~ msgstr "無効"
--
--#~ msgid "Enable"
--#~ msgstr "有効"
--
--#~ msgid "Default"
--#~ msgstr "デフォルト"
--
--#~ msgid "<b>Boolean</b>"
--#~ msgstr "<b>Boolean</b>"
--
--#~ msgid "<b>Description</b>"
--#~ msgstr "<b>説明</b>"
--
--#~ msgid "<b>Status</b>"
--#~ msgstr "<b>ステータス</b>"
--
--#~ msgid "Category: %s <br>"
--#~ msgstr "カテゴリ: %s <br>"
--
--#~ msgid "Begin"
--#~ msgstr "開始"
--
--#~ msgid ""
--#~ "Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to "
--#~ "lockdown SELinux booleans.The tool will generate a configuration file "
--#~ "which can be used to lockdown this system or other SELinux systems.<br>"
--#~ msgstr ""
--#~ "SELinux ロックダウンツールにようこそ。 <br> <br>このツールを使用すると "
--#~ "SELinux の boolean をロックダウンすることができます。 このシステムまたは他"
--#~ "の SELinux システムのロックダウンに使用できる設定ファイルを生成します。"
--#~ "<br>"
--
--#~ msgid "Finish"
--#~ msgstr "終了"
--
--#~ msgid "Category %s booleans completed <br><br>"
--#~ msgstr "カテゴリ %s boolean は完了しました <br><br>"
--
--#~ msgid "Current settings:<br><br>"
--#~ msgstr "現在の設定:<br><br>"
--
--#~ msgid "Finish: <br><br>"
--#~ msgstr "終了: <br><br>"
--
--#~ msgid "Category: %s<br><br>Current Settings<br><br>"
--#~ msgstr "カテゴリ: %s<br><br>現在の設定<br><br>"
--
--#~ msgid "Boolean:   %s<br><br>"
--#~ msgstr "Boolean:   %s<br><br>"
--
--#~ msgid "Lockdown SELinux Booleans"
--#~ msgstr "SELinux boolean のロックダウン"
--
--#~ msgid "Apply"
--#~ msgstr "適用"
--
--#~ msgid "SELinux Boolean Lockdown"
--#~ msgstr "SELinux boolean のロックダウン"
--
--#~ msgid "Save As"
--#~ msgstr "名前を付けて保存"
--
--#~ msgid "Save Boolean Configuration File"
--#~ msgstr "Boolean 設定ファイルを保存"
--
--#~ msgid "Select file name to save  boolean settings."
--#~ msgstr "boolean 設定を保存するファイル名を選択します。"
--
--#~ msgid "_Forward"
--#~ msgstr "転送(_F)"
--
--#~ msgid "_Previous"
--#~ msgstr "前(_P)"
-+#~ msgstr "敏感度レベル"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils-2.0.85/po/ka.po
---- nsapolicycoreutils/po/ka.po        2011-02-17 15:11:25.313731764 -0500
-+++ policycoreutils-2.0.85/po/ka.po    2011-02-18 16:03:41.381975833 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "ಕೇವಲ DAEMON ಅನ್ವಯಗಳು ಮಾತ್ರ ಒಂದು init ಸ್ಕ್ರಿಪ್ಟನ್ನು ಬಳಸಬಲ್ಲದು"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog ವು ಒಂದು ಬೂಲಿಯನ್ ಮೌಲ್ಯವಾಗಿರಬೇಕು "
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER ಪ್ರಕಾರಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಒಂದು tmp ಬಗೆಯನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತದೆ"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆಗಳಿಗಾಗಿ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಪಥವನ್ನು ನೀವು ನಮೂದಿಸಲೇ ಬೇಕು"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "ಪ್ರಕಾರ ಜಾರಿ ಕಡತ"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ಸಂಪರ್ಕ ಸಾಧನ ಕಡತ"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶಗಳ ಕಡತ"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "ಸಿದ್ಧತಾ ಸ್ಕ್ರಿಪ್ಟ್"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux ಸಂಪರ್ಕಸ್ಥಾನದ\n"
+-#~ "ಬಗೆ"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "ಪ್ರೊಟೊಕಾಲ್"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "ಮಟ್ಟ"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ ಸಂಖ್ಯೆ \"%s\" ಯು ಅಮಾನ್ಯವಾಗಿದೆ.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "ಪಟ್ಟಿ ನೋಟ"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "ಸಮೂಹ ನೋಟ"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux ಸೇವಾ ಸಂರಕ್ಷಣೆ"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "ಮುಖ್ಯಕಡತಗಳನ್ನು(corefiles) / ಕ್ಕೆ ಬರೆಯಲು ಡೆಮೋನುಗಳಿಗೆ ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "ಎಲ್ಲಾ ಡೆಮೋನುಗಳು ನಿಯೋಜಿಸಲಾದ tty ಗಳನ್ನು ಬಳಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "ಬಳಕೆದಾರ Privs"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
+-#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ಅತಿಥಿ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
+-#~ "ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "ಮೆಮೊರಿ ಸಂರಕ್ಷಣೆ"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "ಆರೋಹಣ"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "ಆರೋಹಣಕ್ಕೆ ಯಾವುದೆ ಕಡತಗಳನ್ನು ಆರೋಹಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "ಆರೋಹಿಸುದಕ್ಕೆ ಯಾವುದೆ ಕಡತಕೋಶವನ್ನು ಆರೋಹಿಸ ಅನುಮತಿಸುಲು"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh ಗೆ ssh-keysign ಅನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
+-#~ "ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
+-#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "ಮಿತಿಗೊಳಪಡಿಸದ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳು ತಮ್ಮ ನೆಲೆ ಕಡತಕೋಶ ಅಥವ /tmp ಯಲ್ಲಿ "
+-#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "ಜಾಲಬಂಧ ಸಂರಚನೆ"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "ಲೇಬಲ್ ಮಾಡಲಾಗದ ಪ್ಯಾಕೇಟುಗಳು ಜಾಲಬಂಧದಲ್ಲಿ ಹಾಯಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
+-#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "ಮಿತಿಗೊಳಪಡದವನ್ನು dyntrans ಗೆ unconfined_execmem ಮಾಡಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "ದತ್ತಸಂಚಯಗಳು"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "ಬಳಕೆದಾರನಿಗೆ mysql ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "ಬಳಕೆದಾರನಿಗೆ postgres ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "Xಪರಿಚಾರಕ"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "ಕ್ಲೈಂಟುಗಳಿಗೆ X ಹಂಚಿಕಾ ಮೆಮೊರಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸಲು"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
+-#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "ಡೆಮೊನುಳಿಗೆ NIS ನೊಂದಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "ಜಾಲ ಅನ್ವಯಗಳು"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "sysadm SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "xguest SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "ಸ್ಟಾಫ್ ಜಾಲ ವೀಕ್ಷಕರಿಗೆ ನೆಲೆ ಕಡತಕೋಶಗಳಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "audit ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Cluster ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord ಗೆ ಹಲವಾರು ವಿಷಯವನ್ನು ಓದಲು ಅನುಮತಿಸು. nfs, samba, ತೆಗೆದುಹಾಕಬಹುದಾದ "
+-#~ "ಸಾಧನಗಳು, ಬಳಕೆದಾರ temp ಹಾಗು ನಂಬಲರ್ಹವಲ್ಲದ ವಿಷಯವನ್ನು ಹೊಂದಿರುವ ಕಡತಗಳು"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "ಮುದ್ರಣ"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd back end ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cup_Ipd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "bdusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "sysadm_t ಗೆ ನೇರವಾಗಿ ಡೆಮೋನುಗಳನ್ನು ಆರಂಭಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ಇವಲೂಶನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "ಆಟಗಳು"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "ಆಟಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "ಜಾಲ ವೀಕ್ಷಕಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "ಥಂಡರ್-ಬರ್ಡಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -126686,252 +126777,378 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "ಸಹರ್ತನೀಯತೆ"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr "ತುಂಡರಿಸಲ್ಪಟ್ಟ ಆದರೆ ಸುರಕ್ಷತೆಯ ದೃಷ್ಟಿಯಲ್ಲಿ ಅಪಾಯಕಾರಿಯಲ್ಲವುಗಳನ್ನು ಆಡಿಟ್ ಮಾಡಬೇಡ"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD ಸೇವೆ"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd child ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "ಕರ್ಬರೋಸ್"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk ಡೆಮೋನುಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಇವಲೂಶನ್ ಹಾಗು ಥಂಡರ್-ಬರ್ಡ್ ಓದಲು ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಓದಲು ಮೊಝಿಲ್ಲಾ ವೀಕ್ಷಕಕ್ಕೆ ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Dmrtg ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "ಹೆಸರು ಸೇವೆ"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "ಸಾಂಬಾ"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Dnsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
@@ -126992,39 +127209,57 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
@@ -127040,265 +127275,390 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "ಒಬ್ಬ ಸಾಮಾನ್ಯ ಬಳಕೆದಾರನಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ pppd ಗೆ ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "ಸ್ಟಾಂಡರ್ಡ್‌ ಅಲ್ಲದ ಸ್ಥಳಗಳಿಂದ (default_t) ಕಡತಗಳನ್ನು ಓದಲು ಪ್ರೋಗ್ರಾಂಗೆ ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh ಗೆ ಒಂದು ಡೆಮೋನಿನ ಬದಲಿಗೆ inetd ಯಿಂದ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "ಸಾಂಬಾಗೆ nfs ಕಡತಕೋಶಗಳನ್ನು ಹಂಚಿಕೆ ಮಾಡಿಕೊಳ್ಳುವಂತೆ ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL ದೃಢೀಕರಣ ಪರಿಚಾರಕ"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl ದೃಢೀಕರಣ ಪರಿಚಾರಕಕ್ಕೆ /etc/shadow ಅನ್ನು ಓದಲು ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "X-Windows ಪರಿಚಾರಕವು ಒಂದು ಮೆಮೊರಿ ಪ್ರದೇಶಕ್ಕೆ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಹಾಗು ಬರೆಯಬಲ್ಲುದಾಗಿ "
+-#~ "ಮ್ಯಾಪ್ ಮಾಡಲು ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr ""
+-#~ "sysadm_t, sudo ಹಾಗು su ಪ್ರಭಾವಗೊಂಡಿದ್ದಕ್ಕೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "ಯಾವುದೆ ಪ್ರಕ್ರಿಯೆಗಳು ಕರ್ನಲ್ ಘಟಕಗಳಿಗೆ ಲೋಡ್ ಆಗುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "ಕರ್ನಲ್ SELinux ನೀತಿಯನ್ನು ಮಾರ್ಪಡಿಸಲು ಯಾವುದೇ ಪ್ರಕ್ರಿಯೆಗಳಿಗೆ ಅನುಮತಿಸಬೇಡ"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroublesoot ಡೆಮನ್‍ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:224
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "Spamನಿಂದ ಸಂರಕ್ಷಣೆ"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Spam assasin ಡೆಮನ್‍ಗೆ ಜಾಲಬಂಧವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid ಡೆಮೋನಿಗೆ ಜಾಲಬಂಧವನ್ನು ಸಂಪರ್ಕಿಸಲು ಅನುಮತಿಸಲು"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "sysadm_r:sysadm_t ಆಗಿ ssh ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸು"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r ಬಳಕೆದಾರರಿಗೆ sysadm ನ ನೆಲೆ dir ಹಾಗು ಕಡತಗಳನ್ನು ಓದಲು ಅನುಮತಿಸು (~/."
+-#~ "bashrc ನಂತಹ)"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "ವಿಶ್ವವ್ಯಾಪಿ SSL ಟನ್ನಲ್"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "stunnel ಡೆಮನ್ ಅನ್ನು xinetd ದ ಹೊರಗೆ ಏಕಮೇವವಾಗಿ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು "
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "ಗಣಕ cron ಕಾರ್ಯಗಳಿಗಾಗಿ(jobs) SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -127308,54 +127668,74 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "ಒಂದು ಕ್ಷೇತ್ರ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಯಾವುದೆ ಸೇವೆಗಳನ್ನು ಒಳಗೊಂಡಂತಹ xinetd "
+-#~ "ಯನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸಿ"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "ಒಂದು ಕ್ಷೇತ್ರ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಒಂದು rc ಸ್ಕ್ರಿಪ್ಟ್‍ನಿಂದ ಆರಂಭಗೊಂಡ "
+-#~ "ಯಾವುದೆ ಡೆಮನ್ ಅನ್ನು ಒಳಗೊಂಡಂತಹ rc ಸ್ಕ್ರಿಪ್ಟ್‍ ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು "
+-#~ "ಅನುಮತಿಸಿ"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -127366,2304 +127746,2047 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ka.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "ಸವಲತ್ತು ಉಪಯುಕ್ತತೆಗಳಾದ hotplug ಹಾಗು insmod ನಂತಹುಗಳನ್ನು ಮಿತಿಗೊಳಪಡದೆ "
+-#~ "ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r ಗೆ su ನ ಮೂಲಕ sysadm_r, sudo, ಅಥವ userhelper ಅನ್ನು ತಲುಪಲು ಅನುಮತಿಸಿ. "
+-#~ "ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ, ಕೇವಲ staff_r ಹಾಗೆ ಮಾಡುತ್ತದೆ"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "ಬಳಕೆದಾರರಿಗೆ ಆರೋಹಿಸು ಆಜ್ಞೆಯನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ನೇರ ಮೌಸಿನ ನಿಲುಕಣೆಯನ್ನು ಅನುಮತಿಸು(ಕೇವಲ X ಪರಿಚಾರಕವನ್ನು ಮಾತ್ರ "
+-#~ "ಅನುಮತಿಸು)"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "dmesg ಆಜ್ಞೆಯನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "ಬಳಕೆದಾರರಿಗೆ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸಾಧನಗಳನ್ನು ನಿಯಂತ್ರಿಸಲು ಅನುಮತಿಸು(USERCTL=true ನ "
+-#~ "ಅಗತ್ಯವು ಸಹ ಇರುತ್ತದೆ)"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ಪಿಂಗ್ ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "ಬಳಕೆದಾರನನ್ನು r/w noextattrfile (FAT, CDROM, FLOPPY) ಗೆ ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "rw usb ಸಾಧನಗಳಿಗೆ ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "ಬಳಕೆದಾರರಿಗೆ TCP ಪರಿಚಾರಕಗಳನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು (ಸಂಪರ್ಕಸ್ಥಾನಗಳಿಗೆ ಬೈಂಡ್ ಮಾಡಿ "
+-#~ "ಹಾಗು ಅದೆ ಕ್ಷೇತ್ರದಿಂದ ಹಾಗು ಬಳಕೆದಾರರ ಹೊರಗಿನ ಸಂಪರ್ಕಗಳನ್ನು ಅನುಮತಿಸು).  ಇದನ್ನು "
+-#~ "ಅಶಕ್ತಗೊಳಿಸುವುದರಿಂದ ಅದುFTP ಜಡ ಕ್ರಮಕ್ಕೆ ಒತ್ತಾಯಿಸುತ್ತದೆ ಹಾಗು ಇತರೆ ಪ್ರೊಟೋಕಾಲ್‍ಗಳನ್ನು "
+-#~ "ಸಹ ಬದಲಾಯಿಸಬಹುದು"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ಬಳಕೆದಾರರಿಗೆ ttyfiles ಅನ್ನು stat ಮಾಡಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm ಪ್ರವೇಶಗಳನ್ನು sysadm_r:sysadm_t ಆಗಿ ಅನುಮತಿಸು"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "xen ಗೆ ಭೌತಿಕ ಡಿಸ್ಕ್ ಸಾಧನಗಳನ್ನು ಓದಲು/ಬರೆಯಲು ಅನುಮತಿಸು"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen constrol ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS ಗುಪ್ತಪದ ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS ವರ್ಗಾವಣಾ ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿರ್ವಹಿಸಲು SELinux webadm "
+-#~ "ಬಳಕೆದಾರನಿಗೆ ಅನುಮತಿಸು"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ಓದಲು SELinux webadm ಬಳಕೆದಾರನಿಗೆ "
+-#~ "ಅನುಮತಿಸು"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "%s '%s' ಅನ್ನು ಅಳಿಸಿಹಾಕಬೇಕೆಂದು ನೀವು ಖಚಿತವೆ?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s ಅನ್ನು ಅಳಿಸಿಹಾಕು"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s ಅನ್ನು ಸೇರಿಸು"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s ಮಾರ್ಪಡಿಸು"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "ಒತ್ತಾಯಪೂರ್ವಕ"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "ನೀತಿಯ ಪ್ರಕಾರವನ್ನು ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಲೇಬಲ್ "
+-#~ "ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
+-#~ "ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux ಅಶಕ್ತಗೊಂಡಿದ್ದಕ್ಕೆ ಬದಲಾಯಿಸಲು ಪುನರ್ ಬೂಟಿಸುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ಹಾಗೆ "
+-#~ "ಮಾಡುವುದು ಸೂಕ್ತವಲ್ಲ.   ನೀವು ನಂತರ SELinux ಅನ್ನು ಪುನಃ ಆನ್ ಮಾಡಲು ನಿರ್ಧರಿಸಿದಾಗ, "
+-#~ "ಗಣಕವನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ನೀವು ಕೇವಲ SELinux ನಿಮ್ಮ ಗಣಕದಲ್ಲಿನ "
+-#~ "ಒಂದು ತೊಂದರೆಗೆ ಕಾರಣವಾಗಿದೆಯೆ ಎಂದು ನೋಡಲು, ಅನುಮತಿಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಹೋಗಿ ಅದು ಕೇವಲ "
+-#~ "ದೋಷಗಳನ್ನು ದಾಖಲಿಸುತ್ತದೆಯೆ ಹೊರತು SELinux ನೀತಿಯನ್ನು ಒತ್ತಾಯಿಸುವುದಿಲ್ಲ.  "
+-#~ "ಅನುಮತಿಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಒಂದು ಪುನರ್ ಬೂಟಿನ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ    ನೀವು ಮುಂದುವರೆಯಲು "
+-#~ "ಬಯಸುತ್ತೀರೆ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux ಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಗೆ ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು "
+-#~ "ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ "
+-#~ "ಸಮಯ ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "ಕೃತಿಸ್ವಾಮ್ಯ (c)2006 Red Hat, Inc.\n"
+-#~ "ಕೃತಿಸ್ವಾಮ್ಯ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಸೇರಿಸು"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux ನ ಬಗೆ"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "ಮಟ್ಟ"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "ಕಡತದ ವಿಶಿಷ್ಟ ವಿವರಗಳು"
+-
+-#~ msgid "File Type"
+-#~ msgstr "ಕಡತದ ಬಗೆ"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "ಎಲ್ಲಾ ಕಡತಗಳು\n"
+-#~ "ಸಾಮಾನ್ಯ ಕಡತ\n"
+-#~ "ಕಡತಕೋಶ\n"
+-#~ "ವೈಶಿಷ್ಟ್ಯ ಸಾಧನ\n"
+-#~ "ಬ್ಲಾಕ್(block) ಸಾಧನ\n"
+-#~ "ಸಾಕೆಟ್\n"
+-#~ "ಸಾಂಕೇತಿಕ ಕೊಂಡಿ\n"
+-#~ "ಹೆಸರಿಸಲಾದ ಪೈಪ್\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸು"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux ನಿರ್ವಹಣೆ"
+-
+-#~ msgid "Add"
+-#~ msgstr "ಸೇರಿಸು"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "ಗುಣಲಕ್ಷಣಗಳು(_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "ಅಳಿಸಿಹಾಕು(_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "ನಿರ್ವಹಣಾ ವಸ್ತುವನ್ನು ಆರಿಸು"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>ಆರಿಸು:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "ಪ್ರಸಕ್ತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ನೀತಿಯ ಬಗೆ: "
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ನೀವು ಬಯಸಿದರೆ ಇದನ್ನು "
+-#~ "ಆರಿಸಿ.  ಗಣಕದ ಗಾತ್ರಕ್ಕೆ ಅನುಗುಣವಾಗಿ, ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
+-#~ "ತೆಗೆದುಕೊಳ್ಳಬಹುದು.  ನೀತಿಯ ಬಗೆಗಳನ್ನು ಬದಲಾಯಿಸುವಂತಿದ್ದರೆ ಅಥವ ಅಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಯಿಂದ "
+-#~ "ಒತ್ತಾಯಪೂರ್ವಕಕ್ಕೆ ಹೋಗುವಂತಿದ್ದರೆ, ಒಂದು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವ ಅಗತ್ಯವಿದೆ."
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಪುನರ್ ಲೇಬಲ್ ಮಾಡು."
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "ಬೂಲಿಯನ್ ಸಂಯೋಜನೆಯನ್ನು ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತಕ್ಕೆ ಮರಳಿಸು"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಹಾಗು ಎಲ್ಲಾ ಬೂಲಿಯನ್‍ಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "Filter"
+-#~ msgstr "ಶೋಧಕ(Filter)"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "Add File Context"
+-#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸು"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Modify File Context"
+-#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಮಾರ್ಪಡಿಸು"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid "Delete File Context"
+-#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಿಹಾಕು"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "ಎಲ್ಲಾ ಹಾಗು ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಕಡತ ಸನ್ನಿವೇಶಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಮಾರ್ಪಡಿಸು"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಅಳಿಸು"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Add Translation"
+-#~ msgstr "ಅನುವಾದವನ್ನು ಸೇರಿಸು"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
+-#~ msgid "Modify Translation"
+-#~ msgstr "ಅನುವಾದವನ್ನು ಮಾರ್ಪಡಿಸು"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "ಅನುವಾದವನ್ನು ಅಳಿಸಿಹಾಕು"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux ಬಳಕೆದಾರನನ್ನು ಸಂಪಾದಿಸು"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
+-#~ msgid "Add Network Port"
+-#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸೇರಿಸು"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Edit Network Port"
+-#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸಂಪಾದಿಸು"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid "Delete Network Port"
+-#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಅಳಿಸಿಹಾಕು"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಹಾಗು ಎಲ್ಲಾ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
+-#~ msgid "Generate new policy module"
+-#~ msgstr "ಹೊಸ ನೀತಿ ಘಟಕವನ್ನು ಉತ್ಪಾದಿಸು"
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
+-#~ msgid "Load policy module"
+-#~ msgstr "ನೀತಿ ಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡು"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "ಲೋಡ್ ಮಾಡಬಹುದಾದ ನೀತಿಯ ಘಟಕವನ್ನು ತೆಗೆದುಹಾಕು"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "ದಾಖಲೆ ಕಡತಗಳಲ್ಲಿ ಸಾಮಾನ್ಯವಾಗಿ ವರದಿ ಮಾಡದೆ ಇರುವ ಹೆಚ್ಚುವರಿ ಆಡಿಟ್ ನಿಯಮಗಳನ್ನು ಶಕ್ತ/"
+-#~ "ಅಶಕ್ತಗೊಳಿಸು."
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "ಸಂವೇದನೆಯ ಮಟ್ಟ (Sensitvity Level)"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux ಬಳಕೆದಾರ '%s' ನ ಅಗತ್ಯವಿದೆ"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Requires value"
+-#~ msgstr "ಮೌಲ್ಯದ ಅಗತ್ಯವಿದೆ"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳಿಗೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು > ೧೦೨೪"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "ಮಿತಿಗೊಳಪಟ್ಟ ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ tcp ಸಂಪರ್ಕ ಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಬದ್ಧವಾಗಿರುವ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
+-#~ "ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux ನೀತಿ ಉತ್ಪಾದನಾ ಮಾಂತ್ರಿಕ(Druid)"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "ಕಾದಿರಿಸದ ಸಂಪರ್ಕಸ್ಥಾನಗಳು  (> ೧೦೨೪)"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "ನಿಮ್ಮ ಅನ್ವಯವು ೦ ಯೊಂದಿಗೆ bindresvport ಅನ್ನು ಕರೆಮಾಡಿದರೆ ಈ ಗುಂಡಿಯನ್ನು ಬಳಸಿ."
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "ಒತ್ತಾಯಪೂರ್ವಕ\n"
+-#~ "ಅನುಮತಿಪೂರ್ವಕ\n"
+-#~ "ಅಶಕ್ತಗೊಂಡ\n"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils-2.0.85/po/kn.po
---- nsapolicycoreutils/po/kn.po        2011-02-17 15:11:25.717725091 -0500
-+++ policycoreutils-2.0.85/po/kn.po    2011-02-18 16:03:41.382975840 -0500
-@@ -2,20 +2,21 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- #
--# Shankar Prasad <svenkate@redhat.com>, 2007, 2008.
-+# Shankar Prasad <svenkate@redhat.com>, 2007, 2008, 2009, 2010.
+diff --git a/policycoreutils/po/ko.po b/policycoreutils/po/ko.po
+index e69d33f..e0297ba 100644
+--- a/policycoreutils/po/ko.po
++++ b/policycoreutils/po/ko.po
+@@ -1,21 +1,24 @@
+-# translation of ko.po to Korean
+-# Eunju Kim <eukim@redhat.com>, 2006, 2007.
+-# translation of ko.po to
+-# translation of ko.po to
+-# translation of ko.po to
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
++# Eunju Kim <eukim@redhat.com>, 2006, 2007, 2009.
++# Hyunsok Oh <hoh@redhat.com>, 2010.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD.kn\n"
+-"Project-Id-Version: ko\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-02 10:45+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 15:13+0530\n"
- "Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
--"Language-Team: Kannada <en@li.org>\n"
-+"Language-Team: kn_IN <kde-i18n-doc@kde.org>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-09-25 17:04+1000\n"
+-"Last-Translator: Eunju Kim <eukim@redhat.com>\n"
+-"Language-Team: Korean <ko@li.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Korean (http://www.transifex.net/projects/p/fedora/language/"
++"ko/)\n"
+ "Language: ko\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
 -"X-Generator: KBabel 1.11.4\n"
--"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Lokalize 1.0\n"
-+"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
- "\n"
- "\n"
- "\n"
-@@ -23,6 +24,23 @@
- "\n"
- "\n"
++"Plural-Forms: nplurals=1; plural=0\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux ಅನ್ನು ಒಂದು ಚಿತ್ರಾತ್ಮಕ ಸಿದ್ದತೆಯಲ್ಲಿ ಸಂರಚಿಸಿ"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux ವ್ಯವಸ್ಥಾಪನೆ"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux ಪಾಲಿಸಿ ಘಟಕಗಳನ್ನು ಉತ್ಪಾದಿಸು"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux ಪಾಲಿಸಿ ಉತ್ಪಾದನಾ ಉಪಕರಣ"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -93,7 +111,7 @@
+@@ -91,7 +94,7 @@ msgstr "정책 패키지를 활성화하려면 다음을 실행합니다:"
  
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr "ಈ ನೀತಿ(ಪಾಲಿಸಿ) ಪ್ಯಾಕೇಜನ್ನು ಸಕ್ರಿಯವಾಗಿಸಲು, ಇದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ:"
-+msgstr "ಈ ಪಾಲಿಸಿ(ಪಾಲಿಸಿ) ಪ್ಯಾಕೇಜನ್ನು ಸಕ್ರಿಯವಾಗಿಸಲು, ಇದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "글로벌 "
  
- #: ../semanage/seobject.py:48
+ #: ../semanage/seobject.py:222
  msgid "Could not create semanage handle"
-@@ -101,20 +119,19 @@
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "SELinux ನೀತಿಯನ್ನು ನಿರ್ವಹಿಸಲಾಗಿಲ್ಲ ಅಥವ ಶೇಖರಣೆಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲಾಗಿಲ್ಲ."
-+msgstr "SELinux ಪಾಲಿಸಿಯನ್ನು ನಿರ್ವಹಿಸಲಾಗಿಲ್ಲ ಅಥವ ಶೇಖರಣೆಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲಾಗಿಲ್ಲ."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "ನೀತಿ ಶೇಖರಣೆಯನ್ನು ಓದಲಾಗಿಲ್ಲ."
-+msgstr "ಪಾಲಿಸಿ ಶೇಖರಣೆಯನ್ನು ಓದಲಾಗಿಲ್ಲ."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
- msgstr "semanage ಸಂಪರ್ಕವನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ"
+@@ -110,48 +113,44 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage 연결을 설정할 수 없습니다"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "%s ಗಾಗಿ MLS ವ್ಯಾಪ್ತಿಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
-+msgstr "MLS ಶಕ್ತಗೊಂಡಿರುವ ಸ್ಥಿತಿಯನ್ನು ಪರೀಕ್ಷಿಸಲಾಗಲಿಲ್ಲ"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -130,7 +147,8 @@
- msgid "Level"
- msgstr "ಮಟ್ಟ"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "ಅನುವಾದ"
+-msgstr "%s 에 대한 MLS 범위를 설정할 수 없습니다"
++msgstr "MLS가 활성화된 상태를 테스트할 수 없습니다 "
  
-@@ -160,764 +178,766 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "아직 구현되지 않았습니다 "
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "ಸೆಮನೇಜ್ ವ್ಯವಹಾರವು ಈಗಾಗಲೆ ಪ್ರಗತಿಯಲ್ಲಿದೆ"
++msgstr "Semanage 트랜잭션이 이미 진행중입니다"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
- msgstr "semanage ವಹಿವಾಟನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ"
+ msgstr "semanage 트랜잭션을 시작할 수 없습니다"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "semanage ವಹಿವಾಟನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ"
-+msgstr "semanage ವಹಿವಾಟನ್ನು ಸಲ್ಲಿಸಲಾಗಿಲ್ಲ"
+-msgstr "semanage 트랜잭션을 시작할 수 없습니다"
++msgstr "semanage 트랜잭션을 커밋할 수 없습니다 "
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "ಸೆಮನೇಜ್ ವ್ಯವಹಾರವು ಪ್ರಗತಿಯಲ್ಲಿಲ್ಲ"
++msgstr "Semanage 트랜잭션이 진행중이 아닙니다"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "SELinux ಬಳಕೆದಾರರನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
-+msgstr "SELinux ಮಾಡ್ಯೂಲ್‌ಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+-msgstr "SELinux 사용자 목록을 만들수 없습니다"
++msgstr "SELinux 모듈 목록을 만들수 없습니다 "
  
- #: ../semanage/seobject.py:336
+ #: ../semanage/seobject.py:304
 -#, fuzzy
- msgid "Permissive Types"
--msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
-+msgstr "ಅನುಮತಿಯ ಬಗೆಗಳು"
+ msgid "Modules Name"
+-msgstr "모듈 이름"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"ಅನುಮತಿಪೂರ್ವಕ ಡೊಮೈನ್ %s ಅನ್ನು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ (ಡೊಮೈನ್‌ ಅನುಸ್ಥಾಪನೆಯು ವಿಫಲಗೊಂಡಿದೆ)"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "버전"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
 -msgstr ""
-+msgstr "ಅನುಮತಿಪೂರ್ವಕವಾದ ಡೊಮೈನ್ %s ಅನ್ನು ತೆಗೆದುಹಾಕಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
--msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s ಗೆ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
++msgstr "비활성화 "
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s ಗಾಗಿ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ವಿವರಿಸಲಾಗಿದೆ"
+@@ -159,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:333
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux ಬಳಕೆದಾರ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
-+msgstr "Linux ಸಮೂಹ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux ಬಳಕೆದಾರ %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s ಗಾಗಿ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s ಗಾಗಿ ಹೆಸರನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s ಗಾಗಿ MLS ವ್ಯಾಪ್ತಿಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s ಗಾಗಿ SELinux ಬಳಕೆದಾರನನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s에 대한 %s의 역할을 추가할 수 없습니다"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s ಗೆ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser ಅಥವ serange ದ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+@@ -183,12 +182,12 @@ msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ವಿವರಿಸಲಾಗಿಲ್ಲ"
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "%s 허용 도메인을 설정할 수없습니다 (모듈 설치 실패) "
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr "seuser ಅನ್ನು %s ಗಾಗಿ ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "%s 허용 도메인을 제거하지 못했습니다 (제거 실패) "
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s ಗಾಗಿ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -208,9 +207,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s에 대한 로그인 맵핑이 지정되었는지를 확인할 수 없습니다."
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
--msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗ್ ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux 사용자 %s 가 존재하지 않습니다"
++msgstr "%s Linux 그룹이 존재하지 않습니다 "
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s ಗಾಗಿನ ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗುಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+@@ -277,15 +276,20 @@ msgid "Could not list login mappings"
+ msgstr "로그인 맵핑 목록을 만들 수 없습니다"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "ಪ್ರವೇಶ ಹೆಸರು"
+ msgstr "로그인 이름"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux ಬಳಕೆದಾರ"
+ msgstr "SELinux 사용자"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS ವ್ಯಾಪ್ತಿ"
+ msgstr "MLS/MCS 범위"
+@@ -303,9 +307,9 @@ msgid "Could not query user for %s"
+ msgstr "%s에 대한 사용자를 질의할 수 없습니다"
  
--#: ../semanage/seobject.py:594
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ಕನಿಷ್ಟ ಒಂದು ಪಾತ್ರವನ್ನು ಸೇರಿಸಬೇಕು"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನು ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s SELinux ಬಳಕೆದಾರನನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "ಪಾತ್ರ %s ಅನ್ನು %s ಗೆ ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s ಗಾಗಿ MLS ಮಟ್ಟವನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "ಪೂರ್ವಪ್ರತ್ಯಯ %s ಅನ್ನು %s ಗೆ ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ತೆಗೆಯಲಾಗಿಲ್ಲ(extract)"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "ಪೂರ್ವಪ್ರತ್ಯಯ, ಪಾತ್ರಗಳು, ಮಟ್ಟ ಅಥವ ವ್ಯಾಪ್ತಿಯ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "ಪೂರ್ವಪ್ರತ್ಯಯ ಅಥವ ಪಾತ್ರಗಳ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "ಬಳಕೆದಾರನನ್ನು %s ಗಾಗಿ ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ಬಳಕೆದಾರ %s ನನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ಬಳಕೆದಾರರನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥을 추가할 수 없습니다"
++msgstr "%s에 대해 최소 하나의 역할을 추가해야 합니다 "
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "ಬಳಕೆದಾರ %s ನಿಗೆ ಪಾತ್ರಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "ಲೇಬಲ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "ಪೂರ್ವಪ್ರತ್ಯಯ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS ಮಟ್ಟ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS ವ್ಯಾಪ್ತಿ"
+@@ -396,6 +400,7 @@ msgid "MCS Range"
+ msgstr "MCS 범위"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux ಪಾತ್ರಗಳು"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "ಪ್ರೋಟೊಕಾಲ್ udp ಅಥವ tcp ಯ ಅಗತ್ಯವಿರುತ್ತದೆ"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಒಂದು ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ಬಗೆಯ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "%s/%s ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ವಿವರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s/%s ವನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಸನ್ನಿವೇಶವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಸಂಪರ್ಕಸ್ಥಾನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಸಂಪರ್ಕಸ್ಥಾನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s ಗಾಗಿ ಸಂಪರ್ಕಸ್ಥಾನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪ್ರಕಾರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s ಗಾಗಿನ ಸಂಪರ್ಕಸ್ಥಾನ mls ಕ್ಷೇತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s ಗಾಗಿನ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s ದಲ್ಲಿ ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype ಅಥವ serange ನ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype ನ ಅಗತ್ಯವಿದೆ"
+ msgstr "SELinux 기능"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವು ವಿವರಿಸಲಾಗಿಲ್ಲ"
+@@ -408,9 +413,8 @@ msgid "Port is required"
+ msgstr "포트 필요"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "유효하지 않은 접두어 %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+@@ -497,14 +501,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "%s/%s에 대한 포트를 수정할 수 없습니다"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
+-msgstr "포트 목록을 만들수 없습니다"
++msgstr "포트 목록을 만들수 없습니다 "
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s ಅನ್ನು ಅಳಿಸಲಾಗಲಿಲ್ಲ"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+-msgstr "%s/%s에 대한 포트를 삭제할 수 없습니다"
++msgstr "%s 포트를 삭제할 수 없습니다 "
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s/%s ಅನ್ನು ಅಳಿಸಲಾಗಲಿಲ್ಲ"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux ಸಂಪರ್ಕ ಸ್ಥಾನದ ಬಗೆ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -528,18 +531,17 @@ msgstr "SELinux 포트 유형"
  msgid "Proto"
  msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಸಂಖ್ಯೆ"
+ msgstr "포트 번호"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
-+msgstr "ನೋಡ್‌ನ ವಿಳಾಸದ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನದ ಅಗತ್ಯವಿದೆ"
-+msgstr "ನೋಡ್‌ ನೆಟ್‌ಮಾಸ್ಕಿನ ಅಗತ್ಯವಿದೆ"
+-msgstr "포트 필요"
++msgstr "노드 주소 필요  "
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
-+msgstr "ಗೊತ್ತಿರದ ಅಥವ ಕಾಣೆಯಾದ ಪ್ರೊಟೊಕಾಲ್"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux ನ ಬಗೆಯ ಅಗತ್ಯವಿದೆ"
++msgstr "알려지지 않거나 또는 생략된 프로토콜 "
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಲಿಲ್ಲ"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -556,14 +558,14 @@ msgstr "%s에 대한 키를 생성할 수 없습니다"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "%s/%s ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ವಿವರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ವಿವರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ %s/%s ವನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಈಗಾಗಲೆ ವಿವರಿಸಲಾಗಿದೆ"
+-msgstr "%s/%s에 대한 포트가 지정되었는지 확인할 수 없습니다 "
++msgstr "%s 주소가 지정되었는지 확인할 수 없습니다   "
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
--msgstr "%s ಗಾಗಿ ಕೀಲಿಯನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 사용되는 키를 생성할 수 없습니다"
++msgstr "%s에 대한 주소를 생성할 수 없습니다  "
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s ಗಾಗಿ ಸನ್ನಿವೇಶವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -572,74 +574,72 @@ msgid "Could not create context for %s"
+ msgstr "%s에 대한 문맥을 생성할 수 없습니다"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
--msgstr "%s ಗಾಗಿ ಹೆಸರನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ಮಾಸ್ಕನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 이름을 설정할 수 없습니다"
++msgstr "%s에 대한 마스크를 설정할 수 없습니다 "
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥의 사용자를 설정할 수 없습니다"
++msgstr "%s에 대한 주소 문맥의 사용자를 설정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥의 역할을 설정할 수 없습니다"
++msgstr "%s에 대한 주소 문맥의 역할을 설정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲ್ಲಿ ಬಗೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲ್ಲಿ ಬಗೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥의 유형을 설정할 수 없습니다"
++msgstr "%s에 대한 주소 문맥의 유형을 설정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ mls ಕ್ಷೇತ್ರಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶದಲ್ಲಿನ mls ಕ್ಷೇತ್ರಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥의 mls 항목을 설정할 수 없습니다"
++msgstr "%s에 대한 주소 문맥의 mls 항목을 설정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
--msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿ ವಿಳಾಸ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 파일 문맥을 설정할 수 없습니다"
++msgstr "%s에 대한 주소 문맥을 설정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
--msgstr "%s/%s ದಲ್ಲಿ ಸಂಪರ್ಕ ಸ್ಥಾನವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s/%s 에 대한 포트를 추가할 수 없습니다"
++msgstr "%s 주소를 추가할 수 없습니다 "
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವು ವಿವರಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ವಿವರಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s/%s에 대한 포트가 지정되지 않았습니다"
++msgstr "%s 주소가 지정되지 않았습니다 "
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s/%s에 대한 포트를 질의할 수 없습니다"
++msgstr "%s 주소를 질의할 수 없습니다 "
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s/%s에 대한 포트를 수정할 수 없습니다"
++msgstr "%s 주소를 수정할 수 없습니다  "
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "ಸಂಪರ್ಕಸ್ಥಾನ %s/%s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+-msgstr "%s/%s에 대한 포트가 정책에 지정되어 있어 이를 삭제할 수 없습니다"
++msgstr "%s 주소가 정책에 지정되어 있어 이를 삭제할 수 없습니다 "
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "%s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ವಿಳಾಸ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 인터페이스를 삭제할 수 없습니다"
++msgstr "%s 주소를 삭제할 수 없습니다 "
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
-+msgstr "ವಿಳಾಸಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಲಿಲ್ಲ"
+ msgid "Could not deleteall node mappings"
+-msgstr "%s에 대한 로그인 맵핑을 삭제할 수 없습니다"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವು ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವು ಈಗಾಗಲೆ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s ಗಾಗಿ ಸಂಪರ್ಕಸಾಧನವನ್ನು ಸೃಜಿಸಲಾಗಲಿಲ್ಲ"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s ಗಾಗಿ ಸಂಪರ್ಕ ಸಾಧನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s ಗಾಗಿ ಸಂಪರ್ಕಸಾಧನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s ಗಾಗಿ ಸಂಪರ್ಕಸಾಧನ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪ್ರಕಾರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s ಗಾಗಿನ ಸಂಪರ್ಕಸಾಧನ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s ಗಾಗಿ ಸಂಪರ್ಕಸಾಧನ ಸನ್ನಿವೇಶವನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s ಗೆ ಸಂದೇಶ ಸನ್ನಿವೇಶವನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "ಸಂಪರ್ಕಸಾಧನ %s ಅನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ವು ವಿವರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "포트 목록을 만들수 없습니다"
++msgstr "주소 목록을 만들수 없습니다 "
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವನ್ನು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "ಸಂಪರ್ಕಸಾಧನ %s ವನ್ನು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -713,9 +713,8 @@ msgid "Could not delete interface %s"
+ msgstr "%s에 대한 인터페이스를 삭제할 수 없습니다"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "ಸಂಪರ್ಕ ಸಾಧನ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s에 대한 인터페이스를 삭제할 수 없습니다"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "ಸಂಪರ್ಕ ಸಾಧನಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux ಸಂಪರ್ಕಸಾಧನ"
+@@ -730,9 +729,9 @@ msgid "Context"
+ msgstr "문맥"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "ಸನ್ನಿವೇಶ"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s에 대한 파일 문맥이 이미 지정되었습니다"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+@@ -740,9 +739,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ ಪಾತ್ರವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux 사용자 %s 가 존재하지 않습니다"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲಿ mls ಕ್ಷೇತ್ರಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
+@@ -761,7 +760,7 @@ msgstr "%s에 대한 파일 문맥의 mls 항목을 설정할 수 없습니다"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr "ಕಡತದ ಅಮಾನ್ಯ ವಿಶಿಷ್ಟ ವಿವರಗಳು"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶಗಳು ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ಈಗಾಗಲೆ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೃಜಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶದಲ್ಲ್ಲಿ ಬಗೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange ಅಥವ seuser ನ ಅಗತ್ಯವಿದೆ"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವು ವಿವರಿಸಲ್ಪಟ್ಟಿಲ್ಲ"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಲಿಲ್ಲ"
+-msgstr ""
++msgstr "잘못된 파일 사양 "
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s ಗಾಗಿ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -821,14 +820,13 @@ msgid "Could not modify file context for %s"
+ msgstr "%s에 대한 파일 문맥을 수정할 수 없습니다"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr "ಕಡತ ಸನ್ನಿವೇಶಗಳನ್ನು ಪಟ್ಟಿಮಾಡಲಾಗಿಲ್ಲ"
+-msgstr "파일 문맥 목록을 만들수 없습니다"
++msgstr "파일 문맥 목록을 만들수 없습니다 "
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr "%s ದ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
--msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲ್ಪಟ್ಟಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s ಗಾಗಿನ ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ಕಡತ ಸನ್ನಿವೇಶಗಳನ್ನು ಪಟ್ಟಿಮಾಡಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "ಸ್ಥಳೀಯ ಕಡತ ಸನ್ನಿವೇಶಗಳನ್ನು ಪಟ್ಟಿಮಾಡಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ಬಗೆ"
+-msgstr "%s에 대한 파일 문맥을 삭제할 수 없습니다"
++msgstr "%s 파일 문맥을 삭제할 수 없습니다 "
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "ಬೂಲಿಯನ್ %s ವಿವರಿಸಲ್ಪಟ್ಟಿದೆಯೆ ಅಂದು ಪರೀಕ್ಷಿಸಲಾಗಿಲ್ಲ"
+@@ -863,11 +861,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "ಬೂಲಿಯನ್ %s ವಿವರಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "ಕಡತ ಸನ್ನಿವೇಶ %s ಅನ್ನು ಪ್ರಶ್ನಿಸಲಾಗಿಲ್ಲ"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -886,14 +883,14 @@ msgid "Could not query file context %s"
+ msgstr "%s에 대한 파일 문맥을 질의할 수 없습니다"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "ನೀವು ಒಂದು ಮೌಲ್ಯವನ್ನು ನಮೂದಿಸಬೇಕು"
-+msgstr "ಈ ಕೆಳಗಿನ ಮೌಲ್ಯಗಳಲ್ಲಿ ಒಂದನ್ನು ನೀವು ಸೂಚಿಸಲೇಬೇಕು: %s"
+-msgstr "반드시 이름을 입력해야 합니다"
++msgstr "다음의 값 중 하나를 반드시 지정해야 합니다: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
--msgstr "ಬೂಲಿಯನ್ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
-+msgstr "ಬೂಲಿಯನ್ %s ಗೆ ಯಾವುದೆ ಸಕ್ರಿಯ ಮೌಲ್ಯವನ್ನು ರವಾನಿಸಲಾಗಿಲ್ಲ"
+-msgstr "%s에 대한 부울을 삭제할 수 없습니다"
++msgstr "%s 부울의 활성화값을 설정할 수 없습니다      "
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "ಬೂಲಿಯನ್ %s ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗುವುದಿಲ್ಲ"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -903,7 +900,7 @@ msgstr "%s에 대한 부을을 수정할 수 없습니다"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
-+msgstr "ಸರಿಯಲ್ಲದ ವಿನ್ಯಾಸ %s: ರೆಕಾರ್ಡ್ %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "ಬೂಲಿಯನ್ %s ವು ನೀತಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
-+msgstr "ಬೂಲಿಯನ್ %s ವು ಪಾಲಿಸಿಯಲ್ಲಿ ವಿವರಿಸಲಾಗಿದೆ, ಅಳಿಸಲಾಗುವುದಿಲ್ಲ"
++msgstr "잘못된 형식 %s: 기록 %s "
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "ಬೂಲಿಯನ್ %s ಅನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "ಬೂಲಿಯನ್ನುಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಲಾಗಿಲ್ಲ"
+@@ -921,32 +918,32 @@ msgstr "부울 목록을 만들수 없습니다"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr "ಗೊತ್ತಿರದ"
+-msgstr ""
++msgstr "알려지지 않음 "
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr "ಆಫ್"
+-msgstr ""
++msgstr "비활성 "
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
- msgstr "ಆನ್"
+-msgstr ""
++msgstr "활성 "
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr "SELinux ಬೂಲಿಯನ್"
+ msgstr "SELinux 부울"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "상태"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "ವಿವರಣೆ"
+-msgstr ""
++msgstr "설명 "
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -956,12 +953,12 @@ msgstr "PAM_TTY 설정을 실패했습니다\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "새 역할: 서비스 이름 설정 해시 테이블 오버플로우\n"
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "새 역할:  %s:  %lu 행에 오류.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+@@ -1070,7 +1067,7 @@ msgstr "오류: 다중 레벨이 지정되었습니다\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
++msgstr "오류: 비보안 터미널에서 레벨을 변경하는 것을 허용하지 않습니다 \n"
  
-@@ -957,9 +977,9 @@
- msgstr "ವಾತಾವರಣವನ್ನು ತೆರವುಗೊಳಸಲಾಗಿಲ್ಲ\n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+@@ -1138,9 +1135,9 @@ msgid "failed to get old_context.\n"
+ msgstr "오래된 문맥를 갖는데 실패했습니다.\n"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ, ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತದೆ.\n"
-+msgstr "ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ, ತಡೆಹಿಡಿಯಲಾಗುತ್ತದೆ.\n"
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "오류! tty 정보를 검색할 수 없습니다.\n"
++msgstr "경고! tty 정보를 검색할 수 없습니다.\n"
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
+ #: ../newrole/newrole.c:1098
  #, c-format
-@@ -1197,18 +1217,19 @@
+@@ -1187,19 +1184,19 @@ msgid "failed to exec shell\n"
+ msgstr "쉘을 실행하는데 실패하였습니다\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "사용법:  %s [-q]\n"
++msgstr "사용법:  %s [-qi]\n"
  #: ../load_policy/load_policy.c:71
  #, c-format
  msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr "%s:  ನೀತಿಯು ಈಗಾಗಲೆ ಲೋಡ್‌ ಮಾಡಲಾಗಿದೆ ಹಾಗು ಆರಂಭಿಕ ಲೋಡ್‍ಗೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ\n"
-+msgstr ""
-+"%s:  ಪಾಲಿಸಿಯು ಈಗಾಗಲೆ ಲೋಡ್‌ ಮಾಡಲಾಗಿದೆ ಹಾಗು ಆರಂಭಿಕ ಲೋಡ್‍ಗೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ\n"
+-msgstr ""
++msgstr "%s:  정책을 이미 읽어왔습니다 초기 설정이 필요합니다\n"
  
  #: ../load_policy/load_policy.c:80
- #, c-format
+-#, fuzzy, c-format
++#, c-format
  msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
- msgstr ""
--"%s:  ನೀತಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ ಹಾಗು ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ:  %s\n"
-+"%s:  ಪಾಲಿಸಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ ಹಾಗು ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ:  %s\n"
+-msgstr "%s:  정책을 읽어올 수 없습니다:  %s\n"
++msgstr "%s:  정책을 읽어올 수 없습니다 강제 모드가 필요합니다:  %s\n"
  
  #: ../load_policy/load_policy.c:90
  #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s:  ನೀತಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ:  %s\n"
-+msgstr "%s:  ಪಾಲಿಸಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ:  %s\n"
+@@ -1285,342 +1282,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
-@@ -1295,1690 +1316,2266 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "ಆಯ್ಕೆಗಳ ದೋಷ %s "
+ msgstr "옵션 오류 %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "MLS ಅಲ್ಲದ ಗಣಕಗಳಲ್ಲಿ ಅನುವಾದಗಳಿಗೆ ಬೆಂಬಲ ಇರುವುದಿಲ್ಲ್ಲ"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s를 열 수 없습니다: 번역은 MLS가 아닌 장치에서 지원되지 않습니다"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "ಬೂಲಿಯನ್"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "ಎಲ್ಲಾ"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "ಕಸ್ಟಮೈಸ್ ಮಾಡಲಾದ"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "ಕಡತವನ್ನು ಲೇಬಲ್ ಮಾಡುವುದು"
--#~ msgid "Boolean"
--#~ msgstr "ಬೂಲಿಯನ್"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"ಕಡತದ\n"
-+"ವಿಶಿಷ್ಟ ವಿವರಗಳು"
--#~ msgid "all"
--#~ msgstr "ಎಲ್ಲಾ"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"ಕಡತದ ಬಗೆ"
--#~ msgid "Customized"
--#~ msgstr "ಕಸ್ಟಮೈಸ್ ಮಾಡಲಾದ"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"ಕಡತದ\n"
-+"ಹೆಸರು"
--#~ msgid "File Labeling"
--#~ msgstr "ಕಡತವನ್ನು ಲೇಬಲ್ ಮಾಡುವುದು"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗ್"
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ಕಡತದ\n"
--#~ "ವಿಶಿಷ್ಟ ವಿವರಗಳು"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"ಪ್ರವೇಶದ\n"
-+"ಹೆಸರು"
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ಕಡತದ ಬಗೆ"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"ಬಳಕೆದಾರ"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ಕಡತದ\n"
--#~ "ಹೆಸರು"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS ವ್ಯಾಪ್ತಿ"
--#~ msgid "User Mapping"
--#~ msgstr "ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗ್"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "'%s' ದ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ"
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "ಪ್ರವೇಶದ\n"
--#~ "ಹೆಸರು"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "ಪಾಲಿಸಿ ಮಾಡ್ಯೂಲ್‌"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ಬಳಕೆದಾರ"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "ಮಾಡ್ಯೂಲಿನ ಹೆಸರು"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS ವ್ಯಾಪ್ತಿ"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "ಆವೃತ್ತಿ"
--#~ msgid "Login '%s' is required"
--#~ msgstr "'%s' ದ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "ಆಡಿಟನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
--#~ msgid "Policy Module"
--#~ msgstr "ನೀತಿ ಘಟಕ"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "ಆಡಿಟನ್ನು ಶಕ್ತಗೊಳಿಸು"
--#~ msgid "Module Name"
--#~ msgstr "ಘಟಕದ ಹೆಸರು"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "ಪಾಲಿಸಿ ಮಾಡ್ಯೂಲನ್ನು ಲೋಡ್ ಮಾಡಿ"
--#~ msgid "Version"
--#~ msgstr "ಆವೃತ್ತಿ"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable Audit"
--#~ msgstr "ಆಡಿಟನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Enable Audit"
--#~ msgstr "ಆಡಿಟನ್ನು ಶಕ್ತಗೊಳಿಸು"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Load Policy Module"
--#~ msgstr "ನೀತಿ ಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡಿ"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ <svenkate@redhat.com>"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"ಈ ಉಪಕರಣದಿಂದ SELinux ಬಳಸಿಕೊಂಡು ಪಾಲಿಸಿ ಚೌಕಟ್ಟನ್ನು (framework), ಅನ್ವಯಗಳನ್ನು "
-+"ಮಿತಿಗೊಳಿಸಲು ಅಥವ ಬಳಕೆದಾರರನ್ನು ನಿರ್ಮಿಸಲು ಬಳಸಬಹುದಾಗಿದೆ.   \n"
-+"\n"
-+"ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ:\n"
-+"ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
-+"ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if)\n"
-+"ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc)\n"
-+"ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh) - ಪಾಲಿಸಿಯನ್ನು ಸಂಕಲಿಸಲು ಹಾಗು ಅನುಸ್ಥಾಪಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ. "
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ/ಬಳಕೆದಾರನ ಪಾತ್ರವನ್ನು ಆರಿಸಿ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>ಅನ್ವಯಗಳು</b>"
++msgstr ""
  
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "Level"
+-#~ msgstr "레벨"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"ಸ್ಟಾಂಡರ್ಡ್ Init ಡೆಮನ್‍ಗಳೆಂದರೆ init ಸ್ಕ್ರಿಪ್ಟ್‍ಗಳ ಮೂಲಕ ಬೂಟ್ ಸಮಯದಲ್ಲಿ ಆರಂಭಗೊಳ್ಳುವ "
-+"ಡೆಮನ್‍ಗಳಾಗಿರುತ್ತವೆ.  ಸಾಮಾನ್ಯವಾಗಿ /etc/rc.d/init.d ನಲ್ಲಿ ಒಂದು ಸ್ಕ್ರಿಪ್ಟ್‍ನ ಅಗತ್ಯವಿರುತ್ತದೆ"
  
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/polgen.glade:260
+-#~ msgid "Translation"
+-#~ msgstr "번역"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "ಸಾಮಾನ್ಯ init ಡೆಮೋನ್"
-+
-+#: ../gui/polgen.glade:280
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "번역에는 공백 '%s'이(가) 포함될 수 없습니다 "
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS ವ್ಯವಸ್ಥೆ ಡೀಮನ್"
-+
-+#: ../gui/polgen.glade:299
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "유효하지 않은 레벨 '%s'"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನುಗಳು xinetd ಇಂದ ಆರಂಭಗೊಂಡವು"
-+
-+#: ../gui/polgen.glade:301
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s은(는) 번역에서 이미 정의되었습니다"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನ್ (inetd)"
++msgstr ""
  
--#~ msgid "translator-credits"
--#~ msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ ಎಂ. ವಿ."
-+#: ../gui/polgen.glade:320
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s은(는) 번역에서 정의되지 않았습니다"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI) ಜಾಲ ಪರಿಚಾರಕದಿಂದ (apache) ಆರಂಭಿಸಲಾದ CGI ಸ್ಕ್ರಿಪ್ಟುಗಳು"
  
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux ನೀತಿ ಉತ್ಪಾದನಾ ಉಪಕರಣ"
-+#: ../gui/polgen.glade:322
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s에 대한 로그인 맵핑이 이미 지정되었습니다"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI)"
++msgstr ""
  
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "ಈ ಉಪಕರಣದಿಂದ SELinux ಬಳಸಿಕೊಂಡು ನೀತಿ ಚೌಕಟ್ಟನ್ನು (framework), ಅನ್ವಯಗಳನ್ನು "
--#~ "ಮಿತಿಗೊಳಿಸಲು ಅಥವ ಬಳಕೆದಾರರನ್ನು ನಿರ್ಮಿಸಲು ಬಳಸಬಹುದಾಗಿದೆ.   \n"
--#~ "\n"
--#~ "ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ:\n"
--#~ "ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
--#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if)\n"
--#~ "ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc)\n"
--#~ "ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh) - ನೀತಿಯನ್ನು ಸಂಕಲಿಸಲು ಹಾಗು ಅನುಸ್ಥಾಪಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ. "
-+#: ../gui/polgen.glade:341
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux 사용자 맵핑을 추가합니다"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"ಬಳಕೆದಾರರಿಂದ ಆರಂಭಿಸಲ್ಪಟ್ಟಿದೆ ಎಂದು ನೀವು ಮಿತಿಗೊಳಪಡಿಸುವ ಯಾವುದೆ ಅನ್ವಯವು ಬಳಕೆದಾರ ಅನ್ವಯ "
-+"ಆಗಿರುತ್ತದೆ"
  
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ/ಬಳಕೆದಾರನ ಪಾತ್ರವನ್ನು ಆರಿಸಿ"
-+#: ../gui/polgen.glade:343
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "%s에 대한 SELinux 사용자가 이미 지정되었습니다"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "ಬಳಕೆದಾರ ಅನ್ವಯಗಳು"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "포트 필요"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "%s/%s에 대한 포트가 이미 지정되었습니다"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>ಪ್ರವೇಶಿಸಿರುವ ಬಳಕೆದಾರರು</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "ಈಗಿರುವ ಒಂದು ಪ್ರವೇಶ ಬಳಕೆದಾರ ದಾಖಲೆಯನ್ನು ಮಾರ್ಪಡಿಸು."
-+
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s에 대한 인터페이스가 이미 지정되었습니다"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "기능 초기화 오류, 중지합니다.\n"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "ಈಗಿರುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳು"
++msgstr ""
  
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>ಅನ್ವಯಗಳು</b>"
-+#: ../gui/polgen.glade:472
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "기능 설정 오류, 중지합니다.\n"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"ಈ ಬಳಕೆದಾರನು ಒಂದು ಟರ್ಮಿನಲ್ ಅಥವ ದೂರಸ್ಥ ಪ್ರವೇಶದ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  "
-+"ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಈ ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ ಯಾವುದನ್ನೂ "
-+"ಹೊಂದಿರುವುದಿಲ್ಲ."
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS 설정 오류, 중지합니다\n"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "ಕನಿಷ್ಟ ಟರ್ಮಿನಲ್ ಬಳಕೆದಾರ ಪಾತ್ರ"
++msgstr ""
  
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "ಸ್ಟಾಂಡರ್ಡ್ Init ಡೆಮನ್‍ಗಳೆಂದರೆ init ಸ್ಕ್ರಿಪ್ಟ್‍ಗಳ ಮೂಲಕ ಬೂಟ್ ಸಮಯದಲ್ಲಿ ಆರಂಭಗೊಳ್ಳುವ "
--#~ "ಡೆಮನ್‍ಗಳಾಗಿರುತ್ತವೆ.  ಸಾಮಾನ್ಯವಾಗಿ /etc/rc.d/init.d ನಲ್ಲಿ ಒಂದು ಸ್ಕ್ರಿಪ್ಟ್‍ನ "
--#~ "ಅಗತ್ಯವಿರುತ್ತದೆ"
-+#: ../gui/polgen.glade:493
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "기능 취소 오류, 중지합니다\n"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"ಈ ಬಳಕೆದಾರನು X ಅಥವ ಟರ್ಮಿನಲ್ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಈ "
-+"ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ ಯಾವುದನ್ನೂ ಹೊಂದಿರುವುದಿಲ್ಲ"
  
--#~ msgid "Standard Init Daemon"
--#~ msgstr "ಸಾಮಾನ್ಯ init ಡೆಮೋನ್"
-+#: ../gui/polgen.glade:495
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID 기능 취소 오류, 중지합니다\n"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "ಕನಿಷ್ಟ X Windows ಬಳಕೆದಾರ ಪಾತ್ರ"
++msgstr ""
  
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನುಗಳು xinetd ಇಂದ ಆರಂಭಗೊಂಡವು"
-+#: ../gui/polgen.glade:514
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps를 해제하는 도중 오류 발생\n"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, sudo ಇಲ್ಲದ ಹಾಗು "
-+"ಯಾವುದೆ su ಇಲ್ಲದಿರುವ ಬಳಕೆದಾರ."
  
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೆಮೊನ್ (inetd)"
-+#: ../gui/polgen.glade:516
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "번역은 MLS가 아닌 장치에서 지원되지 않습니다"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "ಬಳಕೆದಾರ ಪಾತ್ರ"
++msgstr ""
  
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI) ಜಾಲ ಪರಿಚಾರಕದಿಂದ (apache) ಆರಂಭಿಸಲಾದ CGI ಸ್ಕ್ರಿಪ್ಟುಗಳು"
-+#: ../gui/polgen.glade:535
+-#~ msgid "Boolean"
+-#~ msgstr "부울"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, ಯಾವುದೆ su "
-+"ಇಲ್ಲದಿರುವ ಆದರೆ ನಿರ್ವಹಣಾ ವ್ಯವಸ್ಥಾಪಕ ಪಾತ್ರಗಳಿಗೆ sudo ಮಾಡಬಹುದಾದ ಬಳಕೆದಾರ"
  
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "ಜಾಲ ಅನ್ವಯಗಳು/ಸ್ಕ್ರಿಪ್ಟ್ (CGI)"
-+#: ../gui/polgen.glade:537
+-#~ msgid "File Labeling"
+-#~ msgstr "파일 레이블링"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "ನಿರ್ವಹಣಾ ಬಳಕೆದಾರ ಪಾತ್ರ"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "파일 문맥"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>ನಿರ್ವಾಹಕ(ರೂಟ್) ಬಳಕೆದಾರರು</b>"
++msgstr ""
  
 -#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
+-#~ "File\n"
+-#~ "Type"
 -#~ msgstr ""
--#~ "ಬಳಕೆದಾರರಿಂದ ಆರಂಭಿಸಲ್ಪಟ್ಟಿದೆ ಎಂದು ನೀವು ಮಿತಿಗೊಳಪಡಿಸುವ ಯಾವುದೆ ಅನ್ವಯವು ಬಳಕೆದಾರ "
--#~ "ಅನ್ವಯ ಆಗಿರುತ್ತದೆ"
-+#: ../gui/polgen.glade:645
+-#~ "파일\n"
+-#~ "유형"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"ಈ ಬಳಕೆದಾರನನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸುವಾಗ ಗಣಕದ ನಿರ್ವಹಣೆಗೆ ಬಳಸುವಂತಿದ್ದರೆ, ನಿರ್ವಾಹಕ "
-+"ಬಳಕೆದಾರನನ್ನು ಆರಿಸಿ.  ಈ ಬಳಕೆದಾರನು ಗಣಕಕ್ಕೆ ನೇರವಾಗಿ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
  
--#~ msgid "User Application"
--#~ msgstr "ಬಳಕೆದಾರ ಅನ್ವಯಗಳು"
-+#: ../gui/polgen.glade:647
+-#~ msgid "User Mapping"
+-#~ msgstr "사용자 맵핑"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "ನಿರ್ವಹಣಾ ವ್ಯವಸ್ಥಾಪಕ ಬಳಕೆದಾರ ಪಾತ್ರ"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ ಅಥವ ಬಳಕೆದಾರನ ಪಾತ್ರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "로그인\n"
+-#~ "이름"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "사용자"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS 범위"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "ಹೆಸರು"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "'%s' 로그인해야 합니다"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲದುದನ್ನು ಪರಿಮಿತಿಗೆ ಒಳಪಡಿಸಲು ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
+-#~ msgid "Policy Module"
+-#~ msgstr "정책 모듈"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#~ msgid "Load Policy Module"
+-#~ msgstr "정책 모듈 읽어오기"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "ಮಿತಿಗೊಳಿಸಬೇಕಿರುವ ಬಳಕೆದಾರ ಅಥವ ಅನ್ವಯದ ವಿಶೇಷವಾದ ಪ್ರಕಾರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ."
-+
-+#: ../gui/polgen.glade:845
++msgstr ""
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init ಸ್ಕ್ರಿಪ್ಟ್"
++msgstr ""
  
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ಪ್ರವೇಶಿಸಿರುವ ಬಳಕೆದಾರರು</b>"
-+#: ../gui/polgen.glade:901
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯವನ್ನು ಆರಂಭಿಸಲು init ಸ್ಕ್ರಿಪ್ಟಿಗೆ ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
++msgstr ""
  
--#~ msgid "Modify an existing login user record."
--#~ msgstr "ಈಗಿರುವ ಒಂದು ಪ್ರವೇಶ ಬಳಕೆದಾರ ದಾಖಲೆಯನ್ನು ಮಾರ್ಪಡಿಸು."
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "ನಿಮ್ಮ ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಬದಲಾಯಿಸಲು ಬಯಸುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#~ msgid "translator-credits"
+-#~ msgstr "김은주 (eukim@redhat.com), 2006, 2007"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux 정책 생성 도구"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "감사(audit) 메세지를 보내는데 오류 발생.\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Boolean Name"
+-#~ msgstr "부울"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "반드시 이름을 입력해야 합니다"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "You must enter a name"
+-#~ msgstr "반드시 이름을 입력해야 합니다"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "You must enter a executable"
+-#~ msgstr "실행 가능한 지를 입력해야 합니다"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux 설정"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "1에서 %d까지 포트 번호를 매겨야 합니다"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "ಈ ಅನ್ವಯ ಡೊಮೈನ್‌ಗಳಿಗೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಬೇಕಿರುವ ಹೆಚ್ಚುವರಿ ಡೊಮೈನ್‌ಗಳನ್ನು ಆರಿಸಿ"
++msgstr ""
  
--#~ msgid "Existing User Roles"
--#~ msgstr "ಈಗಿರುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳು"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಲು ನೀವು ಬಯಸುವ ಅನ್ವಯ ಡೊಮೈನ್‌ಗಳನ್ನು ಅರಿಸಿ."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ಈ ಡೊಮೈನ್‌ಗೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಬಹುದಾದ ಹೆಚ್ಚುವರಿ ಡೊಮೈನ್‌ಗಳನ್ನು ಆರಿಸಿ"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "설정 프로세스에 해당하는 이름을 입력해야 합니다"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "유형 강조 파일 "
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "인터페이스 파일"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಲು ನೀವು ಬಯಸುವ ಡೊಮೈನ್‌ಗಳನ್ನು ಆರಿಸಿ."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ಈ ಬಳಕೆದಾರನಿಗೆ ಹೆಚ್ಚುವರಿ ಪಾತ್ರಗಳನ್ನು ಆರಿಸು"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಆಲಿಸುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "파일 문맥 파일"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "프로토콜"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "포트"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "그룹 보기"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux 서비스 보안"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು</b>"
++msgstr ""
  
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "ಈ ಬಳಕೆದಾರನು ಒಂದು ಟರ್ಮಿನಲ್ ಅಥವ ದೂರಸ್ಥ ಪ್ರವೇಶದ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  "
--#~ "ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಈ ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ "
--#~ "ಯಾವುದನ್ನೂ ಹೊಂದಿರುವುದಿಲ್ಲ."
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Mount"
+-#~ msgstr "마운트"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+"ಮಿತಿಗೊಳಪಟ್ಟ ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು"
  
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "ಕನಿಷ್ಟ ಟರ್ಮಿನಲ್ ಬಳಕೆದಾರ ಪಾತ್ರ"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "ಎಲ್ಲಾ"
++msgstr ""
  
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "ಈ ಬಳಕೆದಾರನು X ಅಥವ ಟರ್ಮಿನಲ್ ಮೂಲಕ ಒಂದು ಗಣಕಕ್ಕೆ ಪ್ರವೇಶಿಸಬಲ್ಲನು.  ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ "
--#~ "ಈ ಬಳಕೆದಾರನು setuid, networking, sudo ಹಾಗು su ಗಳಲ್ಲಿ ಯಾವುದನ್ನೂ ಹೊಂದಿರುವುದಿಲ್ಲ"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Network Configuration"
+-#~ msgstr "네트워크 설정"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"ಅನ್ವಯ/ಬಳಕೆದಾರನು ೦ ಯೊಂದಿಗೆ bindresvport ಅನ್ನು ಕರೆ ಮಾಡಲು ಅನುಮತಿಸು. ೬೦೦-೧೦೨೪ "
-+"ಸಂಪರ್ಕಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಿಸಲಾಗುತ್ತಿದೆ"
  
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "ಕನಿಷ್ಟ X Windows ಬಳಕೆದಾರ ಪಾತ್ರ"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Printing"
+-#~ msgstr "인쇄"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "೬೦೦-೧೦೨೪"
++msgstr ""
  
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, sudo ಇಲ್ಲದ "
--#~ "ಹಾಗು ಯಾವುದೆ su ಇಲ್ಲದಿರುವ ಬಳಕೆದಾರ."
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Compatibility"
+-#~ msgstr "호환"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಬದ್ಧವಾಗಿರುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
-+"ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
  
--#~ msgid "User Role"
--#~ msgstr "ಬಳಕೆದಾರ ಪಾತ್ರ"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "ಕಾದಿರಿಸದ ಸಂಪರ್ಕಸ್ಥಾನಗಳು (> ೧೦೨೪)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಆರಿಸು"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಗಳಿಗೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು >೧೦೨೪"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL 인증 서버"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux 유형"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP ಸಂಪರ್ಕಸ್ಥಾನಗಳು</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತಗೊಳ್ಳುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
++msgstr ""
  
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "ಸಂಪೂರ್ಣ networking ಹೊಂದಿರುವ, ಪರಿವರ್ತನೆ ಹೊಂದದ setuid ಅನ್ವಯಗಳಿಲ್ಲದ, ಯಾವುದೆ su "
--#~ "ಇಲ್ಲದಿರುವ ಆದರೆ ಮೂಲ ವ್ಯವಸ್ಥಾಪಕ ಪಾತ್ರಗಳಿಗೆ sudo ಮಾಡಬಹುದಾದ ಬಳಕೆದಾರ"
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux 사용자 추가"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid "Add"
+-#~ msgstr "추가"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "_Delete"
+-#~ msgstr "삭제(_D)"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>선택:</b>"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
-+"ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
  
--#~ msgid "Admin User Role"
--#~ msgstr "ನಿರ್ವಹಣಾ ಬಳಕೆದಾರ ಪಾತ್ರ"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "label37"
+-#~ msgstr "label37"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Filter"
+-#~ msgstr "필터"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
-+"ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
  
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>ಮೂಲ ಬಳಕೆದಾರರು</b>"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "ಸಾಮಾನ್ಯ ಅನ್ವಯ ವಿಶೇಷ ಗುಣಗಳನ್ನು(Traits) ಆರಿಸು"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Add File Context"
+-#~ msgstr "파일 문맥 추가"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Modify File Context"
+-#~ msgstr "파일 문맥 수정"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog  ಸಂದೇಶಗಳನ್ನು ಬರೆಯುತ್ತದೆ\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Delete File Context"
+-#~ msgstr "파일 문맥 삭제"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp ತಾತ್ಕಾಲಿಕ ಕಡತಗಳನ್ನು ಸೃಜಿಸು/ಕುಶಲವಾಗಿ ನಿರ್ವಹಿಸು"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "label38"
+-#~ msgstr "label38"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "ದೃಢೀಕರಣಕ್ಕಾಗಿ Pam ಅನ್ನು ಬಳಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux 사용자 맵핑 추가"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch ಅಥವ getpw* ಕರೆಗಳನ್ನು ಬಳಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux 사용자 맵핑 수정"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus ಅನ್ನು ಬಳಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux 사용자 맵핑 삭제"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "ಆಡಿಟ್ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "label39"
+-#~ msgstr "label39"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "ಟರ್ಮಿನಲ್‍ನೊಂದಿಗೆ ವ್ಯವಹರಿಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Add Translation"
+-#~ msgstr "번역 추가"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ಇಮೈಲ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "ಅನ್ವಯವು ನಿರ್ವಹಿಸುವ ಕಡತಗಳು/ಕಡತಕೋಶಗಳನ್ನು ಆರಿಸಿ"
++msgstr ""
  
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "ಈ ಬಳಕೆದಾರನನ್ನು ಮೂಲವಾಗಿ ಚಲಾಯಿಸುವಾಗ ಗಣಕದ ನಿರ್ವಹಣೆಗೆ ಬಳಸುವಂತಿದ್ದರೆ, ಮೂಲ "
--#~ "ಬಳಕೆದಾರನನ್ನು ಆರಿಸಿ.  ಈ ಬಳಕೆದಾರನು ಗಣಕಕ್ಕೆ ನೇರವಾಗಿ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
-+#: ../gui/polgen.glade:2607
+-#~ msgid "Modify Translation"
+-#~ msgstr "번역 수정"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Delete Translation"
+-#~ msgstr "번역 삭제"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"ಈ ಅನ್ವಯವು \"ಬರೆಯ\"ಬೇಕಿರುವ ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು ಸೇರಿಸು. Pid ಕಡತಗಳು, Log "
-+"ಕಡತಗಳು, /var/lib ಕಡತಗಳು ..."
  
--#~ msgid "Root Admin User Role"
--#~ msgstr "ಮೂಲ ನಿರ್ವಾಹಕ ಬಳಕೆದಾರ ಪಾತ್ರ"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "ಅನ್ವಯವು ಬಳಸುವ ಬೂಲಿಯನ್‍ಗಳು ಆರಿಸು"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "ಈ ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯಕ್ಕಾಗಿ ಬಳಸಲಾದ ಬೂಲಿಯನ್‍ಗಳನ್ನು ಸೇರಿಸು/ತೆಗೆದುಹಾಕು"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "ಪಾಲಿಸಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "ಪಾಲಿಸಿ ಕೋಶ"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "ಪಾಲಿಸಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸು"
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux 사용자 수정"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "ಮಿತಿಗೊಳಿಸಲು ಅನ್ವಯ ಅಥವ ಬಳಕೆದಾರನ ಪಾತ್ರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
-+"ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
-+"ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ ಅನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಿ.  \n"
-+" Linux ಲಾಗಿನ್ ಬಳಕೆದಾರರನ್ನು ಬಳಕೆದಾರರ ಪಾತ್ರಗಳಿಗೆ ಮ್ಯಾಪ್ ಮಾಡಲು semanage ಅಥವ useradd "
-+"ಅನ್ನು ಬಳಸಿ.\n"
-+"ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
-+"ಬಳಕೆದಾರನಾಗಿ ಪ್ರವೇಶಿಸಿ ಹಾಗು ಈ ಬಳಕೆದಾರ ಪಾತ್ರವನ್ನು ಪರೀಕ್ಷಿಸಿ.\n"
-+"te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#~ msgid "Name"
--#~ msgstr "ಹೆಸರು"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
-+"ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
-+"ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ ಅನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಿ\n"
-+" ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
-+"avc ಸಂದೇಶಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಅನ್ವಯವನ್ನು ಚಲಾಯಿಸಿ/ಪುನರಾರಂಭಿಸಿ.\n"
-+"te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Add Network Port"
+-#~ msgstr "네트워크 포트 추가"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#~ msgid "Edit Network Port"
+-#~ msgstr "네트워크 포트 편집"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "Delete Network Port"
+-#~ msgstr "네트워크 포트 삭제"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "ಬೂಲಿಯನ್ ಸಂವಾದವನ್ನು ಸೇರಿಸು"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Generate new policy module"
+-#~ msgstr "새 정책 모듈 생성"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "ಬೂಲಿಯನ್ ಹೆಸರು"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "Load policy module"
+-#~ msgstr "정책 모듈 읽어오기"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "ಪಾತ್ರ"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "읽어올 수 있는 정책 모듈 삭제"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "ಬಳಕೆದಾರನಿಂದ ನಿರ್ಗಮಿಸುತ್ತಿದೆ(_U)"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "ಅನ್ವಯ"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux 사용자 '%s'이(가) 필요합니다"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ವು ಕಡತಕೋಶ ಆಗಿರಬೇಕು"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "값 필요"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "ನೀವು ಒಬ್ಬ ಬಳಕೆದಾರನಾಗಿರಬೇಕು"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label50"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಕಡತವನ್ನು ಆರಿಸು."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "value"
+-#~ msgstr "값"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ init ಸ್ಕ್ರಿಪ್ಟ್ ಕಡತವನ್ನು ಆರಿಸು."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "root로 %s을(를) 실행해야 합니다."
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ನಿರ್ಮಿಸುವ ಅಥವ ಬರೆಯುವ ಕಡತವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
++msgstr ""
  
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲದುದನ್ನು ಪರಿಮಿತಿಗೆ ಒಳಪಡಿಸಲು ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
-+#: ../gui/polgengui.py:481
+-#~ msgid "Other"
+-#~ msgstr "기타"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ಅಧಿಕಾರ ಹೊಂದಿರುವ ಅಥವ ಬರೆಯುವ ಕಡತಕೋಶವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
  
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgengui.py:541
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "MLS/MCS 레벨"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "ಪಾಲಿಸಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
++msgstr ""
  
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "ಮಿತಿಗೊಳಿಸಬೇಕಿರುವ ಬಳಕೆದಾರ ಅಥವ ಅನ್ವಯದ ವಿಶೇಷವಾದ ಪ್ರಕಾರದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ."
-+#: ../gui/polgengui.py:554
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr ""
+-#~ "레이블링\n"
+-#~ "접두부"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಬಗೆ %s_t ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
-+"ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
  
--#~ msgid "Executable"
--#~ msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS 레벨"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "ಹೆಸರನ್ನು ಪರಿಶೀಲಿಸು"
--#~ msgid "Init script"
--#~ msgstr "Init ಸ್ಕ್ರಿಪ್ಟ್"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಡೊಮೈನ್‌ %s.pp ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
-+"ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯವನ್ನು ಆರಂಭಿಸಲು init ಸ್ಕ್ರಿಪ್ಟಿಗೆ ಸಂಪೂರ್ಣ ಪಥವನ್ನು ನಮೂದಿಸಿ."
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "ನೀವು ಒಂದು ಹೆಸರನ್ನು ನಮೂದಿಸಬೇಕು"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "ನೀವು ಕಸ್ಟಮೈಝ್ ಮಾಡಲು ಬಯಸುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "ನೀವು ಒಂದು ಕಾರ್ಯಗೊಳಿಸಬಹುದಾದ್ದನ್ನು ನಮೂದಿಸಬೇಕು"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "ಈ ಅನ್ವಯ ಕ್ಷೇತ್ರಗಳಿಗೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ."
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux ಅನ್ನು ಸಂರಚಿಸು"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಬೇಕಿರುವ ಹೆಚ್ಚುವರಿ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು 1 ರಿಂದ %d ರ ನಡುವಿನ ಸಂಖ್ಯೆಗಳು ಅಥವ ಸಂಖ್ಯೆಗಳ ವ್ಯಾಪ್ತಿಯಾಗಿರಬೇಕು"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "ಈ ಬಳಕೆದಾರ ಪಾತ್ರವು ಪರಿವರ್ತನೆ ಹೊಂದಲು ನೀವು ಬಯಸುವ ಅನ್ವಯ ಕ್ಷೇತ್ರಗಳನ್ನು ಅರಿಸಿ."
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆ/ಬಳಕೆದಾರರಿಗಾಗಿ ಒಂದು ಹೆಸರನ್ನು ದಾಖಲಿಸಬೇಕು"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "ಈ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವ ಬಳಕೆದಾರ ಪಾತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER ಪ್ರಕಾರಗಳು ಅನುಮತಿಸಲಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲವುಗಳಲ್ಲ"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಬಹುದಾದ ಹೆಚ್ಚುವರಿ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "ಕೇವಲ DAEMON ಅನ್ವಯಗಳು ಮಾತ್ರ ಒಂದು init ಸ್ಕ್ರಿಪ್ಟನ್ನು ಬಳಸಬಲ್ಲದು"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ಈ ಬಳಕೆದಾರ ವ್ಯವಸ್ಥಾಪಿಸಲು ನೀವು ಬಯಸುವ ಕ್ಷೇತ್ರಗಳನ್ನು ಆರಿಸಿ."
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog ವು ಒಂದು ಬೂಲಿಯನ್ ಮೌಲ್ಯವಾಗಿರಬೇಕು "
--#~ msgid "Select additional roles for this user"
--#~ msgstr "ಈ ಬಳಕೆದಾರನಿಗೆ ಹೆಚ್ಚುವರಿ ಪಾತ್ರಗಳನ್ನು ಆರಿಸು"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER ಪ್ರಕಾರಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಒಂದು tmp ಬಗೆಯನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತವೆ"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಆಲಿಸುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+"ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆಗಳಿಗಾಗಿ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಪಥವನ್ನು ನೀವು ನಮೂದಿಸಲೇ ಬೇಕು"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು</b>"
-+#: ../gui/polgen.py:848
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "ಒತ್ತಾಯಪೂರ್ವಕ ಪ್ರಕಾರದ ಕಡತ"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "ಮಿತಿಗೊಳಪಟ್ಟ ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ಸಂಪರ್ಕ ಸಾಧನ ಕಡತ"
--#~ msgid "All"
--#~ msgstr "ಎಲ್ಲಾ"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ಕಡತ ಸನ್ನಿವೇಶಗಳ ಕಡತ"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನು ೦ ಯೊಂದಿಗೆ bindresvport ಅನ್ನು ಕರೆ ಮಾಡಲು ಅನುಮತಿಸು. ೬೦೦-೧೦೨೪ "
--#~ "ಸಂಪರ್ಕಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಿಸಲಾಗುತ್ತಿದೆ"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "ಸಿದ್ಧತಾ ಸ್ಕ್ರಿಪ್ಟ್"
--#~ msgid "600-1024"
--#~ msgstr "೬೦೦-೧೦೨೪"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನ"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಬದ್ಧವಾಗಿರುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
--#~ "ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
-+#: ../gui/portsPage.py:85
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
 +msgid ""
-+"SELinux Port\n"
-+"Type"
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
 +msgstr ""
-+"SELinux ಸಂಪರ್ಕಸ್ಥಾನದ\n"
-+"ಬಗೆ"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "ಕಾದಿರಿಸದ ಸಂಪರ್ಕಸ್ಥಾನಗಳು (> ೧೦೨೪)"
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr ""
++
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "ಪ್ರೊಟೊಕಾಲ್"
--#~ msgid "Select Ports"
--#~ msgstr "ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಆರಿಸು"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"ಮಟ್ಟ"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ udp ಸಂಪರ್ಕ ಸ್ಥಾನಗಳಿಗೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು >೧೦೨೪"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ ಸಂಖ್ಯೆ \"%s\" ಯು ಅಮಾನ್ಯವಾಗಿದೆ.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "ಪಟ್ಟಿ ನೋಟ"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "ಸಮೂಹ ನೋಟ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -129711,26 +129834,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux ಸೇವಾ ಸಂರಕ್ಷಣೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "ಮುಖ್ಯಕಡತಗಳನ್ನು(corefiles) / ಕ್ಕೆ ಬರೆಯಲು ಡೆಮೋನುಗಳಿಗೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "ಎಲ್ಲಾ ಡೆಮೋನುಗಳು ನಿಯೋಜಿಸಲಾದ tty ಗಳನ್ನು ಬಳಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -129739,165 +129862,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "ಬಳಕೆದಾರ Privs"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP ಸಂಪರ್ಕಸ್ಥಾನಗಳು</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux ಬಳಕೆದಾರ ಖಾತೆಯು ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "ಈ ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತಗೊಳ್ಳುವ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ನಮೂದಿಸಿ"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ಅತಿಥಿ SELinux ಬಳಕೆದಾರ ಖಾತೆಯು ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ "
--#~ "ವ್ಯಾಪ್ತಿಗಳ ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: "
--#~ "612, 650-660"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "ಮೆಮೊರಿ ಸಂರಕ್ಷಣೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "ಆರೋಹಣ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "ಆರೋಹಣಕ್ಕೆ ಯಾವುದೆ ಕಡತಗಳನ್ನು ಆರೋಹಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "ಆರೋಹಿಸುದಕ್ಕೆ ಯಾವುದೆ ಕಡತಕೋಶವನ್ನು ಆರೋಹಿಸ ಅನುಮತಿಸುಲು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh ಗೆ ssh-keysign ಅನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಸಂಪರ್ಕಿತವಾಗುವ udp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ "
--#~ "ವ್ಯಾಪ್ತಿಗಳ ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: "
--#~ "612, 650-660"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರ ಖಾತೆಯು ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Select common application traits"
--#~ msgstr "ಸಾಮಾನ್ಯ ಅನ್ವಯ ವಿಶೇಷ ಗುಣಗಳನ್ನು(Traits) ಆರಿಸು"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux ಬಳಕೆದಾರ ಖಾತೆಯು ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog  ಸಂದೇಶಗಳನ್ನು ಬರೆಯುತ್ತದೆ\t"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"ಮಿತಿಗೊಳಪಡಿಸದ SELinux ಬಳಕೆದಾರ ಖಾತೆಯು ನೆಲೆ ಕಡತಕೋಶ ಅಥವ /tmp ಯಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp ತಾತ್ಕಾಲಿಕ ಕಡತಗಳನ್ನು ಸೃಜಿಸು/ಕುಶಲವಾಗಿ ನಿರ್ವಹಿಸು"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "ಜಾಲಬಂಧ ಸಂರಚನೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "ಲೇಬಲ್ ಮಾಡಲಾಗದ ಪ್ಯಾಕೇಟುಗಳು ಜಾಲಬಂಧದಲ್ಲಿ ಹಾಯಲು ಅನುಮತಿಸು"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "ದೃಢೀಕರಣಕ್ಕಾಗಿ Pam ಅನ್ನು ಬಳಸುತ್ತದೆ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರ ಖಾತೆಗೆ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch ಅಥವ getpw* ಕರೆಗಳನ್ನು ಬಳಸುತ್ತದೆ"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "ಮಿತಿಗೊಳಪಡದವನ್ನು dyntrans ಗೆ unconfined_execmem ಮಾಡಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "ದತ್ತಸಂಚಯಗಳು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "ಬಳಕೆದಾರನಿಗೆ mysql ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "ಬಳಕೆದಾರನಿಗೆ postgres ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "Xಪರಿಚಾರಕ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "ಕ್ಲೈಂಟುಗಳಿಗೆ X ಹಂಚಿಕಾ ಮೆಮೊರಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸಲು"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ಅನ್ನು ಬಳಸುತ್ತದೆ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux ಬಳಕೆದಾರ ಖಾತೆಗೆ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
-+"ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Sends audit messages"
--#~ msgstr "ಆಡಿಟ್ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "ಡೆಮೊನುಳಿಗೆ NIS ನೊಂದಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -129905,1203 +129982,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "ಜಾಲ ಅನ್ವಯಗಳು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಡೊಮೈನ್‌ಗೆ ಪರಿವರ್ತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಡೊಮೈನ್‌ಗೆ ಪರಿವರ್ತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಡೊಮೈನ್‌ಗೆ ಪರಿವರ್ತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಡೊಮೈನ್‌ಗೆ ಪರಿವರ್ತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "ಸ್ಟಾಫ್ ಜಾಲ ವೀಕ್ಷಕರಿಗೆ ನೆಲೆ ಕಡತಕೋಶಗಳಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "audit ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ಟರ್ಮಿನಲ್‍ನೊಂದಿಗೆ ವ್ಯವಹರಿಸುತ್ತದೆ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord ಗೆ ಹಲವಾರು ವಿಷಯವನ್ನು ಓದಲು ಅನುಮತಿಸು. nfs, samba, ತೆಗೆದುಹಾಕಬಹುದಾದ "
-+"ಸಾಧನಗಳು, ಬಳಕೆದಾರ temp ಹಾಗು ನಂಬಲರ್ಹವಲ್ಲದ ವಿಷಯವನ್ನು ಹೊಂದಿರುವ ಕಡತಗಳು"
--#~ msgid "Sends email"
--#~ msgstr "ಇಮೈಲ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತದೆ"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "ಮುದ್ರಣ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd back end ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cup_Ipd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "bdusd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t ಗೆ ನೇರವಾಗಿ ಡೆಮೋನುಗಳನ್ನು ಆರಂಭಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "ಇವಲೂಶನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "ಆಟಗಳು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "ಆಟಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "ಜಾಲ ವೀಕ್ಷಕಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "ಥಂಡರ್-ಬರ್ಡಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "ಸಹರ್ತನೀಯತೆ"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "ಅನ್ವಯವು ನಿರ್ವಹಿಸುವ ಕಡತಗಳು/ಕಡತಕೋಶಗಳನ್ನು ಆರಿಸಿ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "ತುಂಡರಿಸಲ್ಪಟ್ಟ ಆದರೆ ಸುರಕ್ಷತೆಯ ದೃಷ್ಟಿಯಲ್ಲಿ ಅಪಾಯಕಾರಿಯಲ್ಲವುಗಳನ್ನು ಆಡಿಟ್ ಮಾಡಬೇಡ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD ಸೇವೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd child ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "ಕರ್ಬರೋಸ್"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk ಡೆಮೋನುಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಇವಲೂಶನ್ ಹಾಗು ಥಂಡರ್-ಬರ್ಡ್ ಓದಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಓದಲು ಮೊಝಿಲ್ಲಾ ವೀಕ್ಷಕಕ್ಕೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Dmrtg ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "ಹೆಸರು ಸೇವೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "ಸಾಂಬಾ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Dnsd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "ಒಬ್ಬ ಸಾಮಾನ್ಯ ಬಳಕೆದಾರನಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ pppd ಗೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "ಸ್ಟಾಂಡರ್ಡ್‌ ಅಲ್ಲದ ಸ್ಥಳಗಳಿಂದ (default_t) ಕಡತಗಳನ್ನು ಓದಲು ಪ್ರೋಗ್ರಾಂಗೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh ಗೆ ಒಂದು ಡೀಮನ್‌ನ ಬದಲಿಗೆ inetd ಯಿಂದ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "ಸಾಂಬಾಗೆ nfs ಕಡತಕೋಶಗಳನ್ನು ಹಂಚಿಕೆ ಮಾಡಿಕೊಳ್ಳುವಂತೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL ದೃಢೀಕರಣ ಪರಿಚಾರಕ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl ದೃಢೀಕರಣ ಪರಿಚಾರಕಕ್ಕೆ /etc/shadow ಅನ್ನು ಓದಲು ಅನುಮತಿಸು"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ಈ ಅನ್ವಯವು \"ಬರೆಯ\"ಬೇಕಿರುವ ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು ಸೇರಿಸು. Pid ಕಡತಗಳು, Log "
--#~ "ಕಡತಗಳು, /var/lib ಕಡತಗಳು ..."
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows ಪರಿಚಾರಕವು ಒಂದು ಮೆಮೊರಿ ಪ್ರದೇಶಕ್ಕೆ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಹಾಗು ಬರೆಯಬಲ್ಲುದಾಗಿ "
-+"ಮ್ಯಾಪ್ ಮಾಡಲು ಅನುಮತಿಸು"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "ಅನ್ವಯವು ಬಳಸುವ ಬೂಲಿಯನ್‍ಗಳು ಆರಿಸು"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo ಹಾಗು su ಪ್ರಭಾವಗೊಂಡಿದ್ದಕ್ಕೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "ಯಾವುದೆ ಪ್ರಕ್ರಿಯೆಗಳು ಕರ್ನಲ್ ಡೊಮೈನ್‌ಗಳಿಗೆ ಲೋಡ್ ಆಗುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "ಕರ್ನಲ್ SELinux ಪಾಲಿಸಿಯನ್ನು ಮಾರ್ಪಡಿಸಲು ಯಾವುದೇ ಪ್ರಕ್ರಿಯೆಗಳಿಗೆ ಅನುಮತಿಸಬೇಡ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot ಡೆಮನ್‍ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Spamನಿಂದ ಸಂರಕ್ಷಣೆ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam assasin ಡೆಮನ್‍ಗೆ ಜಾಲಬಂಧವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid ಡೀಮನ್‌ಗೆ ಜಾಲಬಂಧವನ್ನು ಸಂಪರ್ಕಿಸಲು ಅನುಮತಿಸಲು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t ಆಗಿ ssh ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸು"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "ಈ ಮಿತಿಗೊಳಿಸಲಾದ ಅನ್ವಯಕ್ಕಾಗಿ ಬಳಸಲಾದ ಬೂಲಿಯನ್‍ಗಳನ್ನು ಸೇರಿಸು/ತೆಗೆದುಹಾಕು"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
--
--#~ msgid "Policy Directory"
--#~ msgstr "ನೀತಿ ಕೋಶ"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸು"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
--#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
--#~ "ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ "
--#~ "ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ.  \n"
--#~ " Linux ಲಾಗಿನ್ ಬಳಕೆದಾರರನ್ನು ಬಳಕೆದಾರರ ಪಾತ್ರಗಳಿಗೆ ಮ್ಯಾಪ್ ಮಾಡಲು semanage ಅಥವ "
--#~ "useradd ಅನ್ನು ಬಳಸಿ.\n"
--#~ "ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
--#~ "ಬಳಕೆದಾರನಾಗಿ ಪ್ರವೇಶಿಸಿ ಹಾಗು ಈ ಬಳಕೆದಾರ ಪಾತ್ರವನ್ನು ಪರೀಕ್ಷಿಸಿ.\n"
--#~ "te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ಈ ಉಪಕರಣವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ: ಒತ್ತಾಯಪೂರ್ವಕ ಕಡತದ ಬಗೆ (te)\n"
--#~ "ಸಂಪರ್ಕಸಾಧನ ಕಡತ (if) ಕಡತ ಸನ್ನಿವೇಶ ಕಡತ (fc) ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್ (sh).\n"
--#~ "ಸಂಕಲಿಸಲು/ಅನುಸ್ಥಾಪಿಸಲು ಹಾಗು ಕಡತಗಳನ್ನು/ಕಡತಕೋಶಗಳನ್ನು.ಮರುಲೇಬಲ್ ಮಾಡಲು ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟ್‍ "
--#~ "ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಿ\n"
--#~ " ಗಣಕವನ್ನು ಅನುಮತಿ ಕ್ರಮದಲ್ಲಿ ಇರಿಸಿ (setenforce 0). \n"
--#~ "avc ಸಂದೇಶಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಅನ್ವಯವನ್ನು ಚಲಾಯಿಸಿ/ಪುನರಾರಂಭಿಸಿ.\n"
--#~ "te ಕಡತಕ್ಕೆ ಹೆಚ್ಚುವರಿ ನಿಯಮಗಳನ್ನು ಉತ್ಪಾದಿಸಲು audit2allow -R ಅನ್ನು ಬಳಸಿ.\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "ಬೂಲಿಯನ್ ಸಂವಾದವನ್ನು ಸೇರಿಸು"
--
--#~ msgid "Boolean Name"
--#~ msgstr "ಬೂಲಿಯನ್ ಹೆಸರು"
--
--#~ msgid "Role"
--#~ msgstr "ಪಾತ್ರ"
--
--#~ msgid "Existing_User"
--#~ msgstr "ಬಳಕೆದಾರನಿಂದ ನಿರ್ಗಮಿಸುತ್ತಿದೆ(_U)"
--
--#~ msgid "Application"
--#~ msgstr "ಅನ್ವಯ"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ವು ಕಡತಕೋಶ ಆಗಿರಬೇಕು"
--
--#~ msgid "You must select a user"
--#~ msgstr "ನೀವು ಒಬ್ಬ ಬಳಕೆದಾರನಾಗಿರಬೇಕು"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಕಡತವನ್ನು ಆರಿಸು."
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "ಮಿತಿಗೊಳಪಡಿಸಬೇಕಾದ init ಸ್ಕ್ರಿಪ್ಟ್ ಕಡತವನ್ನು ಆರಿಸು."
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ನಿರ್ಮಿಸುವ ಅಥವ ಬರೆಯುವ ಕಡತವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಅನ್ವಯವು ಅಧಿಕಾರ ಹೊಂದಿರುವ ಅಥವ ಬರೆಯುವ ಕಡತಕೋಶವನ್ನು(ಗಳನ್ನು) ಆರಿಸಿ"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "ನೀತಿ ಕಡತಗಳನ್ನು ಉತ್ಪಾದಿಸಲು ಕೋಶವನ್ನು ಆರಿಸು"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಬಗೆ %s_t ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
--#~ "ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
--
--#~ msgid "Verify Name"
--#~ msgstr "ಹೆಸರನ್ನು ಪರಿಶೀಲಿಸು"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "ಈಗಿರುವ ಪಾಲಿಸಿಯಲ್ಲಿ ಘಟಕ %s.pp ವು ಈಗಾಗಲೆ ಲೋಡ್ ಆಗಿದೆ.\n"
--#~ "ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರಾ?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "ನೀವು ಒಂದು ಹೆಸರನ್ನು ನಮೂದಿಸಬೇಕು"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "ನೀವು ಒಂದು ಕಾರ್ಯಗೊಳಿಸಬಹುದಾದ್ದನ್ನು ನಮೂದಿಸಬೇಕು"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux ಅನ್ನು ಸಂರಚಿಸು"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನಗಳು 1 ರಿಂದ %d ರ ನಡುವಿನ ಸಂಖ್ಯೆ ಅಥವ ವ್ಯಾಪ್ತಿಯಾಗಿರಬೇಕು"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆ/ಬಳಕೆದಾರರಿಗಾಗಿ ಒಂದು ಹೆಸರನ್ನು ದಾಖಲಿಸಬೇಕು"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER ಪ್ರಕಾರಗಳು ಅನುಮತಿಸಲಾದ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲವುಗಳಲ್ಲ"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "ಕೇವಲ DAEMON ಅನ್ವಯಗಳು ಮಾತ್ರ ಒಂದು init ಸ್ಕ್ರಿಪ್ಟನ್ನು ಬಳಸಬಲ್ಲದು"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog ವು ಒಂದು ಬೂಲಿಯನ್ ಮೌಲ್ಯವಾಗಿರಬೇಕು "
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER ಪ್ರಕಾರಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಒಂದು tmp ಬಗೆಯನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತದೆ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r ಬಳಕೆದಾರರಿಗೆ sysadm ನ ನೆಲೆ dir ಹಾಗು ಕಡತಗಳನ್ನು ಓದಲು ಅನುಮತಿಸು (~/.bashrc "
-+"ನಂತಹ)"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "ನಿಮ್ಮ ಮಿತಿಗೊಳಿಸಲ್ಪಟ್ಟ ಪ್ರಕ್ರಿಯೆಗಳಿಗಾಗಿ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಪಥವನ್ನು ನೀವು ನಮೂದಿಸಲೇ ಬೇಕು"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "ವಿಶ್ವವ್ಯಾಪಿ SSL ಟನ್ನಲ್"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel ಡೆಮನ್ ಅನ್ನು xinetd ದ ಹೊರಗೆ ಏಕಮೇವವಾಗಿ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "ಗಣಕ cron ಕಾರ್ಯಗಳಿಗಾಗಿ(jobs) SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "ಪ್ರಕಾರ ಜಾರಿ ಕಡತ"
--
--#~ msgid "Interface file"
--#~ msgstr "ಸಂಪರ್ಕ ಸಾಧನ ಕಡತ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"ಒಂದು ಡೊಮೈನ್‌ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಯಾವುದೆ ಸೇವೆಗಳನ್ನು ಒಳಗೊಂಡಂತಹ xinetd "
-+"ಯನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸಿ"
--#~ msgid "File Contexts file"
--#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶಗಳ ಕಡತ"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"ಒಂದು ಡೊಮೈನ್‌ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಒಂದು rc ಸ್ಕ್ರಿಪ್ಟ್‍ನಿಂದ ಆರಂಭಗೊಂಡ ಯಾವುದೆ "
-+"ಡೆಮನ್ ಅನ್ನು ಒಳಗೊಂಡಂತಹ rc ಸ್ಕ್ರಿಪ್ಟ್‍ ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸಿ"
--#~ msgid "Setup Script"
--#~ msgstr "ಸಿದ್ಧತಾ ಸ್ಕ್ರಿಪ್ಟ್"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux ಸಂಪರ್ಕಸ್ಥಾನದ\n"
--#~ "ಬಗೆ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"ಸವಲತ್ತು ಉಪಯುಕ್ತತೆಗಳಾದ hotplug ಹಾಗು insmod ನಂತಹುಗಳನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು "
-+"ಅನುಮತಿಸು"
--#~ msgid "Protocol"
--#~ msgstr "ಪ್ರೊಟೊಕಾಲ್"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "ಮಟ್ಟ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r ಗೆ su ನ ಮೂಲಕ sysadm_r, sudo, ಅಥವ userhelper ಅನ್ನು ತಲುಪಲು ಅನುಮತಿಸಿ. "
-+"ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ, ಕೇವಲ staff_r ಹಾಗೆ ಮಾಡುತ್ತದೆ"
--#~ msgid "Port"
--#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "ಬಳಕೆದಾರರಿಗೆ ಆರೋಹಿಸು ಆಜ್ಞೆಯನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "ಸಂಪರ್ಕ ಸ್ಥಾನ ಸಂಖ್ಯೆ \"%s\" ಯು ಅಮಾನ್ಯವಾಗಿದೆ.  0 < PORT_NUMBER < 65536 "
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ನೇರ ಮೌಸಿನ ನಿಲುಕಣೆಯನ್ನು ಅನುಮತಿಸು(ಕೇವಲ X ಪರಿಚಾರಕವನ್ನು ಮಾತ್ರ "
-+"ಅನುಮತಿಸು)"
--#~ msgid "List View"
--#~ msgstr "ಪಟ್ಟಿ ನೋಟ"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "dmesg ಆಜ್ಞೆಯನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
--#~ msgid "Group View"
--#~ msgstr "ಸಮೂಹ ನೋಟ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"ಬಳಕೆದಾರರಿಗೆ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸಾಧನಗಳನ್ನು ನಿಯಂತ್ರಿಸಲು ಅನುಮತಿಸು(USERCTL=true ನ ಅಗತ್ಯವು "
-+"ಸಹ ಇರುತ್ತದೆ)"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux ಸೇವಾ ಸಂರಕ್ಷಣೆ"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ಪಿಂಗ್ ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "ಬಳಕೆದಾರನನ್ನು r/w noextattrfile (FAT, CDROM, FLOPPY) ಗೆ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "rw usb ಸಾಧನಗಳಿಗೆ ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸು"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"ಬಳಕೆದಾರರಿಗೆ TCP ಪರಿಚಾರಕಗಳನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು (ಸಂಪರ್ಕಸ್ಥಾನಗಳಿಗೆ ಬೈಂಡ್ ಮಾಡಿ "
-+"ಹಾಗು ಅದೆ ಡೊಮೈನ್‌ನಿಂದ ಹಾಗು ಬಳಕೆದಾರರ ಹೊರಗಿನ ಸಂಪರ್ಕಗಳನ್ನು ಅನುಮತಿಸು).  ಇದನ್ನು "
-+"ಅಶಕ್ತಗೊಳಿಸುವುದರಿಂದ ಅದುFTP ಜಡ ಕ್ರಮಕ್ಕೆ ಒತ್ತಾಯಿಸುತ್ತದೆ ಹಾಗು ಇತರೆ ಪ್ರೊಟೋಕಾಲ್‍ಗಳನ್ನು ಸಹ "
-+"ಬದಲಾಯಿಸಬಹುದು"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ಬಳಕೆದಾರರಿಗೆ ttyfiles ಅನ್ನು stat ಮಾಡಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm ಪ್ರವೇಶಗಳನ್ನು sysadm_r:sysadm_t ಆಗಿ ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen ಗೆ ಭೌತಿಕ ಡಿಸ್ಕ್ ಸಾಧನಗಳನ್ನು ಓದಲು/ಬರೆಯಲು ಅನುಮತಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen constrol ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS ಗುಪ್ತಪದ ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS ವರ್ಗಾವಣಾ ಡೀಮನ್‌ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
--#~ msgid "Admin"
--#~ msgstr "Admin"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿರ್ವಹಿಸಲು SELinux webadm ಬಳಕೆದಾರನಿಗೆ "
-+"ಅನುಮತಿಸು"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "ಮುಖ್ಯಕಡತಗಳನ್ನು(corefiles) / ಕ್ಕೆ ಬರೆಯಲು ಡೆಮೋನುಗಳಿಗೆ ಅನುಮತಿಸು"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ಓದಲು SELinux webadm ಬಳಕೆದಾರನಿಗೆ "
-+"ಅನುಮತಿಸು"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "ಎಲ್ಲಾ ಡೆಮೋನುಗಳು ನಿಯೋಜಿಸಲಾದ tty ಗಳನ್ನು ಬಳಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಅನುಮತಿಸು"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "%s '%s' ಅನ್ನು ಅಳಿಸಿಹಾಕಬೇಕೆಂದು ನೀವು ಖಚಿತವೆ?"
--#~ msgid "User Privs"
--#~ msgstr "ಬಳಕೆದಾರ Privs"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s ಅನ್ನು ಅಳಿಸಿಹಾಕು"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
--#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s ಅನ್ನು ಸೇರಿಸು"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ಅತಿಥಿ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
--#~ "ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s ಮಾರ್ಪಡಿಸು"
--#~ msgid "Memory Protection"
--#~ msgstr "ಮೆಮೊರಿ ಸಂರಕ್ಷಣೆ"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
--#~ msgid "Allow java executable stack"
--#~ msgstr "java ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "ಒತ್ತಾಯಪೂರ್ವಕ"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "ಅಶಕ್ತಗೊಂಡ"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "ಸ್ಥಿತಿ"
--#~ msgid "Mount"
--#~ msgstr "ಆರೋಹಣ"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"ಪಾಲಿಸಿಯ ಪ್ರಕಾರವನ್ನು ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಲೇಬಲ್ "
-+"ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
-+"ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "ಆರೋಹಣಕ್ಕೆ ಯಾವುದೆ ಕಡತಗಳನ್ನು ಆರೋಹಿಸಲು ಅನುಮತಿಸು"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -131111,96 +130940,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux ಅಶಕ್ತಗೊಂಡಿದ್ದಕ್ಕೆ ಬದಲಾಯಿಸಲು ಪುನರ್ ಬೂಟಿಸುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ಹಾಗೆ "
-+"ಮಾಡುವುದು ಸೂಕ್ತವಲ್ಲ.   ನೀವು ನಂತರ SELinux ಅನ್ನು ಪುನಃ ಆನ್ ಮಾಡಲು ನಿರ್ಧರಿಸಿದಾಗ, "
-+"ಗಣಕವನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ನೀವು ಕೇವಲ SELinux ನಿಮ್ಮ ಗಣಕದಲ್ಲಿನ "
-+"ಒಂದು ತೊಂದರೆಗೆ ಕಾರಣವಾಗಿದೆಯೆ ಎಂದು ನೋಡಲು, ಅನುಮತಿಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಹೋಗಿ ಅದು ಕೇವಲ "
-+"ದೋಷಗಳನ್ನು ದಾಖಲಿಸುತ್ತದೆಯೆ ಹೊರತು SELinux ಪಾಲಿಸಿಯನ್ನು ಒತ್ತಾಯಿಸುವುದಿಲ್ಲ.  ಅನುಮತಿಪೂರ್ವಕ "
-+"ಕ್ರಮಕ್ಕೆ ಒಂದು ಪುನರ್ ಬೂಟಿನ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ    ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "ಆರೋಹಿಸುದಕ್ಕೆ ಯಾವುದೆ ಕಡತಕೋಶವನ್ನು ಆರೋಹಿಸ ಅನುಮತಿಸುಲು"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux ಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಗೆ ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು "
-+"ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
-+"ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲಂತಹ ಸ್ಟಾಕ್ ಅನ್ನು ಅನುಮತಿಸು"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"ಕೃತಿಸ್ವಾಮ್ಯ (c)2006 Red Hat, Inc.\n"
-+"ಕೃತಿಸ್ವಾಮ್ಯ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "SSH"
--#~ msgstr "SSH"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh ಗೆ ssh-keysign ಅನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಸೇರಿಸು"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux ನ ಬಗೆ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ ಕಡತಗಳನ್ನು "
--#~ "ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"ಮಟ್ಟ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
--#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "ಕಡತದ ವಿಶಿಷ್ಟ ವಿವರಗಳು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ಕಡತದ ಬಗೆ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "ಮಿತಿಗೊಳಪಡಿಸದ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳು ತಮ್ಮ ನೆಲೆ ಕಡತಕೋಶ ಅಥವ /tmp ಯಲ್ಲಿ "
--#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -131211,6486 +130991,7248 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"ಎಲ್ಲಾ ಕಡತಗಳು\n"
-+"ಸಾಮಾನ್ಯ ಕಡತ\n"
-+"ಕಡತಕೋಶ\n"
-+"ವೈಶಿಷ್ಟ್ಯ ಸಾಧನ\n"
-+"ಬ್ಲಾಕ್(block) ಸಾಧನ\n"
-+"ಸಾಕೆಟ್\n"
-+"ಸಾಂಕೇತಿಕ ಕೊಂಡಿ\n"
-+"ಹೆಸರಿಸಲಾದ ಪೈಪ್\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux ನಿರ್ವಹಣೆ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "ಸೇರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "ಗುಣಲಕ್ಷಣಗಳು(_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "ಅಳಿಸಿಹಾಕು(_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "ನಿರ್ವಹಣಾ ವಸ್ತುವನ್ನು ಆರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>ಆರಿಸು:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
--#~ msgid "Network Configuration"
--#~ msgstr "ಜಾಲಬಂಧ ಸಂರಚನೆ"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"ಅಶಕ್ತ\n"
-+"ಅನುಮತಿಪೂರ್ವಕ\n"
-+"ಒತ್ತಾಯಪೂರ್ವಕ\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "ಪ್ರಸಕ್ತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ಪಾಲಿಸಿಯ ಬಗೆ: "
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "ಲೇಬಲ್ ಮಾಡಲಾಗದ ಪ್ಯಾಕೇಟುಗಳು ಜಾಲಬಂಧದಲ್ಲಿ ಹಾಯಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ನೀವು ಬಯಸಿದರೆ ಇದನ್ನು ಆರಿಸಿ.  "
-+"ಗಣಕದ ಗಾತ್ರಕ್ಕೆ ಅನುಗುಣವಾಗಿ, ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ ತೆಗೆದುಕೊಳ್ಳಬಹುದು.  ಪಾಲಿಸಿಯ "
-+"ಬಗೆಗಳನ್ನು ಬದಲಾಯಿಸುವಂತಿದ್ದರೆ ಅಥವ ಅಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಯಿಂದ ಒತ್ತಾಯಪೂರ್ವಕಕ್ಕೆ ಹೋಗುವಂತಿದ್ದರೆ, "
-+"ಒಂದು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವ ಅಗತ್ಯವಿದೆ."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಪುನರ್ ಲೇಬಲ್ ಮಾಡು."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "ಬೂಲಿಯನ್ ಸಿದ್ಧತೆಯನ್ನು ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತಕ್ಕೆ ಮರಳಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಬದಲಾಯಿಸಲಾದ ಹಾಗು ಎಲ್ಲಾ ಬೂಲಿಯನ್‍ಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "ಬೂಲಿಯನ್ ಲಾಕ್‌ಡೌನ್‌ ಗಾರುಡಿಯನ್ನು ಚಲಾಯಿಸಿ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "ಲಾಕ್‌ಡೌನ್..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "ಶೋಧಕ(Filter)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಮಾರ್ಪಡಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಿಹಾಕು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "ಎಲ್ಲಾ ಹಾಗು ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಬದಲಾಯಿಸಲಾದ ಕಡತ ಸನ್ನಿವೇಶಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಮಾರ್ಪಡಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಅಳಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸಿ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "ಬಳಕೆದಾರನನ್ನು ಮಾರ್ಪಡಿಸಿ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "ಬಳಕೆದಾರನನ್ನು ಅಳಿಸಿಹಾಕಿ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "ಅನುವಾದವನ್ನು ಸೇರಿಸು"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "ಅನುವಾದವನ್ನು ಮಾರ್ಪಡಿಸು"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "ಅನುವಾದವನ್ನು ಅಳಿಸಿಹಾಕು"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸೇರಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸಂಪಾದಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಅಳಿಸಿಹಾಕು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಬದಲಾಯಿಸಲಾದ ಹಾಗು ಎಲ್ಲಾ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "ಹೊಸ ಪಾಲಿಸಿ ಡೊಮೈನ್‌ ಅನ್ನು ಉತ್ಪಾದಿಸು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "ಪಾಲಿಸಿ ಡೊಮೈನ್‌ ಅನ್ನು ಲೋಡ್ ಮಾಡು"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "ಲೋಡ್ ಮಾಡಬಹುದಾದ ಪಾಲಿಸಿಯ ಡೊಮೈನ್‌ಅನ್ನು ತೆಗೆದುಹಾಕು"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
--#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"ದಾಖಲೆ ಕಡತಗಳಲ್ಲಿ ಸಾಮಾನ್ಯವಾಗಿ ವರದಿ ಮಾಡದೆ ಇರುವ ಹೆಚ್ಚುವರಿ ಆಡಿಟ್ ನಿಯಮಗಳನ್ನು ಶಕ್ತ/"
-+"ಅಶಕ್ತಗೊಳಿಸು."
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "ಮಿತಿಗೊಳಪಡದವನ್ನು dyntrans ಗೆ unconfined_execmem ಮಾಡಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "Databases"
--#~ msgstr "ದತ್ತಸಂಚಯಗಳು"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "ಪ್ರಕ್ರಿಯೆಯ ಕ್ರಮವನ್ನು ಅನುಮತಿಪೂರ್ವಕಕ್ಕೆ ಬದಲಾಯಿಸು."
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "ಬಳಕೆದಾರನಿಗೆ mysql ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "ಪ್ರಕ್ರಿಯೆಯ ಕ್ರಮವನ್ನು ಒತ್ತಾಯಪೂರ್ವಕಕ್ಕೆ ಬದಲಾಯಿಸು"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "ಬಳಕೆದಾರನಿಗೆ postgres ಸಾಕೆಟ್ಟಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಅನುಮತಿಸು"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "ಪ್ರಕ್ರಿಯೆಯ ಡೊಮೈನ್"
--#~ msgid "XServer"
--#~ msgstr "Xಪರಿಚಾರಕ"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "ಕ್ಲೈಂಟುಗಳಿಗೆ X ಹಂಚಿಕಾ ಮೆಮೊರಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸಲು"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux ಬಳಕೆದಾರ '%s' ನ ಅಗತ್ಯವಿದೆ"
- #, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux ಬಳಕೆದಾರ ಖಾತೆಗಳಿಗೆ ಅವುಗಳ ನೆಲೆ ಕೋಶದಲ್ಲಿ ಅಥವ /tmp ದಲ್ಲಿ "
--#~ "ಕಡತಗಳನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
++msgstr ""
+diff --git a/policycoreutils/po/ku.po b/policycoreutils/po/ku.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/ku.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
 -
--#~ msgid "NIS"
--#~ msgstr "NIS"
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
 -
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "ಡೆಮೊನುಳಿಗೆ NIS ನೊಂದಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
 -
--#~ msgid "Web Applications"
--#~ msgstr "ಜಾಲ ಅನ್ವಯಗಳು"
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
 -
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "ಸ್ಟಾಫ್ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
 -
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
 -
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "ಬಳಕೆದಾರ SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
 -
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux ಬಳಕೆದಾರನನ್ನು ಜಾಲ ವೀಕ್ಷಕ ಕ್ಷೇತ್ರಕ್ಕೆ ಪರಿವರ್ತಿಸು"
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
 -
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "ಸ್ಟಾಫ್ ಜಾಲ ವೀಕ್ಷಕರಿಗೆ ನೆಲೆ ಕಡತಕೋಶಗಳಿಗೆ ಬರೆಯಲು ಅನುಮತಿಸು"
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "audit ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Cluster ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "cdrecord ಗೆ ಹಲವಾರು ವಿಷಯವನ್ನು ಓದಲು ಅನುಮತಿಸು. nfs, samba, ತೆಗೆದುಹಾಕಬಹುದಾದ "
--#~ "ಸಾಧನಗಳು, ಬಳಕೆದಾರ temp ಹಾಗು ನಂಬಲರ್ಹವಲ್ಲದ ವಿಷಯವನ್ನು ಹೊಂದಿರುವ ಕಡತಗಳು"
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
 -
--#~ msgid "Cron"
--#~ msgstr "Cron"
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
 -
--#~ msgid "Printing"
--#~ msgstr "ಮುದ್ರಣ"
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd back end ಪರಿಚಾರಕಕ್ಕಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cup_Ipd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
 -
--#~ msgid "CVS"
--#~ msgstr "CVS"
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "bdusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
 -
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t ಗೆ ನೇರವಾಗಿ ಡೆಮೋನುಗಳನ್ನು ಆರಂಭಿಸಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ಇವಲೂಶನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
 -
--#~ msgid "Games"
--#~ msgstr "ಆಟಗಳು"
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "ಆಟಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "ಜಾಲ ವೀಕ್ಷಕಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "ಥಂಡರ್-ಬರ್ಡಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
 -
--#~ msgid "NFS"
--#~ msgstr "NFS"
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
 -
--#~ msgid "Compatibility"
--#~ msgstr "ಸಹರ್ತನೀಯತೆ"
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr "ತುಂಡರಿಸಲ್ಪಟ್ಟ ಆದರೆ ಸುರಕ್ಷತೆಯ ದೃಷ್ಟಿಯಲ್ಲಿ ಅಪಾಯಕಾರಿಯಲ್ಲವುಗಳನ್ನು ಆಡಿಟ್ ಮಾಡಬೇಡ"
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
 -
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD ಸೇವೆ"
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd child ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
 -
--#~ msgid "Kerberos"
--#~ msgstr "ಕರ್ಬರೋಸ್"
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk ಡೆಮೋನುಗಳಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
 -
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಇವಲೂಶನ್ ಹಾಗು ಥಂಡರ್-ಬರ್ಡ್ ಓದಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
 -
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "ಬಳಕೆದಾರ ಕಡತಗಳನ್ನು ಓದಲು ಮೊಝಿಲ್ಲಾ ವೀಕ್ಷಕಕ್ಕೆ ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Dmrtg ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
 -
--#~ msgid "Name Service"
--#~ msgstr "ಹೆಸರು ಸೇವೆ"
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
 -
--#~ msgid "Samba"
--#~ msgstr "ಸಾಂಬಾ"
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Dnsd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "pppd"
--#~ msgstr "pppd"
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
 -
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "ಒಬ್ಬ ಸಾಮಾನ್ಯ ಬಳಕೆದಾರನಿಗೆ ಚಲಾಯಿತವಾಗುವಂತೆ pppd ಗೆ ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
 -
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "ಸ್ಟಾಂಡರ್ಡ್‌ ಅಲ್ಲದ ಸ್ಥಳಗಳಿಂದ (default_t) ಕಡತಗಳನ್ನು ಓದಲು ಪ್ರೋಗ್ರಾಂಗೆ ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
 -
--#~ msgid "rsync"
--#~ msgstr "rsync"
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
 -
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh ಗೆ ಒಂದು ಡೆಮೋನಿನ ಬದಲಿಗೆ inetd ಯಿಂದ ಚಲಾಯಿತವಾಗುವಂತೆ ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
 -
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "ಸಾಂಬಾಗೆ nfs ಕಡತಕೋಶಗಳನ್ನು ಹಂಚಿಕೆ ಮಾಡಿಕೊಳ್ಳುವಂತೆ ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
 -
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL ದೃಢೀಕರಣ ಪರಿಚಾರಕ"
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
 -
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl ದೃಢೀಕರಣ ಪರಿಚಾರಕಕ್ಕೆ /etc/shadow ಅನ್ನು ಓದಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "X-Windows ಪರಿಚಾರಕವು ಒಂದು ಮೆಮೊರಿ ಪ್ರದೇಶಕ್ಕೆ ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ ಹಾಗು ಬರೆಯಬಲ್ಲುದಾಗಿ "
--#~ "ಮ್ಯಾಪ್ ಮಾಡಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
 -
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr ""
--#~ "sysadm_t, sudo ಹಾಗು su ಪ್ರಭಾವಗೊಂಡಿದ್ದಕ್ಕೆ ಪರಿವರ್ತಿತಗೊಳ್ಳುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
 -
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "ಯಾವುದೆ ಪ್ರಕ್ರಿಯೆಗಳು ಕರ್ನಲ್ ಘಟಕಗಳಿಗೆ ಲೋಡ್ ಆಗುವುದನ್ನು ಅನುಮತಿಸಬೇಡ"
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
 -
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "ಕರ್ನಲ್ SELinux ನೀತಿಯನ್ನು ಮಾರ್ಪಡಿಸಲು ಯಾವುದೇ ಪ್ರಕ್ರಿಯೆಗಳಿಗೆ ಅನುಮತಿಸಬೇಡ"
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroublesoot ಡೆಮನ್‍ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
 -
--#~ msgid "Spam Protection"
--#~ msgstr "Spamನಿಂದ ಸಂರಕ್ಷಣೆ"
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
 -
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
 -
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam assasin ಡೆಮನ್‍ಗೆ ಜಾಲಬಂಧವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
 -
--#~ msgid "Squid"
--#~ msgstr "Squid"
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
 -
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid ಡೆಮೋನಿಗೆ ಜಾಲಬಂಧವನ್ನು ಸಂಪರ್ಕಿಸಲು ಅನುಮತಿಸಲು"
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
 -
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "sysadm_r:sysadm_t ಆಗಿ ssh ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "staff_r ಬಳಕೆದಾರರಿಗೆ sysadm ನ ನೆಲೆ dir ಹಾಗು ಕಡತಗಳನ್ನು ಓದಲು ಅನುಮತಿಸು (~/."
--#~ "bashrc ನಂತಹ)"
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
 -
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "ವಿಶ್ವವ್ಯಾಪಿ SSL ಟನ್ನಲ್"
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
 -
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "stunnel ಡೆಮನ್ ಅನ್ನು xinetd ದ ಹೊರಗೆ ಏಕಮೇವವಾಗಿ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು "
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "ಗಣಕ cron ಕಾರ್ಯಗಳಿಗಾಗಿ(jobs) SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "ಒಂದು ಕ್ಷೇತ್ರ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಯಾವುದೆ ಸೇವೆಗಳನ್ನು ಒಳಗೊಂಡಂತಹ xinetd "
--#~ "ಯನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸಿ"
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "ಒಂದು ಕ್ಷೇತ್ರ ಪರಿವರ್ತನೆಯನ್ನು ಸ್ಪಷ್ಟವಾಗಿ ಸೂಚಿಸದ ಒಂದು rc ಸ್ಕ್ರಿಪ್ಟ್‍ನಿಂದ ಆರಂಭಗೊಂಡ "
--#~ "ಯಾವುದೆ ಡೆಮನ್ ಅನ್ನು ಒಳಗೊಂಡಂತಹ rc ಸ್ಕ್ರಿಪ್ಟ್‍ ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು "
--#~ "ಅನುಮತಿಸಿ"
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
 -
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm ಅನ್ನು ಮಿತಿಗೊಳಪಡದೆ ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
 -
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "ಸವಲತ್ತು ಉಪಯುಕ್ತತೆಗಳಾದ hotplug ಹಾಗು insmod ನಂತಹುಗಳನ್ನು ಮಿತಿಗೊಳಪಡದೆ "
--#~ "ಚಲಾಯಿತಗೊಳ್ಳಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r ಗೆ su ನ ಮೂಲಕ sysadm_r, sudo, ಅಥವ userhelper ಅನ್ನು ತಲುಪಲು ಅನುಮತಿಸಿ. "
--#~ "ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ, ಕೇವಲ staff_r ಹಾಗೆ ಮಾಡುತ್ತದೆ"
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
 -
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "ಬಳಕೆದಾರರಿಗೆ ಆರೋಹಿಸು ಆಜ್ಞೆಯನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
 -
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ನೇರ ಮೌಸಿನ ನಿಲುಕಣೆಯನ್ನು ಅನುಮತಿಸು(ಕೇವಲ X ಪರಿಚಾರಕವನ್ನು ಮಾತ್ರ "
--#~ "ಅನುಮತಿಸು)"
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
 -
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "dmesg ಆಜ್ಞೆಯನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
 -
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "ಬಳಕೆದಾರರಿಗೆ ಜಾಲಬಂಧ ಸಂಪರ್ಕಸಾಧನಗಳನ್ನು ನಿಯಂತ್ರಿಸಲು ಅನುಮತಿಸು(USERCTL=true ನ "
--#~ "ಅಗತ್ಯವು ಸಹ ಇರುತ್ತದೆ)"
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
 -
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "ಸಾಮಾನ್ಯ ಬಳಕೆದಾರರಿಗೆ ಪಿಂಗ್ ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
 -
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "ಬಳಕೆದಾರನನ್ನು r/w noextattrfile (FAT, CDROM, FLOPPY) ಗೆ ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
 -
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "rw usb ಸಾಧನಗಳಿಗೆ ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "ಬಳಕೆದಾರರಿಗೆ TCP ಪರಿಚಾರಕಗಳನ್ನು ಚಲಾಯಿಸಲು ಅನುಮತಿಸು (ಸಂಪರ್ಕಸ್ಥಾನಗಳಿಗೆ ಬೈಂಡ್ ಮಾಡಿ "
--#~ "ಹಾಗು ಅದೆ ಕ್ಷೇತ್ರದಿಂದ ಹಾಗು ಬಳಕೆದಾರರ ಹೊರಗಿನ ಸಂಪರ್ಕಗಳನ್ನು ಅನುಮತಿಸು).  ಇದನ್ನು "
--#~ "ಅಶಕ್ತಗೊಳಿಸುವುದರಿಂದ ಅದುFTP ಜಡ ಕ್ರಮಕ್ಕೆ ಒತ್ತಾಯಿಸುತ್ತದೆ ಹಾಗು ಇತರೆ ಪ್ರೊಟೋಕಾಲ್‍ಗಳನ್ನು "
--#~ "ಸಹ ಬದಲಾಯಿಸಬಹುದು"
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
 -
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ಬಳಕೆದಾರರಿಗೆ ttyfiles ಅನ್ನು stat ಮಾಡಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
 -
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm ಪ್ರವೇಶಗಳನ್ನು sysadm_r:sysadm_t ಆಗಿ ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
 -
--#~ msgid "XEN"
--#~ msgstr "XEN"
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
 -
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen ಗೆ ಭೌತಿಕ ಡಿಸ್ಕ್ ಸಾಧನಗಳನ್ನು ಓದಲು/ಬರೆಯಲು ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen constrol ಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS ಗುಪ್ತಪದ ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS ವರ್ಗಾವಣಾ ಡೆಮೋನಿಗಾಗಿ SELinux ಸಂರಕ್ಷಣೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು"
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ನಿರ್ವಹಿಸಲು SELinux webadm "
--#~ "ಬಳಕೆದಾರನಿಗೆ ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "ಸವಲತ್ತುಗಳಿಲ್ಲದ ಬಳಕೆದಾರರ ನೆಲೆ ಕಡತಕೋಶಗಳನ್ನು ಓದಲು SELinux webadm ಬಳಕೆದಾರನಿಗೆ "
--#~ "ಅನುಮತಿಸು"
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
 -
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "%s '%s' ಅನ್ನು ಅಳಿಸಿಹಾಕಬೇಕೆಂದು ನೀವು ಖಚಿತವೆ?"
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
 -
--#~ msgid "Delete %s"
--#~ msgstr "%s ಅನ್ನು ಅಳಿಸಿಹಾಕು"
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
 -
--#~ msgid "Add %s"
--#~ msgstr "%s ಅನ್ನು ಸೇರಿಸು"
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
 -
--#~ msgid "Modify %s"
--#~ msgstr "%s ಮಾರ್ಪಡಿಸು"
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
 -
--#~ msgid "Permissive"
--#~ msgstr "ಅನುಮತಿಪೂರ್ವಕವಾಗಿ"
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
 -
--#~ msgid "Enforcing"
--#~ msgstr "ಒತ್ತಾಯಪೂರ್ವಕ"
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
 -
--#~ msgid "Disabled"
--#~ msgstr "ಅಶಕ್ತಗೊಂಡ"
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
 -
--#~ msgid "Status"
--#~ msgstr "ಸ್ಥಿತಿ"
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "ನೀತಿಯ ಪ್ರಕಾರವನ್ನು ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಲೇಬಲ್ "
--#~ "ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
--#~ "ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux ಅಶಕ್ತಗೊಂಡಿದ್ದಕ್ಕೆ ಬದಲಾಯಿಸಲು ಪುನರ್ ಬೂಟಿಸುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ಹಾಗೆ "
--#~ "ಮಾಡುವುದು ಸೂಕ್ತವಲ್ಲ.   ನೀವು ನಂತರ SELinux ಅನ್ನು ಪುನಃ ಆನ್ ಮಾಡಲು ನಿರ್ಧರಿಸಿದಾಗ, "
--#~ "ಗಣಕವನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ.  ನೀವು ಕೇವಲ SELinux ನಿಮ್ಮ ಗಣಕದಲ್ಲಿನ "
--#~ "ಒಂದು ತೊಂದರೆಗೆ ಕಾರಣವಾಗಿದೆಯೆ ಎಂದು ನೋಡಲು, ಅನುಮತಿಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಹೋಗಿ ಅದು ಕೇವಲ "
--#~ "ದೋಷಗಳನ್ನು ದಾಖಲಿಸುತ್ತದೆಯೆ ಹೊರತು SELinux ನೀತಿಯನ್ನು ಒತ್ತಾಯಿಸುವುದಿಲ್ಲ.  "
--#~ "ಅನುಮತಿಪೂರ್ವಕ ಕ್ರಮಕ್ಕೆ ಒಂದು ಪುನರ್ ಬೂಟಿನ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ    ನೀವು ಮುಂದುವರೆಯಲು "
--#~ "ಬಯಸುತ್ತೀರೆ?"
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux ಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಗೆ ಬದಲಾಯಿಸುವುದರಿಂದ ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು "
--#~ "ಲೇಬಲ್ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ಕಡತ ವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ "
--#~ "ಸಮಯ ಹಿಡಿಯುತ್ತದೆ.  ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
 -
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "ಕೃತಿಸ್ವಾಮ್ಯ (c)2006 Red Hat, Inc.\n"
--#~ "ಕೃತಿಸ್ವಾಮ್ಯ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
 -
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux ಪ್ರವೇಶ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
 -
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನಗಳನ್ನು ಸೇರಿಸು"
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
 -
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux ನ ಬಗೆ"
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
 -
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "ಮಟ್ಟ"
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
 -
--#~ msgid "File Specification"
--#~ msgstr "ಕಡತದ ವಿಶಿಷ್ಟ ವಿವರಗಳು"
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
 -
--#~ msgid "File Type"
--#~ msgstr "ಕಡತದ ಬಗೆ"
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
 -
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "ಎಲ್ಲಾ ಕಡತಗಳು\n"
--#~ "ಸಾಮಾನ್ಯ ಕಡತ\n"
--#~ "ಕಡತಕೋಶ\n"
--#~ "ವೈಶಿಷ್ಟ್ಯ ಸಾಧನ\n"
--#~ "ಬ್ಲಾಕ್(block) ಸಾಧನ\n"
--#~ "ಸಾಕೆಟ್\n"
--#~ "ಸಾಂಕೇತಿಕ ಕೊಂಡಿ\n"
--#~ "ಹೆಸರಿಸಲಾದ ಪೈಪ್\n"
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
 -
--#~ msgid "MLS"
--#~ msgstr "MLS"
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
 -
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸು"
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
 -
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux ನಿರ್ವಹಣೆ"
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
 -
--#~ msgid "Add"
--#~ msgstr "ಸೇರಿಸು"
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
 -
--#~ msgid "_Properties"
--#~ msgstr "ಗುಣಲಕ್ಷಣಗಳು(_P)"
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
 -
--#~ msgid "_Delete"
--#~ msgstr "ಅಳಿಸಿಹಾಕು(_D)"
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
 -
--#~ msgid "Select Management Object"
--#~ msgstr "ನಿರ್ವಹಣಾ ವಸ್ತುವನ್ನು ಆರಿಸು"
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
 -
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>ಆರಿಸು:</b>"
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
 -
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
 -
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "ಪ್ರಸಕ್ತ ಒತ್ತಾಯಪೂರ್ವಕ ಕ್ರಮ"
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
 -
--#~ msgid "System Default Policy Type: "
--#~ msgstr "ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತ ನೀತಿಯ ಬಗೆ: "
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಇಡಿ ಕಡತವ್ಯವಸ್ಥೆಯನ್ನು ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ನೀವು ಬಯಸಿದರೆ ಇದನ್ನು "
--#~ "ಆರಿಸಿ.  ಗಣಕದ ಗಾತ್ರಕ್ಕೆ ಅನುಗುಣವಾಗಿ, ಪುನಃ ಲೇಬಲ್ ಮಾಡಲು ಬಹಳ ಸಮಯ "
--#~ "ತೆಗೆದುಕೊಳ್ಳಬಹುದು.  ನೀತಿಯ ಬಗೆಗಳನ್ನು ಬದಲಾಯಿಸುವಂತಿದ್ದರೆ ಅಥವ ಅಶಕ್ತಗೊಂಡ ಸ್ಥಿತಿಯಿಂದ "
--#~ "ಒತ್ತಾಯಪೂರ್ವಕಕ್ಕೆ ಹೋಗುವಂತಿದ್ದರೆ, ಒಂದು ಪುನಃ ಲೇಬಲ್ ಮಾಡುವ ಅಗತ್ಯವಿದೆ."
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
 -
--#~ msgid "Relabel on next reboot."
--#~ msgstr "ಮುಂದಿನ ಬೂಟಿನಲ್ಲಿ ಪುನರ್ ಲೇಬಲ್ ಮಾಡು."
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
 -
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "ಬೂಲಿಯನ್ ಸಂಯೋಜನೆಯನ್ನು ಗಣಕ ಪೂರ್ವನಿಯೋಜಿತಕ್ಕೆ ಮರಳಿಸು"
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/lo.po b/policycoreutils/po/lo.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/lo.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
 -
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಹಾಗು ಎಲ್ಲಾ ಬೂಲಿಯನ್‍ಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
 -
--#~ msgid "Filter"
--#~ msgstr "ಶೋಧಕ(Filter)"
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
 -
--#~ msgid "Add File Context"
--#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಸೇರಿಸು"
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
 -
--#~ msgid "Modify File Context"
--#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಮಾರ್ಪಡಿಸು"
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
 -
--#~ msgid "Delete File Context"
--#~ msgstr "ಕಡತ ಸನ್ನಿವೇಶವನ್ನು ಅಳಿಸಿಹಾಕು"
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
 -
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "ಎಲ್ಲಾ ಹಾಗು ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಕಡತ ಸನ್ನಿವೇಶಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
 -
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಸೇರಿಸು"
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
 -
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಮಾರ್ಪಡಿಸು"
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
 -
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux ಬಳಕೆದಾರ ಮ್ಯಾಪಿಂಗನ್ನು ಅಳಿಸು"
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
 -
--#~ msgid "Add Translation"
--#~ msgstr "ಅನುವಾದವನ್ನು ಸೇರಿಸು"
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
 -
--#~ msgid "Modify Translation"
--#~ msgstr "ಅನುವಾದವನ್ನು ಮಾರ್ಪಡಿಸು"
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
 -
--#~ msgid "Delete Translation"
--#~ msgstr "ಅನುವಾದವನ್ನು ಅಳಿಸಿಹಾಕು"
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
 -
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux ಬಳಕೆದಾರನನ್ನು ಸಂಪಾದಿಸು"
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "ಸಂವೇದನೆಯ ಮಟ್ಟ (Sensitvity Level)"
--#~ msgid "Add Network Port"
--#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸೇರಿಸು"
-+#~ msgid "Modules Name"
-+#~ msgstr "ಮಾಡ್ಯೂಲಿನ ಹೆಸರು"
--#~ msgid "Edit Network Port"
--#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಸಂಪಾದಿಸು"
-+#~ msgid "Could not disable module %s (remove failed)"
-+#~ msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲ್ ಅನ್ನು ಅಶಕ್ತಗೊಳಿಸಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
--#~ msgid "Delete Network Port"
--#~ msgstr "ಜಾಲಬಂಧ ಸಂಪರ್ಕಸ್ಥಾನವನ್ನು ಅಳಿಸಿಹಾಕು"
-+#~ msgid "Could not enable module %s (remove failed)"
-+#~ msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲನ್ನು ಶಕ್ತಗೊಳಿಸಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "ಕಸ್ಟಮೈಝ್ ಮಾಡಲಾದ ಹಾಗು ಎಲ್ಲಾ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ನಡುವೆ ಟಾಗಲ್ ಮಾಡು"
-+#~ msgid "Could not remove module %s (remove failed)"
-+#~ msgstr "%s ಎಂಬ ಮಾಡ್ಯೂಲನ್ನು ತೆಗೆದುಹಾಕಲಾಗಲಿಲ್ಲ (ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ವಿಫಲತೆ)"
--#~ msgid "Generate new policy module"
--#~ msgstr "ಹೊಸ ನೀತಿ ಘಟಕವನ್ನು ಉತ್ಪಾದಿಸು"
-+#~ msgid "dontaudit requires either 'on' or 'off'"
-+#~ msgstr "dontaudit ಗೆ 'on' ಅಥವ 'off' ಇವೆರಡರಲ್ಲಿ ಯಾವುದಾದರೂ ಒಂದರ ಅಗತ್ಯವಿದೆ"
--#~ msgid "Load policy module"
--#~ msgstr "ನೀತಿ ಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡು"
-+#~ msgid "Equivalence class for %s already exists"
-+#~ msgstr "%s ಕ್ಕೆ ಸಮನಾದ ವರ್ಗವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ಲೋಡ್ ಮಾಡಬಹುದಾದ ನೀತಿಯ ಘಟಕವನ್ನು ತೆಗೆದುಹಾಕು"
-+#~ msgid "Equivalence class for %s does not exists"
-+#~ msgstr "%s ಕ್ಕೆ ಸಮನಾದ ವರ್ಗವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
- #~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
-+#~ "\n"
-+#~ "SELinux fcontext Equivalence \n"
- #~ msgstr ""
--#~ "ದಾಖಲೆ ಕಡತಗಳಲ್ಲಿ ಸಾಮಾನ್ಯವಾಗಿ ವರದಿ ಮಾಡದೆ ಇರುವ ಹೆಚ್ಚುವರಿ ಆಡಿಟ್ ನಿಯಮಗಳನ್ನು ಶಕ್ತ/"
--#~ "ಅಶಕ್ತಗೊಳಿಸು."
-+#~ "\n"
-+#~ "SELinux fcontext ಗೆ ಸಮನಾದ\n"
--#~ msgid "Sensitvity Level"
--#~ msgstr "ಸಂವೇದನೆಯ ಮಟ್ಟ (Sensitvity Level)"
-+#~ msgid "Internet Services Daemon"
-+#~ msgstr "ಜಾಲಬಂಧ ಸೇವೆಗಳ ಡೀಮನ್"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux ಬಳಕೆದಾರ '%s' ನ ಅಗತ್ಯವಿದೆ"
-+#~ msgid "use_kerberos must be a boolean value "
-+#~ msgstr "use_kerberos ವು ಒಂದು ಬೂಲಿಯನ್ ಮೌಲ್ಯವಾಗಿರಬೇಕು "
--#~ msgid "Requires value"
--#~ msgstr "ಮೌಲ್ಯದ ಅಗತ್ಯವಿದೆ"
-+#~ msgid "manage_krb5_rcache must be a boolean value "
-+#~ msgstr "manage_krb5_rcache ವು ಒಂದು ಬೂಲಿಯನ್ ಮೌಲ್ಯವಾಗಿರಬೇಕು "
- #~ msgid ""
- #~ "\n"
-+#~ "%s\n"
- #~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
-+#~ "polgen [ -m ] [ -t type ] executable\n"
-+#~ "valid Types:\n"
- #~ msgstr ""
- #~ "\n"
-+#~ "%s\n"
- #~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
 -
--#~ msgid "Invalid prefix %s"
--#~ msgstr "ಅಮಾನ್ಯ ಪೂರ್ವಪ್ರತ್ಯಯ %s"
-+#~ "polgen [ -m ] [ -t type ] ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲ\n"
-+#~ "ಮಾನ್ಯವಾದ ಬಗೆಗಳು:\n"
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳಿಗೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು > ೧೦೨೪"
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
 -
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "ಮಿತಿಗೊಳಪಟ್ಟ ಅನ್ವಯ/ಬಳಕೆದಾರನನ್ನು ಯಾವುದೆ tcp ಸಂಪರ್ಕ ಸ್ಥಾನಕ್ಕೆ ಬದ್ಧವಾಗಿರಲು ಅನುಮತಿಸು"
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ಅನ್ವಯ/ಬಳಕೆದಾರ ಪಾತ್ರವು ಬದ್ಧವಾಗಿರುವ tcp ಸಂಪರ್ಕಸ್ಥಾನಗಳು ಅಥವ ಸಂಪರ್ಕಸ್ಥಾನಗಳ ವ್ಯಾಪ್ತಿಗಳ "
--#~ "ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಗಳಿಂದ ಪ್ರತ್ಯೇಕಿಸಲಾದ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. ಉದಾಹರಣೆಗೆ: 612, 650-660"
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
 -
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux ನೀತಿ ಉತ್ಪಾದನಾ ಮಾಂತ್ರಿಕ(Druid)"
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
 -
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "ಕಾದಿರಿಸದ ಸಂಪರ್ಕಸ್ಥಾನಗಳು  (> ೧೦೨೪)"
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
 -
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "ನಿಮ್ಮ ಅನ್ವಯವು ೦ ಯೊಂದಿಗೆ bindresvport ಅನ್ನು ಕರೆಮಾಡಿದರೆ ಈ ಗುಂಡಿಯನ್ನು ಬಳಸಿ."
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "ಒತ್ತಾಯಪೂರ್ವಕ\n"
--#~ "ಅನುಮತಿಪೂರ್ವಕ\n"
--#~ "ಅಶಕ್ತಗೊಂಡ\n"
-+#~ msgid "Executable required"
-+#~ msgstr "ಕಾರ್ಯಗತಗೊಳಿಸಬಲ್ಲದರ ಅಗತ್ಯವಿದೆ"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ko.po policycoreutils-2.0.85/po/ko.po
---- nsapolicycoreutils/po/ko.po        2011-02-17 15:11:25.492728806 -0500
-+++ policycoreutils-2.0.85/po/ko.po    2011-02-18 16:03:41.382975840 -0500
-@@ -1,20 +1,42 @@
--# translation of ko.po to Korean
--# Eunju Kim <eukim@redhat.com>, 2006, 2007.
-+# translation of policycoreutils.ko.ko.ko.po to Korean
-+# Eunju Kim <eukim@redhat.com>, 2006, 2007, 2009.
-+# Hyunsok Oh <hoh@redhat.com>, 2010.
- # translation of ko.po to
- # translation of ko.po to
- # translation of ko.po to
- msgid ""
- msgstr ""
--"Project-Id-Version: ko\n"
-+"Project-Id-Version: policycoreutils.ko.ko.ko\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-09-25 17:04+1000\n"
--"Last-Translator: Eunju Kim <eukim@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-03 16:41+1000\n"
-+"Last-Translator: Hyunsok Oh <hoh@redhat.com>\n"
- "Language-Team: Korean <ko@li.org>\n"
-+"Language: ko\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms:  nplurals=1; plural=0;\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux를 그래픽 사용자 인터페이스로 설정"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux 관리"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux 정책 모듈 생성"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux 정책 생성 도구"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -105,815 +127,815 @@
- msgstr "semanage 연결을 설정할 수 없습니다"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s 에 대한 MLS 범위를 설정할 수 없습니다"
-+msgstr "MLS가 활성화된 상태를 테스트할 수 없습니다 "
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
 -msgstr ""
-+msgstr "글로벌 "
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s를 열 수 없습니다: 번역은 MLS가 아닌 장치에서 지원되지 않습니다"
-+msgstr "%s를 열수 없습니다: MLS 기계가 아닌 경우 변환을 지원하지 않습니다: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "레벨"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr "번역"
-+msgstr "변환"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "번역에는 공백 '%s'이(가) 포함될 수 없습니다 "
-+msgstr "변환 내용은 공백을 포함할 수 없습니다 '%s' "
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr "유효하지 않은 레벨 '%s'"
-+msgstr "잘못된 레벨 '%s' "
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s은(는) 번역에서 이미 정의되었습니다"
-+msgstr "%s가 이미 변환 목록에 있습니다"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s은(는) 번역에서 정의되지 않았습니다"
-+msgstr "%s가 변환목록에 없습니다"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
 -msgstr ""
-+msgstr "아직 구현되지 않았습니다 "
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Semanage 트랜잭션이 이미 진행중입니다"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage 트랜잭션을 시작할 수 없습니다"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage 트랜잭션을 시작할 수 없습니다"
-+msgstr "semanage 트랜잭션을 커밋할 수 없습니다 "
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
 -msgstr ""
-+msgstr "Semanage 트랜잭션이 진행중이 아닙니다"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux 사용자 목록을 만들수 없습니다"
-+msgstr "SELinux 모듈 목록을 만들수 없습니다 "
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
 -msgstr ""
-+msgstr "허용 유형 "
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "%s 허용 도메인을 설정할 수없습니다 (모듈 설치 실패) "
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
 -msgstr ""
-+msgstr "%s 허용 도메인을 제거하지 못했습니다 (제거 실패) "
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s에 사용되는 키를 생성할 수 없습니다"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s에 대한 로그인 맵핑이 지정되었는지를 확인할 수 없습니다."
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s에 대한 로그인 맵핑이 이미 지정되었습니다"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux 사용자 %s 가 존재하지 않습니다"
-+msgstr "%s Linux 그룹이 존재하지 않습니다 "
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux 사용자 %s 가 존재하지 않습니다"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s에 대한 로그인 맵핑을 생성할 수 없습니다"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s에 대한 이름을 설정할 수 없습니다"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s 에 대한 MLS 범위를 설정할 수 없습니다"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s에 대한 SELinu 사용자를 설정할 수 없습니다"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s에 대한 로그인 맵핑을 추가할 수 없습니다"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux 사용자 맵핑을 추가합니다"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser 또는 serange 필요"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s에 대한 로그인 맵핑이 지정되지 않았습니다"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s에 대한 seuser를 질의할 수 없습니다"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s에 대한 로그인 맵핑을 수정할 수정할 수 없습니다"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s에 대한 로그인 맵핑이 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s에 대한 로그인 맵핑을 삭제할 수 없습니다"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "로그인 맵핑 목록을 만들 수 없습니다"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "로그인 이름"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux 사용자"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS 범위"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s에 대한 파일 문맥을 추가할 수 없습니다"
-+msgstr "%s에 대해 최소 하나의 역할을 추가해야 합니다 "
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "%s에 대한 SELinux 사용자가 지정되었는지 확인할 수 없습니다"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "%s에 대한 SELinux 사용자가 이미 지정되었습니다"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s에 대한 SELinux 사용자를 생성할 수 없습니다"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s에 대한 %s의 역할을 추가할 수 없습니다"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s에 대한 MLS 레벨을 설정할 수 없습니다"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s에 대한 %s의 접두어를 추가할 수 없습니다"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s에 대한 키를 추출할 수 없습니다"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "%s에 대한 SELinux 사용자를 추가할 수 없습니다"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "접두어, 기능, 레벨 또는 범위 필요"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "접두어 또는 기능 필요"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "%s에 대한 SELinux 사용자가 지정되지 않았습니다"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s에 대한 사용자를 질의할 수 없습니다"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "%s에 대한 SELinux 사용자를 수정할 수 없습니다"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "%s에 대한 SELinux 사용자가 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "%s에 대한 SELinux 사용자를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux 사용자 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "%s 사용자에 대한 역할 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "레이블링"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "접두부"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS 레벨"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS 범위"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux 기능"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "프로토콜 udp 또는 tcp 필요 "
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "포트 필요"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s 에 대한 키를 생성할 수 없습니다"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "유형 필요"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "%s/%s에 대한 포트가 지정되었는지 확인할 수 없습니다 "
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "%s/%s에 대한 포트가 이미 지정되었습니다"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s 에 대한 포트를 생성할 수 없습니다"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s 에 대한 문맥을 생성할 수 없습니다"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s 에 대한 포트 문맥의 사용자를 설정할 수 없습니다"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s 에 대한 포트 문맥의 역할을 설정할 수 없습니다"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s 에 대한 포트 문맥의 유형을 설정할 수 없습니다"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s 에 대한 포트 문맥의 mls 항목을 설정할 수 없습니다"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s 에 대한 포트 문맥을 설정할 수 없습니다"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s 에 대한 포트를 추가할 수 없습니다"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype 또는 serange 필요"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype 필요"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "%s/%s에 대한 포트가 지정되지 않았습니다"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "%s/%s에 대한 포트를 질의할 수 없습니다"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "%s/%s에 대한 포트를 수정할 수 없습니다"
--#: ../semanage/seobject.py:921
--#, fuzzy
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
--msgstr "포트 목록을 만들수 없습니다"
-+msgstr "포트 목록을 만들수 없습니다 "
--#: ../semanage/seobject.py:937
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
-+#, python-format
- msgid "Could not delete the port %s"
--msgstr "%s/%s에 대한 포트를 삭제할 수 없습니다"
-+msgstr "%s 포트를 삭제할 수 없습니다 "
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "%s/%s에 대한 포트가 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "%s/%s에 대한 포트를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "포트 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux 포트 유형"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "Proto"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "포트 번호"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "포트 필요"
-+msgstr "노드 주소 필요  "
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "포트 필요"
-+msgstr "노드 넷마스크 필요 "
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
 -msgstr ""
-+msgstr "알려지지 않거나 또는 생략된 프로토콜 "
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux 유형 필요"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s에 대한 키를 생성할 수 없습니다"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "%s/%s에 대한 포트가 지정되었는지 확인할 수 없습니다 "
-+msgstr "%s 주소가 지정되었는지 확인할 수 없습니다   "
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "%s/%s에 대한 포트가 이미 지정되었습니다"
-+msgstr "%s 주소가 이미 지정되었습니다 "
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s에 사용되는 키를 생성할 수 없습니다"
-+msgstr "%s에 대한 주소를 생성할 수 없습니다  "
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s에 대한 문맥을 생성할 수 없습니다"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s에 대한 이름을 설정할 수 없습니다"
-+msgstr "%s에 대한 마스크를 설정할 수 없습니다 "
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s에 대한 파일 문맥의 사용자를 설정할 수 없습니다"
-+msgstr "%s에 대한 주소 문맥의 사용자를 설정할 수 없습니다  "
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s에 대한 파일 문맥의 역할을 설정할 수 없습니다"
-+msgstr "%s에 대한 주소 문맥의 역할을 설정할 수 없습니다  "
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s에 대한 파일 문맥의 유형을 설정할 수 없습니다"
-+msgstr "%s에 대한 주소 문맥의 유형을 설정할 수 없습니다  "
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s에 대한 파일 문맥의 mls 항목을 설정할 수 없습니다"
-+msgstr "%s에 대한 주소 문맥의 mls 항목을 설정할 수 없습니다  "
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s에 대한 파일 문맥을 설정할 수 없습니다"
-+msgstr "%s에 대한 주소 문맥을 설정할 수 없습니다  "
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s 에 대한 포트를 추가할 수 없습니다"
-+msgstr "%s 주소를 추가할 수 없습니다 "
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "%s/%s에 대한 포트가 지정되지 않았습니다"
-+msgstr "%s 주소가 지정되지 않았습니다 "
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "%s/%s에 대한 포트를 질의할 수 없습니다"
-+msgstr "%s 주소를 질의할 수 없습니다 "
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "%s/%s에 대한 포트를 수정할 수 없습니다"
-+msgstr "%s 주소를 수정할 수 없습니다  "
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "%s/%s에 대한 포트가 정책에 지정되어 있어 이를 삭제할 수 없습니다"
-+msgstr "%s 주소가 정책에 지정되어 있어 이를 삭제할 수 없습니다 "
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s에 대한 인터페이스를 삭제할 수 없습니다"
-+msgstr "%s 주소를 삭제할 수 없습니다 "
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "포트 목록을 만들수 없습니다"
-+msgstr "주소 목록을 만들수 없습니다 "
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "%s에 대한 인터페이스가 지정되었는지 확인할 수 없습니다"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s에 대한 인터페이스가 이미 지정되었습니다"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s에 대한 인터페이스를 생성할 수 없습니다"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s 에 대한 인터페이스 문맥의 사용자를 설정할 수 없습니다"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s 에 대한 인터페이스 문맥의 역할을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s 에 대한 인터페이스 문맥의 유형을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s 에 대한 인터페이스 문맥의 mls 문맥을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s 에 대한 인터페이스 문맥을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s에 대한 메세지 문맥을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s에 대한 인터페이스를 추가할 수 없습니다"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s에 대한 인터페이스가 지정되지 않았습니다"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "%s에 대한 인터페이스를 질의할 수 없습니다"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "%s에 대한 인터페이슬 수정할 수 없습니다"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "%s에 대한 인터페이스가 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "%s에 대한 인터페이스를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "인터페이스 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux 인터페이스"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "문맥"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s에 대한 파일 문맥의 사용자를 설정할 수 없습니다"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s에 대한 파일 문맥의 역할을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s에 대한 파일 문맥의 mls 항목을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
 -msgstr ""
-+msgstr "잘못된 파일 사양 "
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s에 대한 파일 문맥이 지정되었는지 확인할 수 없습니다"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s에 대한 파일 문맥이 이미 지정되었습니다"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s에 대한 파일 문맥을 생성할 수 없습니다"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s에 대한 파일 문맥의 유형을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s에 대한 파일 문맥을 설정할 수 없습니다"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s에 대한 파일 문맥을 추가할 수 없습니다"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange 또는 seuser 필요"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s에 대한 파일 문맥이 저정되지 않았습니다"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s에 대한 파일 문맥을 질의할 수 없습니다"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s에 대한 파일 문맥을 수정할 수 없습니다"
--#: ../semanage/seobject.py:1560
--#, fuzzy
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "파일 문맥 목록을 만들수 없습니다"
-+msgstr "파일 문맥 목록을 만들수 없습니다 "
--#: ../semanage/seobject.py:1574
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
-+#, python-format
- msgid "Could not delete the file context %s"
--msgstr "%s에 대한 파일 문맥을 삭제할 수 없습니다"
-+msgstr "%s 파일 문맥을 삭제할 수 없습니다 "
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s에 대한 파일 문맥이 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s에 대한 파일 문맥을 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "파일 문맥 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "로컬 파일 문맥 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "유형"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "%s에 대한 부울이 지정되었는지 확인할 수 없습니다"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "%s에 대하 부울이 지정되지 않았습니다"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "%s에 대한 파일 문맥을 질의할 수 없습니다"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "반드시 이름을 입력해야 합니다"
-+msgstr "다음의 값 중 하나를 반드시 지정해야 합니다: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "%s에 대한 부울을 삭제할 수 없습니다"
-+msgstr "%s 부울의 활성화값을 설정할 수 없습니다      "
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "%s에 대한 부을을 수정할 수 없습니다"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
 -msgstr ""
-+msgstr "잘못된 형식 %s: 기록 %s "
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "%s에 대한 부울이 정책에 지정되어 있어 이를 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "%s에 대한 부울을 삭제할 수 없습니다"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "부울 목록을 만들수 없습니다"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
 -msgstr ""
-+msgstr "알려지지 않음 "
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
 -msgstr ""
-+msgstr "비활성 "
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
 -msgstr ""
-+msgstr "활성 "
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux 부울"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
 -msgstr ""
-+msgstr "설명 "
- #: ../newrole/newrole.c:198
- #, c-format
-@@ -923,12 +945,12 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
 -msgstr ""
-+msgstr "새 역할: 서비스 이름 설정 해시 테이블 오버플로우\n"
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
 -msgstr ""
-+msgstr "새 역할:  %s:  %lu 행에 오류.\n"
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -951,7 +973,7 @@
- msgstr "환경을 삭제할 수 없습니다\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "기능 초기화 오류, 중지합니다.\n"
-@@ -1067,7 +1089,7 @@
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
 -msgstr ""
-+msgstr "오류: 비보안 터미널에서 레벨을 변경하는 것을 허용하지 않습니다 \n"
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1135,9 +1157,9 @@
- msgstr "오래된 문맥를 갖는데 실패했습니다.\n"
- #: ../newrole/newrole.c:1140
--#, fuzzy, c-format
-+#, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "오류! tty 정보를 검색할 수 없습니다.\n"
-+msgstr "경고! tty 정보를 검색할 수 없습니다.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
-@@ -1184,19 +1206,19 @@
- msgstr "쉘을 실행하는데 실패하였습니다\n"
- #: ../load_policy/load_policy.c:22
--#, fuzzy, c-format
-+#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "사용법:  %s [-q]\n"
-+msgstr "사용법:  %s [-qi]\n"
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
-+msgstr "%s:  정책을 이미 읽어왔습니다 초기 설정이 필요합니다\n"
- #: ../load_policy/load_policy.c:80
--#, fuzzy, c-format
-+#, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:  정책을 읽어올 수 없습니다:  %s\n"
-+msgstr "%s:  정책을 읽어올 수 없습니다 강제 모드가 필요합니다:  %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1287,287 +1309,2210 @@
- msgid "Options Error %s "
- msgstr "옵션 오류 %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "번역은 MLS가 아닌 장치에서 지원되지 않습니다"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "부울"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "전체 "
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "사용자 설정 "
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "파일 레이블링"
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"파일\n"
-+"사양 "
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"파일 유형 "
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"파일\n"
-+"유형"
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "사용자 맵핑"
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"로그인\n"
-+"이름"
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"사용자"
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS 범위"
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "'%s' 로그인해야 합니다"
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "정책 모듈"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "모듈 이름"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "버전"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "감사 (Audit) 비활성  "
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "감사 (Audit) 활성 "
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "정책 모듈 읽어오기"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"김은주 <eukim@redhat.com>, 2006, 2007\n"
-+"오현석 <hoh@redhat.com>, 2010"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"이 도구는 SELinux를 사용하여 애플리케이션이나 사용자를 제한하는 정책 프레임워"
-+"크를 생성하는데 사용할 수 있습니다.   \n"
-+"\n"
-+"두구는 다음을 생성합니다:\n"
-+"유형 강제 파일 (te)\n"
-+"인터페이스 파일 (if)\n"
-+"파일 문맥 파일 (fc)\n"
-+"쉘 스크립트 (sh) - 정책을 컴파일하고 설치하는데 사용 "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "제한할 애플리케이션/사용자 역할 유형을 선택합니다 "
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>애플리케이션</b> "
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"표준 Init 데몬은 init 스크립트를 통해 부팅시 시작되는 데몬입니다. 보통 /etc/"
-+"rc.d/init.d에 있는 스크립트가 필요합니다 "
--#~ msgid "Boolean"
--#~ msgstr "부울"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "표준 Init 데몬 "
--#~ msgid "File Labeling"
--#~ msgstr "파일 레이블링"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS 시스템 데몬 "
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/lt.po b/policycoreutils/po/lt.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/lt.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
 -#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "파일 문맥"
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "인터넷 서비스 데몬은 xinetd에 의해 시작되는 데몬입니다 "
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "파일\n"
--#~ "유형"
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "인터넷 서비스 데몬 (inetd)"
--#~ msgid "User Mapping"
--#~ msgstr "사용자 맵핑"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"웹 애플리케이션/스크립트 (CGI) CGI 스크립트는 웹 서버 (apache)에 의해 시작됩"
-+"니다  "
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "로그인\n"
--#~ "이름"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "웹 애플리케이션/스크립트 (CGI) "
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "사용자"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"사용자 응용 프로그램은 사용자에 의해 시작되는 것을 제한하기 위한 애플리케이션"
-+"입니다 "
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS 범위"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "사용자 응용 프로그램 "
--#~ msgid "Login '%s' is required"
--#~ msgstr "'%s' 로그인해야 합니다"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>로그인 사용자</b> "
--#~ msgid "Policy Module"
--#~ msgstr "정책 모듈"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "기존 로그인 사용자 기록을 수정합니다. "
--#~ msgid "Module Name"
--#~ msgstr "모듈 이름"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "기존 사용자 역할 "
--#~ msgid "Version"
--#~ msgstr "버전"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"이 사용자는 터미널이나 원격 로그인을 통해 컴퓨터에 로그인하게 됩니다. 기본값"
-+"으로 이 사용자는 setuid, networking, su, sudo를 갖지 않게 됩니다. "
--#~ msgid "Load Policy Module"
--#~ msgstr "정책 모듈 읽어오기"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "최소한의 터미널 사용자 역할 "
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"이 사용자는 X 또는 터미널을 통해 컴퓨터에 로그인할 수 있습니다. 기본값으로 "
-+"이 사용자는 setuid, networking, sudo, su를 갖지 않게 됩니다 "
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "최소한의 X 윈도우 사용자 역할 "
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"트랜젝션 없는 setuid 애플리케이션, sudo, su가 없고 완전한 네트워킹이 있는 사"
-+"용자 "
--#~ msgid "translator-credits"
--#~ msgstr "김은주 (eukim@redhat.com), 2006, 2007"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "사용자 역할 "
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux 정책 생성 도구"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"트랜젝션 없는 setuid 애플리케이션, su가 없고 완전한 네트워킹이 있는 사용자는 "
-+"Root 관리자 역할에서 sudo를 사용할 수 있습니다. "
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "감사(audit) 메세지를 보내는데 오류 발생.\n"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "관리자 역할 "
--#, fuzzy
--#~ msgid "Boolean Name"
--#~ msgstr "부울"
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root 사용자</b>  "
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/lv.po b/policycoreutils/po/lv.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/lv.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
 -#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "반드시 이름을 입력해야 합니다"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/mai.po b/policycoreutils/po/mai.po
+new file mode 100644
+index 0000000..fd18454
+--- /dev/null
++++ b/policycoreutils/po/mai.po
+@@ -0,0 +1,3371 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
++# Sangeeta Kumari <sangeeta09@gmail.com>, 2009.
++msgid ""
 +msgstr ""
-+"사용자가 root로 실행하고 있는 시스템 관리자로 사용될 경우 Root 관리자 역할을 "
-+"선택합니다. 사용자는 시스템으로 직접 로그인할 수 없게 됩니다.   "
++"Project-Id-Version: Policycoreutils\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Maithili (http://www.transifex.net/projects/p/fedora/language/"
++"mai/)\n"
++"Language: mai\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 +
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root 관리자 역할 "
++#: ../run_init/run_init.c:67
++msgid ""
++"USAGE: run_init <script> <args ...>\n"
++"  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 ...> ई उस स्क्रिप्ट क तर्क अछि."
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "제한할 애플리케이션 이름이나 사용자 역할을 입력합니다 "
++#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
++#, c-format
++msgid "failed to initialize PAM\n"
++msgstr "PAM आरंभीकरणमे विफल\n"
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "이름 "
++#: ../run_init/run_init.c:139
++#, c-format
++msgid "failed to get account information\n"
++msgstr "खाता सूचना पाबैमे विफल\n"
 +
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "제한할 실행 파일의 전체 경로를 입력합니다.  "
++#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
++msgid "Password:"
++msgstr "शब्दकूट:"
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
++#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
++#, c-format
++msgid "Cannot find your entry in the shadow passwd file.\n"
++msgstr "अहाँक प्रविष्टिकेँ छाया शब्दकूट फाइलमे प्रविष्ट नहि कए सकल.\n"
 +
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "제한된 애플리케이션이나 사용자 역할에 대한 고유한 이름을 입력합니다. "
++#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
++#, c-format
++msgid "getpass cannot open /dev/tty\n"
++msgstr "getpass cannot open /dev/tty\n"
 +
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "실행 가능 "
++#: ../run_init/run_init.c:275
++#, c-format
++msgid "run_init: incorrect password for %s\n"
++msgstr "run_init: %s क' लेल गलत शब्दकूट\n"
 +
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init 스크립트 "
--#~ msgid "You must enter a name"
--#~ msgstr "반드시 이름을 입력해야 합니다"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"제한된 애플리케이션을 시작하기 위해 사용된 init 스크립트의 전체 경로를 입력합"
-+"니다.  "
--#~ msgid "You must enter a executable"
--#~ msgstr "실행 가능한 지를 입력해야 합니다"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "사용자 설정하고자 하는 사용자 역할을 선택합니다 "
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux 설정"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "이 애플리케이션 도메인으로 전환하는 사용자 역할을 선택합니다. "
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "1에서 %d까지 포트 번호를 매겨야 합니다"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "사용자 역할이 변환할 추가 도메인을 선택합니다  "
--#, fuzzy
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "설정 프로세스에 해당하는 이름을 입력해야 합니다"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "사용자 역할이 변환하게 할 애플리케이션 도메인을 선택합니다.   "
++#: ../run_init/run_init.c:309
++#, c-format
++msgid "Could not open file %s\n"
++msgstr "%s फाइल खोलि नहि सकल\n"
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "이 도메인으로 변환할 사용자 역할을 선택합니다  "
++#: ../run_init/run_init.c:336
++#, c-format
++msgid "No context in file %s\n"
++msgstr "%s फाइलमे कोनो संदर्भ नहि\n"
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "이 사용자 역할이 관리하게 될 추가 도메인을 선택합니다  "
++#: ../run_init/run_init.c:361
++#, c-format
++msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
++msgstr "क्षमा करू, run_init केँ सिर्फ SELinux कर्नेल पर प्रयोग कएल जाए सकैत अछि.\n"
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "사용자 관리하려는 도메인을 선택합니다. "
++#: ../run_init/run_init.c:380
++#, c-format
++msgid "authentication failed.\n"
++msgstr "सत्यापन विफल.\n"
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "사용자에 대한 추가 역할을 선택합니다  "
++#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
++#, c-format
++msgid "Could not set exec context to %s.\n"
++msgstr "exec संदर्भ %s मे सेट नहि कए सकल.\n"
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "애플리케이션/사용자 역할이 청취할 네트워크 포트를 입력합니다  "
++#: ../audit2allow/audit2allow:230
++msgid "******************** IMPORTANT ***********************\n"
++msgstr "******************** महत्वपूर्ण ***********************\n"
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP 포트</b> "
++#: ../audit2allow/audit2allow:231
++msgid "To make this policy package active, execute:"
++msgstr "एहि नीति केँ सक्रिय बनाबै क' लेल, चलाउ:"
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "udp 포트로 바인드할 제한된 애플리케이션/사용자 역할을 허용 "
++#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
++msgid "global"
++msgstr "वैश्विक"
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "전체 "
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "유형 강조 파일 "
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"애플리케이션/사용자 역할이 bindresvport을 0으로 호출하게 허용합니다. "
-+"600-1024 포트로 바인딩합니다 "
--#~ msgid "Interface file"
--#~ msgstr "인터페이스 파일"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "File Contexts file"
--#~ msgstr "파일 문맥 파일"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"애플리케이션/사용자 역할이 바인드할 포트 범위 또는 udp 포트 목록을 콤마로 구"
-+"분하여 입력합니다. 예: 612, 650-660 "
--#~ msgid "Protocol"
--#~ msgstr "프로토콜"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "예약되지 않은 포트 (>1024) "
--#~ msgid "Port"
--#~ msgstr "포트"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "포트 선택 "
--#~ msgid "Group View"
--#~ msgstr "그룹 보기"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"애플리케이션/사용자 역할에 따른 1024 이상의 모든 udp 포트로 바인딩을 허용 "
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux 서비스 보안"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP 포트</b> "
--#~ msgid "Mount"
--#~ msgstr "마운트"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "애플리케이션/사용자 역할이 접속할 네트워크 포트를 입력합니다  "
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"애플리케이션/사용자 역할이 접속한 포트 범위 또는 tcp 포트 목록을 콤마로 구분"
-+"하여 입력합니다. 예: 612, 650-660 "
--#~ msgid "Network Configuration"
--#~ msgstr "네트워크 설정"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"애플리케이션/사용자 역할이 접속한 포트 범위 또는 udp 포트 목록을 콤마로 구분"
-+"하여 입력합니다. 예: 612, 650-660  "
--#~ msgid "Printing"
--#~ msgstr "인쇄"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "일반적인 애플리케이션 특성 선택 "
--#~ msgid "Compatibility"
--#~ msgstr "호환"
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog 메세지 작성\t "
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp에 임시 파일 생성/처리 "
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "인증을 위해 Pam 사용 "
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL 인증 서버"
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch 또는 getpw* 호출 사용 "
--#~ msgid "Status"
--#~ msgstr "상태"
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus 사용 "
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux 유형"
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "감사(audit) 메세지 전송 "
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux 사용자 추가"
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "터미널과 상호 작용   "
--#~ msgid "Add"
--#~ msgstr "추가"
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "이메일 전송 "
--#~ msgid "_Delete"
--#~ msgstr "삭제(_D)"
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "애플리케이션이 관리할 파일/디렉토리 선택 "
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>선택:</b>"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"애플리케이션이 \"작성\"해야 하는 파일/디렉토리를 추가합니다. Pid 파일, 로그 "
-+"파일, /var/lib 파일 ...     "
--#~ msgid "label37"
--#~ msgstr "label37"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "애플리케이션이 사용할 부울 선택 "
--#~ msgid "Filter"
--#~ msgstr "필터"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "제한된 애플리케이션/사용자에 대한 부울 추가/제거 "
--#~ msgid "label50"
--#~ msgstr "label50"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "정책을 생성하기 위한 디렉토리 선택 "
--#~ msgid "Add File Context"
--#~ msgstr "파일 문맥 추가"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "정책 디렉토리 "
--#~ msgid "Modify File Context"
--#~ msgstr "파일 문맥 수정"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "생성된 정책 파일 "
--#~ msgid "Delete File Context"
--#~ msgstr "파일 문맥 삭제"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"이 도구는 다음을 생성합니다: \n"
-+"유형 강제(te), 파일 문맥(fc), 인터페이스(if), 쉘 스크립트(sh)\n"
-+"컴파일/설치하고 파일/디렉토리를 다시 레이블하기 위해 root로 쉘 스크립트를 활"
-+"성화합니다.  \n"
-+"Linux 로그인 사용자를 사용자 역할에 맵핑하기 위해 semanage 또는 useradd를 사"
-+"용합니다.\n"
-+"컴퓨터를 허용 모드 (setenforce 0)로 사용합니다. \n"
-+"사용자로 로그인하여 사용자 역할을 테스트합니다.\n"
-+"audit2allow -R을 사용하여 te 파일에 대한 추가 규칙을 생성합니다.\n"
--#~ msgid "label38"
--#~ msgstr "label38"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"이 도구는 다음을 생성합니다: \n"
-+"유형 강제(te), 파일 문맥(fc), 인터페이스(if), 쉘 스크립트(sh)\n"
-+"\n"
-+"컴파일/설치하고 파일/디렉토리를 다시 레이블하기 위해 쉘 스크립트를 활성화합니"
-+"다.  \n"
-+"컴퓨터를 허용 모드 (setenforce 0)로 사용합니다. \n"
-+"avc 메세지를 생성하기 위해 애플리케이션을 실행/재시작합니다.\n"
-+"audit2allow -R을 사용하여 te 파일에 대한 추가 규칙을 생성합니다.\n"
++#: ../semanage/seobject.py:222
++msgid "Could not create semanage handle"
++msgstr "semanage नियंत्रण आरंभ नहि कए सकल"
 +
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "부울 다이얼로그 추가 "
++#: ../semanage/seobject.py:230
++msgid "SELinux policy is not managed or store cannot be accessed."
++msgstr "SELinux नीति प्रबंधित नहि अछि या भंडार अभिगम नहि कएल जाए सकैत अछि."
 +
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "부울 이름 "
++#: ../semanage/seobject.py:235
++msgid "Cannot read policy store."
++msgstr "नीति भंडार नहि पढ़ि सकैत अछि."
 +
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "역할 "
++#: ../semanage/seobject.py:240
++msgid "Could not establish semanage connection"
++msgstr "semanage संबंधन स्थापित नहि कए सकल"
 +
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "기존 사용자(_U) "
++#: ../semanage/seobject.py:245
++msgid "Could not test MLS enabled status"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "애플리케이션 "
++#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
++msgid "Not yet implemented"
++msgstr "अखन तकि लागू नहि"
 +
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s 은(는) 반드시 디렉토리이어야 합니다 "
++#: ../semanage/seobject.py:255
++msgid "Semanage transaction already in progress"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "반드시 사용자를 선택해야 합니다 "
++#: ../semanage/seobject.py:264
++msgid "Could not start semanage transaction"
++msgstr "semanage विनिमय आरंभ नहि कए सकल"
 +
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "제한할 실행 파일을 선택합니다. "
++#: ../semanage/seobject.py:274
++msgid "Could not commit semanage transaction"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "제한할 init 스크립트 파일을 선택합니다. "
++#: ../semanage/seobject.py:279
++msgid "Semanage transaction not in progress"
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "제한된 애플리케이션을 생성하거나 작성할 파일을 선택합니다 "
++#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
++msgid "Could not list SELinux modules"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "제한된 애플리케이션을 소유 및 작성할 디렉토리를 선택합니다 "
++#: ../semanage/seobject.py:304
++msgid "Modules Name"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "정책 파일을 생성할 디렉토리를 선택합니다 "
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux 사용자 맵핑 추가"
-+#: ../gui/polgengui.py:554
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
++msgid "Version"
++msgstr "संस्करण"
++
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
++msgid "Disabled"
++msgstr "निष्क्रिय"
++
++#: ../semanage/seobject.py:322
 +#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
++msgid "Could not disable module %s (remove failed)"
 +msgstr ""
-+"이미 현재 정책에 정의된 유형 %s_t 입니다.\n"
-+"계속 진행하시겠습니까?  "
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux 사용자 맵핑 수정"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "이름 확인 "
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux 사용자 맵핑 삭제"
-+#: ../gui/polgengui.py:558
++
++#: ../semanage/seobject.py:333
 +#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
++msgid "Could not enable module %s (remove failed)"
 +msgstr ""
-+"이미 현재 정책에 로드된 모듈 %s.pp 입니다.\n"
-+"계속 진행하시겠습니까?   "
--#~ msgid "label39"
--#~ msgstr "label39"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "반드시 이름을 입력해야 합니다"
--#~ msgid "Add Translation"
--#~ msgstr "번역 추가"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "실행 가능한 지를 입력해야 합니다"
--#~ msgid "Modify Translation"
--#~ msgstr "번역 수정"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux 설정"
--#~ msgid "Delete Translation"
--#~ msgstr "번역 삭제"
-+#: ../gui/polgen.py:174
++
++#: ../semanage/seobject.py:348
 +#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "1에서 %d 까지 포트 번호를 매겨야 합니다  "
--#~ msgid "label41"
--#~ msgstr "label41"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "설정 프로세스/사용자에 해당하는 이름을 입력해야 합니다 "
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux 사용자 수정"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER 유형은 실행을 허용하지 않습니다 "
--#~ msgid "label40"
--#~ msgstr "label40"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "DAEMON 애플리케이션만이 init 스크립트를 사용할 수 있습니다. "
--#~ msgid "Add Network Port"
--#~ msgstr "네트워크 포트 추가"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog는 반드시 부울 값이어야 합니다 "
--#~ msgid "Edit Network Port"
--#~ msgstr "네트워크 포트 편집"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER 유형은 자동으로 tmp 유형을 갖습니다 "
--#~ msgid "Delete Network Port"
--#~ msgstr "네트워크 포트 삭제"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "제한된 프로세스에 대해 실행 가능 경로를 입력하셔야 합니다  "
--#~ msgid "label42"
--#~ msgstr "label42"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "유형 강제 파일 "
--#~ msgid "Generate new policy module"
--#~ msgstr "새 정책 모듈 생성"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "인터페이스 파일"
--#~ msgid "Load policy module"
--#~ msgstr "정책 모듈 읽어오기"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "파일 문맥 파일"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "읽어올 수 있는 정책 모듈 삭제"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "스크립트 설정 "
--#~ msgid "label44"
--#~ msgstr "label44"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "네트워크 포트 "
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux 사용자 '%s'이(가) 필요합니다"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
++msgid "Could not remove module %s (remove failed)"
 +msgstr ""
-+"SELinux 포트\n"
-+"유형 "
--#~ msgid "Requires value"
--#~ msgstr "값 필요"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "프로토콜"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "유효하지 않은 접두어 %s"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
++
++#: ../semanage/seobject.py:358
++msgid "dontaudit requires either 'on' or 'off'"
 +msgstr ""
-+"MLS/MCS\n"
-+"레벨 "
--#, fuzzy
--#~ msgid "label51"
--#~ msgstr "label50"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "포트"
 +
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "\"%s\" 포트 번호가 잘못되었습니다. 0 < PORT_NUMBER < 65536  "
++#: ../semanage/seobject.py:387
++msgid "Builtin Permissive Types"
++msgstr ""
 +
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "목록 보기 "
++#: ../semanage/seobject.py:397
++msgid "Customized Permissive Types"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "그룹 보기"
++#: ../semanage/seobject.py:438
++#, python-format
++msgid "Could not set permissive domain %s (module installation failed)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux 서비스 보안"
++#: ../semanage/seobject.py:444
++#, python-format
++msgid "Could not remove permissive domain %s (remove failed)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct 데몬에 대해 SELinux 보안을 비활성화합니다 "
++#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
++#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
++#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
++#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
++#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
++#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
++#: ../semanage/seobject.py:2037
++#, python-format
++msgid "Could not create a key for %s"
++msgstr "%s क' लेल कुंजी नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "관리 "
++#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
++#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
++#, python-format
++msgid "Could not check if login mapping for %s is defined"
++msgstr "नहि जाँचि सकल जँ %s क' लेल लागिन मैपिंग परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "모든 데몬이 코어 파일을 /에 작성하는 것을 허용합니다 "
++#: ../semanage/seobject.py:492
++#, python-format
++msgid "Linux Group %s does not exist"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "모든 데몬이 할당되지 않은 tty를 사용할 수 있는 기능을 허용합니다  "
++#: ../semanage/seobject.py:497
++#, python-format
++msgid "Linux User %s does not exist"
++msgstr "Linux प्रयोक्ता %s मोजूद नहि अछि"
 +
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "사용자 권한 "
--#~ msgid "value"
--#~ msgstr "값"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"gadmin SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것"
-+"을 허용합니다.   "
++#: ../semanage/seobject.py:501
++#, python-format
++msgid "Could not create login mapping for %s"
++msgstr "%s क' लेल लागिन मैपिंग नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"게스트 SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것"
-+"을 허용합니다.      "
++#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
++#, python-format
++msgid "Could not set name for %s"
++msgstr "%s क लेल नाम सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "메모리 보안 "
++#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
++#, python-format
++msgid "Could not set MLS range for %s"
++msgstr "MLS परिसर %s क लेल सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "java 실행 가능 스택을 허용합니다  "
++#: ../semanage/seobject.py:514
++#, python-format
++msgid "Could not set SELinux user for %s"
++msgstr "SELinux उपयोक्ता %s क लेल सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "마운트"
++#: ../semanage/seobject.py:518
++#, python-format
++msgid "Could not add login mapping for %s"
++msgstr "%s क लेल लॉगिन मैपिंग जोड़ नहि सकल"
 +
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "파일을 마운트하기 위해 마운트를 허용합니다 "
++#: ../semanage/seobject.py:536
++msgid "Requires seuser or serange"
++msgstr "seuser अथवा serange जरूरी"
 +
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "디렉토리를 마운트하기 위해 마운트를 허용합니다 "
++#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
++#, python-format
++msgid "Login mapping for %s is not defined"
++msgstr "%s क लेल लॉगिन मैपिंग परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "mplayer 실행 가능 스택을 허용합니다 "
++#: ../semanage/seobject.py:563
++#, python-format
++msgid "Could not query seuser for %s"
++msgstr "seuser केँ %s क लेल प्रश्न नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
++#: ../semanage/seobject.py:577
++#, python-format
++msgid "Could not modify login mapping for %s"
++msgstr "%s क लेल लॉगिन मैपिंग नहि रूपांतरित कए सकल"
 +
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh-keysign을 실행하기 위해 ssh를 허용합니다 "
++#: ../semanage/seobject.py:611
++#, python-format
++msgid "Login mapping for %s is defined in policy, cannot be deleted"
++msgstr "नीतिमे %s परिभाषित अछि, मेटाओल नहि जाए सकत"
 +
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"staff SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것"
-+"을 허용합니다.       "
--#~ msgid "You must be root to run %s."
--#~ msgstr "root로 %s을(를) 실행해야 합니다."
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"sysadm SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것"
-+"을 허용합니다.  "
--#~ msgid "Other"
--#~ msgstr "기타"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"제한되지않은 SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하"
-+"는 것을 허용합니다.   "
--#~ msgid "MLS/MCS Level"
--#~ msgstr "MLS/MCS 레벨"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "네트워크 설정"
--#~ msgid ""
--#~ "Labeling\n"
--#~ "Prefix"
--#~ msgstr ""
--#~ "레이블링\n"
--#~ "접두부"
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "레이블되지 않은 패킷이 네트워크에 전송되는 것을 허용합니다 "
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS 레벨"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"user SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것을 "
-+"허용합니다.  "
++#: ../semanage/seobject.py:615
++#, python-format
++msgid "Could not delete login mapping for %s"
++msgstr "%s क लेल लॉगिन मैपिंग नहि मेटाए सकल"
 +
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+"제한되지 않은 것이 unconfined_execmem에 dyntrans하는 것을 허용합니다   "
++#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
++#: ../semanage/seobject.py:893
++msgid "Could not list login mappings"
++msgstr "लॉगिन मैपिंग नहि सूचीबद्ध कए सकल"
 +
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "데이터베이스 "
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
++msgid "Login Name"
++msgstr "लॉगिन नाम"
 +
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "사용자가 mysql 소켓에 접속하는 것을 허용합니다 "
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
++msgid "SELinux User"
++msgstr "SELinux उपयोक्ता"
 +
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "사용자가 postgres 소켓에 접속하는 것을 허용합니다  "
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
++msgid "MLS/MCS Range"
++msgstr "MLS/MCS परिसर"
 +
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "X 서버  "
++#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
++#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
++#: ../semanage/seobject.py:860
++#, python-format
++msgid "Could not check if SELinux user %s is defined"
++msgstr "जाँच नहि सकल जे SELinux उपयोक्ता %s परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "클라이언트가 X 공유 메모리에 작성하는 것을 허용합니다 "
++#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
++#: ../semanage/seobject.py:866
++#, python-format
++msgid "Could not query user for %s"
++msgstr "%s क लेल उपयोक्ताकेँ प्रश्न नहि कए सकत"
 +
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
++#: ../semanage/seobject.py:722
++#, python-format
++msgid "You must add at least one role for %s"
 +msgstr ""
-+"xguest SELinux 사용자 계정이 홈 디렉토리 또는 /tmp에 있는 파일을 실행하는 것"
-+"을 허용합니다.   "
 +
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
++#: ../semanage/seobject.py:737
++#, python-format
++msgid "Could not create SELinux user for %s"
++msgstr "SELinux उपयोक्ता %s क लेल बनाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "데몬이 NIS와 함께 작동하는 것을 허용합니다 "
++#: ../semanage/seobject.py:746
++#, python-format
++msgid "Could not add role %s for %s"
++msgstr "%s भूमिका %s क लेल जोड़ नहि सकल"
 +
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "웹 애플리케이션 "
++#: ../semanage/seobject.py:755
++#, python-format
++msgid "Could not set MLS level for %s"
++msgstr "MLS स्तर %s क लेल सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "staff SELinux 사용자를 웹 브라우저 도메인으로 변환 "
++#: ../semanage/seobject.py:758
++#, python-format
++msgid "Could not add prefix %s for %s"
++msgstr "%s उपसर्ग %s क लेल नहि जोड़ सकल"
 +
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux 사용자를 웹 브라우저 도메인으로 변환  "
++#: ../semanage/seobject.py:761
++#, python-format
++msgid "Could not extract key for %s"
++msgstr "%s क लेल कुंजी निकाल नहि सकल"
 +
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "user SELinux 사용자를 웹 브라우저 도메인으로 변환   "
++#: ../semanage/seobject.py:765
++#, python-format
++msgid "Could not add SELinux user %s"
++msgstr "SELinux उपयोक्ता %s नहि जोड़ सकल"
 +
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux 사용자를 웹 브라우저 도메인으로 변환   "
++#: ../semanage/seobject.py:787
++msgid "Requires prefix, roles, level or range"
++msgstr "उपसर्ग, भूमिका, स्तर या परिसर जरूरी"
 +
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "staff 웹 브라우저가 홈 디렉토리에 작성하는 것을 허용합니다 "
++#: ../semanage/seobject.py:789
++msgid "Requires prefix or roles"
++msgstr "उपसर्ग या भूमिका जरूरी"
 +
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "amanda에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
++#, python-format
++msgid "SELinux user %s is not defined"
++msgstr "SELinux उपयोक्ता %s परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "amavis에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:828
++#, python-format
++msgid "Could not modify SELinux user %s"
++msgstr "SELinux उपयोक्ता %s नहि सुधार सकत"
 +
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:862
++#, python-format
++msgid "SELinux user %s is defined in policy, cannot be deleted"
++msgstr "SELinux उपयोक्ता %s नीतिमे परिभाषित अछि, मेटाए नहि सकत"
 +
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:873
++#, python-format
++msgid "Could not delete SELinux user %s"
++msgstr "SELinux उपयोक्ता %s मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd 데몬에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:911
++msgid "Could not list SELinux users"
++msgstr "SELinux उपयोक्ता सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:917
++#, python-format
++msgid "Could not list roles for user %s"
++msgstr "%s उपयोक्ता क लेल भूमिका सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "avahi에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:942
++msgid "Labeling"
++msgstr "लेबलिंग"
 +
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:942
++msgid "MLS/"
++msgstr "MLS/"
 +
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:943
++msgid "Prefix"
++msgstr "उपसर्ग"
 +
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr 데몬에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:943
++msgid "MCS Level"
++msgstr "MCS स्तर"
 +
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "클러스터 서버에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:943
++msgid "MCS Range"
++msgstr "MCS परिसर"
 +
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"cdrecord는 다양한 컨텐츠 읽기를 허용합니다. nfs, samba, 이동식 장치, 사용자 "
-+"temp, 신뢰할 수 없는 내용의 파일 등 "
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
++msgid "SELinux Roles"
++msgstr "SELinux भूमिका"
 +
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:963
++msgid "Protocol udp or tcp is required"
++msgstr "प्रोटोकॉल udp या tcp जरूरी अछि"
 +
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd 데몬에 대한 SELinux 보안 비활성화  "
++#: ../semanage/seobject.py:965
++msgid "Port is required"
++msgstr "पोर्ट जरूरी अछि"
 +
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:975
++msgid "Invalid Port"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:979
++#, python-format
++msgid "Could not create a key for %s/%s"
++msgstr "%s/%s क लेल कुंजी नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat 데몬에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:990
++msgid "Type is required"
++msgstr "टाइप जरूरी अछि"
 +
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
++#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
++#, python-format
++msgid "Could not check if port %s/%s is defined"
++msgstr "जाँच नहि सकल जँ पोर्ट %s/%s परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:998
++#, python-format
++msgid "Port %s/%s already defined"
++msgstr "%s/%s पोर्ट पहले सँ परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1002
++#, python-format
++msgid "Could not create port for %s/%s"
++msgstr "%s/%s क लेल पोर्ट बनाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron "
++#: ../semanage/seobject.py:1008
++#, python-format
++msgid "Could not create context for %s/%s"
++msgstr "%s/%s क लेल संदर्भ बनाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1012
++#, python-format
++msgid "Could not set user in port context for %s/%s"
++msgstr "%s/%s क लेल पोर्ट संदर्भमे उपयोक्ता सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "인쇄"
++#: ../semanage/seobject.py:1016
++#, python-format
++msgid "Could not set role in port context for %s/%s"
++msgstr "%s/%s क लेल पोर्ट संदर्भमे भूमिका सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd 백 엔드 서버에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1020
++#, python-format
++msgid "Could not set type in port context for %s/%s"
++msgstr "%s/%s क लेल पोर्ट संदर्भमे टाइप सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1025
++#, python-format
++msgid "Could not set mls fields in port context for %s/%s"
++msgstr "%s/%s क लेल पोर्ट संदर्भमे क्षेत्र mls सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1029
++#, python-format
++msgid "Could not set port context for %s/%s"
++msgstr "%s/%s क लेल पोर्ट संदर्भ सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
++#: ../semanage/seobject.py:1033
++#, python-format
++msgid "Could not add port %s/%s"
++msgstr "%s/%s पोर्ट जोड़ि नहि सकल"
 +
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
++#: ../semanage/seobject.py:1508
++msgid "Requires setype or serange"
++msgstr "setype या serange जरूरी"
 +
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1049
++msgid "Requires setype"
++msgstr "सेटटाइप जरूरी"
 +
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
++#, python-format
++msgid "Port %s/%s is not defined"
++msgstr "पोर्ट %s/%s परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd 데몬에 대한 SELinux 보안 비활성화     "
++#: ../semanage/seobject.py:1061
++#, python-format
++msgid "Could not query port %s/%s"
++msgstr "%s/%s पोर्ट प्रश्न नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "dccd에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1072
++#, python-format
++msgid "Could not modify port %s/%s"
++msgstr "%s/%s पोर्ट रूपांतरित नहि कए सकल "
 +
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:1085
++msgid "Could not list the ports"
++msgstr "पोर्ट सूची बद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "dccm에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1101
++#, python-format
++msgid "Could not delete the port %s"
++msgstr "%s पोर्ट मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1118
++#, python-format
++msgid "Port %s/%s is defined in policy, cannot be deleted"
++msgstr "%s/%s नीतिमे परिभाषित अछि, मेटाए नहि सकत"
 +
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1122
++#, python-format
++msgid "Could not delete port %s/%s"
++msgstr "%s/%s पोर्ट मेटाए नहि सकत"
 +
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
++msgid "Could not list ports"
++msgstr "पोर्ट सूची बद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1199
++msgid "SELinux Port Type"
++msgstr "SELinux पोर्ट प्रकार"
 +
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1199
++msgid "Proto"
++msgstr "प्रोटो"
 +
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t가 직접 데몬을 시작할 수 있게 합니다 "
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
++msgid "Port Number"
++msgstr "पोर्ट संख्या"
 +
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1218
++msgid "Node Address is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "게임 "
++#: ../semanage/seobject.py:1233
++msgid "Unknown or missing protocol"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "게임에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
++#: ../semanage/seobject.py:1724
++msgid "SELinux Type is required"
++msgstr "SELinux प्रकार जरूरी अछि"
 +
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "웹 브라우저에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
++#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
++#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
++#: ../semanage/seobject.py:1728
++#, python-format
++msgid "Could not create key for %s"
++msgstr "%s क लेल कुंजी नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
++#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
++#, python-format
++msgid "Could not check if addr %s is defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1262
++#, python-format
++msgid "Could not create addr for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
++#: ../semanage/seobject.py:1686
++#, python-format
++msgid "Could not create context for %s"
++msgstr "%s क लेल संदर्भ बनाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1272
++#, python-format
++msgid "Could not set mask for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1276
++#, python-format
++msgid "Could not set user in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1280
++#, python-format
++msgid "Could not set role in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1284
++#, python-format
++msgid "Could not set type in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd 데몬에 대한 SELinux 보안 비활성화     "
++#: ../semanage/seobject.py:1289
++#, python-format
++msgid "Could not set mls fields in addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1293
++#, python-format
++msgid "Could not set addr context for %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1297
++#, python-format
++msgid "Could not add addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
++#, python-format
++msgid "Addr %s is not defined"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
++#: ../semanage/seobject.py:1326
++#, python-format
++msgid "Could not query addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1336
++#, python-format
++msgid "Could not modify addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1364
++#, python-format
++msgid "Addr %s is defined in policy, cannot be deleted"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "호환"
++#: ../semanage/seobject.py:1368
++#, python-format
++msgid "Could not delete addr %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
++#: ../semanage/seobject.py:1380
++msgid "Could not deleteall node mappings"
 +msgstr ""
-+"손상될 것을 알고 있지만 보안 위험이 없는 것을 감사 (audit)하지 않습니다   "
 +
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1394
++msgid "Could not list addrs"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
++#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
++#, python-format
++msgid "Could not check if interface %s is defined"
++msgstr "जांच नहि सकल जँ %s अंतरफलक परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1461
++#, python-format
++msgid "Could not create interface for %s"
++msgstr "%s क लेल अंतरफलक नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1470
++#, python-format
++msgid "Could not set user in interface context for %s"
++msgstr "उपयोक्ता केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1474
++#, python-format
++msgid "Could not set role in interface context for %s"
++msgstr "भूमिका केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD 서비스 "
++#: ../semanage/seobject.py:1478
++#, python-format
++msgid "Could not set type in interface context for %s"
++msgstr "टाइप केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1483
++#, python-format
++msgid "Could not set mls fields in interface context for %s"
++msgstr "mls क्षेत्र %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock 데몬에 대한 SELinux 보안 비활성화      "
++#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not set interface context for %s"
++msgstr "%s क लेल अंतरफलक संदर्भ सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1491
++#, python-format
++msgid "Could not set message context for %s"
++msgstr "%s क लेल संदेश संदर्भ सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1495
++#, python-format
++msgid "Could not add interface %s"
++msgstr "%s अंतरफलक जोड़ नहि सकल"
 +
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd child 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
++#, python-format
++msgid "Interface %s is not defined"
++msgstr "%s अंतरफलक परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1522
++#, python-format
++msgid "Could not query interface %s"
++msgstr "%s अंतरफलक प्रश्न नहि कए सकत"
 +
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1533
++#, python-format
++msgid "Could not modify interface %s"
++msgstr "%s अंतरफलक रूपांतरित नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1558
++#, python-format
++msgid "Interface %s is defined in policy, cannot be deleted"
++msgstr "अंतरफलक %s नीतिमे परिभाषित अछि, मेटाओल नहि जाए सकत"
 +
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1562
++#, python-format
++msgid "Could not delete interface %s"
++msgstr "%s अंतरफलक मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1574
++msgid "Could not delete all interface  mappings"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1588
++msgid "Could not list interfaces"
++msgstr "अंतरफलक सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1613
++msgid "SELinux Interface"
++msgstr "SELinux अंतरफलक"
 +
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
++#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
++msgid "Context"
++msgstr "संदर्भ"
 +
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind 데몬에 대한 SELinux 보안 비활성화   "
++#: ../semanage/seobject.py:1663
++#, python-format
++msgid "Equivalence class for %s already exists"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1669
++#, python-format
++msgid "File spec %s conflicts with equivalency rule '%s %s'"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1678
++#, python-format
++msgid "Equivalence class for %s does not exists"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1692
++#, python-format
++msgid "Could not set user in file context for %s"
++msgstr "%s क लेल फाइल संदर्भमे उपयोक्ता सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1696
++#, python-format
++msgid "Could not set role in file context for %s"
++msgstr "%s क लेल फाइल संदर्भमे भूमिका सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
++#, python-format
++msgid "Could not set mls fields in file context for %s"
++msgstr "mls क्षेत्र %s क लेल फाइल संदर्भ केर क्रममे नहि सेट कए सकल"
 +
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1707
++msgid "Invalid file specification"
++msgstr "अवैध फाइल विशेषता"
 +
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1709
++msgid "File specification can not include spaces"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1714
++#, python-format
++msgid ""
++"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "mailman에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
++#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
++#: ../semanage/seobject.py:1876
++#, python-format
++msgid "Could not check if file context for %s is defined"
++msgstr "जाँच नहि सकल जँ %s क लेल फाइल संदर्भ परिभाषित अछि"
 +
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "evolution 및 thunderbird가 사용자 파일을 읽도록 허용합니다 "
++#: ../semanage/seobject.py:1745
++#, python-format
++msgid "Could not create file context for %s"
++msgstr "%s क लेल फाइल संदर्भ नहि बनाए सकल"
 +
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1753
++#, python-format
++msgid "Could not set type in file context for %s"
++msgstr "%s क लेल फाइल संदर्भमे टाइप सेट नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
++#: ../semanage/seobject.py:1822
++#, python-format
++msgid "Could not set file context for %s"
++msgstr "%s क लेल फाइल संदर्भ नहि सेट कए सकल"
 +
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "mozilla 브라우저가 사용자 파일을 읽도록 허용합니다 "
++#: ../semanage/seobject.py:1767
++#, python-format
++msgid "Could not add file context for %s"
++msgstr "%s क लेल फाइल संदर्भ नहि जोड़ि सकल"
 +
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1781
++msgid "Requires setype, serange or seuser"
++msgstr "सेटटाइप जरूरी, serange या seuser"
 +
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
++#, python-format
++msgid "File context for %s is not defined"
++msgstr "%s क लेल फाइल संदर्भ परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1800
++#, python-format
++msgid "Could not query file context for %s"
++msgstr "%s क लेल फाइल संदर्भ केँ प्रश्न नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "네임 서비스 "
++#: ../semanage/seobject.py:1826
++#, python-format
++msgid "Could not modify file context for %s"
++msgstr "%s क लेल फाइल संदर्भ नहि सुधार सकल"
 +
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "named 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1839
++msgid "Could not list the file contexts"
++msgstr "फाइल संदर्भ सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1853
++#, python-format
++msgid "Could not delete the file context %s"
++msgstr "%s क लेल फाइल संदर्भ मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1878
++#, python-format
++msgid "File context for %s is defined in policy, cannot be deleted"
++msgstr "%s क लेल फाइल संदर्भ नीतिमे परिभाषित अछि, मेटाए नहि सकत"
 +
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1884
++#, python-format
++msgid "Could not delete file context for %s"
++msgstr "%s क लेल फाइलसंदर्भ मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
++#: ../semanage/seobject.py:1899
++msgid "Could not list file contexts"
++msgstr "फाइल संदर्भ सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1903
++msgid "Could not list local file contexts"
++msgstr "स्थानीय फाइल संदर्भ सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1936
++msgid "SELinux fcontext"
++msgstr "SELinux fcontext"
 +
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1936
++msgid "type"
++msgstr "प्रकार"
 +
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1949
++msgid ""
++"\n"
++"SELinux Distribution fcontext Equivalence \n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1954
++msgid ""
++"\n"
++"SELinux Local fcontext Equivalence \n"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
++#: ../semanage/seobject.py:2046
++#, python-format
++msgid "Could not check if boolean %s is defined"
++msgstr "जँ %s बुलियन परिभाषित अछि तँ जांच नहि सकल"
 +
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
++#, python-format
++msgid "Boolean %s is not defined"
++msgstr "%s बुलियन परिभाषित नहि अछि"
 +
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1994
++#, python-format
++msgid "Could not query file context %s"
++msgstr "%s फाइल संदर्भ केँ प्रश्न नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:1999
++#, python-format
++msgid "You must specify one of the following values: %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2004
++#, python-format
++msgid "Could not set active value of boolean %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2007
++#, python-format
++msgid "Could not modify boolean %s"
++msgstr "%s बुलियन रूपांतरित नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2025
++#, python-format
++msgid "Bad format %s: Record %s"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2048
++#, python-format
++msgid "Boolean %s is defined in policy, cannot be deleted"
++msgstr "%s बुलियन नीति मे परिभाषित अछि, मेटाएल नहि जाए सकैत"
 +
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "postfix에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2052
++#, python-format
++msgid "Could not delete boolean %s"
++msgstr "%s बुलियन मेटाए नहि सकल"
 +
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
++msgid "Could not list booleans"
++msgstr "बुलियन सूचीबद्ध नहि कए सकल"
 +
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
++#: ../semanage/seobject.py:2104
++msgid "unknown"
++msgstr "अज्ञात"
 +
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd가 일반 사용자를 위해 실행되도록 허용합니다 "
++#: ../semanage/seobject.py:2117
++msgid "off"
++msgstr "बन्न"
 +
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "pptp에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2117
++msgid "on"
++msgstr "चालू"
 +
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2131
++msgid "SELinux boolean"
++msgstr "SELinux बूलियन"
 +
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2131
++msgid "State"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2131
++msgid "Default"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe 데몬에 대한 SELinux 보안 비활성화    "
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
++msgid "Description"
++msgstr "वर्णन"
 +
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:201
++#, c-format
++msgid "failed to set PAM_TTY\n"
++msgstr "PAM_TTY सेट करबामे विफल\n"
 +
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:290
++#, c-format
++msgid "newrole: service name configuration hashtable overflow\n"
++msgstr "newrole: सेवा नाम विन्यास hashtable आधिक्य\n"
 +
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:300
++#, c-format
++msgid "newrole:  %s:  error on line %lu.\n"
++msgstr "newrole:  %s:  %lu पंक्ति पर त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:439
++#, c-format
++msgid "cannot find valid entry in the passwd file.\n"
++msgstr "passwd फाइल मे वैध प्रविष्टि नहि पाबि सकैत.\n"
 +
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:450
++#, c-format
++msgid "Out of memory!\n"
++msgstr "स्मृतिक बाहर!\n"
 +
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "readahead에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:455
++#, c-format
++msgid "Error!  Shell is not valid.\n"
++msgstr "त्रुटि!  शेल वैध नहि अछि.\n"
 +
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"프로그램이 비표준 위치에 있는 파일을 읽는 것을 허용합니다 (default_t)  "
++#: ../newrole/newrole.c:512
++#, c-format
++msgid "Unable to clear environment\n"
++msgstr "वातावरण साफ करबामे असमर्थ\n"
 +
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
++#, c-format
++msgid "Error changing uid, aborting.\n"
++msgstr "त्रुटि uid बदल रहल अछि, त्याग रहल अछि.\n"
 +
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:612
++#, c-format
++msgid "Error resetting KEEPCAPS, aborting\n"
++msgstr "त्रुटि KEEPCAPS फेर सेट कए रहल अछि, त्याग रहल अछि\n"
 +
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "ricci에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:635
++#, c-format
++msgid "Error connecting to audit system.\n"
++msgstr "सिस्टम ऑडिट संबंधन मे त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:641
++#, c-format
++msgid "Error allocating memory.\n"
++msgstr "स्मृति संभाजन मे त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:648
++#, c-format
++msgid "Error sending audit message.\n"
++msgstr "ऑडिट संदेश भेजबा मे त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
++#, c-format
++msgid "Could not determine enforcing mode.\n"
++msgstr "पुनर्बलन मोड निश्चित नहि कए सकल.\n"
 +
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "rshd에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:699
++#, c-format
++msgid "Error!  Could not open %s.\n"
++msgstr "त्रुटि!  %s खोल नहि सकैत.\n"
 +
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
++#: ../newrole/newrole.c:705
++#, c-format
++msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
++msgstr "%s!  %s क लेल मोजुदा संदर्भ नहि पाबि सकैत, tty फेर लेबल नहि कए रहल अछि.\n"
 +
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:715
++#, c-format
++msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
++msgstr "%s!  %s क लेल नवीन संदर्भ नहि पाबि सकल, tty फेर लेबल नहि कए सकैत.\n"
 +
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh가 데몬으로서가 아닌 inetd에서 실행하는 것을 허용합니다 "
++#: ../newrole/newrole.c:725
++#, c-format
++msgid "%s!  Could not set new context for %s\n"
++msgstr "%s!  %s क लेल नवीन संदर्भ नहि सेट कए सकल\n"
 +
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Samba가 nfs 디렉토리를 공유하는것을 허용합니다  "
++#: ../newrole/newrole.c:772
++#, c-format
++msgid "%s changed labels.\n"
++msgstr "%s लेबल बदललकाह.\n"
 +
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL 인증 서버"
++#: ../newrole/newrole.c:778
++#, c-format
++msgid "Warning! Could not restore context for %s\n"
++msgstr "चेतावनी! %s क लेल संदर्भ जमा नहि कए सकल\n"
 +
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl 인증 서버가 /etc/shadow 읽는 것을 허용합니다 "
++#: ../newrole/newrole.c:835
++#, c-format
++msgid "Error: multiple roles specified\n"
++msgstr "त्रुटि: बहुल भूमिका निर्दिष्ट\n"
 +
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"X-Windows 서버가 메모리 영역을 실행 가능하고 쓰기 가능하게 맵핑하는 것을 허용"
-+"합니다    "
++#: ../newrole/newrole.c:843
++#, c-format
++msgid "Error: multiple types specified\n"
++msgstr "त्रुटि: बहुल प्रकार निर्दिष्ट\n"
 +
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:850
++#, c-format
++msgid "Sorry, -l may be used with SELinux MLS support.\n"
++msgstr "क्षमा करू, -l केँ SELinux MLS समर्थन क संग प्रयोग कएल जाए सकैत अछि.\n"
 +
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon 데몬에 대한 SELinux 보안 비활성화     "
++#: ../newrole/newrole.c:855
++#, c-format
++msgid "Error: multiple levels specified\n"
++msgstr "त्रुटि: बहुल स्तर निर्दिष्ट\n"
 +
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo, su에 영향을 미치는 변환을 허용하지 않습니다 "
++#: ../newrole/newrole.c:865
++#, c-format
++msgid "Error: you are not allowed to change levels on a non secure terminal \n"
++msgstr "त्रुटि: अहाँकेँ असुरक्षित टर्मिनल पर लेबल केँ बदलबा क लेल अनुमति प्राप्त नहि अछि \n"
 +
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "커널 모듈을 로드하기 위한 프로세스를 허용하지 않습니다 "
++#: ../newrole/newrole.c:891
++#, c-format
++msgid "Couldn't get default type.\n"
++msgstr "पूर्वनिर्धारित प्रकार नहि पाबि सकल.\n"
 +
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "커널 SELinux 정책을 수정하기 위한 프로세스를 허용하지 않습니다    "
++#: ../newrole/newrole.c:901
++#, c-format
++msgid "failed to get new context.\n"
++msgstr "नये संदर्भ पाबै मे विफल.\n"
 +
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:908
++#, c-format
++msgid "failed to set new role %s\n"
++msgstr "%s नयी भूमिका नहि सेट कए सकल\n"
 +
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "setrans에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:915
++#, c-format
++msgid "failed to set new type %s\n"
++msgstr "नवीन प्रकार %s सेट करबामे विफल\n"
 +
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:925
++#, c-format
++msgid "failed to build new range with level %s\n"
++msgstr "%s स्तर क संग नवीन परिसर बनाबै मे विफल\n"
 +
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:930
++#, c-format
++msgid "failed to set new range %s\n"
++msgstr "%s नवीन परिसर सेट करबामे विफल\n"
 +
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:938
++#, c-format
++msgid "failed to convert new context to string\n"
++msgstr "नवीन संदर्भ स्ट्रिंग मे बदलबा मे विफल\n"
 +
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:943
++#, c-format
++msgid "%s is not a valid context\n"
++msgstr "%s एकटा वैध संदर्भ नहि अछि\n"
 +
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:950
++#, c-format
++msgid "Unable to allocate memory for new_context"
++msgstr "new_context क लेल स्मृति आबंटित करबामे समर्थ"
 +
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "ssnort 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:976
++#, c-format
++msgid "Unable to obtain empty signal set\n"
++msgstr "रिक्त संकेत सेट पाबै मे असमर्थ\n"
 +
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:984
++#, c-format
++msgid "Unable to set SIGHUP handler\n"
++msgstr "SIGHUP नियंत्रण सेट करबामे असमर्थ\n"
 +
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:1053
++#, c-format
++msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
++msgstr "क्षमा करू, newrole सिर्फ SELinux कर्नेल पर प्रयोग कएल जाए सकैत अछि.\n"
 +
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "스팸 차단 기능 "
++#: ../newrole/newrole.c:1070
++#, c-format
++msgid "failed to get old_context.\n"
++msgstr "old_context केँ पाबै मे विफल.\n"
 +
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:1077
++#, c-format
++msgid "Warning!  Could not retrieve tty information.\n"
++msgstr "चेतावनी! tty सूचना नहि पाबि सकैत.\n"
 +
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "spamd가 홈 디렉토리에 액세스하는 것을 허용합니다 "
++#: ../newrole/newrole.c:1098
++#, c-format
++msgid "error on reading PAM service configuration.\n"
++msgstr "PAM सेवा विन्यास पर पढ़बा मे त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assassin 데몬 네트워크 액세스를 허용합니다 "
++#: ../newrole/newrole.c:1133
++#, c-format
++msgid "newrole: incorrect password for %s\n"
++msgstr "newrole: %s क लेल गलत गुड़किल्ली\n"
 +
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:1160
++#, c-format
++msgid "newrole: failure forking: %s"
++msgstr "newrole: विभाजन मे विफलता: %s"
 +
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
++#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
++#, c-format
++msgid "Unable to restore tty label...\n"
++msgstr "tty स्तर फेर जमा करबामे असमर्थ...\n"
 +
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "squid 데몬이 네트워크에 접속하는것을 허용합니다 "
++#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
++#, c-format
++msgid "Failed to close tty properly\n"
++msgstr "tty केँ विधिवत रूपेँ बंद करबामे विफल\n"
 +
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:1224
++#, c-format
++msgid "Could not close descriptors.\n"
++msgstr "विवरणकर्ता बंद नहि सकल.\n"
 +
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh 데몬에 대한 SELinux 보안 비활성화    "
++#: ../newrole/newrole.c:1251
++#, c-format
++msgid "Error allocating shell's argv0.\n"
++msgstr "शैल argv0 आबंटित करबामे त्रुटि.\n"
 +
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "sysadm_r:sysadm_t로서 ssh 로그인을 허용합니다 "
++#: ../newrole/newrole.c:1287
++#, c-format
++msgid "Unable to restore the environment, aborting\n"
++msgstr "वातावरण फेर भंडारित करबामे असमर्थ, रोक रहल अछि\n"
 +
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"staff_r 사용자가 sysadm 홈 디렉토리를 검색하고 파일을 읽는 것을 허용합니다 "
-+"(예: ~/.bashrc) "
++#: ../newrole/newrole.c:1298
++msgid "failed to exec shell\n"
++msgstr "शेल निष्पादन मे विफल\n"
 +
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "전사적 SSL 터널 "
++#: ../load_policy/load_policy.c:22
++#, c-format
++msgid "usage:  %s [-qi]\n"
++msgstr "usage:  %s [-qi]\n"
 +
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel 데몬에 대한 SELinux 보안 비활성화    "
++#: ../load_policy/load_policy.c:71
++#, c-format
++msgid "%s:  Policy is already loaded and initial load requested\n"
++msgstr "%s:  नीति पहिने सँ लोड कएल हुआ अछि आओर आरंभिक लोड निवेदित अछि\n"
 +
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel 데몬이 xinetd 외부에서 독립형으로 실행하는 것을 허용합니다  "
++#: ../load_policy/load_policy.c:80
++#, c-format
++msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
++msgstr "%s:  नीति लोड नहि कए सकैत अछि आओर पुनर्बलन मोड निवेदित:  %s\n"
 +
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat 데몬에 대한 SELinux 보안 비활성화    "
++#: ../load_policy/load_policy.c:90
++#, c-format
++msgid "%s:  Can't load policy:  %s\n"
++msgstr "%s:  नीति नहि लोड कए सकैत अछि:  %s\n"
 +
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:92 ../scripts/chcat:169
++msgid "Requires at least one category"
++msgstr "कम सँ कम एकटा श्रेणी जरूरी"
 +
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:106 ../scripts/chcat:183
++#, c-format
++msgid "Can not modify sensitivity levels using '+' on %s"
++msgstr "'+' %s पर प्रयोग करते हुये संवेदनशीलता स्तर नहि बदल सकैत अछि"
 +
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "시스템 cron 작업에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:110
++#, c-format
++msgid "%s is already in %s"
++msgstr "%s पहिने सँ %s मे अछि"
 +
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:188 ../scripts/chcat:198
++#, c-format
++msgid "%s is not in %s"
++msgstr "%s %s मे नहि अछि"
 +
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:267 ../scripts/chcat:272
++msgid "Can not combine +/- with other types of categories"
++msgstr "+/- केँ आन श्रेणी प्रकार सँ जोड़ि नहि सकैत"
 +
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:319
++msgid "Can not have multiple sensitivities"
++msgstr "बहुल संवेदनशीलता नहि राखि सकैत अछि"
 +
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:325
++#, c-format
++msgid "Usage %s CATEGORY File ..."
++msgstr "प्रयोग %s CATEGORY फाइल ..."
 +
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev 데몬에 대한 SELinux 보안 비활성화   "
++#: ../scripts/chcat:326
++#, c-format
++msgid "Usage %s -l CATEGORY user ..."
++msgstr "प्रयोग %s -l CATEGORY प्रयोक्ता ..."
 +
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml 데몬에 대한 SELinux 보안 비활성화    "
++#: ../scripts/chcat:327
++#, c-format
++msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
++msgstr "प्रयोग %s [[+|-]CATEGORY],...]q फाइल ..."
 +
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
++#: ../scripts/chcat:328
++#, c-format
++msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
++msgstr "प्रयोग %s -l [[+|-]CATEGORY],...]q प्रयोक्ता ..."
++
++#: ../scripts/chcat:329
++#, c-format
++msgid "Usage %s -d File ..."
++msgstr "प्रयोग %s -d फाइल ..."
++
++#: ../scripts/chcat:330
++#, c-format
++msgid "Usage %s -l -d user ..."
++msgstr "प्रयोग %s -l -d प्रयोक्ता ..."
++
++#: ../scripts/chcat:331
++#, c-format
++msgid "Usage %s -L"
++msgstr "प्रयोग %s -L"
++
++#: ../scripts/chcat:332
++#, c-format
++msgid "Usage %s -L -l user"
++msgstr "प्रयोग %s -L -l प्रयोक्ता"
++
++#: ../scripts/chcat:333
++msgid "Use -- to end option list.  For example"
++msgstr "प्रयोग करू -- विकल्प सूची समाप्त करबाक लेल.  उदाहरण क लेल"
++
++#: ../scripts/chcat:334
++msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
++msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
++
++#: ../scripts/chcat:335
++msgid "chcat -l +CompanyConfidential juser"
++msgstr "chcat -l +CompanyConfidential juser"
++
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
++msgid "Options Error %s "
++msgstr "विकल्प त्रुटि %s"
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
 +msgstr ""
-+"xinetd가 도메인 변환이 정의되지 않은 xinetd에 의해 시작되는 서비스를 포함하"
-+"여 제한없이 실행하는 것을 허용합니다  "
 +
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
 +msgstr ""
-+"rc 스크립트가 도메인 변환이 정의되지 않은 rc 스크립트에 의해 시작되는 데몬을 "
-+"포함하여 제한없이 실행하는 것을 허용합니다  "
 +
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "rpm이 제한없이 실행하는 것을 허용합니다 "
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
 +msgstr ""
-+"hotplug 및 insmod 같은 권한이 있는 유틸리티가 제한없이 실행하는 것을 허용합니"
-+"다  "
 +
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:208
++#: ../gui/fcontextPage.py:88
 +msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
++"File\n"
++"Type"
 +msgstr ""
-+"user_r에게 su, sudo, userhelper를 통해 sysadm_r에 도달하는 것을 허용합니다. "
-+"그렇지 않을 경우, staff_r만이 이에 도달할 수 있습니다. "
 +
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "사용자가 마운트 명령을 실행하게 합니다 "
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "일반 사용자에게 직접 마우스 액세스를 허용 (X 서버에서만 허용) "
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "사용자가 dmesg 명령을 실행하는 것을 허용합니다 "
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
 +msgstr ""
-+"사용자가 네트워크 인터페이스를 제어하는 것을 허용합니다 (USERCTL=true 필요) "
 +
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "일반 사용자가 핑 (ping)하는 것을 허용합니다 "
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "사용자에게 noextattrfile을 읽기/쓰기 허용 (FAT, CDROM, FLOPPY) "
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "사용자에게 usb 장치 읽기/쓰기를 허용합니다 "
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
 +msgstr ""
-+"사용자가 TCP 서버를 실행하는 것을 허용 (포트로 바인드하고 동일한 도메인 및 외"
-+"부 사용자의 연결을 허용) 이를 비활성화하면 FTP를 수동 모드로 강제하고 다른 프"
-+"로토콜을 변경시킬 수 있음  "
 +
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "사용자가 ttyfiles에 대한 통계 허용 "
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware 데몬에 대한 SELinux 보안 비활성화     "
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog 데몬에 대한 SELinux 보안 비활성화     "
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm 데몬에 대한 SELinux 보안 비활성화    "
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm이 sysadm_r:sysadm_t로 로그인하는것을 허용합니다  "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen이 물리적 디스크 장치를 읽기/쓰기하는 것을 허용합니다 "
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "xen 제어에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS 암호 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS 전송 데몬에 대한 SELinux 보안 비활성화    "
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 +
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
-+"SELinux webadm 사용자가 권한이 없는 사용자 홈 디렉토리를 관리하는 것을 허용합"
-+"니다 "
 +
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
 +msgstr ""
-+"SELinux webadm 사용자가 권한이 없는 사용자 홈 디렉토리를 읽는 것을 허용합니"
-+"다 "
 +
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "%s '%s'을(를) 정말로 삭제하시겠습니까?  "
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s 삭제 "
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
 +
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s 추가 "
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
 +
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s 수정 "
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "허용 "
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "강제 "
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "비활성화 "
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
 +
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "상태"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
 +
-+#: ../gui/statusPage.py:133
++#: ../gui/polgen.glade:516
 +msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
 +msgstr ""
-+"정책 유형을 변경하면 다음 부팅 시 전체 파일 시스템을 다시 레이블해야 하는 원"
-+"인이 될 수 있습니다. 이러한 작업은 파일 시스템 크기에 따라 오랜 시간이 소요"
-+"될 수 있습니다. 계속 진행하시겠습니까?   "
 +
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
 +msgstr ""
-+"SELinux 비활성으로 변경하려면 재부팅해야 합니다. 이는 권장되는 방법이 아닙니"
-+"다. 나중에 SELinux를 다시 활성화하려면 시스템을 다시 레이블해야 합니다. 시스"
-+"템에서 SELinux가 문제의 원인이 되는 지를 확인하고자 할 경우, 단지 오류를 기록"
-+"하고 SELinux 정책을 강제하지 않는 허용 모드를 사용할 수 있습니다. 허용 모드"
-+"는 재부팅할 필요가 없습니다. 계속 진행하시겠습니까?  "
 +
-+#: ../gui/statusPage.py:152
++#: ../gui/polgen.glade:537
 +msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
 +msgstr ""
-+"SELinux 활성으로 변경하면 다음 부팅 시 전체 파일 시스템을 다시 레이블해야 하"
-+"는 원인이 될 수 있습니다. 이러한 작업은 파일 시스템 크기에 따라 오랜 시간이 "
-+"소요될 수 있습니다. 계속 진행하시겠습니까?        "
 +
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:12
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "SELinux 로그인 맵핑 추가 "
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux 네트워크 포트 추가 "
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux 유형"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"레벨"
 +
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "파일 사양 "
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "파일 유형 "
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+"전체 파일\n"
-+"일반 파일\n"
-+"디렉토리\n"
-+"문자 장치\n"
-+"블록 장치\n"
-+"소켓\n"
-+"심볼릭 링크\n"
-+"이름이 지정된 파이프\n"
 +
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux 사용자 추가"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux 관리 "
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "추가"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "등록 정보(_P) "
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "삭제(_D)"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "관리 객체 선택  "
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>선택:</b>"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "시스템 디폴트 강제 모드 "
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+"비활성\n"
-+"허용\n"
-+"강제\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "현재 강제 모드 "
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "시스템 디폴트 정책 유형: "
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"다음 부팅시 전체 파일 시스템을 다시 레이블할 지를 선택합니다. 다시 레이블하"
-+"는 작업은 시스템의 크기에 따라 오랜 시간이 소요될 수 있습니다. 정책 유형을 변"
-+"경하거나 비활성화 상태에서 강제 (enforcing) 상태로 변경할 경우, 다시 레이블해"
-+"야 합니다.  "
 +
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "다음 부팅시 다시 레이블 "
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "부울 설정을 시스템 디폴트로 전환 "
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "사용자 설정 부울 및 모든 부울 사이에서 전환 "
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "부울 잠금 마법사 실행   "
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "잠금... "
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "필터"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "파일 문맥 추가"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "파일 문맥 수정"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "파일 문맥 삭제"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "모든 파일 문맥과 사용자 설정 파일 문맥 사이에서 전환 "
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux 사용자 맵핑 추가"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux 사용자 맵핑 수정"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux 사용자 맵핑 삭제"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "사용자 추가 "
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "사용자 수정 "
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "사용자 삭제 "
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "변환 추가"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "변환 변경"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "변환 삭제"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "네트워크 포트 추가"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "네트워크 포트 편집"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "네트워크 포트 삭제"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "사용자 설정 포트와 모든 포트 사이에서 전환 "
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "새 정책 모듈 생성"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "정책 모듈 읽어오기"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "읽어올 수 있는 정책 모듈 삭제"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"추가 감사 (audit) 규칙을 활성화/비활성화합니다. 주로 이는 로그 파일에 기록되"
-+"지 않습니다.  "
 +
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "프로세스 모드를 허용 (permissive)으로 변경 "
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "프로세스 모드를 강제 (enforcing)로 변경       "
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "프로세스 도메인 "
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
 +
-+#: ../gui/usersPage.py:138
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
++
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
++
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
++
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
++
++#: ../gui/polgengui.py:352
 +#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux 사용자 '%s'이(가) 필요합니다"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils-2.0.85/po/ku.po
---- nsapolicycoreutils/po/ku.po        2011-02-17 15:11:25.362730954 -0500
-+++ policycoreutils-2.0.85/po/ku.po    2011-02-18 16:03:41.382975840 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
++msgid "%s must be a directory"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -137723,7 +138265,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -138851,18 +139393,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -138903,7 +139441,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -138912,25 +139449,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -138942,58 +139473,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -139001,169 +139532,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -139171,978 +139685,479 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils-2.0.85/po/lo.po
---- nsapolicycoreutils/po/lo.po        2011-02-17 15:11:25.938721441 -0500
-+++ policycoreutils-2.0.85/po/lo.po    2011-02-18 16:03:41.383975847 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/mk.po b/policycoreutils/po/mk.po
+index 150182a..17899a3 100644
+--- a/policycoreutils/po/mk.po
++++ b/policycoreutils/po/mk.po
+@@ -1,22 +1,23 @@
+-# translation of mk.po to Macedonian
++# SOME DESCRIPTIVE TITLE.
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ #
+-# Bozidar Proevski <bobibobi@freemail.com.mk>, 2007.
++# Translators:
+ # Arangel Angov <arangel@linux.net.mk>, 2007.
++# Bozidar Proevski <bobibobi@freemail.com.mk>, 2007.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: mk\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-07-28 23:44+0200\n"
+-"Last-Translator: Arangel Angov <arangel@linux.net.mk>\n"
+-"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: LANGUAGE <LL@li.org>\n"
+ "Language: mk\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
+@@ -83,11 +84,8 @@ msgid "Could not set exec context to %s.\n"
+ msgstr "Не можев да поставам контекст за извршување на %s.\n"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
+ #: ../audit2allow/audit2allow:230
+-#, fuzzy
+ msgid "******************** IMPORTANT ***********************\n"
  msgstr ""
+-"\n"
+-"******************** ВАЖНО ***********************\n"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+@@ -98,9 +96,8 @@ msgid "global"
  msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Не можев да стартувам semanage-трансакција"
++msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+@@ -117,9 +114,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Не можев да воспоставам поврзување со semanage"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Не можев да поставам MLS-опсег за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -134,28 +130,26 @@ msgid "Could not start semanage transaction"
+ msgstr "Не можев да стартувам semanage-трансакција"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Не можев да стартувам semanage-трансакција"
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Не можев да ги прикажам SELinux-корисниците"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
+@@ -165,9 +159,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Не можев да ја додадам улогата %s за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+@@ -214,9 +208,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Не можев да проверам дали е дефинирано мапирање за најава за %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux-корисникот %s не постои"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -285,16 +279,20 @@ msgid "Could not list login mappings"
+ msgstr "Не можев да ги прикажам мапирањата за најави"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+-msgstr "Потребен е SELinux-тип"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -312,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "Не можев да пребарувам во корисниците за %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Не можев да додадам контекст за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
+@@ -405,6 +403,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+@@ -417,9 +416,8 @@ msgid "Port is required"
+ msgstr "Потребна е порта"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Невалиден префикс %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+@@ -506,14 +504,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Не можев да ја изменам портата %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr ""
+-msgstr "Не можев да ги прикажам портите"
++msgstr ""
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "Не можев да ја избришам портата %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -537,14 +534,13 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "Потребна е порта"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+@@ -565,14 +561,14 @@ msgstr "Не можев да креирам клуч за %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "Не можев да проверам дали е дефинирана порта %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "Не можев да креирам клуч за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -581,74 +577,72 @@ msgid "Could not create context for %s"
+ msgstr "Не можев да креирам контекст за %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "Не можев да поставам име за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "Не можев да поставам корисник во контекстот за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "Не можев да поставам улога во контекстот за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "Не можев да поставам тип во контекстот за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "Не можев да поставам mls-полиња во контекстот за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "Не можев да поставам контекст за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "Не можев да ја додадам портата %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "Портата %s/%s не е дефинирана"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "Не можев да пребарувам на портата %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "Не можев да ја изменам портата %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "Портата %s/%s е дефинирана во политиката и не може да биде избришана"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "Не можев да го избришам интерфејсот %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Не можев да го избришам мапирањето за најава за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Не можев да ги прикажам портите"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -722,9 +716,8 @@ msgid "Could not delete interface %s"
+ msgstr "Не можев да го избришам интерфејсот %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Не можев да го избришам интерфејсот %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
+@@ -739,9 +732,9 @@ msgid "Context"
  msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Контекстот за датотека за %s е веќе дефиниран"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "File context for %s is not defined"
+@@ -749,9 +742,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux-корисникот %s не постои"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+@@ -830,14 +823,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Не можев да го изменам контекстот за датотека за %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr ""
+-msgstr "Не можев да ги прикажам контекстите на датотеките"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+-msgstr "Не можев да го избришам контекстот за датотека за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+@@ -896,14 +888,14 @@ msgid "Could not query file context %s"
+ msgstr "Не можев да го пребарувам контекстот на датотека %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "Мора да наведете префикс"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr "Не можев да ја избришам логичката вредност %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
+@@ -954,7 +946,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
+@@ -1146,9 +1139,9 @@ msgid "failed to get old_context.\n"
+ msgstr "не успеав да го добијам old_context.\n"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Грешка!  Не можам да преземам информации за tty.\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1195,9 +1188,9 @@ msgid "failed to exec shell\n"
+ msgstr "не успеав да извршам школка\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "употреба:  %s [-bq]\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+@@ -1205,9 +1198,9 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  Не можам да ја вчитам политиката:  %s\n"
++msgstr ""
  
-@@ -1270,3 +1296,2064 @@
+ #: ../load_policy/load_policy.c:90
  #, c-format
+@@ -1293,181 +1286,2096 @@ msgstr "chcat -- -KompanijaDoverlivo /dokumenti/biznisplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +KompanijaDoverlivo jkorisnik"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "Грешка во опциите %s "
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Не можам да го отворам %s: преводите не се поддржани на машини што немаат "
+-#~ "MLS"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -140151,13 +140166,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -140179,7 +140194,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -140206,7 +140221,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -140214,15 +140229,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -140247,481 +140258,665 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Преводите не може да содржат празни места „%s“ "
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Невалидно ниво „%s“ "
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s е веќе дефинирано во преводите"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s не е дефинирано во преводите"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Мапирањето за најава за %s е веќе дефинирано"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Не можев да го додадам SELinux-корисникот %s"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux-корисникот %s е веќе дефиниран"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Потребна е порта"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Портата %s/%s е веќе дефинирана"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Интерфејсот %s е веќе дефиниран"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Грешка при иницијализацијата на способностите, прекинувам.\n"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Грешка при поставувањето на способностите, прекинувам.\n"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Грешка при поставувањето на KEEPCAPS, прекинувам.\n"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Грешка при исклучувањето на способностите, прекинувам.\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Грешка при исклучувањето на способноста SETUID, прекинувам.\n"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Грешка при ослободувањето на способностите\n"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "преводите не се поддржани на машини што немаат MLS"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Потребен е SELinux-тип"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Потребен е SELinux-тип"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Грешка при испраќањето порака за контрола.\n"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Мора да наведете улога"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Мора да наведете улога"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Мора да наведете улога"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Генерирам датотека за тип на спроведување: %s.te"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Интерфејсот %s не е дефиниран"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Контекстот за датотека за %s не е дефиниран"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux-корисникот %s не е дефиниран"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Компилирам политика"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Проверувам %s за автентичност.\n"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Потребен е SELinux-тип"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Не можев да го додадам SELinux-корисникот %s"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Не можев да го изменам SELinux-корисникот %s"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Не можев да го избришам SELinux-корисникот %s"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Не можев да го изменам SELinux-корисникот %s"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Не можам да ја прочитам политиката на складиштето."
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Потребен е SELinux-тип"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Requires value"
+-#~ msgstr "Побарува вредност"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Има потреба од 2 или повеќе аргументи"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "%s not defined"
+-#~ msgstr "%s не е дефинирано"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s не е валидна за објектите %s\n"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "опсегот не е поддржан на машини што немаат MLS"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Невалидна вредност %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "За да може да го вчитате во кернелот овој нов креиран пакет со политики,\n"
+-#~ "мора да го извршите \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Грешка во опциите: %s "
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -140754,7 +140949,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -141882,18 +142077,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -141934,7 +142125,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -141943,25 +142133,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -141973,58 +142157,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -142032,169 +142216,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -142202,1593 +142369,2302 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lo.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils-2.0.85/po/lt.po
---- nsapolicycoreutils/po/lt.po        2011-02-17 15:11:25.284732243 -0500
-+++ policycoreutils-2.0.85/po/lt.po    2011-02-18 16:03:41.383975847 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/ml.po b/policycoreutils/po/ml.po
+index a3c1888..fa76e08 100644
+--- a/policycoreutils/po/ml.po
++++ b/policycoreutils/po/ml.po
+@@ -1,25 +1,22 @@
+-# translation of ml.po to
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
++# Translators:
+ # Ani Peter <apeter@redhat.com>, 2006, 2007.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: ml\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-01 13:24+0530\n"
+-"Last-Translator: \n"
+-"Language-Team:  <en@li.org>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Malayalam <discuss@lists.smc.org.in>\n"
++"Language: ml\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+-"\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -28,7 +25,7 @@ msgid ""
+ "         <args ...> are the arguments to that script."
  msgstr ""
+ "USAGE: run_init <script> <args ...>\n"
+-"  where: <script> പ്രവറ്‍ത്തിപ്പിക്കുവാനുളള init scriptന്‍റെ പേര്,\n"
++"  where: <script> പ്രവര്‍ത്തിപ്പിക്കുവാനുളള init scriptന്‍റെ പേര്,\n"
+ "         <args ...> സ്ക്രിപ്പ്റ്റിനുളള arguments."
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+@@ -58,7 +55,7 @@ msgstr "getpassന് /dev/tty തുറക്കുവാന്‍ സാധി
+ #: ../run_init/run_init.c:275
+ #, c-format
+ msgid "run_init: incorrect password for %s\n"
+-msgstr "run_init: %sന് തെറ്റായ പാസ്വേഡ് \n"
++msgstr "run_init: %sന് തെറ്റായ  പാസ്‌വേര്‍ഡ് \n"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../run_init/run_init.c:309
+ #, c-format
+@@ -107,16 +104,15 @@ msgstr "SELinux policy മാനേജ് ചെയ്തിട്ടില്
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "പോളിസി സ്റ്റോറ്‍ വായിക്കുവാന്‍ സാധിക്കുന്നില്ല."
++msgstr "പോളിസി സ്റ്റോര്‍ വായിക്കുവാന്‍ സാധിക്കുന്നില്ല."
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+ msgstr "semanage കണക്ഷന്‍ സ്ഥാപിക്കുവാന്‍ സാധ്യമല്ല"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%sന് MLS റയ്ന്ച് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "MLS സജ്ജമാക്കിയ അവസ്ഥ പരീക്ഷിക്കുവാന്‍ സാധ്യമായില്ല"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -124,36 +120,33 @@ msgstr "ഇത് വരെ സാക്ഷാത്കരിച്ചിട്
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "സെമനേജ് ഇടപാടു് നിലവില്‍ പുരോഗമിക്കുന്നു"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage transaction ആരംഭിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage transaction ആരംഭിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "semanage transaction സമര്‍പ്പിക്കുവാന്‍ സാധ്യമായില്ല"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "സെമനേജ് ഇടപാടു് പുരോഗമിക്കുന്നില്ല"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux യൂസറുകളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "SELinux ഘടകങ്ങള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "ഘടകത്തിന്റെ പേര്"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "ലക്കം"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "പ്രവര്‍ത്തന രഹിതം"
+@@ -163,9 +156,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%sന് റോള്‍ %s ചേറ്‍ക്കുവാന്‍ സാധിക്കില്ല"
++msgstr ""
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not set MLS range for %s"
+@@ -177,24 +170,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "പെര്‍മിസ്സീവ്"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "പെര്‍മിസ്സീവ്"
++msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "പെര്‍മ്മിസ്സീവ് ഘടകം %s ക്രമികരിക്കുവാന്‍ സാധ്യമായില്ല (ഘടകം ഇന്‍സ്റ്റലേഷന്‍ പരാജയപ്പെട്ടു)"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "പെര്‍മ്മിസ്സീവ് ഘടകം %s നീക്കം ചെയ്യുവാന്‍ സാധ്യമായില്ല (നീക്കം ചെയ്യല്‍ പരാജയപ്പെട്ടു)"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -214,14 +205,14 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "%s എന്ന Linux യൂസറ്‍ നിലവിലില്ല"
++msgstr "%s എന്ന ലിനക്സ് ഗ്രൂപ്പ് നിലവിലില്ല"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ msgid "Linux User %s does not exist"
+-msgstr "%s എന്ന Linux യൂസറ്‍ നിലവിലില്ല"
++msgstr "%s എന്ന Linux ഉപയോക്താവു് നിലവിലില്ല"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:501
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+@@ -231,22 +222,22 @@ msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ഉണ
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+ #, python-format
+ msgid "Could not set name for %s"
+-msgstr "%sന് പേര് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് പേര് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ msgid "Could not set MLS range for %s"
+-msgstr "%sന് MLS റയ്ന്ച് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് MLS പരിധി സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:514
  #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgid "Could not set SELinux user for %s"
+-msgstr "%sന് SELinux യൂസറിനെ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് SELinux ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:518
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+ msgid "Could not add login mapping for %s"
+-msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+ #: ../semanage/seobject.py:536
+ msgid "Requires seuser or serange"
+@@ -283,15 +274,20 @@ msgid "Could not list login mappings"
+ msgstr "ലോഗിന്‍ മാപ്പിംങുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "പ്രവേശന നാമം"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux ഉപയോക്താവ്"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+ msgstr "MLS/MCS പരിധി"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+@@ -300,38 +296,38 @@ msgstr "MLS/MCS പരിധി"
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sഎന്ന SELinux ഉപയോക്താവു്്നല്‍കിയിട്ടുണ്ടോടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+ msgid "Could not query user for %s"
+-msgstr "Could not query user for %s"
++msgstr "%s-നുള്ള ഉപയോക്താവിനെ ലഭ്യമാക്കുവാന്‍ സാധിച്ചില്ല"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%sനുളള ഫൈല്‍ context ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നു് കുറഞ്ഞതു് ഒരു ജോലി എങ്കിലും ചേര്‍ത്തിരിക്കണം"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr ""
+-msgstr "%sഎന്ന SELinux യൂസറ്‍ സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല "
++msgstr "%s എന്ന SELinux ഉപയോക്താവിനെ സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല "
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr ""
+-msgstr "%sന് റോള്‍ %s ചേറ്‍ക്കുവാന്‍ സാധിക്കില്ല"
++msgstr "%s നു് റോള്‍ %s ചേര്‍ക്കുവാന്‍ സാധിക്കില്ല"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr ""
+-msgstr "%sന് MLS ലവല്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് MLS പരിധി സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr ""
+-msgstr "%sന് പ്രഫിക്സ് %s ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് പ്രഫിക്സ് %s ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+@@ -341,7 +337,7 @@ msgstr "%sന് കീ extract ചെയ്യുവാന്‍ സാധി
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr ""
+-msgstr "SELinux യൂസറ്‍ %s ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "SELinux ഉപയോക്താവു് %s ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+@@ -354,17 +350,17 @@ msgstr "പ്രഫിക്സ് അല്ലെന്കില്‍ റോ
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടില്ല"
++msgstr "%s എന്ന SELinux ഉപയോക്താവു് നല്‍കിയിട്ടില്ല"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr ""
+-msgstr "SELinux യൂസറ്‍ %sനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "SELinux ഉപയോക്താവു് %s-നെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "SELinux യൂസറ്‍ %sനെ പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല"
++msgstr "SELinux ഉപയോക്താവു് %s-നെ പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -373,12 +369,12 @@ msgstr "%sന് SELinux യൂസറിനെ നീക്കം ചെയ്
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr ""
+-msgstr "SELinux യൂസറുകളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "SELinux ഉപയോക്താക്കളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr ""
+-msgstr "യൂസറ്‍ %sനുളള റോളുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "ഉപയോക്താവു് %s-നുളള റോളുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -401,6 +397,7 @@ msgid "MCS Range"
+ msgstr "MCS പരിധി"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
+ msgstr "SELinux റോളുകള്‍"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+@@ -410,12 +407,11 @@ msgstr "udp അല്ലെന്കില്‍ tcp എന്ന പ്രോ
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
++msgstr "പോര്‍ട്ട് ആവശ്യമുണ്ട്"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "അസാധുവായ പ്രിഫിക്സ് ആണ്%s"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:979
+ #, python-format
+@@ -430,17 +426,17 @@ msgstr "ടൈപ്പ് ആവശ്യമുണ്ട്ല്ല "
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr ""
+-msgstr "%s/%sഎന്ന പോറ്‍ട്ട് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sഎന്ന പോര്‍ട്ട് നല്‍കിയിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
  msgid "Port %s/%s already defined"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s already defined"
++msgstr "പോര്‍ട്ട് %s/%s നിലവില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr ""
+-msgstr "%s/%sഎന്ന പോറ്‍ട്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sഎന്ന പോര്‍ട്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+@@ -450,32 +446,32 @@ msgstr "%s/%sന് context സൃഷ്ടിക്കുവാന്‍ സാ
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ യൂസറ്‍ ടൈപ്പ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%s-നുള്ള പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരം എന്നു് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ mls ഫീല്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീല്‍ഡുകള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr ""
+-msgstr "%s/%sന് പോറ്‍ട്ട് context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%s എന്ന പോര്‍ട്ട് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
+@@ -489,17 +485,17 @@ msgstr "setype ആവശ്യമുണ്ട്"
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
  #, python-format
  msgid "Port %s/%s is not defined"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s define ചെയ്തിട്ടില്ല"
++msgstr "പോര്‍ട്ട് %s/%s ലഭ്യമാക്കിയിട്ടില്ല"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr ""
+-msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s/%s എന്ന പോര്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "പോര്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
  msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+@@ -513,16 +509,16 @@ msgstr "പോര്‍ട്ട് %s നീക്കം ചെയ്യുവ
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
++msgstr "പോര്‍ട്ട് %s/%s പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "പോര്‍ട്ട് %s/%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr ""
+-msgstr "പോറ്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "പോര്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -532,18 +528,17 @@ msgstr "SELinux രീതിയിലുള്ള പോര്‍ട്ട്"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "പോര്‍ട്ട് നംബര്‍"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
++msgstr "നോഡിന്റെ വിലാസം ആവശ്യമുണ്ട്"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "അപരിചിതം അല്ലെങ്കില്‍ ലഭ്യമല്ലാത്ത സമ്പ്രദായം"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -560,14 +555,14 @@ msgstr "%sയ്ക്ക് കീ ഉണ്ടാക്കുവാന്‍ 
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "%s/%sഎന്ന പോറ്‍ട്ട് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന വിലാസം നിഷ്കര്‍ഷിച്ചിട്ടുണ്ടെങ്കില്‍ ഇതു് പരിശോധിക്കുവാന്‍ സാധ്യമല്ല"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "%sയ്ക്ക് ഒരു കീ ഉണ്ടാക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള വിലാസം ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -576,110 +571,108 @@ msgid "Could not create context for %s"
+ msgstr "%sന് context ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%sന് പേര് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള മാസ്ക് ക്രമികരിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ജോലി ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരും എന്നു് ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%sന് ഫൈല്‍ context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റ് ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-ലുള്ള വിലാസം ചേര്‍ക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s define ചെയ്തിട്ടില്ല"
++msgstr "%s എന്ന വിലാസം നിഷ്കര്‍ഷിച്ചിട്ടില്ല"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "വിലാസം %s-നായി ചോദിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "വിലാസം %s-ല്‍ മാറ്റം വരുത്തുവാന്‍ സാധ്യമല്ല"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "പോറ്‍ട്ട് %s/%s പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
++msgstr "വിലാസം %s പോളിസിയില്‍ നിഷ്കര്‍ഷിച്ചിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
+-msgstr "%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "വിലാസം %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് പരിഷ്കരിക്കുവാന്‍ നീക്കം ചെയ്യുവാന്‍ സാസാധിച്ചില്ല"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr ""
+-msgstr "പോറ്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "വിലാസങ്ങള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ലഭ്യമാക്കിയിട്ടുണ്ടോ  എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നു് ഇന്റര്‍ഫെയിസ് ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരം എന്നു് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr ""
+-msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+@@ -689,41 +682,40 @@ msgstr "%sന് മെസ്സേജ് context സെറ്റ് ചെയ
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ലഭ്യമാക്കിയിട്ടില്ല"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr ""
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ്് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
+-msgstr "ഇന്‍റ്ററ്‍ഫെയ്സുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "ഇന്റര്‍ഫെയിസുകള്‍‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr ""
+@@ -734,9 +726,9 @@ msgid "Context"
+ msgstr "കോണ്‍ടെക്സ്റ്റ്"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%sനുളള ഫൈല്‍ context define ചെയ്തിട്ടുണ്ട്"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -744,24 +736,24 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "%s എന്ന Linux യൂസറ്‍ നിലവിലില്ല"
++msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%s-നുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sനുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+@@ -792,18 +784,18 @@ msgstr "%sനുളള ഫൈല്‍ context ഉണ്ടാക്കുവാ
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr ""
+-msgstr "%sന് ഫൈല്‍ context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sന് ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr ""
+-msgstr "%sനുളള ഫൈല്‍ context ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
++msgstr "%sനുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+@@ -845,11 +837,11 @@ msgstr "%sനുളള ഫൈല്‍ context നീക്കം ചെയ്
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr ""
+-msgstr "ഫൈല്‍ contextകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr ""
+-msgstr "ലോക്കല്‍ ഫൈല്‍ contextകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "ലോക്കല്‍ ഫൈല്‍ കോണ്‍ടെക്സ്റ്റുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
+@@ -866,11 +858,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -889,14 +880,14 @@ msgid "Could not query file context %s"
+ msgstr "context ചോദ്യം ചെയ്യുവാന്‍ സാധിക്കാഞ്ഞ ഫൈല്‍ ആണ് %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "ഒരു മൂല്ല്യം പറഞ്ഞിരിക്കണം"
++msgstr "താഴെ പറഞ്ഞിരിക്കുന്നതില്‍ ഒരു മൂല്ല്യം പറഞ്ഞിരിക്കണം: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "ബൂള്യന്‍ %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
++msgstr "ബൂള്യന്‍ %s-നു് സജീവമായ ഒരു മൂല്ല്യം ക്രമികരിക്കുവാനായില്ല"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -906,7 +897,7 @@ msgstr "ബൂ്ബള്യന്‍ %s പരിഷ്കരിക്കു
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr ""
++msgstr "തെറ്റായ രീതി %s: റിക്കോര്‍ഡ് %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+@@ -939,15 +930,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux ബൂളിയന്‍"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "അവസ്ഥ"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "വിവരണം"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -989,12 +980,12 @@ msgstr "എന്‍വിറോണ്‍മെന്‍റ് വെടിപ
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr "uid മാറ്റുന്നതില്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
++msgstr "uid മാറ്റുന്നതില്‍ പിഴവ്, നിര്‍ത്തുന്നു.\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../newrole/newrole.c:612
+ #, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr "KEEPCAPS റീസെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിറ്‍ത്തുന്നു\n"
++msgstr "KEEPCAPS റീസെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിര്‍ത്തുന്നു\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../newrole/newrole.c:635
+ #, c-format
+@@ -1059,7 +1050,7 @@ msgstr "പിഴവ്: ഒന്നില്‍ കൂടുതല്‍ ട
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr "ക്ഷമിക്കണം, SELinux kernel സപ്പോറ്‍ട്ടില്‍ -l ഉപയോഗിക്കുവുന്നതാണ്.\n"
++msgstr "ക്ഷമിക്കണം, SELinux kernel പിന്തുണയില്‍ -l ഉപയോഗിക്കുവുന്നതാണ്.\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../newrole/newrole.c:855
+ #, c-format
+@@ -1149,7 +1140,7 @@ msgstr "PAM സര്‍വീസ് ക്രമികരണം വായിക
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "newrole: %sന്  തെറ്റായ പാസ്വേഡ് \n"
++msgstr "newrole: %sന്  തെറ്റായ പാസ്‌വേര്‍ഡ് \n"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../newrole/newrole.c:1160
  #, c-format
+@@ -1226,7 +1217,7 @@ msgstr "%sല്‍ %s ഇല്ല"
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+-msgstr "മറ്റ് കാറ്റഗറികളോടൊപ്പം +/- കൂട്ടിചേറ്‍ക്കുവാന്‍ സാധ്യമല്ല"
++msgstr "മറ്റ് കാറ്റഗറികളോടൊപ്പം +/- കൂട്ടിചേര്‍ക്കുവാന്‍ സാധ്യമല്ല"
+ #: ../scripts/chcat:319
+ msgid "Can not have multiple sensitivities"
+@@ -1284,1744 +1275,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "ഉപാധിയില്‍ പിഴവ്: %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s തുറക്കുവാന്‍ സാധിക്കുന്നില്ല: non-MLS മഷീനുകളില്‍ തര്‍ജ്ജമകള്‍ പിന്തുണയ്ക്കുന്നില്ല: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "ലവല്‍"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "തര്‍ജ്ജമ"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "തറ്‍ജിമകളില്‍ spaces '%s' ഉണ്ടാകുവാന്‍ പാടില്ല"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "അസാധുവായ ലവല്‍ ആണ് '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s already defined in translations"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s not defined in translations"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് define ചെയ്തിട്ടണ്ട്"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux യൂസര്‍ മാപ്പിങ് ചേര്‍ക്കുക"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടുണ്ട്"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "പോറ്‍ട്ട് %s/%s already defined"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടുണ്ട്"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "initing ല്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ക്രമീകരണങ്ങളില്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS സെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിറ്‍ത്തുന്നു\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "droppingല്‍ പിഴവ്, നിറ്‍ത്തുന്നു\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Error dropping SETUID capability, aborting\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps ഫ്രീ ചെയ്യുന്നതില്‍ പിഴവ്\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "non-MLS മഷീനുകളില്‍ തറ്‍ജിമകള്‍ സപ്പോറ്‍ട്ട് ചെയ്യുന്നില്ല"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "ബൂളിയന്‍"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "എല്ലാം "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "യഥേഷ്ടമാക്കിയിരിക്കുന്നു"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "ഫയലിന് പേരിടല്‍"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "ഫയലിനുള്ള\n"
+-#~ "പ്രത്യേകതകള്‍"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "രീതിയിലുള്ള ഫയല്‍"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "ഏത് തരത്തിലുള്ള\n"
+-#~ "ഫയല്‍"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "User Mapping"
+-#~ msgstr "യൂസര്‍ മാപ്പിങ്"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "പ്രവേശന\n"
+-#~ "നാമം"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "ഉപയോക്താവ്"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS പരിധി"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "'%s' ലോഗിന്‍ ആവശ്യമുണ്ട്"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "പോളിസി ഘടകം"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന സജ്ജമാക്കുക"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "അനി പീറ്റര്‍ <apeter@redhat.com>"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux പോളിസി ഉത്പാദന പ്രയോഗം"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "ഒരു പോളിസി ഫ്രെയിംവര്‍ക്കുണ്ടാക്കുക, SELinux ഉപയോഗിക്കുന്ന പ്രയോഗങ്ങള്‍ അല്ലെങ്കില്‍ "
+-#~ "ഉപയോക്താക്കള്‍ക്ക് പരിമിതി കല്‍പിക്കുക എന്നിവയ്ക്കായി ഈ പ്രയോഗം ഉപയോഗിക്കാം.   \n"
+-#~ "\n"
+-#~ "പ്രയോഗം ഉല്‍പാദിപ്പിക്കുന്നത്:\n"
+-#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ് ഫയല്‍ (te)\n"
+-#~ "ഇന്റര്‍ഫെയിസ് ഫയല്‍ (if)\n"
+-#~ "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയല്‍ (fc)\n"
+-#~ "ഷെല്‍ സ്ക്രിപ്റ്റ് (sh) - പോളിസി കംപൈല്‍ ചെയ്ത് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനായി ഉപയോഗിക്കുന്നു. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "ഏത് തരം പ്രയോഗം/ഉപയോക്താവിന്റെ ജോലി എന്ന് തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>പ്രയോഗങ്ങള്‍</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "init സ്ക്രിപ്റ്റുകള്‍ വഴി ബൂട്ട് ചെയ്യുമ്പോള്‍ ആരംഭിക്കുന്ന ഡെമണുകളാണ് സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍.  "
+-#~ "ഇതിന് സാധാരണയായി, /etc/rc.d/init.d-ല്‍ ഒരു സ്ക്രിപ്റ്റ് ആവശ്യമുണ്ട്."
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "xinetd ആരംഭിക്കുന്ന ഡെമണുകള്‍ ആണ് ഇന്റര്‍നെറ്റ് സര്‍വീസുകളുടെ ഡെമണ്‍"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ഇന്റര്‍നെറ്റ് സര്‍വീസസ് ഡെമണ്‍ (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr "വെബ് സര്‍വര്‍ (അപ്പാച്ചെ) ആരംഭിച്ച വെബ് പ്രയോഗങ്ങള്‍/സ്ക്രിപ്റ്റ് (CGI) CGI സ്ക്രിപ്റ്റുകള്‍"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "വെബ് ആപ്ളിക്കേഷന്‍/സ്ക്രിപ്റ്റ് (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവ് ആരംഭിക്കുന്നതിനുള്ള പ്രയോഗം ഏതാണോ അതാകുന്നു ഉപയോക്താവിനുള്ള പ്രയോഗം (യൂസര്‍ "
+-#~ "ആപ്ലിക്കേഷന്‍)"
+-
+-#~ msgid "User Application"
+-#~ msgstr "ഉപയോക്താവിനുള്ള പ്രയോഗം"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>ലോഗിന്‍ ചെയ്ത ഉപയോക്താക്കള്‍</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "നിലവിലുള്ള ഒരു ലോഗിന്‍ യൂസര്‍ റിക്കോര്‍ഡില്‍ മാറ്റം വരുത്തുന്നു."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "ഉപയോക്തവാന് നിലവിലുള്ള നിയമനങ്ങള്‍"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "ടെര്‍മിനല്‍ അല്ലെങ്കില്‍ റിമോട്ട് ലോഗിന്‍ വഴി മാത്രമേ സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് "
+-#~ "പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su "
+-#~ "എന്നിവ ലഭ്യമല്ല."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "ഏറ്റവും കുറഞ്ഞ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "എക്സ് അല്ലെങ്കില്‍ ടെര്‍മിനല്‍ വഴി സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  "
+-#~ "സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su എന്നിവ ലഭ്യമല്ല."
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "ഏറ്റവും കൂടിയ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su, sudo എന്നിവ "
+-#~ "ഇല്ലാത്ത ഉപയോക്താവ്."
+-
+-#~ msgid "User Role"
+-#~ msgstr "ഉപയോക്താവിന്റെ ജോലി"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su എന്നിവ ഇല്ലാത്ത "
+-#~ "ഉപയോക്താവിന് റൂട്ട് അഡ്മിനിസ്ട്രേഷന്‍ ജോലികളിലേക്ക് sudo ചെയ്യുവാന്‍ സാധിക്കുന്നു"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "അഡ്മിന്‍ ഉപയോക്താവിന്റെ നിയമനം "
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>റൂട്ട് ഉപയോക്താക്കള്‍</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "റൂട്ട് ആയി പ്രവര്‍ത്തിക്കുമ്പോള്‍, ഈ ഉപയോക്താവാണ് സിസ്റ്റം നിരീക്ഷിക്കുന്നത് എങ്കില്‍, റൂട്ട് "
+-#~ "അഡ്മിനിസ്ട്രേറ്റര്‍ യൂസര്‍ റോള്‍ തിരഞ്ഞെടുക്കുക.  ഈ ഉപയോക്താവിന് സിസ്റ്റമിലേക്ക് നേരിട്ട് "
+-#~ "പ്രവേശിക്കുവാന്‍ സാധ്യമല്ല."
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "റൂട്ട് അഡ്മിന്‍ യൂസര്‍ റോള്‍"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "പ്രയോഗത്തിന്റെ പേര് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ ജോലി നല്‍കുക"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
+-#~ msgid "Name"
+-#~ msgstr "പേര്"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "നിഷ്കര്‍ഷിക്കുന്നതിനായുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "പ്രയോഗത്തിന് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ നിയമനത്തിന് ഒരു പേര് നല്‍കുക."
+-
+-#~ msgid "Executable"
+-#~ msgstr "പ്രവര്‍ത്തിപ്പിക്കുവാന്‍ സാധിക്കുന്ന"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Init script"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "പ്രയോഗം തുടങ്ങുന്നതിനുള്ള init സ്ക്രിപ്റ്റിനുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "നിങ്ങള്‍ക്ക് യഥേഷ്ടം ഉപയോക്താവിന്റെ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr ""
+-#~ "ഉപയോക്താവ് ഏത് ജോലികളില്‍ നിന്നും ഈ പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറുന്നു എന്ന് "
+-#~ "തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "ഈ ഉപയോക്താവിന്റെ പരിമിതികള്‍ മാറുന്നതിനായുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "നിങ്ങള്‍ ഈ ഉപയോക്താവിന്റെ ജോലികള്‍ ഏത് പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറണം എന്ന് "
+-#~ "തിരഞ്ഞെടുക്കുക."
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "ഈ ഡൊമെയിനിലേക്ക് ഉപയോക്താവിന്റെ ഏതെല്ലാം ജോലികള്‍ മാറുന്നു എന്ന് തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "ഈ ഉപയോക്താവിന് കൈകാര്യം ചെയ്യുന്നതിനുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ഈ ഉപയോക്താവ് നിരീക്ഷിക്കുന്നതിനുള്ള ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക."
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "ഈ ഉപയോക്താവിന് കൂടുതല്‍ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "പ്രയോഗം/ഉപയോക്താവിന് ലഭ്യമാകുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP പോര്‍ട്ടുകള്‍</b>"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടിലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
+-#~ msgid "All"
+-#~ msgstr "എല്ലാം"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "0 ഉള്ള bindresvport-നെ വിളിക്കുന്നതിന് പ്രയോഗം/ഉപയോക്താവിനെ അനുവദിക്കുക. പോര്‍ട്ട് "
+-#~ "600-1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുക"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിന് ബൈന്‍ഡ് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
+-#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "മറ്റൊന്നിനും കരുതിട്ടില്ലാത്ത പോര്‍ട്ടുകള്‍ (>1024)"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "പോര്‍ട്ടുകള്‍ തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടുകള്‍ > 1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP പോര്‍ട്ടുകള്‍</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "പ്രയോഗം/ഉപയോക്താവ് കണക്ട് ചെയ്യുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി ടിസിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
+-#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
+-#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "സാധാരണ പ്രയോഗങ്ങളുടെ വിശേഷതകള്‍ തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog സന്ദേശങ്ങള്‍ എഴുതുന്നു\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp-ലുള്ള താല്‍ക്കാലിക ഫയലകുള്‍ ഉണ്ടാക്കുക/കൈകാര്യം ചെയ്യുക."
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "അധികാരം ഉറപ്പാക്കുന്നതിനായി പാം ഉപയോഗിക്കുക"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch അല്ലെങ്കില്‍ getpw* കോളുകള്‍ ഉപയോഗിക്കുന്നു"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ഉപയോഗിക്കുന്നു"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ഓഡിറ്റ് സന്ദേശങ്ങള്‍ അയയ്ക്കുന്നു"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "ടെര്‍മിനലുമായി ബന്ധപ്പെടുന്നു"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "ഈമെയില്‍ അയയ്ക്കുന്നു"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "പ്രയോഗം കൈകാര്യം ചെയ്യുന്നതിനുള്ള ഫയലുകള്‍/ഡയറക്ടറികള്‍ തിരഞ്ഞെടുക്കുക."
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Pid, ലോഗ്, /var/lib എന്നീ ഫയലുകളിലേക്ക് \"എഴുതുന്നതിന്\" ‌‌‌പ്രയോഗത്തിന് ആവശ്യമായ ഫയലുകള്‍/"
+-#~ "ഡയറക്ടറികള്‍ ചേര്‍ക്കുക ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "പ്രയോഗം ഉപയോഗിക്കുന്ന ബൂളിയനുകള്‍ തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "ഈ പ്രയോഗം/ഉപയോക്താവിന് ആവശ്യമുള്ള ബൂളിയനുകള്‍ ചേര്‍ക്കുക/നീക്കുക"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "പോളിസി ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "പോളിസി ഡയറക്ടറി"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "പോളിസി ഫയലുകള്‍ ലഭ്യമാക്കിയിരിക്കുന്നു"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
+-#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
+-#~ "കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ "
+-#~ "സ്ക്രിപ്റ്റ് പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
+-#~ "ഉപയോക്താവിനുള്ള ജോലികളിലേക്ക് ലിനക്സ് ലോഗിന്‍ ഉപയോക്താക്കളെ മാപ്പ് ചെയ്യുന്നതിനായി "
+-#~ "semanage അല്ലെങ്കില്‍ useradd ഉപയോഗിക്കുക\n"
+-#~ "സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
+-#~ "ഉപയോക്താവായി ലോഗിന്‍ ചെയ്ത് ഈ ജോലി പരീക്ഷിക്കുക .\n"
+-#~ "te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
+-#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
+-#~ "\n"
+-#~ "കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ "
+-#~ "സ്ക്രിപ്റ്റ് പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
+-#~ "സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
+-#~ "avc സന്ദേശങ്ങള്‍ ഉണ്ടാക്കുന്നതിനായി പ്രയോഗം പ്രവര്‍ത്തിപ്പിക്കുകയോ വീണ്ടും ആരംഭിക്കുകയോ "
+-#~ "ചെയ്യുക .\n"
+-#~ "te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "ബൂളിയന്‍സ് ഡയലോഗ് ചേര്‍ക്കുക"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "ബൂളിയന്‍ പേര്"
+-
+-#~ msgid "Role"
+-#~ msgstr "നിയമനം"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "നിലവിലുള്ള _ഉപയോക്താവ്"
+-
+-#~ msgid "Application"
+-#~ msgstr "പ്രയോഗം"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ഒരു ഡയറക്ടറി ആയിരിക്കണം"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "നിങ്ങള്‍ ഒരു ഉപയോക്താവ് ആയിരിക്കണം"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "പരിമിതി ആവശ്യമുള്ള നിഷ്കര്‍ഷിക്കേണ്ട ഫയല്‍ തിരഞ്ഞെടുക്കുക."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "പരിമിതി ആവശ്യമുള്ള ഇനിറ്റ് സ്ക്രിപ്റ്റ് ഫയല്‍ തിരഞ്ഞെടുക്കുക."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "പ്രയോഗം ഉണ്ടാക്കുകയോ അതിലേക്ക് എഴുതുകയോ ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഫയല്‍ തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "പ്രയോഗത്തിന്റെ ഉടമസ്ഥതയിലുള്ളതും അതിലേക്ക് എഴുതുകയും ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഡയറക്ടറി "
+-#~ "തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "പോളിസി ഫയലുകള്‍ ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "നിലവിലുള്ള പോളിസിയില്‍ %s_t എന്ന രീതി നിഷ്കര്‍ഷിച്ചിരിക്കുന്നു.\n"
+-#~ "നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "പേര് ഉറപ്പാക്കുക"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "നിലവിലുള്ള പോളിസിയില്‍ %s.pp എന്ന ഘടകം ലഭ്യമാണ്.\n"
+-#~ "നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "ഒരു പേര് പറഞ്ഞിരിക്കണം"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "പ്രവര്‍ത്തനത്തിലുള്ളത് പറഞ്ഞിരിക്കണം"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux ക്രമികരിക്കുക"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "പോര്‍ട്ടുകളുടെ നംബര്‍ 1 മുതല്‍ %d ആയിരിക്കണം "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയ/ഉപയോക്താവിനുള്ള ഒരു പേര് നല്‍കുക"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER തരത്തിലുള്ളവ നിഷ്കര്‍ഷിക്കുവാന്‍ സാധ്യമല്ല"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "ഡെമണ്‍ പ്രയോഗങ്ങള്‍ക്ക് മാത്രമേ init സ്ക്രിപ്റ്റ് ഉപയോഗിക്കുവാന്‍ സാധിക്കൂ"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog ഒരു ബൂളിയന്‍ ആയിരിക്കണം"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER തരത്തിലുള്ളവയ്ക്ക് സ്വയമേ ഒരു tmp തരത്തിലുള്ളത് ലഭ്യമാകുന്നു"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയയ്ക്കുള്ള പാഥ് നല്‍കുക"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "എന്‍ഫോര്‍സ്മെന്റ് ഫയല്‍ ടൈപ്പ് ചെയ്യുക"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ഇന്റര്‍ഫെയിസ് ഫയല്‍"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയലുകള്‍"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "സ്ക്രിപ്റ്റ് ക്രമികരിക്കുക"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux തരത്തിലുള്ള\n"
+-#~ "പോര്‍ട്ട്"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "സമ്പ്രദായം"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "ലവല്‍"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "പോര്‍ട്ട്"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "\"%s\" എന്ന പോര്‍ട്ട് നംബര്‍ തെറ്റാണ്.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "പട്ടികയില്‍ കാണുക"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "ഗ്രൂപ്പായുള്ള കാഴ്ച"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux സര്‍വീസ് സുരക്ഷ"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "അഡ്മിന്‍"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "/-ലേക്ക് corefile-കള്‍ എഴുതുന്നതിനായി എല്ലാ ഡെമണുകളേയും അനുവദിക്കുക"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "നല്‍കിയിട്ടില്ലാത്ത tty ഉപയോഗിക്കുന്നതിനുള്ള കഴിവ് എല്ലാ ഡെമണുകള്‍ക്കും അനുവദിക്കുക"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "ഉപയോക്താവിനുള്ള അനുമതികള്‍"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഗസ്റ്റ് "
+-#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
+-#~ "gadmin SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "മെമ്മറി സുരക്ഷ"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "ജാവാ എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "mount ഉപയോഗിച്ച് ഏത് ഫയലും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "mount ഉപയോഗിച്ച് ഏത് ഡയറക്ടറിയും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh-keysign പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ssh-നെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി staff "
+-#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
+-#~ "sysadm SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
+-#~ "പരിമിതകളില്ലാത്ത SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "നെറ്റ്‌വര്‍ക്ക് ക്രമികരണം"
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "പേരില്ലാത്ത പാക്കറ്റുകളെ നെറ്റ്‌വര്‍ക്കിലൂടെ കടത്തിവിടാന്‍ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി യൂസര്‍ "
+-#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr ""
+-#~ "unconfined_execmem-ലേക്ക് dyntrans ചെയ്യുന്നതിനായി പരിമിതികളില്ലാത്തവയെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "ഡേറ്റാ ശേഖരണങ്ങള്‍"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "mysql സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "postgres സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "X ഷെയര്‍ഡ് മെമ്മറിയിലേക്ക് എഴുതുന്നതിനായി ക്ളൈന്റുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
+-#~ "xguest SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "NIS-നൊപ്പം പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഡെമണുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Web Applications"
+-#~ msgstr "വെബ് പ്രയോഗങ്ങള്‍"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "സ്റ്റാഫ് SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "sysadm SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "യൂസര്‍ SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "xguest SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് എഴുതുന്നതിനായി സ്റ്റാഫ് വെബ് ബ്രൌസറുകളെ അനുവദിക്കുക"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "ക്ളസ്റ്റര്‍ സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "പല ഉള്ളടക്കങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി cdrecord-നെ അനുവദിക്കുക. nfs, samba, മാറ്റുവാന്‍ "
+-#~ "സാധിക്കുന്ന ഡിവൈസുകള്‍, യൂസര്‍ temp, വിശ്വസനീയമല്ലാത്ത കണ്‍ടെന്റ് ഫയലുകള്‍ എന്നിവ"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "പ്രിന്റ് ചെയ്യല്‍"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd ബാക്കെന്‍ഡ് സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക "
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "നേരിട്ട് ഡെമണുകള്‍ ആരംഭിക്കുന്നതിനായി sysadm_t-നെ അനുവദിക്കുക"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ഇവല്യൂഷനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "കളികള്‍"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "കളികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "വെബ് ബ്രൌസറുകള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "തണ്ടര്‍ബേര്‍ഡിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -143836,26 +144712,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -143864,47 +144750,69 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++#: ../gui/selinux.tbl:4
++msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "കോംപാറ്റിബിളിറ്റി"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr "സുരക്ഷയ്ക്ക് കോട്ടം തട്ടാത്തതും തകരാറുള്ളതുമായ കാര്യങ്ങള്‍ ഓഡിറ്റ് ചെയ്യരുത്"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
@@ -143962,7 +144870,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
@@ -143972,7 +144882,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "http rotatelogs-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
@@ -143984,11 +144896,15 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD സര്‍വീസ്"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
@@ -144033,693 +144949,1296 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd ചൈള്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr ""
+-#~ "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി ഇവല്യൂഷ്യന്‍, തണ്ടര്‍ബേര്‍ഡ് എന്നിവരെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ വായിക്കുന്നതിനായി മോസിലാ ബ്രൌസറിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "നെയിം സര്‍വീസ്"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "സാംബാ"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "ഒരു സാധാരണ ഉപയോക്താവിന് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി pppd-യെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "ppt-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "നിലവാരമില്ലാത്ത സ്ഥാനങ്ങളിലുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനുള്ള പ്രോഗ്രാമുകള്‍ അനുവദിക്കുക "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr ""
+-#~ "ഒരു ഡെമണ്‍ ആയി പ്രവര്‍ത്തിക്കുന്നതിന് പകരം inetd ആയി പ്രവര്‍ത്തിക്കുന്നതിന് ssh-നെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "nfs ഡയറക്ടറികള്‍ പങ്കിടുന്നതിനായി Samba-യെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL ഓഥന്റിക്കേഷന്‍ സര്‍വര്‍"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "/etc/shadow ലഭ്യമാക്കുന്നതിനായി sasl ഓഥന്റിക്കേഷന്‍ സര്‍വറിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "എക്സിക്യൂട്ടബിളും റൈറ്റബിളുമായി പ്രവര്‍ത്തിപ്പിക്കുന്നതിന് ഒരു മെമ്മറിയിലേക്ക് മാപ്പ് "
+-#~ "ചെയ്യുന്നതിനായി എക്സ്-വിന്‍ഡോസ് സര്‍വറിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo, su ബാധകമായവയിലേക്ക് മാറുന്നതിനായി അനുവദിക്കരുത്"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "കേര്‍ണല്‍ ഘടകങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "കേര്‍ണലിന്റെ SELinux പോളിസിയില്‍ മാറ്റം വരുത്തുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroublesoot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "സ്പാമിനുള്ള സുരക്ഷ "
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി spamd അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "സ്പാം അസ്സാസ്സിന്‍ ഡെമണ്‍ നെറ്റ്‌വര്‍ക്ക് പ്രവേശനം അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "സ്ക്വിഡ്"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "നെറ്റ്‌വര്‍ക്കിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി squid ഡെമണിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh ലോഗിനുകളെ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "sysadm ഹോം ഡയറക്ടറി തിരഞ്ഞ് ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി staff_r users-നെ അനുവദിക്കുക "
+-#~ "(such as ~/.bashrc)"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "യൂണിവേഴ്സല്‍ SSL ടണല്‍"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "xinetd-ന് പുറത്ത് ഒറ്റയ്ക്ക് പ്രവര്‍ത്തിക്കുന്നതിനായി stunnel ഡെമണിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "സിസ്റ്റം cron ജോലികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി xinetd-യെ അനുവദിക്കുക. ഡൊമെയില്‍ "
+-#~ "വ്യക്തമാക്കിയിട്ടില്ലാത്തതും അത് ആരംഭിക്കുന്നതുമായഏത് ഡസേവനങ്ങളുംഇതില്‍ ഉള്‍പ്പെടുന്നു."
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി rc സ്ക്രിപ്റ്റുകളെ അനുവദിക്കുക. ഡൊമെയില്‍ "
+-#~ "വ്യക്തമാക്കിയിട്ടില്ലാത്തതും rc സ്ക്രിപ്റ്റ് ആരംഭിക്കുന്നതുമായ ഏത് ഡെമണും ഇതില്‍ ഉള്‍പ്പെടുന്നു."
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "പരിതികളില്ലാതെ rpm പ്രവര്‍ത്തിക്കുന്നതിനായി അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "അനുവദനീയമായ പ്രയോഗങ്ങളായ hotplug, insmod എന്നിവ പരിമിതികളില്ലാതെ "
+-#~ "പ്രവര്‍ത്തിക്കുന്നതിന് അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "su, sudo, അല്ലെങ്കില്‍ userhelper ഉപയോഗിച്ച് user_r-നെ sysadm_r-ല്‍ "
+-#~ "എത്തിക്കുന്നതിനായി അനുവദിക്കുക. അല്ലായെങ്കില്‍, staff_r-ന് മാത്രമേ സാധിക്കൂ."
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "mount കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "സാധാരണ ഉപയോക്താക്കള്‍ക്ക് നേരിട്ടുള്ള മൌസ് ലഭ്യത അനുവദിക്കുക (എക്സ് സര്‍വറിന് മാത്രം അനുവദിക്കുക)"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "dmesg കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "നെറ്റ്‌വര്‍ക്ക് സംയോജക ഘടകങ്ങള്‍ നിയന്ത്രിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക "
+-#~ "(USERCTL=true എന്നതും ആവശ്യമുണ്ട്)"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "ping പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി സാധാരണ ഉപയോക്താവിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "r/w noextattrfile (FAT, CDROM, FLOPPY) r/w ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ "
+-#~ "അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "usb ഡിവൈസുകള്‍ rw ചെയ്യുന്നതിനായി ഉപയോക്താക്കളെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "ഇത് പ്രവര്‍ത്തനരഹിതമാക്കി ഉപയോക്താക്കളെ ടിസിപി സര്‍വറുകള്‍ പ്രവര്‍ത്തിക്കുന്നതിനായി "
+-#~ "അനുവദിക്കുന്നത് (പോര്‍ട്ടുകളിലേക്ക് ബൈന്‍ഡ് ചെയ്ത് അതേ ഡൊമിയിനില്‍ നിന്നും മറ്റുള്ളവരില്‍ നിന്നും "
+-#~ "കണക്ഷന്‍ സ്വീകരിക്കുക)  എഫ്ടിപി പാസ്സീവ് മോഡ് നിഷ്ക്രിയമാക്കി മറ്റ് സമ്പ്രദായങ്ങളും മാറ്റുന്നു."
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ttyfiles സ്റ്റാറ്റ് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm ലോഗിനുകള്‍ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "ഫിസിക്കല്‍ ഡിസ്ക് ഡിവൈസുകളിലേക്ക് റീഡ്/റൈറ്റ് പ്രവര്‍ത്തി xen അനുവദിക്കുക"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen control ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS പാസ്‌വേര്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS ട്രാന്‍സ്ഫര്‍ ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികള്‍ കൈകാര്യം ചെയ്യുന്നതിനായി SELinux "
+-#~ "webadm ഉപയോക്താവിനെ അനുവദിക്കുക"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി SELinux "
+-#~ "webadm ഉപയോക്താവിനെ അനുവദിക്കുക"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "നിങ്ങള്‍ക്ക് %s '%s' നീക്കം ചെയ്യണമെന്നുറപ്പാണോ?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s നീക്കം ചെയ്യുക"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s ചേര്‍ക്കുക"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s-ല്‍ മാറ്റം വരുത്തുക"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "പെര്‍മിസ്സീവ്"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "എന്‍ഫോര്‍സിങ്"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "പോളിസി മാറ്റിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
+-#~ "ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് "
+-#~ "മുമ്പോട്ട് പോകണമെന്നുറപ്പാണോ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux നിര്‍ജ്ജീവാമാക്കുന്നു എങ്കില്‍ റീബൂട്ട് ചെയ്യേണ്ടതുണ്ട്.  ഇത് ഉത്തമമല്ല. കാരണം, "
+-#~ "നിങ്ങള്‍ക്ക് പിന്നീട് SELinux ആവശ്യമാണ് എങ്കില്‍, ഓണ്‍ ചെയ്യുന്നതിനായി, സിസ്റ്റം വീണ്ടും "
+-#~ "റീലേബല്‍ ചെയ്യണ്ടതുണ്ട്. SELinux നിങ്ങളുടെ സിസ്റ്റമില്‍ എന്തെങ്കിലും തകരാറുകള്‍ ഉണ്ടാക്കുന്നുണ്ടോ "
+-#~ "എന്ന് അറിയണമെങ്കില്‍ നിങ്ങള്‍ക്ക് പെര്‍മ്മിസ്സീവ് മോഡിലേക്ക് മാറ്റാം. ഇത് പിശകുകള്‍ മാത്രം ലോഗ് "
+-#~ "ചെയ്യുന്നു, കൂടാതെ SELinux പോളിസി എന്‍ഫോഴ്സ് ചെയ്യുന്നുമില്ല. പെര്‍മ്മിസ്സീവ് മോഡുകള്‍ക്ക് റീബൂട്ട് "
+-#~ "ചെയ്യേണ്ടതില്ല.    നിങ്ങള്‍ക്ക് മുമ്പോട്ട് തുടരണമോ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux സജ്ജമാക്കിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
+-#~ "ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് "
+-#~ "മുമ്പോട്ട് പോകണമെന്നുറപ്പാണോ?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "പകര്‍പ്പവകാശം (c)2006 Red Hat, Inc.\n"
+-#~ "പകര്‍പ്പവകാശം (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux ലോഗിന്‍ മാപ്പിങ് ചേര്‍ക്കുക"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ ചേര്‍ക്കുക"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux തരത്തിലുള്ള"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "ലവല്‍"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "ഫയലിനുള്ള പ്രത്യേകതകള്‍"
+-
+-#~ msgid "File Type"
+-#~ msgstr "ഏത് തരം ഫയല്‍"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "എല്ലാ ഫയലുകളും\n"
+-#~ "സാധാരണ ഫയല്‍\n"
+-#~ "ഡയറക്ടറി\n"
+-#~ "ക്യാരക്ടര്‍ ഡിവൈസ്\n"
+-#~ "ബ്ളോക്ക് ഡിവൈസ്\n"
+-#~ "സോക്കറ്റ്\n"
+-#~ "സിംബോളിക് ലിങ്ക്\n"
+-#~ "നെയിമ്ഡ് പൈപ്പ്\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ഉപയോക്താവിനെ ചേര്‍ക്കുക"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux അഡ്മിനിസ്ട്രേഷന്‍"
+-
+-#~ msgid "Add"
+-#~ msgstr "ചേര്‍ക്കുക"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "ഗുണഗണങ്ങള്‍ (_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "നീക്കം ചെയ്യുക (_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "മാനേജ്മെന്റ് ഒബ്ജക്ട് തിരഞ്ഞെടുക്കുക"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>തിരഞ്ഞെടുക്കുക:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "സിസ്റ്റമില്‍ സ്വതവേയുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "നിലവിലുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "സിസ്റ്റത്തിന്റെ സ്വതവേയുള്ള പോളിസി തരത്തിലുള്ളവ: "
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ ചെയ്യണമെങ്കില്‍ "
+-#~ "തിരഞ്ഞെടുക്കുക.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ പോളിസി "
+-#~ "മാറ്റുകയോ, നിര്‍ജ്ജീവം എന്നതില്‍ നിന്നും എന്‍ഫോഴ്സിങ് ആകുകയോ ചെയ്യുന്നു എങ്കില്‍ റീലേബല്‍ ആവശ്യമുണ്ട്."
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ലേബല്‍ മാറ്റുക."
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "ബൂളിയന്‍ ക്രമികരണത്തിനെ സിസ്റ്റമിന്റെ സ്വതവേയുള്ളതാക്കി മാറ്റുക"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ ബൂളിയനുകളും തമ്മില്‍ മാറ്റുക"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "ഫില്‍‌റ്റര്‍"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ചേര്‍ക്കുക"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റില്‍ മാറ്റം വരുത്തുക"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് നീക്കം ചെയ്യുക"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയ ഫയലിന്റെ കോണ്‍ടെക്സ്റ്റും മറ്റെല്ലാം തമ്മില്‍ മാറ്റുക"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux യൂസര്‍ മാപ്പിങ് ചേര്‍ക്കുക"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux യൂസര്‍ മാപ്പിങില്‍ മാറ്റം വരുത്തുക"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux യൂസര്‍ മാപ്പിങ് നീക്കം ചെയ്യുക"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "തര്‍ജ്ജമ ചേര്‍ക്കുക"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "തര്‍ജ്ജമയില്‍ മാറ്റം വരുത്തുക"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "തര്‍ജ്ജമ നീക്കം ചെയ്യുക"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux ഉപയോക്താവില്‍ മാറ്റം വരുത്തുക"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് ചേര്‍ക്കുക"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടില്‍ മാറ്റം വരുത്തുക"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് നീക്കം ചെയ്യുക"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ പോര്‍ട്ടുകളും തമ്മില്‍ മാറ്റുക"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "പുതിയ പോളിസി ഘടകം ഉണ്ടാക്കുക"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "ലഭ്യമാകുന്ന പോളിസി ഘടകം നീക്കം ചെയ്യുക"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "കൂടുതലുള്ള ഓഡിറ്റ് നിയമങ്ങള്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക, അവ സാധാരണ ലോഗ് ഫയലുകളില്‍ റിപ്പോര്‍ട്ട് "
+-#~ "ചെയ്യപ്പെടുന്നില്ല."
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "സെന്‍സിറ്റിവിറ്റി നിലവാരം"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "'%s' എന്ന SELinux ഉപയോക്താവ് ആവശ്യമുണ്ട്"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "മൂല്ല്യം ആവശ്യമുണ്ട്"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും tcp പോര്‍ട്ടുകള്‍ > 1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുക"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും tcp പോര്‍ട്ടിലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "പ്രയോഗം/ഉപയോക്താവിന് ബൈന്‍ഡ് ചെയ്യുന്നതിനായി ടിസിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
+-#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux പോളിസി ഉത്പാദന ഡ്രൂയിഡ്"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "മറ്റൊന്നിനും കരുതിട്ടില്ലാത്ത പോര്‍ട്ടുകള്‍  (>1024)"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "0 ഉള്ള bindresvport ആണ് നിങ്ങളുടെ പ്രയോഗം ആവശ്യപ്പെടുന്നത് എങ്കില്‍ ഈ ചെക്ക്ബട്ടണ്‍ "
+-#~ "ഉപയോഗിക്കുക."
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "എന്‍ഫോര്‍സിങ്\n"
+-#~ "പെര്‍മിസ്സീവ്\n"
+-#~ "പ്രവര്‍ത്തന രഹിതം\n"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
@@ -144913,18 +146432,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -144965,7 +146480,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -144974,25 +146488,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -145004,58 +146512,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -145063,169 +146571,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -145233,1593 +146724,1947 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lt.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils-2.0.85/po/lv.po
---- nsapolicycoreutils/po/lv.po        2011-02-17 15:11:24.992737067 -0500
-+++ policycoreutils-2.0.85/po/lv.po    2011-02-18 16:03:41.383975847 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/mr.po b/policycoreutils/po/mr.po
+index 4065e2c..cfbcc4e 100644
+--- a/policycoreutils/po/mr.po
++++ b/policycoreutils/po/mr.po
+@@ -1,25 +1,27 @@
+-# translation of policycoreutils.HEAD.mr.po to marathi
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
+-# Rahul Bhalerao <rbhalera@redhat.com>, 2006.
++# Translators:
+ # Rahul Bhalerao <b.rahul.pm@gmail.com>, 2006.
++# Rahul Bhalerao <rbhalera@redhat.com>, 2006.
+ # sandeep shedmake <sandeep.shedmake@gmail.com>, 2007.
+-# Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008.
++# Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008, 2009.
++# Sandeep Shedmake <sshedmak@redhat.com>, 2010.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: policycoreutils.HEAD.mr\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-24 15:54+0530\n"
+-"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
+-"Language-Team: marathi\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Marathi (http://www.transifex.net/projects/p/fedora/language/"
++"mr/)\n"
++"Language: mr\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -28,8 +30,8 @@ msgid ""
+ "         <args ...> are the arguments to that script."
  msgstr ""
+ "वापर: run_init <script> <args ...>\n"
+-"  जेथे: <script> हे चालवायच्या init स्क्रीप्टचे नाव आहे,\n"
+-"         <args ...> हे त्या स्क्रीप्टचे आर्ग्यूमेंट्स आहेत."
++"  जेथे: <script> हे चालवायच्या init स्क्रिप्टचे नाव आहे,\n"
++"         <args ...> हे त्या स्क्रिप्टचे आर्ग्यूमेंट्स आहेत."
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+@@ -114,9 +116,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage जोडणी प्रस्तापित करू शकत नाही"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "MLS परिसीमा %s साठी निर्धारित करता आली नाही"
++msgstr "MLS कार्यान्वीत स्तरची चाचणी करणे अशक्य"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -124,38 +125,35 @@ msgstr "अजून लागू केले नाही"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage ट्रांजॅकशनची प्रगती आधिपासूनच आहे"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage व्यवहार सुरू करता आला नाही"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage व्यवहार सुरू करता आला नाही"
++msgstr "semanage व्यवहार पाठवू शकला नाही"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage ट्रांजॅकशनची प्रगती नाही"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux उपयोक्त्यांची यादी करता आली नाही"
++msgstr "SELinux विभागांची सूची दाखवणे अशक्य"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "घटकाचे नाव"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "आवृत्ती"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "अकार्यान्वीत"
++msgstr "बंद करणे"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not set MLS range for %s"
+@@ -163,9 +161,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "भुमिका %s जमा करता आली नाही %s करता"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -177,24 +175,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "परवानगीक"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "परवानगीक"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "परवानगीय क्षेत्र %s निश्चित करू शकले नाही (विभाग प्रतिष्ठापन अपयशी)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "परवानगीय क्षेत्र %s काढून टाकू शकत नाही (काढून टाकणे अपयशी)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -214,9 +210,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s साठी लॉगीन मॅपिंग व्याख्यीत केली आहे का हे तपासू शकलो नाही"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux उपयोक्ता %s अस्तित्वात नाही"
++msgstr "Linux समुह %s अस्तित्वात नाही"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -283,15 +279,20 @@ msgid "Could not list login mappings"
+ msgstr "लॉगीन मॅपिंग्सची यादी करू शकलो नाही"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "दाखलन नाव"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux वापरकर्ता"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "MLS/MCS क्षेत्र"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -309,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "%s साठी उपयोक्त्यास प्रश्न करू शकत नाही"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s साठी फाइल संदर्भ जोडता आला नाही"
++msgstr "%s साठी किमान एक भूमिका जोडली पाहिजे"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -401,6 +402,7 @@ msgid "MCS Range"
+ msgstr "MCS क्षेत्र"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "SELinux भूमिका"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -413,9 +415,8 @@ msgid "Port is required"
+ msgstr "पोर्ट आवश्यक आहे"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "अवैध पूर्वपद %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -532,18 +533,17 @@ msgstr "SELinux पोर्ट प्रकार"
  msgid "Proto"
- msgstr ""
+ msgstr "प्रोटो"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "पोर्ट क्रमांक"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "पोर्ट आवश्यक आहे"
++msgstr "नोड पत्ता आवश्यक आहे"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "अपरिचीत किंवा न आढळलेले शिष्टाचार"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -560,90 +560,88 @@ msgstr "%s साठी कळ बनवू शकलो नाही"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "%s/%s पोर्ट व्याख्यीत आहे काय हे तपासता आले नाही"
++msgstr "पत्ता %s व्याख्यीत आहे हे तपासता आले नाही"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "%s साठी कळ निर्माण करू शकत नाही"
++msgstr "%s करीता पत्ता बनवू शकले नाही"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr ""
+-msgstr "%s साठी संदर्भ निर्माण करता आला नाही"
++msgstr "%s साठी संदर्भ निर्माण करू शकले नाही"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%s साठी नाव ठेवता आले नाही"
++msgstr "%s करीता मास्क् निश्चित करता आले नाही"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%s साठी फाइल संदर्भात उपयोक्ता निर्धारित करता आला नाही"
++msgstr "%s करीता पत्ता संदर्भात वापरकर्ता निश्चित करू शकले नाही"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%s साठी फाइल संदर्भात भुमिका निर्धारित करता आली नाही"
++msgstr "%s साठी पत्ता संदर्भात भुमिका निश्चित करू शकले नाही"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%s च्या फाइल संदर्भात प्रकार निर्धआरित करता आला नाही"
++msgstr "%s करीता पत्ता संदर्भातील प्रकार निश्चित करू शकले नाही"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%s साठी फाइल संदर्भात mls क्षेत्रे निर्धारित करता आले नाहीत"
++msgstr "%s करीता पत्ता संदर्भ अंतर्गत mls क्षेत्र निश्चित करू शकत नाही"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%s साठी फाइल संदर्भ निर्धारित करता आला नाही"
++msgstr "%s करीता पत्ता संदर्भ निश्चित करू शकत नाही"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "%s/%s पोर्ट जोडू शकत नाही"
++msgstr "पत्ता %s जोडू शकत नाही"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "पोर्ट %s/%s व्याख्यीत नाही"
++msgstr "पत्ता %s निश्चित केले नाही"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "पोर्ट %s/%s ला प्रश्न करता आले नाही"
++msgstr "पत्ता %s ला प्रश्न विचारू शकत नाही"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "पोर्ट %s/%s मध्ये बदल करता आले नाहीत"
++msgstr "पत्ता %s संपादीत करू शकत नाही"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "पोर्ट %s/%s धोरणात व्याख्यीत आहे, नष्ट करता येणार नाही"
++msgstr "पत्ता %s नियमावलीत निश्चित केले आहे, वगळले जाऊ शकत नाही"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "%s नष्ट करता आला नाही"
++msgstr "पत्ता %s नष्ट करू शकत नाही"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s साठी लॉगीन मॅपिंग नष्ट करू शकलो नाही"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "पोर्टांची यादी करता आली नाही"
++msgstr "addrs यादीत दर्शवू शकले नाही"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -717,9 +715,8 @@ msgid "Could not delete interface %s"
+ msgstr "इंटरफेस %s नष्ट करता आला नाही"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "इंटरफेस %s नष्ट करता आला नाही"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
+@@ -734,9 +731,9 @@ msgid "Context"
+ msgstr "संदर्भ"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s साठी फाइल संदर्भ आधिच व्याख्यीत"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not add file context for %s"
+@@ -744,9 +741,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux उपयोक्ता %s अस्तित्वात नाही"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "File context for %s is not defined"
+@@ -866,11 +863,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -889,14 +885,14 @@ msgid "Could not query file context %s"
+ msgstr "फाइल संदर्भ %s ला प्रश्न करता आले नाही"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "तुम्ही मुल्य प्रविष्ट केलेच पाहिजे"
++msgstr "तुम्ही खालिल मुल्य पैकी एक मुल्य प्रविष्ट केले पाहिजे: %s"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "boolean %s नष्ट करता आले नाही"
++msgstr "बूलीयन %s चे सक्रीय मुल्य निश्चित करू शकले नाही"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+@@ -906,7 +902,7 @@ msgstr "boolean %s मध्ये बदल करता आले नाही
+ #: ../semanage/seobject.py:2025
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "अयोग्य प्रकार %s: रेकॉर्ड %s"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
+@@ -939,15 +935,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux बूलीयन"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "स्तिथी"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "वर्णन"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
+@@ -979,7 +975,7 @@ msgstr "स्मृतीबाहेर!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "चूक!  शेल वैध नाही.\n"
++msgstr "त्रुटी!  शेल वैध नाही.\n"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
+ #: ../newrole/newrole.c:512
+ #, c-format
+@@ -989,27 +985,27 @@ msgstr "पर्यावरण साफ करण्यास असमर्
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr "uid बदलण्यात चूक, सोडत आहे.\n"
++msgstr "uid बदलण्यात त्रुटी, सोडत आहे.\n"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+ #: ../newrole/newrole.c:612
+ #, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr "KEEPCAPS पुनःनिर्धारित करण्यात चूक, सोडत आहे\n"
++msgstr "KEEPCAPS पुनःनिर्धारित करण्यात त्रुटी, सोडत आहे\n"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "ऑडिट प्रणालीस जोडण्यात चूक\n"
++msgstr "ऑडिट प्रणालीस जोडण्यात त्रुटी\n"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
+ #: ../newrole/newrole.c:641
+ #, c-format
+ msgid "Error allocating memory.\n"
+-msgstr "स्मृती वाटपात चूक.\n"
++msgstr "स्मृती वाटपात त्रुटी.\n"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "ऑडिट संदेश पाठवण्यात चूक.\n"
++msgstr "ऑडिट संदेश पाठवण्यात त्रुटी.\n"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+@@ -1019,7 +1015,7 @@ msgstr "बलप्रविष्ट रीत ठरवता आली न
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "चूक!  %s उघडू शकलो नाही.\n"
++msgstr "त्रुटी!  %s उघडू शकलो नाही.\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../newrole/newrole.c:705
+ #, c-format
+@@ -1049,12 +1045,12 @@ msgstr "सुचना! %s साठी संदर्भ पुनःरक
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "चूक: बहू भूमिका दर्शवल्या\n"
++msgstr "त्रुटी: बहू भूमिका दर्शवल्या\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../newrole/newrole.c:843
+ #, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr "चूक: बहू प्रकार दर्शवले\n"
++msgstr "त्रुटी: बहू प्रकार दर्शवले\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../newrole/newrole.c:850
+ #, c-format
+@@ -1064,7 +1060,7 @@ msgstr "क्षमा, -l SELinux MLS आधारासह वापरता
+ #: ../newrole/newrole.c:855
+ #, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr "चूक: बहू स्तर दर्शवले\n"
++msgstr "त्रुटी: बहू स्तर दर्शवले\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../newrole/newrole.c:865
+ #, c-format
+@@ -1174,7 +1170,7 @@ msgstr "वर्णक बंद करता आले नाहीत.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr "शेलचा argv0 वाटण्यात चूक.\n"
++msgstr "शेलचा argv0 वाटण्यात त्रुटी.\n"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../newrole/newrole.c:1287
  #, c-format
+@@ -1284,1732 +1280,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-msgstr "पर्याय चूक %s "
++msgstr "पर्याय त्रुटी %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s उघडण्यास असमर्थ: अनुवाद non-MLS मशीनींवर समर्थित नाहीत: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "स्थर"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "अनुवाद"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "अनुवादांत मोकळ्या जागा '%s' असू शकत नाहीत "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "अवैध स्तर '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s अनुवादांत आधिच व्याख्यीत"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s अनुवादांत व्याख्यीत नाही"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s साठी लॉगीन मॅपिंग आधिच व्याख्यीत केलेली आहे"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux मॅपिंग वापरकर्ता समाविष्टीत करा"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux उपयोक्ता %s आधिच व्याख्यीत आहे"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "पोर्ट आवश्यक आहे"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "पोर्ट %s/%s आधिच व्याख्यीत"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "इंटरफेस %s आधिच व्याख्यीत"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "क्षमता आरंभण्यात चूक, सोडत आहे.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "क्षमता निर्धारित करण्यात चूक, सोडत आहे\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS निर्धारित करण्यात चूक, सोडत आहे\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "क्षमता सोडण्यात चूक, सोडत आहे\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID क्षमता सोडण्यात चूक, सोडत आहे\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps मुक्त करण्यात चूक\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "अनुवाद non-MLS मशीनींवर समर्थित नाहीत"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "बूलीयन"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "सर्व"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "इच्छिक"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "फाइल लेबलींग"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "फाइल\n"
+-#~ "संरचना"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "फाइल प्रकार"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "फाइल\n"
+-#~ "प्रकार"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "User Mapping"
+-#~ msgstr "वापरकर्ता मॅपिंग"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "दाखलन\n"
+-#~ "नाव"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "वापरकर्ता"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS क्षेत्र"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "'%s' दाखलन आवश्यक आहे"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "करार घटक"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "ऑडीट अकार्यान्वीत करा"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "ऑडीट कार्यान्वीत करा"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "करार घटक दाखल करा"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux करार निर्माण साधन"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "SELinux वापरकर्ते व त्यावरील अनुप्रयोगांना मर्यादीत करण्यासाठी, हा साधनचा करार "
+-#~ "रचना निर्माणासाठी केला जाउ शकतो.   \n"
+-#~ "\n"
+-#~ "साधन खालील निर्माण करतो:\n"
+-#~ "जबरन फाइल प्रकार (te)\n"
+-#~ "संवादपट फाइल (if)\n"
+-#~ "फाइल संदर्भ फाइल (fc)\n"
+-#~ "शेल स्क्रीप्ट (sh) - ज्याचा वापर करार संकलन व प्रतिष्ठापना करीता होतो. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "अनुप्रयोग/वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>अनुप्रयोग</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "मानक Init डीमन असे डीमन जी बूटच्यावेळी init स्क्रीप्ट च्या मदतीने सुरुवात होते.  या "
+-#~ "करीता /etc/rc.d/init.d मधील स्क्रीप्टची गरज लागते"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "मानक Init डीमन"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "इनटरनेट सेवा डीमन त्या डीमन आहेत जी xinetd च्या मदतीने सुरु होतात"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "इनटरनेट सेवा डीमन (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr "वेब अनुप्रयोग/Script (CGI) CGI स्क्रीप्ट वेब सर्वर (apache) द्वारे सुरुवात केलेले"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "वेब अनुप्रयोग/स्क्रीप्ट (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "वापरकर्ता अनुप्रयोग ती अनुप्रयोग आहेत जी आपल्याला वापरकर्त्याकडून मर्यादीत "
+-#~ "करतायेण्याजोगी वाटेल"
+-
+-#~ msgid "User Application"
+-#~ msgstr "वापरकर्ता अनुप्रयोग"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>वापरकर्ता दाखलन</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "सद्याचे वापरकर्ता दाखलन रेकॉर्ड संपादीत करा."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "अस्तित्वातील वापरकर्ता भूमिका"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "हा वापरकर्ता मशीन वर दाखलन टर्मिनल किंवा दूरर्स्थ दाखलन द्वारे दाखलन करेल.  "
+-#~ "मुलभूतरित्या वापरकर्ताकडे  setuid, संजाळ, su, sudo नसतील."
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "किमान टर्मिनल वापरकर्ता भूमिका"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "हा वापरकर्ता मशीनवर X किंवा टर्मिनल द्वारे दाखलन करू शकतो.  मुलभूतरित्या या "
+-#~ "वापरकर्त्याकडे setuid नाही, संजाळ नाही, sudo नाही, su नाही"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "किमान X Windows वापरकर्ता भूमिका"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, sudo नाही "
+-#~ "सक्षम वापरकर्ता."
+-
+-#~ msgid "User Role"
+-#~ msgstr "वापरकर्ता भूमिका"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, परंतु रूट "
+-#~ "प्रशासक भूमिका करीता sudo करू शकणार वापरकर्ता"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "प्रशासक वापरकर्ता भूमिका"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>रूट वापरकर्ता</b>"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "वापरकर्ता प्रणालीवर रुट मध्ये जर प्रणालीचा प्रशासक स्वरूपी कार्यरत असल्यास, रूट "
+-#~ "वापरकर्ता निवडा.  ह्या वापरकर्त्याला प्रणालीवर प्रत्यक्षरीत्या दाखल करता येणे शक्य "
+-#~ "होणार नाही."
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "रूट प्रशासक वापरकर्ता पध्दती"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "अनुप्रयोग किंवा वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "Name"
+-#~ msgstr "नाव"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "मर्यादीत एक्जीक्यूटेबेलाकरीता पूर्ण मार्ग प्रविष्ट करा."
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "मर्यदीत अनुप्रयोग किंवा वापरकर्ता भूमिका करीता एकमेव रीतीने नाव प्रविष्ट करा."
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "Executable"
+-#~ msgstr "एक्जीक्यूटेबल"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "Init script"
+-#~ msgstr "Init स्क्रीप्ट"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "मर्यदीत अनुप्रयोग सुरू करण्याकरीता init स्क्रीप्ट मध्ये पूर्ण मार्ग प्रविष्ट करा."
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "इच्छिक बनविण्याजोगी वापरकर्ता भूमिका निवडा"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "या अनुप्रयोग क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा."
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "ह्या वापरकर्तास स्थानांतर कसे असावे ह्या करीता अतिरीक्त अनुप्रयोग क्षेत्र निवडा."
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "या क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "हा वापरकर्ता प्रशासकीय कामास कोणते क्षेत्र वापरेल ती क्षेत्र निवडा"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "हा वापरकर्तास प्रशासकीय क्षेत्र आपण निवडून द्या."
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "अनुप्रयोगास/वापरकर्ताच्या संपर्कात येत असलेल्या tcp पोर्ट ची यादी प्रविष्ट करा"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP पोर्ट</b>"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "मर्यादीत अनुप्रयोग/वापरकर्त्यास कुठल्याही udp पोर्ट शी बंधनकारक होण्यास परवानगी देतो"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "All"
+-#~ msgstr "सर्व"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "अनुप्रयोगास/वापरकर्त्यास bindresvport 0 सह हाक देण्यास परवानगी द्या. पोर्ट "
+-#~ "600-1024 शी बांधणी करीत आहे"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
+-#~ "पोर्ट क्षे त्राचीयादी प्रविष्ट करा. उदाहरण: 612, 650-660"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "अनारक्षीत पोर्ट (>1024)"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Select Ports"
+-#~ msgstr "पोर्ट निवडा"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "अनुप्रयोगास/वापरकर्त्यास कुठल्याही udp पोर्ट > 1024 शी बंधनकारक होण्यास परवानगी देतो"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP पोर्टस्</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "ह्या अनुप्रयोगास/वापरकर्ता संपर्कात येत असलेल्या संजाळ पोर्टची यादी प्रविष्ट करा"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत tcp पोर्ट किंवा "
+-#~ "पोर्ट क्षेत्राची यादी प्रविष्ट करा.  उहारणार्थ: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
+-#~ "पोर्ट क्षेत्राची यादी प्रविष्ट करा. उदाहरण: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "साधारणतः अनुप्रोगाचे विशेष गुणधर्म"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog संदेश लिहीतो\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp मध्ये तात्पूरती फाइल निर्माण/संपादीत करा"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "अधिप्रमाणन करीता Pam चा वापर करतो"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch किंवा getpw* कॉल वापरतो"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus वापरतो"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ऑडिट संदेश पाठवितो"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "टर्मिनलशी संवाद साधतो"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "ईमेल पाठवा"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "मर्यादीत अनुप्रयोगच्या नियंत्रणातील फाइल/संचयीका निवडा"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ह्या अनुप्रयोगास लागणाऱ्या \"लेखन\" करीता फाइल/संचयीका समाविष्ट करा. Pid फाइल, "
+-#~ "लॉग फाइल, /var/lib फाइल ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "मर्यदीत अनुप्रयोग/वापरकर्ता करीता बूलीयन जोडा/काढूण टाका"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "करार संचयीका"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "निर्माण झालेल्या करार फाइल"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "हे साधन खालिल निर्माण करतो: \n"
+-#~ "टाइप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रीप्ट(sh).\n"
+-#~ "संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रीप्ट कार्यान्वीत "
+-#~ "करा.  \n"
+-#~ "आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
+-#~ "avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
+-#~ "te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
+-#~ "करा.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "हे साधन खालिल निर्माण करतो: \n"
+-#~ "टाईप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रीप्ट(sh).\n"
+-#~ "संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रीप्ट कार्यान्वीत "
+-#~ "करा.  \n"
+-#~ "आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
+-#~ "avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
+-#~ "te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
+-#~ "करा.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "बूलियन संवाद जोडा"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "बूलीयन नाव"
+-
+-#~ msgid "Role"
+-#~ msgstr "भूमिका"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "अस्तित्वातील_वापरकर्ता"
+-
+-#~ msgid "Application"
+-#~ msgstr "अनुप्रयोग"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s संचयीका असायला हवी"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "तुम्ही वापरकर्ता निवडला पाहिजे"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "कार्यान्वीत फाइल मर्यादीत करण्याकरीता निवडा."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "init script फाइल मर्यादीत करण्याकरीता निवडा."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "मर्यादीत अनुप्रयोगच्या नावी असलेले व त्यास लिहीतायेण्याजोगी असलेले संचयीका निवडा"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "टाइप %s_t आधिपासूनच सद्याचे करार मध्ये व्याख्यीत केले आहे.\n"
+-#~ "तुम्हाला पुढे जायचे?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "नाव तपासा"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "विभाग %s.pp आधिपासूनच सद्याचे करार मध्ये दाखल केले आहे.\n"
+-#~ "तुम्हाला नक्की पुढे जायचे?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "तुम्ही एक नाव प्रविष्ट केलेच पाहिजे"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "आपण एक्जीक्यूटेबल प्रविष्ट केलेच पाहिजे"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux संरचीत करा"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "पोर्टचे क्रमांकन किंवा क्रमांकाचे क्षेत्र 1 पासून %d पर्यंत असायला पाहिजे"
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "मर्यादीत कार्यपद्धती/वापरकर्त्यास नाव प्रविष्ट केले पाहिजे"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER प्रकार परवानगीरहीत एक्झीक्यूटेबल नाही"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "फक्त DAEMON अनुप्रयोगच init स्क्रीप्टचा वापर करू शकतात"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog बूलीयन संख्या असली पाहिजे "
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER प्रकार आपोआप tmp प्रकार मिळते"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "आपल्या मर्यादीत कार्यपद्धतीकरीता एक्जीक्यूटेबेल मार्ग प्रविष्ट केलाच पाहिजे"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "प्रकार सक्ती फाइल"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "संवादपट फाइल"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "फाइल संदर्भ फाइल"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Setup Script"
+-#~ msgstr "संरचना स्क्रीप्ट"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux पोर्ट\n"
+-#~ "प्रकार"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Protocol"
+-#~ msgstr "प्रोटोकॉल"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "स्थर"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "पोर्ट"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "पोर्ट क्रमांक \"%s\" वैध नाही.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "List View"
+-#~ msgstr "दृश्य पहा"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Group View"
+-#~ msgstr "संच दृश्य"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux सेवा सुरक्षा"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct डीमन करीता SELinux सुरक्षा अकार्यन्वीत करा"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Admin"
+-#~ msgstr "ऑडमीन"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "सर्व डीमनना कोरफाइल्स लिहीण्याकरीता परवानगी द्या /"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "अनिश्चित ttys ला वापरण्याची कार्यक्षमता सर्व डीमन्सला द्या"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "User Privs"
+-#~ msgstr "वापरकर्ता Privs"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "स्मृता सुरक्षा द्या"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "जावा कार्यारत स्टॅकला परवानगी द्या"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Mount"
+-#~ msgstr "आरोहण"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "कुठलिही फाइल आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "कुठलिही संचयीका आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer कार्यारत स्टॅकला परवानगी द्या"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh ला ssh-keysign कार्यरत करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "स्टॉफ SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "मर्यादीत SELinux वावरकर्ता खातींना फाइलला मुख्य संचयीका किंवा /tmp मध्ये कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Network Configuration"
+-#~ msgstr "संजाळ संरचना"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "संजळावर लेबल नसलेले पॅकेट प्रवाहीत करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "वापरकर्ता SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "unconfined_execmem करीता मर्यादीतला dyntrans करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Databases"
+-#~ msgstr "डाटाबेसेस"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "mysql सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "postgres सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "X सहभागीय स्मृतीस लिहीण्याकरीता क्लाएंटला परवानगी द्या"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
+-#~ "करण्याकरीता परवानगी द्या"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "डीमनला NIS शी कार्यरत ठेवण्यास परवानगी द्या"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Web Applications"
+-#~ msgstr "वेब अनुप्रयोग"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "स्टॉफ SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "sysadm SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "वापरकर्ता SELinux वापरकर्तापासून  ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "xguest SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "मुख्य संचिकेत स्टॉफ वेब ब्राऊजरांना लिहीण्याकरीता परवानगी द्या"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "अमॅनडा करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "अमॅवीस करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "क्लस्टर सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "खालील अनुक्रमणिकेत अंतर्भूत वाचण्याकरीता cdrecord ला परवानगी द्या. nfs, samba, "
+-#~ "काढूनठेवतायेण्याजोगी साधने, वापरकर्त्याचे टेंम व अविश्वासू मजकूर फाइल"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "क्रॉन"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Printing"
+-#~ msgstr "छपाई"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd बॅकएंड सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -146867,26 +148712,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "प्रत्यक्ष रूपी डीमन सुरू करण्याकरीता sysadm_t ला परवानगी द्या"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "एव्हलूशन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "खेळ"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "खेळांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -146895,119 +148750,175 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "वेब ब्राउजर करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "थंडरबर्ड करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "फेचमेल करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "सहत्व"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "माहीत असलेल्या ज्याचे उल्लंगन शक्य आहे परंतु सुरक्षाकारणास्तव भीती नसलेल्या गोष्टी ऑडीट "
+-#~ "करू नका"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "यजमान डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "hplip डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd लॉगबदली करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD सेवा"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -147015,555 +148926,1054 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd उप डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "केरबेरोस"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "मेलमॅन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "एव्हल्यूशन व थंडरबर्डला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "मोझीला ब्राउजरला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "नाव सेवा"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "संजाळ व्यवस्थापका करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "सांबा"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "पूर्वपद करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "नियमीत वापरकर्त्यास pppd कार्यरत करण्याकरीता परवानगी द्या"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readhead करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "फाइल अ-मानक स्थानापासून (default_t) वाचण्याकरीता परवानगी द्या"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "डीमन एवजी inetd पासून ssh ला कार्यरत करण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "वापरकर्त्याच्ये nfs संचयीका सहभाग करण्यास Samba ला परवानगी द्या"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL अधिप्रमाणित सर्वर"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl अधिप्रमाणीत सर्वरला /etc/shadow वाचण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "स्मृती क्षेत्रास कार्यान्वीत व लिहीतायेण्याजोगी करण्यास X-Windows सर्वरला मॅप करण्याची "
+-#~ "परवानगी द्या"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo व su प्रभावित मध्ये स्थानांतरीत होण्यास परवानगी देऊ नका"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "कुठल्याही कार्यपद्धतीस कर्नल घटक दाखल करण्यास परवानगी देऊ नका"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "कुठल्याही कार्यपद्धतीस कर्नल SELinux करार संपादीत करण्यास परवानगी देऊ नका"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroubleshoot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "स्पॅम सुरक्षा"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd ला मुख्य संचयीका प्रवेशास परवानगी द्या"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "स्पॅम निषक्रीयक डीमनाला संजाळ प्रवेशास परवानगी द्या"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid डीमनला संजाळ प्रवेशास परवानगी द्या"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh दाखलनला sysadm_r:sysadm_t च्या स्वरूपास दाखलनास परवानगी द्या"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r वापरकर्त्यांना sysadm तील मुख्य संचयीका व वाचतायेण्याजोगी फाइल (जसे की ~/."
+-#~ "bashrc) शोधण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "वैश्विक SSL मार्ग"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "stunnel डीमनला स्वतंत्ररीत्या, xinetd च्या बाहेर कार्यरत ठेवण्याची परवानगी द्या"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "प्रणाली क्रॉन कार्यांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच त्या सेवाही जी क्षेत्र "
+-#~ "स्थानांतर प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "rc स्क्रीप्ट ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच rc स्क्रीप्ट द्वारे सुरुवात "
+-#~ "केलेले कुठलेही डीमन जी क्षेत्र स्थानांतर प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm ला unconfined कार्यरत करण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "अधिकार असेले अपअनुप्रयोग जसे hotplug व insmod ला unconfined कार्यरत करण्याकरीता "
+-#~ "परवानगी द्या"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "sysadm_r via su, sudo, किंवा userhelper पर्यंत पोहचण्यास user_r ला परवानगी "
+-#~ "द्या. किंवा, फक्त staff_r हे करू शकतो"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "वापरकर्त्यांना mount आदेश कार्यरत करण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "नियमीत वापरकर्त्यांना प्रत्यक्षरुपी माउस प्रवेशास परवानगी द्या (फक्त X सर्वरला "
+-#~ "परवानगी द्या)"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "वापरकर्त्यांना dmesg आदेश कार्यरत करण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "वापरकर्त्यांना संजाळ संवादपट नियंत्रीत करण्यास परवानगी द्या (ह्याचीही गरज असते "
+-#~ "USERCTL=true)"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "साधारण वापरकर्त्यास ping कार्यरत करण्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY) करीता वापरकर्त्यास परवानगी द्या"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "usb साधन rw करण्याकरीता वापरकर्त्यांना परवानगी द्या"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "TCP सर्वर कार्यरत करण्याकरीता वापरकर्त्यांना परवानगी द्या (पोर्टशी बंधनकारक व आतील "
+-#~ "क्षेत्रातून व बाहेरील वापरकर्त्यांकडून संपर्क स्वीकारतो)  याला असमर्थित केल्यास FTP "
+-#~ "निषक्रीय माध्यमात जातो व इतर प्रोटोकॉलही बदलू शकतात"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "वापरकर्त्याला ttyfiles stat करण्याकरीता परवानगी द्या"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm दाखलनाला sysadm_r:sysadm_t रूपी परवानगी द्या"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "xen ला डीस्क ड्राइव्ह साधन वाचण्यास/लिहीण्यास परवानगी द्या"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen constrol करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS गुप्तशब्द डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS सथानांतर डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका नियंत्रण करण्याची "
+-#~ "परवानगी द्या"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका वाचण्यास परवानगी "
+-#~ "द्या"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "तुम्हाला नक्की %s '%s' काढून टाकायचे?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s काढून टाका"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s समाविष्ट करा"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s संपादीत करा"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "परवानगीक"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "जबरदस्तीरीत्या"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "करारचा प्रकार बदल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज पडेल. "
+-#~ "फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी आपल्या "
+-#~ "पुढे जायचे आहे का?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "अकार्यनवीत SELinux वर स्थानांतर करतेवेळी पुन्हा बूटची गरज पडते. असे करणे योग्य नाही व "
+-#~ "सुचवीलेही जात नाही.  पुढे SELinux वापरण्याचा फेरविचार केल्यास, प्रणालीस पुन्हा लेबल "
+-#~ "करण्याची गरज पडेल.  SELinux मुळे आपल्या प्रणालीवर काही अडचन निर्माण होते का, हे "
+-#~ "अनुभवण्यास परवानगीक माध्यमात जावे ज्याने फक्त त्रूटीची लॉग तयार होईल व SELinux "
+-#~ "करारचे उल्लंगन होणार नाही.  परवानगीक माध्यमाला पुन्हा बूट करायची गरज पडत नाही    "
+-#~ "तरी आपल्याला पुढे जायचे आहे का?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux समर्थित बदल केल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज "
+-#~ "पडेल. फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी "
+-#~ "आपल्या पुढे जायचे आहे का?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "प्रतिकृती अधिकार (c)2006 Red Hat, Inc.\n"
+-#~ "प्रतिकृती अधिकार (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux दाखलन मॅपिंग समाविष्टीत करा"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux संजाळ पोर्ट समाविष्टीत करा"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux प्रकार"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "स्थर"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "फाइल गुणधर्म"
+-
+-#~ msgid "File Type"
+-#~ msgstr "फाइल प्रकार"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "सर्व फाइल\n"
+-#~ "नियमीत फाइल\n"
+-#~ "संचयीका\n"
+-#~ "अक्षरी साधन\n"
+-#~ "ब्लॉक साधन\n"
+-#~ "सॉकेट\n"
+-#~ "संकेतीक लींक\n"
+-#~ "नामांकीत पाइप\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux वापरकर्ता समाविष्टीत करा"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux प्रशासन"
+-
+-#~ msgid "Add"
+-#~ msgstr "समाविष्ट"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "गुणधर्म (_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "काढून टाका (_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "व्यवस्थापन वस्तू निवडा"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>निवडा:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "प्रणाली मुलभूत जबरन माध्यम"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "सध्याचे जबरन माध्यम"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "प्रणाली मुलभूत करार प्रकार: "
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "पुढच्या बूट पर्यंत पूर्ण फाइल प्रणालीस पुनः लेबेल करायचे असल्यास निवडा.  प्रणालीच्या "
+-#~ "आकारावरून, पुनः लेबलीगला बराच वेळ लागू शकतो.  कराराचे प्रकार बदलत असल्यास किंवा "
+-#~ "अकार्यन्वीत पासून जबरन पर्यंत जात असल्यास, पुनः लेबलची गरज पडेल."
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
@@ -147575,19 +149985,27 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "पुढच्या पुनः बूटवेळी लेबल करा."
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "प्रणाली मुलभूत करीता बूलीयन संयोजना पुन्हा स्थापीत करा"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "इच्छिक व सर्व बूलीयन अंतर्गत टॉगल करा"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "फिल्टर"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
@@ -147603,7 +150021,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "फाइल संदर्भ समाविष्ट करा"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
@@ -147632,121 +150052,203 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "फाइल संदर्भ संपादीत करा"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "फाइल संदर्भ काढून टाका"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "सर्व व इच्छिक फाइल संदर्भ अंतर्गत टॉगल करा"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux वापरकर्ता मॅपिंग समाविष्टीत करा"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux वापरकर्ता मॅपिंग संपादीत करा"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux वापरकर्ता मॅपिंग काढून टाकत आहे"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "भाषांतरन समाविष्ट करा"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "भाषांतरन संपादित करा"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Translation"
+-#~ msgstr "भाषांतरने काढून टाका"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux वापरकर्ता संपादीत करा"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "संजाळ पोर्ट समाविष्ट करा"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "संजाळ पोर्ट संपादित करा"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "संजाळ पोर्ट काढून टाका"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "इच्छिक व सर्व पोर्ट अंतर्गत टॉगल करा"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "नविन करार घटक निर्माण करा"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "करार घटक दाखल करा"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "दाखलकरतायेण्याजोगी करार घटक काढून टाका"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "अतिरीक ऑडीट नियम कार्यान्वीत/अकार्यान्वीत करा, ज्याचा अहवाल साधारणतः लॉग "
+-#~ "फाइलमध्ये नसतो."
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "संवेदनशीलतेचा स्थर"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux वापरकर्ता '%s' जरूरी आहे"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "मूल्य आवश्यक"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "अनुप्रयोगास/वापरकर्त्यास कुठल्याही tcp पोर्ट > 1024 शी बंधनकारक होण्यास परवानगी देतो"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "मर्यादीत अनुप्रयोगास/वापरकर्त्यास कुठल्याही tcp पोर्टशी बंधनकारक होण्यास परवानगी देतो"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ह्या अनुप्रयोगास बंधनकारक करण्याकरीता स्वल्पविराम विभाजीत tcp पोर्ट ची यादी "
+-#~ "प्रविष्ट करा. Example: 612, 650-660"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux करार निर्माण ड्र्यूईड"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "अनारक्षीत पोर्ट  (> 1024)"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "अनुप्रयोग 0 सह bindresvport ला कार्यास हाक देत असल्यास हा चेकबटन वापरा."
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "जबरन\n"
+-#~ "परवानगीक\n"
+-#~ "अकार्यान्वीत\n"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
@@ -147944,18 +150446,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -147996,7 +150494,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -148005,25 +150502,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -148035,58 +150526,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -148094,169 +150585,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -148264,1964 +150738,1827 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/lv.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutils-2.0.85/po/mai.po
---- nsapolicycoreutils/po/mai.po       1969-12-31 19:00:00.000000000 -0500
-+++ policycoreutils-2.0.85/po/mai.po   2011-02-18 16:03:41.384975854 -0500
-@@ -0,0 +1,3493 @@
-+# translation of policycoreutils.HEAD.policycoreutils.po to Maithili
-+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the PACKAGE package.
-+#
-+# Sangeeta Kumari <sangeeta09@gmail.com>, 2009.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: policycoreutils.HEAD.policycoreutils\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2009-04-08 13:28+0530\n"
-+"Last-Translator: Sangeeta Kumari <sangeeta09@gmail.com>\n"
-+"Language-Team: Maithili <maithili.sf.net>\n"
-+"Language: mai\n"
-+"MIME-Version: 1.0\n"
+diff --git a/policycoreutils/po/ms.po b/policycoreutils/po/ms.po
+index 1491735..6a1eaa8 100644
+--- a/policycoreutils/po/ms.po
++++ b/policycoreutils/po/ms.po
+@@ -1,20 +1,21 @@
+ # 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.
+ #
++# Translators:
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-07-27 23:11+0800\n"
+-"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
+-"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: LANGUAGE <LL@li.org>\n"
+ "Language: ms\n"
+ "MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=utf-8\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "नवीन पॉलिसी माड्यूल उत्पन्न करू"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux पॉलिसी जनन अओजार"
-+
-+#: ../run_init/run_init.c:67
-+msgid ""
-+"USAGE: run_init <script> <args ...>\n"
-+"  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:126 ../newrole/newrole.c:1187
-+#, c-format
-+msgid "failed to initialize PAM\n"
-+msgstr "PAM आरंभीकरणमे विफल\n"
-+
-+#: ../run_init/run_init.c:139
-+#, c-format
-+msgid "failed to get account information\n"
-+msgstr "खाता सूचना पाबैमे विफल\n"
-+
-+#: ../run_init/run_init.c:162 ../newrole/newrole.c:338
-+msgid "Password:"
-+msgstr "शब्दकूट:"
-+
-+#: ../run_init/run_init.c:197 ../newrole/newrole.c:363
-+#, c-format
-+msgid "Cannot find your entry in the shadow passwd file.\n"
-+msgstr "अहाँक प्रविष्टिकेँ छाया शब्दकूट फाइलमे प्रविष्ट नहि कए सकल.\n"
-+
-+#: ../run_init/run_init.c:203 ../newrole/newrole.c:370
-+#, c-format
-+msgid "getpass cannot open /dev/tty\n"
-+msgstr "getpass cannot open /dev/tty\n"
-+
-+#: ../run_init/run_init.c:275
+ "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=1; plural=0\n"
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -24,14 +25,14 @@ msgid ""
+ msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, fuzzy, c-format
 +#, c-format
-+msgid "run_init: incorrect password for %s\n"
-+msgstr "run_init: %s क' लेल गलत शब्दकूट\n"
-+
-+#: ../run_init/run_init.c:309
+ msgid "failed to initialize PAM\n"
+-msgstr "PAM: gagal untuk melepaskan pengesah."
++msgstr ""
+ #: ../run_init/run_init.c:139
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Could not open file %s\n"
-+msgstr "%s फाइल खोलि नहि सकल\n"
-+
-+#: ../run_init/run_init.c:336
+ msgid "failed to get account information\n"
+-msgstr "Gagal menukar maklumat usia untuk %s: %s\n"
++msgstr ""
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -53,14 +54,14 @@ msgid "run_init: incorrect password for %s\n"
+ msgstr ""
+ #: ../run_init/run_init.c:309
+-#, fuzzy, c-format
 +#, c-format
-+msgid "No context in file %s\n"
-+msgstr "%s फाइलमे कोनो संदर्भ नहि\n"
-+
-+#: ../run_init/run_init.c:361
+ msgid "Could not open file %s\n"
+-msgstr "tidak dapat membuka fail tetapan `%s': %s"
++msgstr ""
+ #: ../run_init/run_init.c:336
+-#, fuzzy, c-format
 +#, 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:380
+ msgid "No context in file %s\n"
+-msgstr "akhir fail tidak dijangka dalam %s\n"
++msgstr ""
+ #: ../run_init/run_init.c:361
+ #, c-format
+@@ -68,21 +69,18 @@ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+ msgstr ""
+ #: ../run_init/run_init.c:380
+-#, fuzzy, c-format
 +#, c-format
-+msgid "authentication failed.\n"
-+msgstr "सत्यापन विफल.\n"
-+
-+#: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
+ msgid "authentication failed.\n"
+-msgstr "Pengesahan gagal"
++msgstr ""
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Could not set exec context to %s.\n"
-+msgstr "exec संदर्भ %s मे सेट नहि कए सकल.\n"
-+
-+#: ../audit2allow/audit2allow:217
-+msgid "******************** IMPORTANT ***********************\n"
-+msgstr "******************** महत्वपूर्ण ***********************\n"
-+
-+#: ../audit2allow/audit2allow:218
-+msgid "To make this policy package active, execute:"
-+msgstr "एहि नीति केँ सक्रिय बनाबै क' लेल, चलाउ:"
-+
-+#: ../semanage/seobject.py:48
-+msgid "Could not create semanage handle"
-+msgstr "semanage नियंत्रण आरंभ नहि कए सकल"
-+
-+#: ../semanage/seobject.py:55
-+msgid "SELinux policy is not managed or store cannot be accessed."
-+msgstr "SELinux नीति प्रबंधित नहि अछि या भंडार अभिगम नहि कएल जाए सकैत अछि."
-+
-+#: ../semanage/seobject.py:60
-+msgid "Cannot read policy store."
-+msgstr "नीति भंडार नहि पढ़ि सकैत अछि."
-+
-+#: ../semanage/seobject.py:65
-+msgid "Could not establish semanage connection"
-+msgstr "semanage संबंधन स्थापित नहि कए सकल"
-+
-+#: ../semanage/seobject.py:70
-+msgid "Could not test MLS enabled status"
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Tidak dapat menetapkan konteks exec ke %s.\n"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:142 ../semanage/seobject.py:146
-+msgid "global"
-+msgstr "वैश्विक"
-+
-+#: ../semanage/seobject.py:206
-+#, python-format
-+msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
-+msgstr "%s खोलएमे असमर्थ: गैर-MLS मसीन पर अनुवाद समर्थित नहि: %s"
-+
-+#: ../semanage/seobject.py:239
-+msgid "Level"
-+msgstr "स्तर"
-+
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
-+msgid "Translation"
-+msgstr "अनुवाद"
-+
-+#: ../semanage/seobject.py:247 ../semanage/seobject.py:261
-+#, python-format
-+msgid "Translations can not contain spaces '%s' "
-+msgstr "अनुवादमे '%s' खाली स्थान नहि हाएत अछि."
-+
-+#: ../semanage/seobject.py:250
+ #: ../audit2allow/audit2allow:230
+-#, fuzzy
+ msgid "******************** IMPORTANT ***********************\n"
+ msgstr ""
+-"\n"
+-"******************** PENTING ************************\n"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+@@ -93,28 +91,24 @@ msgid "global"
+ msgstr ""
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+ msgstr ""
+ #: ../semanage/seobject.py:235
+-#, fuzzy
+ msgid "Cannot read policy store."
+-msgstr "gagal baca fail menu:%s"
++msgstr ""
+ #: ../semanage/seobject.py:240
+-#, fuzzy
+ msgid "Could not establish semanage connection"
+-msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -125,33 +119,30 @@ msgid "Semanage transaction already in progress"
+ msgstr ""
+ #: ../semanage/seobject.py:264
+-#, fuzzy
+ msgid "Could not start semanage transaction"
+-msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+ msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Tidak dapat menyenaraikan pengguna SELinux"
++msgstr ""
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
+@@ -161,9 +152,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Invalid Level '%s' "
-+msgstr "अवैध स्तर '%s' "
-+
-+#: ../semanage/seobject.py:253
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Tidak dapat menambah konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -199,70 +190,69 @@ msgstr ""
+ #: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+ #: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+ #: ../semanage/seobject.py:2037
+-#, fuzzy, python-format
 +#, python-format
-+msgid "%s already defined in translations"
-+msgstr "%s पहिले सँ अनुवादमे परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:265
+ msgid "Could not create a key for %s"
+-msgstr "Tidak dapat mencipta konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, fuzzy, python-format
 +#, python-format
-+msgid "%s not defined in translations"
-+msgstr "%s अनुवादमे परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:290
-+msgid "Not yet implemented"
-+msgstr "अखन तकि लागू नहि"
-+
-+#: ../semanage/seobject.py:294
-+msgid "Semanage transaction already in progress"
+ msgid "Could not check if login mapping for %s is defined"
+-msgstr "Tidak dapat memeriksa jika konteks fail untuk %s telah dinyatakan"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:303
-+msgid "Could not start semanage transaction"
-+msgstr "semanage विनिमय आरंभ नहि कए सकल"
-+
-+#: ../semanage/seobject.py:309
-+msgid "Could not commit semanage transaction"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Partisyen Diminta Tidak Wujud"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:313
-+msgid "Semanage transaction not in progress"
+ #: ../semanage/seobject.py:497
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux User %s does not exist"
+-msgstr "Partisyen Diminta Tidak Wujud"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:325
-+msgid "Could not list SELinux modules"
+ #: ../semanage/seobject.py:501
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not create login mapping for %s"
+-msgstr "Tidak dapat mencipta konteks fail untuk %s"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:336
-+msgid "Permissive Types"
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set name for %s"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set permissive domain %s (module installation failed)"
+ msgid "Could not set MLS range for %s"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:514
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not remove permissive domain %s (remove failed)"
+ msgid "Could not set SELinux user for %s"
+-msgstr "Tidak dapat menetapkan pengguna dalam konteks fail untuk %s"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:518
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create a key for %s"
-+msgstr "%s क' लेल कुंजी नहि बनाए सकल"
-+
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ msgid "Could not add login mapping for %s"
+-msgstr "Tidak dapat menambah konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:536
+-#, fuzzy
+ msgid "Requires seuser or serange"
+-msgstr "Memerlukan setype, serange atau seuser"
++msgstr ""
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not check if login mapping for %s is defined"
-+msgstr "नहि जाँचि सकल जँ %s क' लेल लागिन मैपिंग परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:412
+ msgid "Login mapping for %s is not defined"
+-msgstr "Konteks fail %s tidak dinyatakan"
++msgstr ""
+ #: ../semanage/seobject.py:563
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Login mapping for %s is already defined"
-+msgstr "%s क लेल लॉगिन मैपिंग पहिने सँ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:417
+ msgid "Could not query seuser for %s"
+-msgstr "Tidak dapat menyoal konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:577
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Linux Group %s does not exist"
+ msgid "Could not modify login mapping for %s"
+-msgstr "Tidak dapat mengubahsuai konteks fail untuk %s"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:611
+ #, python-format
+@@ -270,106 +260,108 @@ msgid "Login mapping for %s is defined in policy, cannot be deleted"
+ msgstr ""
+ #: ../semanage/seobject.py:615
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Linux User %s does not exist"
-+msgstr "Linux प्रयोक्ता %s मोजूद नहि अछि"
-+
-+#: ../semanage/seobject.py:426
+ msgid "Could not delete login mapping for %s"
+-msgstr "Tidak dapat memadam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
+-#, fuzzy
+ msgid "Could not list login mappings"
+-msgstr "Tidak dapat menyenaraikan konteks fail"
++msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+-msgstr "Jenis SELinux diperlukan"
++msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create login mapping for %s"
-+msgstr "%s क' लेल लागिन मैपिंग नहि बनाए सकल"
-+
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ msgid "Could not check if SELinux user %s is defined"
+-msgstr "Tidak dapat memeriksa jika konteks fail untuk %s telah dinyatakan"
++msgstr ""
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set name for %s"
-+msgstr "%s क लेल नाम सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ msgid "Could not query user for %s"
+-msgstr "Tidak dapat menyoal konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set MLS range for %s"
-+msgstr "MLS परिसर %s क लेल सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:439
+ msgid "You must add at least one role for %s"
+-msgstr "Tidak dapat menambah konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:737
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set SELinux user for %s"
-+msgstr "SELinux उपयोक्ता %s क लेल सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:443
+ msgid "Could not create SELinux user for %s"
+-msgstr "Tidak dapat mencipta konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:746
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not add login mapping for %s"
-+msgstr "%s क लेल लॉगिन मैपिंग जोड़ नहि सकल"
-+
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
-+msgid "add SELinux user mapping"
-+msgstr "SELinux उपयोक्ता मैपिंग जोड़ू"
-+
-+#: ../semanage/seobject.py:462
-+msgid "Requires seuser or serange"
-+msgstr "seuser अथवा serange जरूरी"
-+
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ msgid "Could not add role %s for %s"
+-msgstr "Tidak dapat menambah konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:755
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Login mapping for %s is not defined"
-+msgstr "%s क लेल लॉगिन मैपिंग परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:476
+ msgid "Could not set MLS level for %s"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:758
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not query seuser for %s"
-+msgstr "seuser केँ %s क लेल प्रश्न नहि कए सकल"
-+
-+#: ../semanage/seobject.py:492
+ msgid "Could not add prefix %s for %s"
+-msgstr "Tidak dapat menambah konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:761
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not modify login mapping for %s"
-+msgstr "%s क लेल लॉगिन मैपिंग नहि रूपांतरित कए सकल"
-+
-+#: ../semanage/seobject.py:524
+ msgid "Could not extract key for %s"
+-msgstr "Tidak dapat membuka %s untuk salinan: %s"
++msgstr ""
+ #: ../semanage/seobject.py:765
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Login mapping for %s is defined in policy, cannot be deleted"
-+msgstr "नीतिमे %s परिभाषित अछि, मेटाओल नहि जाए सकत"
-+
-+#: ../semanage/seobject.py:528
+ msgid "Could not add SELinux user %s"
+-msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:787
+ msgid "Requires prefix, roles, level or range"
+ msgstr ""
+ #: ../semanage/seobject.py:789
+-#, fuzzy
+ msgid "Requires prefix or roles"
+-msgstr "Memerlukan setype, serange atau seuser"
++msgstr ""
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not delete login mapping for %s"
-+msgstr "%s क लेल लॉगिन मैपिंग नहि मेटाए सकल"
-+
-+#: ../semanage/seobject.py:551
-+msgid "Could not list login mappings"
-+msgstr "लॉगिन मैपिंग नहि सूचीबद्ध कए सकल"
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
-+msgid "Login Name"
-+msgstr "लॉगिन नाम"
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
-+msgid "SELinux User"
-+msgstr "SELinux उपयोक्ता"
-+
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
-+msgid "MLS/MCS Range"
-+msgstr "MLS/MCS परिसर"
-+
-+#: ../semanage/seobject.py:590
+ msgid "SELinux user %s is not defined"
+-msgstr "Jenis terminal `%s' tidak ditakrifkan."
++msgstr ""
+ #: ../semanage/seobject.py:828
+-#, fuzzy, python-format
 +#, python-format
-+msgid "You must add at least one role for %s"
+ msgid "Could not modify SELinux user %s"
+-msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
 +msgstr ""
-+
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:862
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not check if SELinux user %s is defined"
-+msgstr "जाँच नहि सकल जे SELinux उपयोक्ता %s परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:600
+ msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr "$file bukan milik \"$user\""
++msgstr ""
+ #: ../semanage/seobject.py:873
+-#, fuzzy, python-format
 +#, python-format
-+msgid "SELinux user %s is already defined"
-+msgstr "SELinux उपयोक्ता %s पहिले सँ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:604
+ msgid "Could not delete SELinux user %s"
+-msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
+ #: ../semanage/seobject.py:911
+ msgid "Could not list SELinux users"
+@@ -401,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
+@@ -413,9 +406,8 @@ msgid "Port is required"
+ msgstr "Port diperlukan"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "prefix tidak dikenali: %s"
++msgstr ""
+ #: ../semanage/seobject.py:979
+ #, python-format
+@@ -502,14 +494,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Tidak dapat mengubah port %s/%s"
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
+ msgid "Could not list the ports"
+-msgstr "Tidak dapat menyenaraikan port"
++msgstr ""
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create SELinux user for %s"
-+msgstr "SELinux उपयोक्ता %s क लेल बनाए नहि सकल"
-+
-+#: ../semanage/seobject.py:613
+ msgid "Could not delete the port %s"
+-msgstr "Tidak dapat memadam port %s/%s"
++msgstr ""
+ #: ../semanage/seobject.py:1118
+ #, python-format
+@@ -533,14 +524,13 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
+ msgid "Node Address is required"
+-msgstr "Port diperlukan"
++msgstr ""
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+@@ -561,14 +551,14 @@ msgstr "Tidak dapat mencipta kekunci untuk %s"
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not add role %s for %s"
-+msgstr "%s भूमिका %s क लेल जोड़ नहि सकल"
-+
-+#: ../semanage/seobject.py:622
+ msgid "Could not check if addr %s is defined"
+-msgstr "Tidak dapat memeriksa sama ada port %s/%s telah dinyatakan"
++msgstr ""
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set MLS level for %s"
-+msgstr "MLS स्तर %s क लेल सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:625
+ msgid "Could not create addr for %s"
+-msgstr "Tidak dapat mencipta konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -577,74 +567,72 @@ msgid "Could not create context for %s"
+ msgstr "Tidak dapat mencipta konteks untuk %s"
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not add prefix %s for %s"
-+msgstr "%s उपसर्ग %s क लेल नहि जोड़ सकल"
-+
-+#: ../semanage/seobject.py:628
+ msgid "Could not set mask for %s"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not extract key for %s"
-+msgstr "%s क लेल कुंजी निकाल नहि सकल"
-+
-+#: ../semanage/seobject.py:632
+ msgid "Could not set user in addr context for %s"
+-msgstr "Tidak dapat menetapkan pengguna dalam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not add SELinux user %s"
-+msgstr "SELinux उपयोक्ता %s नहि जोड़ सकल"
-+
-+#: ../semanage/seobject.py:655
-+msgid "Requires prefix, roles, level or range"
-+msgstr "उपसर्ग, भूमिका, स्तर या परिसर जरूरी"
-+
-+#: ../semanage/seobject.py:657
-+msgid "Requires prefix or roles"
-+msgstr "उपसर्ग या भूमिका जरूरी"
-+
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ msgid "Could not set role in addr context for %s"
+-msgstr "Tidak dapat menetapkan tugas dalam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
 +#, python-format
-+msgid "SELinux user %s is not defined"
-+msgstr "SELinux उपयोक्ता %s परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:671
+ msgid "Could not set type in addr context for %s"
+-msgstr "Tidak dapat menetapkan jenis dalam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not query user for %s"
-+msgstr "%s क लेल उपयोक्ताकेँ प्रश्न नहि कए सकत"
-+
-+#: ../semanage/seobject.py:698
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "Tidak dapat menetapkan medan mls dalam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not modify SELinux user %s"
-+msgstr "SELinux उपयोक्ता %s नहि सुधार सकत"
-+
-+#: ../semanage/seobject.py:731
+ msgid "Could not set addr context for %s"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
 +#, python-format
-+msgid "SELinux user %s is defined in policy, cannot be deleted"
-+msgstr "SELinux उपयोक्ता %s नीतिमे परिभाषित अछि, मेटाए नहि सकत"
-+
-+#: ../semanage/seobject.py:735
+ msgid "Could not add addr %s"
+-msgstr "Tidak dapat menambah port %s/%s"
++msgstr ""
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not delete SELinux user %s"
-+msgstr "SELinux उपयोक्ता %s मेटाए नहि सकल"
-+
-+#: ../semanage/seobject.py:758
-+msgid "Could not list SELinux users"
-+msgstr "SELinux उपयोक्ता सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:764
+ msgid "Addr %s is not defined"
+-msgstr "Port %s/%s tidak dinyatakan"
++msgstr ""
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not list roles for user %s"
-+msgstr "%s उपयोक्ता क लेल भूमिका सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:777
-+msgid "Labeling"
-+msgstr "लेबलिंग"
-+
-+#: ../semanage/seobject.py:777
-+msgid "MLS/"
-+msgstr "MLS/"
-+
-+#: ../semanage/seobject.py:778
-+msgid "Prefix"
-+msgstr "उपसर्ग"
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Level"
-+msgstr "MCS स्तर"
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Range"
-+msgstr "MCS परिसर"
-+
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
-+msgid "SELinux Roles"
-+msgstr "SELinux भूमिका"
-+
-+#: ../semanage/seobject.py:798
-+msgid "Protocol udp or tcp is required"
-+msgstr "प्रोटोकॉल udp या tcp जरूरी अछि"
-+
-+#: ../semanage/seobject.py:800
-+msgid "Port is required"
-+msgstr "पोर्ट जरूरी अछि"
-+
-+#: ../semanage/seobject.py:811
+ msgid "Could not query addr %s"
+-msgstr "Tidak dapat menyoal port %s/%s"
++msgstr ""
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create a key for %s/%s"
-+msgstr "%s/%s क लेल कुंजी नहि बनाए सकल"
-+
-+#: ../semanage/seobject.py:822
-+msgid "Type is required"
-+msgstr "टाइप जरूरी अछि"
-+
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ msgid "Could not modify addr %s"
+-msgstr "Tidak dapat mengubah port %s/%s"
++msgstr ""
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not check if port %s/%s is defined"
-+msgstr "जाँच नहि सकल जँ पोर्ट %s/%s परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:830
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "Port %s/%s dinyatakan dalam polisi, tidak boleh dipadam"
++msgstr ""
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Port %s/%s already defined"
-+msgstr "%s/%s पोर्ट पहले सँ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:834
+ msgid "Could not delete addr %s"
+-msgstr "Tidak dapat memadam antaramuka %s"
++msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Tidak dapat memadam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Tidak dapat menyenaraikan port"
++msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -718,9 +706,8 @@ msgid "Could not delete interface %s"
+ msgstr "Tidak dapat memadam antaramuka %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Tidak dapat memadam antaramuka %s"
++msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -735,9 +722,9 @@ msgid "Context"
+ msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create port for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट बनाए नहि सकल"
-+
-+#: ../semanage/seobject.py:840
+ msgid "Equivalence class for %s already exists"
+-msgstr "Konteks fail %s telah dinyatakan"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -745,9 +732,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not create context for %s/%s"
-+msgstr "%s/%s क लेल संदर्भ बनाए नहि सकल"
-+
-+#: ../semanage/seobject.py:844
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Partisyen Diminta Tidak Wujud"
++msgstr ""
+ #: ../semanage/seobject.py:1692
+ #, python-format
+@@ -826,14 +813,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Tidak dapat mengubahsuai konteks fail untuk %s"
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
+ msgid "Could not list the file contexts"
+-msgstr "Tidak dapat menyenaraikan konteks fail"
++msgstr ""
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set user in port context for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट संदर्भमे उपयोक्ता सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:848
+ msgid "Could not delete the file context %s"
+-msgstr "Tidak dapat memadam konteks fail untuk %s"
++msgstr ""
+ #: ../semanage/seobject.py:1878
+ #, python-format
+@@ -890,14 +876,14 @@ msgid "Could not query file context %s"
+ msgstr "Tidak dapat menyoal fail konteks %s"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set role in port context for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट संदर्भमे भूमिका सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:852
+ msgid "You must specify one of the following values: %s"
+-msgstr "Anda mesti nyatakan peranti."
++msgstr ""
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
 +#, python-format
-+msgid "Could not set type in port context for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट संदर्भमे टाइप सेट नहि कए सकल"
+ msgid "Could not set active value of boolean %s"
+-msgstr "Tidak dapat memadam boolean %s"
++msgstr ""
+ #: ../semanage/seobject.py:2007
+ #, python-format
+@@ -947,14 +933,15 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
+ #: ../newrole/newrole.c:201
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "PAM: gagal untuk melepaskan pengesah."
++msgstr ""
+ #: ../newrole/newrole.c:290
+ #, c-format
+@@ -972,19 +959,19 @@ msgid "cannot find valid entry in the passwd file.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:450
+-#, fuzzy, c-format
++#, c-format
+ msgid "Out of memory!\n"
+-msgstr "Memori tidak cukup."
++msgstr ""
+ #: ../newrole/newrole.c:455
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Ralat - nama kumpulan volum %s adalah tidak sah."
++msgstr ""
+ #: ../newrole/newrole.c:512
+-#, fuzzy, c-format
++#, c-format
+ msgid "Unable to clear environment\n"
+-msgstr "RALAT: Tidak boleh menginitialisasikan persekitaran grafikal."
++msgstr ""
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+@@ -1002,14 +989,14 @@ msgid "Error connecting to audit system.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:641
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error allocating memory.\n"
+-msgstr "Ralat membaca maklumat memori sistem:"
++msgstr ""
+ #: ../newrole/newrole.c:648
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "Terdapat ralat RPM.  Mesejnya ialah:\n"
++msgstr ""
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+@@ -1017,9 +1004,9 @@ msgid "Could not determine enforcing mode.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:699
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Tidak Dapat Membuka Pakej"
++msgstr ""
+ #: ../newrole/newrole.c:705
+ #, c-format
+@@ -1032,29 +1019,29 @@ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:725
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "Tidak dapat menetapkan konteks fail untuk %s"
++msgstr ""
+ #: ../newrole/newrole.c:772
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s changed labels.\n"
+-msgstr "Label Berulang"
++msgstr ""
+ #: ../newrole/newrole.c:778
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Tidak dapat menyoal konteks fail untuk %s"
++msgstr ""
+ #: ../newrole/newrole.c:835
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "banyak opsyen -l or -t dinyatakan"
++msgstr ""
+ #: ../newrole/newrole.c:843
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr "banyak opsyen -l or -t dinyatakan"
++msgstr ""
+ #: ../newrole/newrole.c:850
+ #, c-format
+@@ -1062,9 +1049,9 @@ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:855
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr "banyak opsyen -l or -t dinyatakan"
++msgstr ""
+ #: ../newrole/newrole.c:865
+ #, c-format
+@@ -1072,26 +1059,24 @@ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr ""
+ #: ../newrole/newrole.c:891
+-#, fuzzy, c-format
++#, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "tidak dapat menetapkan konteks keselamatan bagi `%s': %s"
++msgstr ""
+ #: ../newrole/newrole.c:901
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get new context.\n"
+ msgstr ""
+-"Gagal menghantar konteks alchemist: \n"
+-"%s"
+ #: ../newrole/newrole.c:908
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "Gagal menyimpan direktori baru dalam %s"
++msgstr ""
+ #: ../newrole/newrole.c:915
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "Gagal menyimpan direktori baru dalam %s"
++msgstr ""
+ #: ../newrole/newrole.c:925
+ #, c-format
+@@ -1099,9 +1084,9 @@ msgid "failed to build new range with level %s\n"
+ msgstr ""
+ #: ../newrole/newrole.c:930
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "Gagal menyimpan direktori baru dalam %s"
++msgstr ""
+ #: ../newrole/newrole.c:938
+ #, c-format
+@@ -1109,9 +1094,9 @@ msgid "failed to convert new context to string\n"
+ msgstr ""
+ #: ../newrole/newrole.c:943
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s is not a valid context\n"
+-msgstr "%s adalah nama hos yang tidak sah"
++msgstr ""
+ #: ../newrole/newrole.c:950
+ #, c-format
+@@ -1124,9 +1109,9 @@ msgid "Unable to obtain empty signal set\n"
+ msgstr ""
+ #: ../newrole/newrole.c:984
+-#, fuzzy, c-format
++#, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "%s: tidak dapat menetapkan lengahan kegagalan: %s\n"
++msgstr ""
+ #: ../newrole/newrole.c:1053
+ #, c-format
+@@ -1134,16 +1119,14 @@ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1070
+-#, fuzzy, c-format
++#, c-format
+ msgid "failed to get old_context.\n"
+ msgstr ""
+-"Gagal menghantar konteks alchemist: \n"
+-"%s"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Tidak dapat menyoal konteks fail untuk %s"
++msgstr ""
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1151,14 +1134,14 @@ msgid "error on reading PAM service configuration.\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1133
+-#, fuzzy, c-format
++#, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "Sila tetapkan katalaluan bagi %s."
++msgstr ""
+ #: ../newrole/newrole.c:1160
+-#, fuzzy, c-format
++#, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr "Kegagalan rangkaian hos %1"
++msgstr ""
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+@@ -1166,34 +1149,33 @@ msgid "Unable to restore tty label...\n"
+ msgstr ""
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, fuzzy, c-format
++#, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "Gagal menyimpan direktori baru dalam %s"
++msgstr ""
+ #: ../newrole/newrole.c:1224
+-#, fuzzy, c-format
++#, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Tidak dapat memperuntukkan partisyen"
++msgstr ""
+ #: ../newrole/newrole.c:1251
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr "Ralat membaca maklumat memori sistem:"
++msgstr ""
+ #: ../newrole/newrole.c:1287
+-#, fuzzy, c-format
++#, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "tidak dapat mengambil pakej asal, batal"
++msgstr ""
+ #: ../newrole/newrole.c:1298
+-#, fuzzy
+ msgid "failed to exec shell\n"
+-msgstr "Gagal untuk melekapkan partisyen."
++msgstr ""
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "penggunaan: %s [pilihan]"
++msgstr ""
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+@@ -1201,19 +1183,18 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgstr ""
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "Tentutetap Polisi SELinux"
++msgstr ""
+ #: ../load_policy/load_policy.c:90
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "Tentutetap Polisi SELinux"
++msgstr ""
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+-#, fuzzy
+ msgid "Requires at least one category"
+-msgstr "Peranti RAID jenis  %s memerlukan sekurang-kurangnya %s ahli."
++msgstr ""
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+@@ -1221,63 +1202,62 @@ msgid "Can not modify sensitivity levels using '+' on %s"
+ msgstr ""
+ #: ../scripts/chcat:110
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s is already in %s"
+-msgstr "gid %s telah digunakan."
++msgstr ""
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s is not in %s"
+-msgstr "%s tidak dilaksanakan.\n"
++msgstr ""
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+ msgstr ""
+ #: ../scripts/chcat:319
+-#, fuzzy
+ msgid "Can not have multiple sensitivities"
+-msgstr "Profil \"%s\" tidak dapat dipadam!"
++msgstr ""
+ #: ../scripts/chcat:325
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s CATEGORY File ..."
+-msgstr "Penggunaan: %s [PILIHAN]... FAIL\n"
++msgstr ""
+ #: ../scripts/chcat:326
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -l CATEGORY user ..."
+-msgstr "Nama Pengguna Teruk"
++msgstr ""
+ #: ../scripts/chcat:327
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr "Penggunaan: %s [PILIHAN]... FAIL\n"
++msgstr ""
+ #: ../scripts/chcat:328
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr "Nama Pengguna Teruk"
++msgstr ""
+ #: ../scripts/chcat:329
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -d File ..."
+-msgstr "Penggunaan: %s [PILIHAN]... FAIL\n"
++msgstr ""
+ #: ../scripts/chcat:330
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -l -d user ..."
+-msgstr "Edit Pengguna"
++msgstr ""
+ #: ../scripts/chcat:331
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -L"
+-msgstr "Penggunaan: %s"
++msgstr ""
+ #: ../scripts/chcat:332
+-#, fuzzy, c-format
++#, c-format
+ msgid "Usage %s -L -l user"
+-msgstr "Edit Pengguna"
++msgstr ""
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+@@ -1291,158 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
+-#: ../scripts/chcat:399
+-#, fuzzy, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+-msgstr "Ralat Pilihan: %s"
++msgstr ""
 +
-+#: ../semanage/seobject.py:857
-+#, python-format
-+msgid "Could not set mls fields in port context for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट संदर्भमे क्षेत्र mls सेट नहि कए सकल"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
 +
-+#: ../semanage/seobject.py:861
-+#, python-format
-+msgid "Could not set port context for %s/%s"
-+msgstr "%s/%s क लेल पोर्ट संदर्भ सेट नहि कए सकल"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
 +
-+#: ../semanage/seobject.py:865
-+#, python-format
-+msgid "Could not add port %s/%s"
-+msgstr "%s/%s पोर्ट जोड़ि नहि सकल"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
 +
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
-+msgid "Requires setype or serange"
-+msgstr "setype या serange जरूरी"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
 +
-+#: ../semanage/seobject.py:881
-+msgid "Requires setype"
-+msgstr "सेटटाइप जरूरी"
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
 +
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
-+#, python-format
-+msgid "Port %s/%s is not defined"
-+msgstr "पोर्ट %s/%s परिभाषित नहि अछि"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
 +
-+#: ../semanage/seobject.py:893
-+#, python-format
-+msgid "Could not query port %s/%s"
-+msgstr "%s/%s पोर्ट प्रश्न नहि कए सकल"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
 +
-+#: ../semanage/seobject.py:904
-+#, python-format
-+msgid "Could not modify port %s/%s"
-+msgstr "%s/%s पोर्ट रूपांतरित नहि कए सकल "
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
 +
-+#: ../semanage/seobject.py:917
-+msgid "Could not list the ports"
-+msgstr "पोर्ट सूची बद्ध नहि कए सकल"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
 +
-+#: ../semanage/seobject.py:933
-+#, python-format
-+msgid "Could not delete the port %s"
-+msgstr "%s पोर्ट मेटाए नहि सकल"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
 +
-+#: ../semanage/seobject.py:950
-+#, python-format
-+msgid "Port %s/%s is defined in policy, cannot be deleted"
-+msgstr "%s/%s नीतिमे परिभाषित अछि, मेटाए नहि सकत"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
 +
-+#: ../semanage/seobject.py:954
++#: ../gui/loginsPage.py:133
 +#, python-format
-+msgid "Could not delete port %s/%s"
-+msgstr "%s/%s पोर्ट मेटाए नहि सकत"
-+
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
-+msgid "Could not list ports"
-+msgstr "पोर्ट सूची बद्ध नहि कए सकल"
++msgid "Login '%s' is required"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1013
-+msgid "SELinux Port Type"
-+msgstr "SELinux पोर्ट प्रकार"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1013
-+msgid "Proto"
-+msgstr "प्रोटो"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
-+msgid "Port Number"
-+msgstr "पोर्ट संख्या"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
-+msgid "Node Address is required"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
-+msgid "Node Netmask is required"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
-+msgid "Unknown or missing protocol"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
-+msgid "SELinux Type is required"
-+msgstr "SELinux प्रकार जरूरी अछि"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
-+#, python-format
-+msgid "Could not create key for %s"
-+msgstr "%s क लेल कुंजी नहि बनाए सकल"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
-+msgid "Could not check if addr %s is defined"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1060
-+#, python-format
-+msgid "Addr %s already defined"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1064
-+#, python-format
-+msgid "Could not create addr for %s"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
-+#, python-format
-+msgid "Could not create context for %s"
-+msgstr "%s क लेल संदर्भ बनाए नहि सकल"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 +
-+#: ../semanage/seobject.py:1073
-+#, python-format
-+msgid "Could not set mask for %s"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1078
-+#, python-format
-+msgid "Could not set user in addr context for %s"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1082
-+#, python-format
-+msgid "Could not set role in addr context for %s"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1086
-+#, python-format
-+msgid "Could not set type in addr context for %s"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1091
-+#, python-format
-+msgid "Could not set mls fields in addr context for %s"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1095
-+#, python-format
-+msgid "Could not set addr context for %s"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1099
-+#, python-format
-+msgid "Could not add addr %s"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
-+msgid "Addr %s is not defined"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1139
-+#, python-format
-+msgid "Could not query addr %s"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1150
-+#, python-format
-+msgid "Could not modify addr %s"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1188
-+#, python-format
-+msgid "Addr %s is defined in policy, cannot be deleted"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1192
-+#, python-format
-+msgid "Could not delete addr %s"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1208
-+msgid "Could not list addrs"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
-+#, python-format
-+msgid "Could not check if interface %s is defined"
-+msgstr "जांच नहि सकल जँ %s अंतरफलक परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:1262
-+#, python-format
-+msgid "Interface %s already defined"
-+msgstr "%s अंतरफलक पहिले सँ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:1266
-+#, python-format
-+msgid "Could not create interface for %s"
-+msgstr "%s क लेल अंतरफलक नहि बनाए सकल"
-+
-+#: ../semanage/seobject.py:1275
-+#, python-format
-+msgid "Could not set user in interface context for %s"
-+msgstr "उपयोक्ता केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1279
-+#, python-format
-+msgid "Could not set role in interface context for %s"
-+msgstr "भूमिका केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1283
-+#, python-format
-+msgid "Could not set type in interface context for %s"
-+msgstr "टाइप केँ %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1288
-+#, python-format
-+msgid "Could not set mls fields in interface context for %s"
-+msgstr "mls क्षेत्र %s क लेल अंतरफलक संदर्भमे सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1292
-+#, python-format
-+msgid "Could not set interface context for %s"
-+msgstr "%s क लेल अंतरफलक संदर्भ सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1296
-+#, python-format
-+msgid "Could not set message context for %s"
-+msgstr "%s क लेल संदेश संदर्भ सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1300
-+#, python-format
-+msgid "Could not add interface %s"
-+msgstr "%s अंतरफलक जोड़ नहि सकल"
-+
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
-+#, python-format
-+msgid "Interface %s is not defined"
-+msgstr "%s अंतरफलक परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:1327
-+#, python-format
-+msgid "Could not query interface %s"
-+msgstr "%s अंतरफलक प्रश्न नहि कए सकत"
-+
-+#: ../semanage/seobject.py:1338
-+#, python-format
-+msgid "Could not modify interface %s"
-+msgstr "%s अंतरफलक रूपांतरित नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1363
-+#, python-format
-+msgid "Interface %s is defined in policy, cannot be deleted"
-+msgstr "अंतरफलक %s नीतिमे परिभाषित अछि, मेटाओल नहि जाए सकत"
-+
-+#: ../semanage/seobject.py:1367
-+#, python-format
-+msgid "Could not delete interface %s"
-+msgstr "%s अंतरफलक मेटाए नहि सकल"
-+
-+#: ../semanage/seobject.py:1383
-+msgid "Could not list interfaces"
-+msgstr "अंतरफलक सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1393
-+msgid "SELinux Interface"
-+msgstr "SELinux अंतरफलक"
-+
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
-+msgid "Context"
-+msgstr "संदर्भ"
-+
-+#: ../semanage/seobject.py:1417
-+#, python-format
-+msgid "Could not set user in file context for %s"
-+msgstr "%s क लेल फाइल संदर्भमे उपयोक्ता सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1421
-+#, python-format
-+msgid "Could not set role in file context for %s"
-+msgstr "%s क लेल फाइल संदर्भमे भूमिका सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
-+#, python-format
-+msgid "Could not set mls fields in file context for %s"
-+msgstr "mls क्षेत्र %s क लेल फाइल संदर्भ केर क्रममे नहि सेट कए सकल"
-+
-+#: ../semanage/seobject.py:1432
-+msgid "Invalid file specification"
-+msgstr "अवैध फाइल विशेषता"
-+
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
-+#, python-format
-+msgid "Could not check if file context for %s is defined"
-+msgstr "जाँच नहि सकल जँ %s क लेल फाइल संदर्भ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:1457
-+#, python-format
-+msgid "File context for %s already defined"
-+msgstr "%s क लेल फाइल संदर्भ पहिले सँ परिभाषित अछि"
-+
-+#: ../semanage/seobject.py:1461
-+#, python-format
-+msgid "Could not create file context for %s"
-+msgstr "%s क लेल फाइल संदर्भ नहि बनाए सकल"
-+
-+#: ../semanage/seobject.py:1469
-+#, python-format
-+msgid "Could not set type in file context for %s"
-+msgstr "%s क लेल फाइल संदर्भमे टाइप सेट नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
-+#, python-format
-+msgid "Could not set file context for %s"
-+msgstr "%s क लेल फाइल संदर्भ नहि सेट कए सकल"
-+
-+#: ../semanage/seobject.py:1483
-+#, python-format
-+msgid "Could not add file context for %s"
-+msgstr "%s क लेल फाइल संदर्भ नहि जोड़ि सकल"
-+
-+#: ../semanage/seobject.py:1497
-+msgid "Requires setype, serange or seuser"
-+msgstr "सेटटाइप जरूरी, serange या seuser"
-+
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
-+#, python-format
-+msgid "File context for %s is not defined"
-+msgstr "%s क लेल फाइल संदर्भ परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:1516
-+#, python-format
-+msgid "Could not query file context for %s"
-+msgstr "%s क लेल फाइल संदर्भ केँ प्रश्न नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1542
-+#, python-format
-+msgid "Could not modify file context for %s"
-+msgstr "%s क लेल फाइल संदर्भ नहि सुधार सकल"
-+
-+#: ../semanage/seobject.py:1556
-+msgid "Could not list the file contexts"
-+msgstr "फाइल संदर्भ सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1570
-+#, python-format
-+msgid "Could not delete the file context %s"
-+msgstr "%s क लेल फाइल संदर्भ मेटाए नहि सकल"
-+
-+#: ../semanage/seobject.py:1588
-+#, python-format
-+msgid "File context for %s is defined in policy, cannot be deleted"
-+msgstr "%s क लेल फाइल संदर्भ नीतिमे परिभाषित अछि, मेटाए नहि सकत"
-+
-+#: ../semanage/seobject.py:1594
-+#, python-format
-+msgid "Could not delete file context for %s"
-+msgstr "%s क लेल फाइलसंदर्भ मेटाए नहि सकल"
-+
-+#: ../semanage/seobject.py:1609
-+msgid "Could not list file contexts"
-+msgstr "फाइल संदर्भ सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1613
-+msgid "Could not list local file contexts"
-+msgstr "स्थानीय फाइल संदर्भ सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1632
-+msgid "SELinux fcontext"
-+msgstr "SELinux fcontext"
-+
-+#: ../semanage/seobject.py:1632
-+msgid "type"
-+msgstr "प्रकार"
-+
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
-+#, python-format
-+msgid "Could not check if boolean %s is defined"
-+msgstr "जँ %s बुलियन परिभाषित अछि तँ जांच नहि सकल"
-+
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
-+#, python-format
-+msgid "Boolean %s is not defined"
-+msgstr "%s बुलियन परिभाषित नहि अछि"
-+
-+#: ../semanage/seobject.py:1668
-+#, python-format
-+msgid "Could not query file context %s"
-+msgstr "%s फाइल संदर्भ केँ प्रश्न नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1673
-+#, python-format
-+msgid "You must specify one of the following values: %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1677
-+#, python-format
-+msgid "Could not set active value of boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1680
-+#, python-format
-+msgid "Could not modify boolean %s"
-+msgstr "%s बुलियन रूपांतरित नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1698
-+#, python-format
-+msgid "Bad format %s: Record %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1721
-+#, python-format
-+msgid "Boolean %s is defined in policy, cannot be deleted"
-+msgstr "%s बुलियन नीति मे परिभाषित अछि, मेटाएल नहि जाए सकैत"
-+
-+#: ../semanage/seobject.py:1725
-+#, python-format
-+msgid "Could not delete boolean %s"
-+msgstr "%s बुलियन मेटाए नहि सकल"
-+
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
-+msgid "Could not list booleans"
-+msgstr "बुलियन सूचीबद्ध नहि कए सकल"
-+
-+#: ../semanage/seobject.py:1773
-+msgid "unknown"
-+msgstr "अज्ञात"
-+
-+#: ../semanage/seobject.py:1776
-+msgid "off"
-+msgstr "बन्न"
-+
-+#: ../semanage/seobject.py:1776
-+msgid "on"
-+msgstr "चालू"
-+
-+#: ../semanage/seobject.py:1785
-+msgid "SELinux boolean"
-+msgstr "SELinux बूलियन"
-+
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
-+msgid "Description"
-+msgstr "वर्णन"
-+
-+#: ../newrole/newrole.c:198
-+#, c-format
-+msgid "failed to set PAM_TTY\n"
-+msgstr "PAM_TTY सेट करबामे विफल\n"
-+
-+#: ../newrole/newrole.c:287
-+#, c-format
-+msgid "newrole: service name configuration hashtable overflow\n"
-+msgstr "newrole: सेवा नाम विन्यास hashtable आधिक्य\n"
-+
-+#: ../newrole/newrole.c:297
-+#, c-format
-+msgid "newrole:  %s:  error on line %lu.\n"
-+msgstr "newrole:  %s:  %lu पंक्ति पर त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:436
-+#, c-format
-+msgid "cannot find valid entry in the passwd file.\n"
-+msgstr "passwd फाइल मे वैध प्रविष्टि नहि पाबि सकैत.\n"
-+
-+#: ../newrole/newrole.c:447
-+#, c-format
-+msgid "Out of memory!\n"
-+msgstr "स्मृतिक बाहर!\n"
-+
-+#: ../newrole/newrole.c:452
-+#, c-format
-+msgid "Error!  Shell is not valid.\n"
-+msgstr "त्रुटि!  शेल वैध नहि अछि.\n"
-+
-+#: ../newrole/newrole.c:509
-+#, c-format
-+msgid "Unable to clear environment\n"
-+msgstr "वातावरण साफ करबामे असमर्थ\n"
-+
-+#: ../newrole/newrole.c:556 ../newrole/newrole.c:634
-+#, c-format
-+msgid "Error initializing capabilities, aborting.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:564 ../newrole/newrole.c:640
-+#, c-format
-+msgid "Error setting capabilities, aborting\n"
-+msgstr "त्रुटि सेटिंग क्षमता, रोक रहल अछि\n"
-+
-+#: ../newrole/newrole.c:570
-+#, c-format
-+msgid "Error setting KEEPCAPS, aborting\n"
-+msgstr "KEEPCAPS सेट करबामे त्रुटि, रोक रहल अछि\n"
-+
-+#: ../newrole/newrole.c:578 ../newrole/newrole.c:652
-+#, c-format
-+msgid "Error dropping capabilities, aborting\n"
-+msgstr "त्रुटि त्याग क्षमता, त्याग रहल अछि\n"
-+
-+#: ../newrole/newrole.c:584 ../newrole/newrole.c:683
-+#, c-format
-+msgid "Error changing uid, aborting.\n"
-+msgstr "त्रुटि uid बदल रहल अछि, त्याग रहल अछि.\n"
-+
-+#: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
-+#, c-format
-+msgid "Error resetting KEEPCAPS, aborting\n"
-+msgstr "त्रुटि KEEPCAPS फेर सेट कए रहल अछि, त्याग रहल अछि\n"
-+
-+#: ../newrole/newrole.c:597
-+#, c-format
-+msgid "Error dropping SETUID capability, aborting\n"
-+msgstr "त्रुटि SETUID क्षमता छोड़ि रहल अछि, त्याग रहल अछि\n"
-+
-+#: ../newrole/newrole.c:602 ../newrole/newrole.c:657
-+#, c-format
-+msgid "Error freeing caps\n"
-+msgstr "caps स्वतंत्र करबामे त्रुटि\n"
-+
-+#: ../newrole/newrole.c:701
-+#, c-format
-+msgid "Error connecting to audit system.\n"
-+msgstr "सिस्टम ऑडिट संबंधन मे त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:707
-+#, c-format
-+msgid "Error allocating memory.\n"
-+msgstr "स्मृति संभाजन मे त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:714
-+#, c-format
-+msgid "Error sending audit message.\n"
-+msgstr "ऑडिट संदेश भेजबा मे त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
-+#, c-format
-+msgid "Could not determine enforcing mode.\n"
-+msgstr "पुनर्बलन मोड निश्चित नहि कए सकल.\n"
-+
-+#: ../newrole/newrole.c:765
-+#, c-format
-+msgid "Error!  Could not open %s.\n"
-+msgstr "त्रुटि!  %s खोल नहि सकैत.\n"
-+
-+#: ../newrole/newrole.c:771
-+#, c-format
-+msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
-+msgstr "%s!  %s क लेल मोजुदा संदर्भ नहि पाबि सकैत, tty फेर लेबल नहि कए रहल अछि.\n"
-+
-+#: ../newrole/newrole.c:781
-+#, c-format
-+msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
-+msgstr "%s!  %s क लेल नवीन संदर्भ नहि पाबि सकल, tty फेर लेबल नहि कए सकैत.\n"
-+
-+#: ../newrole/newrole.c:791
-+#, c-format
-+msgid "%s!  Could not set new context for %s\n"
-+msgstr "%s!  %s क लेल नवीन संदर्भ नहि सेट कए सकल\n"
-+
-+#: ../newrole/newrole.c:838
-+#, c-format
-+msgid "%s changed labels.\n"
-+msgstr "%s लेबल बदललकाह.\n"
-+
-+#: ../newrole/newrole.c:844
-+#, c-format
-+msgid "Warning! Could not restore context for %s\n"
-+msgstr "चेतावनी! %s क लेल संदर्भ जमा नहि कए सकल\n"
-+
-+#: ../newrole/newrole.c:901
-+#, c-format
-+msgid "Error: multiple roles specified\n"
-+msgstr "त्रुटि: बहुल भूमिका निर्दिष्ट\n"
-+
-+#: ../newrole/newrole.c:909
-+#, c-format
-+msgid "Error: multiple types specified\n"
-+msgstr "त्रुटि: बहुल प्रकार निर्दिष्ट\n"
-+
-+#: ../newrole/newrole.c:916
-+#, c-format
-+msgid "Sorry, -l may be used with SELinux MLS support.\n"
-+msgstr "क्षमा करू, -l केँ SELinux MLS समर्थन क संग प्रयोग कएल जाए सकैत अछि.\n"
-+
-+#: ../newrole/newrole.c:921
-+#, c-format
-+msgid "Error: multiple levels specified\n"
-+msgstr "त्रुटि: बहुल स्तर निर्दिष्ट\n"
-+
-+#: ../newrole/newrole.c:931
-+#, c-format
-+msgid "Error: you are not allowed to change levels on a non secure terminal \n"
-+msgstr "त्रुटि: अहाँकेँ असुरक्षित टर्मिनल पर लेबल केँ बदलबा क लेल अनुमति प्राप्त नहि अछि \n"
-+
-+#: ../newrole/newrole.c:957
-+#, c-format
-+msgid "Couldn't get default type.\n"
-+msgstr "पूर्वनिर्धारित प्रकार नहि पाबि सकल.\n"
-+
-+#: ../newrole/newrole.c:967
-+#, c-format
-+msgid "failed to get new context.\n"
-+msgstr "नये संदर्भ पाबै मे विफल.\n"
-+
-+#: ../newrole/newrole.c:974
-+#, c-format
-+msgid "failed to set new role %s\n"
-+msgstr "%s नयी भूमिका नहि सेट कए सकल\n"
-+
-+#: ../newrole/newrole.c:981
-+#, c-format
-+msgid "failed to set new type %s\n"
-+msgstr "नवीन प्रकार %s सेट करबामे विफल\n"
-+
-+#: ../newrole/newrole.c:991
-+#, c-format
-+msgid "failed to build new range with level %s\n"
-+msgstr "%s स्तर क संग नवीन परिसर बनाबै मे विफल\n"
-+
-+#: ../newrole/newrole.c:996
-+#, c-format
-+msgid "failed to set new range %s\n"
-+msgstr "%s नवीन परिसर सेट करबामे विफल\n"
-+
-+#: ../newrole/newrole.c:1004
-+#, c-format
-+msgid "failed to convert new context to string\n"
-+msgstr "नवीन संदर्भ स्ट्रिंग मे बदलबा मे विफल\n"
-+
-+#: ../newrole/newrole.c:1009
-+#, c-format
-+msgid "%s is not a valid context\n"
-+msgstr "%s एकटा वैध संदर्भ नहि अछि\n"
-+
-+#: ../newrole/newrole.c:1016
-+#, c-format
-+msgid "Unable to allocate memory for new_context"
-+msgstr "new_context क लेल स्मृति आबंटित करबामे समर्थ"
-+
-+#: ../newrole/newrole.c:1042
-+#, c-format
-+msgid "Unable to obtain empty signal set\n"
-+msgstr "रिक्त संकेत सेट पाबै मे असमर्थ\n"
-+
-+#: ../newrole/newrole.c:1050
-+#, c-format
-+msgid "Unable to set SIGHUP handler\n"
-+msgstr "SIGHUP नियंत्रण सेट करबामे असमर्थ\n"
-+
-+#: ../newrole/newrole.c:1116
-+#, c-format
-+msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
-+msgstr "क्षमा करू, newrole सिर्फ SELinux कर्नेल पर प्रयोग कएल जाए सकैत अछि.\n"
-+
-+#: ../newrole/newrole.c:1133
-+#, c-format
-+msgid "failed to get old_context.\n"
-+msgstr "old_context केँ पाबै मे विफल.\n"
-+
-+#: ../newrole/newrole.c:1140
-+#, c-format
-+msgid "Warning!  Could not retrieve tty information.\n"
-+msgstr "चेतावनी! tty सूचना नहि पाबि सकैत.\n"
-+
-+#: ../newrole/newrole.c:1161
-+#, c-format
-+msgid "error on reading PAM service configuration.\n"
-+msgstr "PAM सेवा विन्यास पर पढ़बा मे त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:1196
-+#, c-format
-+msgid "newrole: incorrect password for %s\n"
-+msgstr "newrole: %s क लेल गलत गुड़किल्ली\n"
-+
-+#: ../newrole/newrole.c:1223
-+#, c-format
-+msgid "newrole: failure forking: %s"
-+msgstr "newrole: विभाजन मे विफलता: %s"
-+
-+#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
-+#, c-format
-+msgid "Unable to restore tty label...\n"
-+msgstr "tty स्तर फेर जमा करबामे असमर्थ...\n"
-+
-+#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
-+#, c-format
-+msgid "Failed to close tty properly\n"
-+msgstr "tty केँ विधिवत रूपेँ बंद करबामे विफल\n"
-+
-+#: ../newrole/newrole.c:1287
-+#, c-format
-+msgid "Could not close descriptors.\n"
-+msgstr "विवरणकर्ता बंद नहि सकल.\n"
-+
-+#: ../newrole/newrole.c:1314
-+#, c-format
-+msgid "Error allocating shell's argv0.\n"
-+msgstr "शैल argv0 आबंटित करबामे त्रुटि.\n"
-+
-+#: ../newrole/newrole.c:1346
-+#, c-format
-+msgid "Unable to restore the environment, aborting\n"
-+msgstr "वातावरण फेर भंडारित करबामे असमर्थ, रोक रहल अछि\n"
-+
-+#: ../newrole/newrole.c:1357
-+msgid "failed to exec shell\n"
-+msgstr "शेल निष्पादन मे विफल\n"
-+
-+#: ../load_policy/load_policy.c:22
-+#, c-format
-+msgid "usage:  %s [-qi]\n"
-+msgstr "usage:  %s [-qi]\n"
-+
-+#: ../load_policy/load_policy.c:71
-+#, c-format
-+msgid "%s:  Policy is already loaded and initial load requested\n"
-+msgstr "%s:  नीति पहिने सँ लोड कएल हुआ अछि आओर आरंभिक लोड निवेदित अछि\n"
-+
-+#: ../load_policy/load_policy.c:80
-+#, c-format
-+msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
-+msgstr "%s:  नीति लोड नहि कए सकैत अछि आओर पुनर्बलन मोड निवेदित:  %s\n"
-+
-+#: ../load_policy/load_policy.c:90
-+#, c-format
-+msgid "%s:  Can't load policy:  %s\n"
-+msgstr "%s:  नीति नहि लोड कए सकैत अछि:  %s\n"
-+
-+#: ../scripts/chcat:92 ../scripts/chcat:169
-+msgid "Requires at least one category"
-+msgstr "कम सँ कम एकटा श्रेणी जरूरी"
-+
-+#: ../scripts/chcat:106 ../scripts/chcat:183
-+#, c-format
-+msgid "Can not modify sensitivity levels using '+' on %s"
-+msgstr "'+' %s पर प्रयोग करते हुये संवेदनशीलता स्तर नहि बदल सकैत अछि"
-+
-+#: ../scripts/chcat:110
-+#, c-format
-+msgid "%s is already in %s"
-+msgstr "%s पहिने सँ %s मे अछि"
-+
-+#: ../scripts/chcat:188 ../scripts/chcat:198
-+#, c-format
-+msgid "%s is not in %s"
-+msgstr "%s %s मे नहि अछि"
-+
-+#: ../scripts/chcat:267 ../scripts/chcat:272
-+msgid "Can not combine +/- with other types of categories"
-+msgstr "+/- केँ आन श्रेणी प्रकार सँ जोड़ि नहि सकैत"
-+
-+#: ../scripts/chcat:319
-+msgid "Can not have multiple sensitivities"
-+msgstr "बहुल संवेदनशीलता नहि राखि सकैत अछि"
-+
-+#: ../scripts/chcat:325
-+#, c-format
-+msgid "Usage %s CATEGORY File ..."
-+msgstr "प्रयोग %s CATEGORY फाइल ..."
-+
-+#: ../scripts/chcat:326
-+#, c-format
-+msgid "Usage %s -l CATEGORY user ..."
-+msgstr "प्रयोग %s -l CATEGORY प्रयोक्ता ..."
-+
-+#: ../scripts/chcat:327
-+#, c-format
-+msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
-+msgstr "प्रयोग %s [[+|-]CATEGORY],...]q फाइल ..."
-+
-+#: ../scripts/chcat:328
-+#, c-format
-+msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
-+msgstr "प्रयोग %s -l [[+|-]CATEGORY],...]q प्रयोक्ता ..."
-+
-+#: ../scripts/chcat:329
-+#, c-format
-+msgid "Usage %s -d File ..."
-+msgstr "प्रयोग %s -d फाइल ..."
-+
-+#: ../scripts/chcat:330
-+#, c-format
-+msgid "Usage %s -l -d user ..."
-+msgstr "प्रयोग %s -l -d प्रयोक्ता ..."
-+
-+#: ../scripts/chcat:331
-+#, c-format
-+msgid "Usage %s -L"
-+msgstr "प्रयोग %s -L"
-+
-+#: ../scripts/chcat:332
-+#, c-format
-+msgid "Usage %s -L -l user"
-+msgstr "प्रयोग %s -L -l प्रयोक्ता"
-+
-+#: ../scripts/chcat:333
-+msgid "Use -- to end option list.  For example"
-+msgstr "प्रयोग करू -- विकल्प सूची समाप्त करबाक लेल.  उदाहरण क लेल"
-+
-+#: ../scripts/chcat:334
-+msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-+msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
-+
-+#: ../scripts/chcat:335
-+msgid "chcat -l +CompanyConfidential juser"
-+msgstr "chcat -l +CompanyConfidential juser"
-+
-+#: ../scripts/chcat:399
-+#, c-format
-+msgid "Options Error %s "
-+msgstr "विकल्प त्रुटि %s"
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "बूलियन"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "सभटा"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "पसंदीदा"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "फाइल लेबलिंग"
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"फाइल\n"
-+"विनिर्दिष्टता"
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"फाइल प्रकार"
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"फाइल\n"
-+"प्रकार"
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "प्रयोक्ता मैपिंग"
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"लॉगिन\n"
-+"नाम"
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"प्रयोक्ता"
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS परिसर"
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "लॉगिन '%s' जरूरी अछि"
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "पॉलिसी माड्यूल"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "माड्यूल नाम"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "संस्करण"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "ऑडिट निष्क्रिय करू"
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "ऑडिट सक्रिय करू"
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "पॉलिसी माड्यूल लोड करू"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "पोल्जेन"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "संगीता कुमारी (sangeeta09@gmail.com)"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"ई अओजार एकटा पॉलिसी फ्रेमवर्क बनाबै क लेल प्रयुक्त होइत अछि, अनुप्रयोग अथवा प्रयोक्ता केँ "
-+"SELinux क प्रयोग क लेल सीमित करबाक लेल.   \n"
-+"\n"
-+"अओजार बनाबैत अछि:\n"
-+"प्रकार बाध्यकारी फाइल\n"
-+"अंतरफलक फाइल (if)\n"
-+"फाइल संदर्भ फाइल (fc)\n"
-+"Shell script (sh) - पॉलिसी कंपाइल आ संस्थापित करबाक लेल प्रयुक्त. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "सीमित रहबा क लेल अनुप्रयोग/प्रयोक्ता भूमिकाक प्रकार चुनू."
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>अनुप्रयोग</b>"
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"मानक Init डीमन वे डीमन अछि जे बूट पर init स्क्रिप्ट सँ भएकए आरंभ कएल गेल.  प्रायः /etc/"
-+"rc.d/init.d मे एकटा स्क्रिप्टक जरूरी अछि"
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "मानक Init डीमन"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "इंटरनेट सेवा डीमन xinetd क द्वारा आरंभ कएल जाइत अछि"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "इंटरनेट सर्विस डीमन (inetd)"
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"वेब अनुप्रयोग/स्क्रिप्ट (CGI) CGI स्क्रिप्ट केँ वेब सर्वर क द्वारा आरंभ कएल जाइत अछि "
-+"(apache)"
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "वेब अनुप्रयोग/स्क्रिप्ट (CGI)"
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"प्रयोक्ता अनुप्रयोग कोनो अनुप्रयोग अछि जे सीमित कएनाइ चाहत जे प्रयोक्ता क द्वारा आरंभ भेल "
-+"अछि"
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "प्रयोक्ता अनुप्रयोग"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>लॉगिन प्रयोक्ता</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "मोजुदा लॉगिन प्रयोक्ता रिकार्ड रूपांतरित करू."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "मोजुदा प्रयोक्ता भूमिका"
-+
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"ई प्रयोक्ता मशीन मे लॉगिन मात्र टर्मिनल अथवा दूरस्थ लॉगिन सँ हाएत.  पूर्वनिर्धारित रूपेँ ई "
-+"प्रयोक्ता क पास कोनो setuid नहि हाएत, कोनो संजालन नहि, कोनो su नहि, कोनो sudo "
-+"नहि."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "न्यूनतम टर्मिनल प्रयोक्ता भूमिका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"ई प्रयोक्ता मशीन मे लॉगिन X अथवा टर्मिनल सँ कए सकैत अछि.  पूर्वनिर्धारित रूपेँ ई प्रयोक्ता "
-+"क पास कोनो setuid नहि हाएत, कोनो संजालन नहि, कोनो sudo नहि, कोनो su नहि."
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "न्यूनतम X विंडोज प्रयोक्ता भूमिका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"पूर्ण संजालन क संग प्रयोक्ता, कोनो setuid अनुप्रयोग बिनु संक्रमण क नहि, कोनो sudo नहि, "
-+"कोनो su नहि."
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "प्रयोक्ता भूमिका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"पूर्ण संजालन क संग प्रयोक्ता, कोनो setuid अनुप्रयोग बिनु संक्रमण क नहि, कोनो su नहि, रूट "
-+"प्रशासन भूमिका केँ sudo कए सकैत अछि."
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "प्रशासन प्रयोक्ता भूमिका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>रूट प्रयोक्ता</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"रूट प्रशासन प्रयोक्ता  भूमिका चुनू, जँ ई प्रयोक्ता मशीन केँ प्रशासित करबाक लेल प्रयोग कएल "
-+"जाइत अछि रूट क रूपेँ कार्य करते हुए.  ई प्रयोक्ता सिस्टम मे सीधे लॉगिन होएबा क लेल समर्थ "
-+"नहि हाएत."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "रूट प्रशासन प्रयोक्ता भूमिका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "अनुप्रयोग क नाम आ प्रयोक्ता भूमिका सीमित रहबा क लेल डालू."
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "नाम"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "सीमित रहबा क लेल एक्सक्यूटेबल क पूरा पथ दिअ'."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "सीमित अनुप्रयोग अथवा प्रयोक्ता भूमिका  क लेल अद्वितीय नाम दिअ'."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "एक्सक्यूटेबल"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init स्क्रिप्ट"
++msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "सीमित अनुप्रयोग आरंभ करबाक लेल init स्क्रिप्ट मे पूरा पथ डालू."
++msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "ओ प्रयोक्ता भूमिका केँ चुनू जकरा अहाँ पसंदीदा बनैनाइ चाहैत अछि"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "प्रयोक्ता भूमिका चुनू जे ई अनुप्रयोग डोमेन मे संक्रमित करताह."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "बाइली डोमेन चुनू जकरामे ई प्रयोक्ता भूमिका संक्रमण करताह"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "अनुप्रयोग डोमेन चुनू जकरामे अहाँ ई प्रयोक्ता भूमिका केँ संक्रमण कएनाइ चाहब."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ओ प्रयोक्ता भूमिका केँ चुनू जे ई डोमेन मे संक्रमित कएल जाएत"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "बाइली डोमेन चुनू जकरा ई प्रयोक्ता भूमिका प्रशासित करताह"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "डोमेन चुनू जकरा अहाँ ई प्रयोक्ता क द्वारा प्रशासित कएनाइ चाहब."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ई प्रयोक्ता क लेल बाइली भूमिका चुनू"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "संजाल पोर्ट दाखिल करू जकरासँ अनुप्रयोग/प्रयोक्ता लाइसेंस लेने होइत अछि."
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP पोर्ट</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "सीमित अनुप्रयोग/प्रयोक्ता भूमिका केँ कोनो udp पोर्ट मे बांधबा क लेल स्वीकृति दिअ'"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "सबहि"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"अनुप्रयोग/प्रयोक्ता भूमिका केँ bindresvport केँ 0 क संग स्वीकृति दिअ'. पोर्ट 600-1024 मे "
-+"बांध रहल अछि"
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"udp पोर्ट अथवा पोर्ट क परिसर क कौमा सँ अलग कएल सूची दाखिल करू अथवा परिसर जकरामे "
-+"अनुप्रयोग/प्रयोक्ता बंधल अछि. उदाहरण: 612, 650-660"
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "अनारक्षित पोर्ट (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "पोर्ट चुनू"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "अनुप्रयोग/प्रयोक्ता भूमिका केँ कोनो udp पोर्ट सँ बांधबाक स्वीकृति देत अछि > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP पोर्ट</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "संजाल पोर्ट दाखिल करू जकरासँ अनुप्रयोग/प्रयोक्ता कनेक्ट होइत अछि."
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"tcp पोर्ट अथवा पोर्ट क परिसर क कौमा सँ अलग कएल सूची दाखिल करू अथवा परिसर जकरामे "
-+"अनुप्रयोग/प्रयोक्ता जुड़ता अछि. उदाहरण: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"udp पोर्ट अथवा पोर्ट क परिसर क कौमा सँ अलग कएल सूची दाखिल करू अथवा परिसर जकरामे "
-+"अनुप्रयोग/प्रयोक्ता जुड़ता अछि. उदाहरण: 612, 650-660"
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "सामान्य अनुप्रयोग गुण चुनू"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Nama Perkongsian tidak boleh mengandungi ruang"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog संदेश लिखैत अछि\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#, fuzzy
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "_Aras RAID:"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp मे अस्थायी फाइल केँ बनाबैत / काम करैत अछि"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#, fuzzy
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "Simpan masih dalam process"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "सत्यापन क लेल PAM क प्रयोग करैत अछि"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#, fuzzy
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s: %s: bukan dalam format a.out\n"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch अथवा getpw* कॉल प्रयोग करैत अछि"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Tiada 'Mountpoints' dikenalpasti"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus क प्रयोग करू"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "ऑडिट संदेश भेजै अछि"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "$file bukan milik \"$user\""
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "टर्मिनल क संग अंतःक्रिया करैत अछि"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Port diperlukan"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ईमेल भेजै अछि"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "फाइल/निर्देशिका चुनू जकरा अनुप्रयोग प्रबंधित करैत अछि"
-+
-+#: ../gui/polgen.glade:2607
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s telah ditakrif"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Antaramuka %s telah ditakrif"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ralat menetapkan sifat terminal"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"फाइल/निर्देशिका जोड़ू जकर ई अनुप्रयोग केँ \"Write\" लिखबा क जरूरत हाएत. Pid फाइल, लॉग "
-+"फाइल, /var/lib फाइल ..."
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "बुलियन केँ चुनू जकरा अनुप्रयोग प्रयोग करैत अछि"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "सीमित अनुप्रयोग/प्रयोक्ता क लेल प्रयुक्त बुलियन जोड़ू/हटाउ."
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "निर्देशिका चुनू जकरामे पॉलिसी फाइल केँ बनैनाइ अछि"
-+
-+#: ../gui/polgen.glade:2882
+-#, fuzzy
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ralat menetapkan sifat terminal"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "ralat menetapkan sifat terminal"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Amaran: Cap dikunci"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Jenis SELinux diperlukan"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Jenis SELinux diperlukan"
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "पॉलिसी निर्देशिका"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "पॉलिसी फाइल उत्पन्न कएलक"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ई अओजार निम्नलिखित केँ उत्पन्न करैत अछि: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"शेल स्क्रिप्ट केँ कंपाइल/संस्थापित करने आ फाइल/निर्देशिका केँ फेर लेबल करबाक लेल चलाएं.\n"
-+"semanage अथवा useradd क प्रयोग Linux लॉगिन प्रयोक्ता केँ प्रयोक्ता भूमिका मे मैप करबाक "
-+"लेल करू\n"
-+"आब अहाँ मशीन केँ अनुज्ञात्मक मोड मे (setenforce 0) राखि सकैत अछि. \n"
-+"प्रयोक्ता क रूपेँ लॉगिन करू आओर ई प्रयोक्ता भूमिका क जांच करू.\n"
-+"audit2allow -R केँ te फाइल क लेल बाइली नियम बनाबै क लेल प्रयोग करू.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +msgstr ""
-+"ई अओजार निम्नलिखित केँ उत्पन्न करैत अछि: \n"
-+"Type Enforcment(te), File Context(fc), Interface(if), Shell Script(sh).\n"
-+"\n"
-+"शेल स्क्रिप्ट केँ कंपाइल/संस्थापित करने आ फाइल/निर्देशिका केँ फेर लेबल करबाक लेल चलाएं. \n"
-+"आब अहाँ मशीन केँ अनुज्ञात्मक मोड मे (setenforce 0) राखि सकैत अछि. \n"
-+"avc संदेश चलाबै क लेल अनुप्रयोग केँ चलाएं/फेर आरंभ करू.\n"
-+"audit2allow -R केँ te फाइल क लेल बाइली नियम बनाबै क लेल प्रयोग करू.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Terdapat ralat RPM.  Mesejnya ialah:\n"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "बुलियन संवाद जोड़ि रहल अछि"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Anda mesti nyatakan peranti."
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "बूलियन नाम"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Anda mesti nyatakan peranti."
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "भूमिका"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Anda mesti nyatakan peranti."
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "मोजुदा प्रयोक्ता (_U)"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Antaramuka %s tidak dinyatakan"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "अनुप्रयोग"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Konteks fail %s tidak dinyatakan"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s केँ जरूर निर्देशिका होनी चाही"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Jenis terminal `%s' tidak ditakrifkan."
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "अहाँकेँ जरूर प्रयोक्ता चुननाइ अछि"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Menghimpun polisi"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "सीमित रहबा क लेल एक्सक्यूटेबल फाइल चुनू."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Pengesahan gagal"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "सीमित होएबा क लेल init स्क्रिप्ट चुनू."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Jenis SELinux diperlukan"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "फाइल केँ चुनू जकरा सीमित अनुप्रयोग बनाबैत अछि आ लिखैत अछि"
-+
-+#: ../gui/polgengui.py:481
++msgstr ""
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "निर्देशिका चुनू जिसका सीमित अनुप्रयोग मालिक अछि आ जकरामे लिखैत अछि"
-+
-+#: ../gui/polgengui.py:541
++msgstr ""
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "निर्देशिका चुनू जकरामे पॉलिसी फाइल केँ लिखल जएनाइ अछि"
-+
-+#: ../gui/polgengui.py:554
++msgstr ""
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"मोजुदा नीति मे %s_t पहिने सँ परिभाषित अछि.\n"
-+"की अहाँ जारी रखबा चाहैत अछि?"
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "नाम जांचें"
-+
-+#: ../gui/polgengui.py:558
++msgstr ""
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "gagal baca fail menu:%s"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"माड्यूल %s.pp पहिने सँ मोजुदा नीति मे लोड कएल अछि.\n"
-+"की अहाँ जारी रखबा चाहैत अछि?"
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "अहाँकेँ एकटा नाम अवश्य दाखिल कएनाइ अछि"
-+
-+#: ../gui/polgengui.py:610
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Jenis SELinux diperlukan"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Memerlukan nilai"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "अहाँ जरूर एकटा एक्सक्यूटेबल दिअ'"
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
+-#, fuzzy
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "64 MB atau lebih"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux विन्यस्त करू"
-+
-+#: ../gui/polgen.py:174
++msgstr ""
+-#, fuzzy
+-#~ msgid "%s not defined"
+-#~ msgstr "tidak ditakrif"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#, fuzzy
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "$0: konfigurasi bagi ${1} tidak dijumpai."
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#, fuzzy
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Nilai tidak sah"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "अपनी सीमित प्रक्रिया/प्रयोक्ता क लेल अहाँ अपन नाम जरूर दिअ'"
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Ralat Pilihan: %s"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER प्रकार अनुमति प्राप्त एक्सक्यूटेबल नहि अछि"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "सिर्फ DAEMON apps एकटा init स्क्रिप्ट क प्रयोग कए सकैत अछि"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog क पास जरूर बूलियन मान होएबा चाही"
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "अपन सीमति प्रक्रिया क लेल अहाँ जरूर अपन एक्सक्यूटेबल पथ दिअ'"
++msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "अंतरफलक फाइल"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "फाइल संदर्भ फाइल"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "सेटअप स्क्रिप्ट"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -150230,37 +152567,33 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux पोर्ट\n"
-+"प्रकार"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "प्रोटोकॉल"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"स्तर"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "पोर्ट"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "पोर्ट संख्या \"%s\" वैध नहि अछि.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "अंतिम दृश्य"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "समूह दृश्य"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -150308,26 +152641,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux सेवा सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "सभटा डीमन केँ कोरफाइल केँ / मे लिखबा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "सभटा डीमन केँ गैर आबंटति ttys क प्रयोग क छूट दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -150336,7 +152669,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "प्रयोक्ता Privs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
@@ -150350,37 +152683,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "स्मृति सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "java एक्सक्यूटेबल स्टैक क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "आरोह"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "कोनो फाइल केँ माउंट करबाक लेल mount केँ अनुमति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "कोनो निर्देशिका केँ माउंट करबाक लेल mount केँ अनुमति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer एक्सक्यूटेबल स्टैक क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh केँ ssh-keysign चलाबै क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
@@ -150400,11 +152733,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "संजाल विन्यास"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "संजाल पर बिनु लेबल कएल पैकेट केँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
@@ -150413,28 +152746,28 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "असीमित केँ dyntrans सँ unconfined_execmem मे स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "डाटाबेस"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "प्रयोक्ता केँ mysql सॉकेट मे जोड़बा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "प्रयोक्ता केँ postgres सॉकेट मे जोड़बा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "क्लाइंट केँ X साझा स्मृति मे लिखबा क अनुमति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
@@ -150444,11 +152777,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS क डीमन चलाबै क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -150456,853 +152789,836 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "वेब अनुप्रयोग"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "स्टाफ SELinux प्रयोक्ता केँ वेब ब्राउजर डोमेन मे लए जाउ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux प्रयोक्ता केँ वेब ब्राउजर डोमेन मे लए जाउ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "प्रयोक्ता SELinux प्रयोक्ता केँ वेब ब्राउजर डोमेन मे लए जाउ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux प्रयोक्ता केँ वेब ब्राउजर डोमेन मे लए जाउ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "स्टाफ वेब ब्राउजर केँ होम निर्देशिका मे लिखबा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster Server क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord केँ विभिन्न सामग्री केँ पढ़बा क लेल स्वीकृति दिअ'. nfs, samba, विस्थापनीय "
-+"युक्ति, user temp आओर अविश्वसनीय सामग्री फाइल"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "क्रॉन"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "छापि रहल अछि"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd बैकेंड सर्वर क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t केँ सीधे डीमन केँ आरंभ करने क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolution क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "खेल"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "गेम क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "वेब ब्राउजर क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "सुसंगतता"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"ओ चीजक ऑडिट नहि करू जकरा हम टूटे हुए क तौर पर जानैत अछि मुदा जे सुरक्षा खतरा नहि अछि"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD सेवा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd child डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "करबरोस"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "प्रयोक्ता फाइल पढ़बा क लेल evolution आओर thunderbird केँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "मोजिला ब्राउजर केँ प्रयोक्ता फाइल पढ़बा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "नाम सेवा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "सांबा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd केँ नियमित प्रयोक्ता क रूपेँ चलबा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "गैर मानक स्थान मे फाइल केँ पढ़बा क प्रोग्राम केँ अनुमति दिअ' (default_t)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh केँ inetd सँ चलबा क स्वीकृति डीमनक रूप क बजाय दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Samba केँ nfs निर्देशिका साझा करने क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL सत्यापन सर्वर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl सत्यापन सर्वर केँ /etc/shadow केँ पढ़बा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows सर्वर केँ एक्सक्यूटेबल आ लिखबा योग्य दोनों रूपेँ स्मृति क्षेत्र मे मैप करने क स्वीकृति "
-+"दिअ'"
 +
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo आओर su प्रभावित मे संक्रमण क स्वीकृति नहि दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "कर्नेल माड्यूल लोड करबाक लेल कोनो प्रक्रिया क अनुमति नहि दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "कर्नेल SELinux पॉलिसी मे कोनो प्रक्रिया केँ नहि स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "स्पैम सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd केँ होम निर्देशिका क अभिगम क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assasin डीमन संजाल अभिगम क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid डीमन केँ संजाल सँ कनेक्ट होएबा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh लॉगिन केँ sysadm_r:sysadm_t क रूपेँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r प्रयोक्ता केँ sysadm होम निर्देशिका आ रीड फाइल केँ खोजबा क स्वीकृति "
-+"दिअ' (जहिना जे ~/.bashrc)"
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "सार्वभौमिक SSL टनेल"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel डीमन केँ पृथक चलाबै क स्वीकृति दिअ', xinetd क बाहर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "system cron jobs  क लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd केँ असीमित रूपेँ चलबा क स्वीकृति दिअ', कोनो सेवा क संग जे ई आरंभ करैत अछि जे डोमेन "
-+"संक्रमण केँ अलग सँ परिभाषित नहि राखैत अछि"
 +
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc स्क्रिप्ट केँ असीमित रूपेँ चलबा क स्वीकृति दिअ', कोनो सेवा क संग जे rc स्क्रिप्ट आरंभ करैत "
-+"अछि जे डोमेन संक्रमण केँ अलग सँ परिभाषित नहि राखैत अछि"
 +
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm केँ असीमित रूपेँ चलबाक स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"हॉटप्लग आओर insmod क तरह क सुविधा प्राप्त उपयोगिता केँ असीमित रूपेँ चलबा क स्वीकृति दिअ'"
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r केँ sysadm_r पर su, sudo, अथवा userhelper सँ भएकए पहुंचने क अनुमति दिअ'. "
-+"अन्यथा, सिर्फ staff_r ऐसा कए सकैत अछि"
 +
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "प्रयोक्ता केँ mount कमांड चलाबै क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"नियमित प्रयोक्ता केँ सीधा माउस अभिगम क स्वीकृति दिअ' (सिर्फ X सर्वर केँ अनुमति दिअ')"
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "प्रयोक्ता केँ dmesg कमांड चलाबै क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"प्रयोक्ता केँ संजाल अंतरफलक नियंत्रित करने क स्वीकृति दिअ' (USERCTL=true क सही क जरूरत "
-+"अछि)"
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "सामान्य प्रयोक्ता केँ पिंग करने क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY) करबाक लेल प्रयोक्ता केँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "usb युक्ति केँ rw बनाबै क लेल प्रयोक्ता केँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:216
 +msgid ""
@@ -151310,120 +153626,110 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"प्रयोक्ता केँ TCP सर्वर (bind to ports and accept connection from the same domain "
-+"and outside users) चलाबै क स्वीकृति दिअ' ई बल केँ FTP निष्क्रिय मोड मे निष्क्रिय करते "
-+"हुए आओर आन प्रोटोकॉल बदल सकैत अछि"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ttyfiles केँ stat क लेल प्रयोक्ता केँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm लॉगिन केँ sysadm_r:sysadm_t क रूपेँ स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "भौतिक डिस्क युक्ति केँ xen केँ पढ़बा/लिखबा क स्वीकृति दिअ'"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "SELinux सुरक्षा केँ xen नियंत्रण क लेल निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS Password डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS Transfer डीमनक लेल SELinux सुरक्षा निष्क्रिय करू"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm प्रयोक्ता केँ अनधिकृत प्रयोक्ता होम निर्देशिकाओं केँ प्रबंधित करने क स्वीकृति "
-+"दिअ'"
 +
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm प्रयोक्ता केँ अनधिकृत प्रयोक्ता होम निर्देशिकाओं केँ पढ़बा स्वीकृति दिअ'"
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "की अहाँ निश्चित अछि जे अहाँ %s '%s' केँ मेटोअनाइ चाहैत अछि?"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s मेटाउ"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s जोड़ू"
++msgstr ""
 +
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s बदलू"
++msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "अनुज्ञात्मक"
++msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "बाध्यकारी"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "निष्क्रिय"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "स्थिति"
++msgstr ""
 +
 +#: ../gui/statusPage.py:133
 +msgid ""
@@ -151431,9 +153737,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"पॉलिसी प्रकार केँ बदलना पूरे फाइल सिस्टम केँ रिलेबल करने क कारण बनेगा अगले बूट पर. "
-+"रिलेबलिंग लंबा समय लेता अछि फाइल सिस्टम क आकार पर निर्भर करते हुए.  की अहाँ जारी रखबा "
-+"चाहैत अछि?"
 +
 +#: ../gui/statusPage.py:147
 +msgid ""
@@ -151444,11 +153747,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux केँ निष्क्रिय मे बदलबा क लेल रिबूट क जरूरत होती अछि.  एकर सलाह नहि दी जाती "
-+"अछि.  जँ अहाँ SELinux केँ वापस लौटाने क सोचते अछि, सिस्टम केँ रिलेबल करने क जरूरत हाएत.  "
-+"जँ अहाँ ई देखना चाहैत अछि जे SELinux सिस्टम पर समस्या दे रहल अछि, अहाँ अनुज्ञात्मक मोड मे "
-+"जाए सकैत अछि जे सिर्फ त्रुटि देगा आओर SELinux पॉलिसी केँ बाध्यकारी नहि करताह.  "
-+"अनुज्ञात्मक मोड क लेल रिबूट क जरूरत नहि अछि, की अहाँ जारी रखबा चाहैत अछि?"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -151456,54 +153754,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"सक्रिय SELinux स्थिति मे बदलना अगले बूट पर पूरे फाइल सिस्टम क फेर लेबल कएल जाने क कारण "
-+"बनेगा. फाइल सिस्टम क आकार क आधार पर फेर सँ लेबल कएल जएनाइ काफी समय लेता अछि. की "
-+"अहाँ जारी रखबा चाहब?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux लॉगिंग मैपिंग"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux संजाल पोर्ट"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux प्रकार"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"स्तर"
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "फाइल विशेषता"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "फाइल प्रकार"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -151514,1460 +153798,394 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mai.po policycoreutil
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"सभटा फाइल\n"
-+"नियमित फाइल\n"
-+"निर्देशिका\n"
-+"संप्रतीक युक्ति\n"
-+"ब्लॉक युक्ति\n"
-+"सॉकेट\n"
-+"सांकेतिक लिंक\n"
-+"नामित पाइप\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux प्रयोक्ता जोड़ू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux प्रशासन"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "जोड़ू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "गुण (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "विलोपित करू (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "प्रबंधन वस्तु चुनू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>चुनू:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "सिस्टम पूर्वनिर्धारित बाध्यकारी मोड"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "मोजुदा पुनर्बलन मोड"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "सिस्टम पूर्वनिर्धारित पॉलिसी प्रकार: "
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"चुनू जँ अहाँ पूरे फाइल सिस्टम केँ अगले रिबूट पर फेर लेबल कएनाइ चाहैत अछि.  रिलेबल कएनाइ लंबा "
-+"समय लए सकैत अछि, सिस्टम क आकार पर निर्भर करते हुए.  जँ अहाँ पॉलिसी प्रकार केँ निष्क्रिय "
-+"सँ बाध्यकारी मे बदल रहे अछि, फेर लेबल कएनाइ जरूरी अछि."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "अगले रिबूट पर फेर लेबल करू."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "सिस्टम पूर्वनिर्धारित मे बुलियन सेटिंग वापस लाएं"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "पसंदीदा आओर सभटा बुलियन क बीच टॉगल करू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "फिल्टर"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "फाइल संदर्भ जोड़ू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "फाइल संदर्भ बदलू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "फाइल संदर्भ मेटाउ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "सभटा आओर पसंदीदा फाइल संदर्भ क बीच टॉगल करू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux प्रयोक्ता मैपिंग जोड़ू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux प्रयोक्ता मैपिंग बदलू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux प्रयोक्ता मैपिंग मेटाउ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "अनुवाद जोड़ू"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "अनुवाद रूपांतरित करू"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "अनुवाद मेटाउ"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "संजाल पोर्ट जोड़ू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "संजाल पोर्ट संपादित करू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "संजाल पोर्ट मेटाउ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "पसंदीदा आओर सभटा पोर्ट क बीच टॉगल करू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "नवीन पॉलिसी माड्यूल उत्पन्न करू"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "पॉलिसी माड्यूल लोड करू."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "लोड करने लायक सार्वजनिक माड्यूल हटाउ"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"बाइली ऑडिट नियम सक्रिय/निष्क्रिय करू, जे लॉग फाइल मे सामान्यतः रिपोर्ट नहि कएल गेल "
-+"अछि."
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
 +
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux प्रयोक्ता '%s' जरूरी अछि"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "संवेदनशीलता स्तर"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/Makefile policycoreutils-2.0.85/po/Makefile
---- nsapolicycoreutils/po/Makefile     2011-02-17 15:11:25.174734053 -0500
-+++ policycoreutils-2.0.85/po/Makefile 2011-02-17 15:23:37.422756127 -0500
-@@ -45,6 +45,33 @@
-       ../restorecond/stringslist.h \
-       ../restorecond/restorecond.c \
-       ../restorecond/utmpwatcher.c \
-+      ../gui/booleansPage.py \
-+      ../gui/fcontextPage.py \
-+      ../gui/loginsPage.py \
-+      ../gui/mappingsPage.py \
-+      ../gui/modulesPage.py \
-+      ../gui/polgen.glade \
-+      ../gui/polgengui.py \
-+      ../gui/polgen.py \
-+      ../gui/portsPage.py \
-+      ../gui/selinux.tbl \
-+      ../gui/semanagePage.py \
-+      ../gui/statusPage.py \
-+      ../gui/system-config-selinux.glade \
-+      ../gui/system-config-selinux.py \
-+      ../gui/usersPage.py \
-+      ../gui/templates/executable.py \
-+      ../gui/templates/__init__.py \
-+      ../gui/templates/network.py \
-+      ../gui/templates/rw.py \
-+      ../gui/templates/script.py \
-+      ../gui/templates/semodule.py \
-+      ../gui/templates/tmp.py \
-+      ../gui/templates/user.py \
-+      ../gui/templates/var_lib.py \
-+      ../gui/templates/var_log.py \
-+      ../gui/templates/var_run.py \
-+      ../gui/templates/var_spool.py \
-       ../secon/secon.c \
- #default:: clean
-@@ -80,8 +107,10 @@
- install: $(MOFILES)
-       @for n in $(MOFILES); do \
-           l=`basename $$n .mo`; \
--          $(INSTALL_DIR) $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES; \
--          $(INSTALL_DATA) --verbose $$n $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
-+          if test -r $$n; then \
-+                  $(INSTALL_DIR) $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES; \
-+                  $(INSTALL_DATA) --verbose $$n $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
-+          fi; \
-       done
- %.mo: %.po
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/Makefile.in.in policycoreutils-2.0.85/po/Makefile.in.in
---- nsapolicycoreutils/po/Makefile.in.in       2011-02-17 15:11:25.153734404 -0500
-+++ policycoreutils-2.0.85/po/Makefile.in.in   2011-02-17 15:23:37.434756214 -0500
-@@ -117,9 +117,11 @@
-           $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
-           echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
-         else \
--          $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
--          echo "installing $(srcdir)/$$cat as" \
--               "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
-+          if test -r $(srcdir)/$$cat; then \
-+            $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
-+            echo "installing $(srcdir)/$$cat as" \
-+                       "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
-+          fi; \
-         fi; \
-         if test -r $$cat.m; then \
-           $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils-2.0.85/po/mk.po
---- nsapolicycoreutils/po/mk.po        2011-02-17 15:11:25.778724070 -0500
-+++ policycoreutils-2.0.85/po/mk.po    2011-02-18 16:03:41.384975854 -0500
-@@ -8,15 +8,35 @@
- msgstr ""
- "Project-Id-Version: mk\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2007-07-28 23:44+0200\n"
- "Last-Translator: Arangel Angov <arangel@linux.net.mk>\n"
- "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
-+"Language: mk\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
 +msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "Потребен е SELinux-тип"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Не можам да ја прочитам политиката на складиштето."
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -130,7 +150,8 @@
- msgid "Level"
+diff --git a/policycoreutils/po/my.po b/policycoreutils/po/my.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/my.po
++++ b/policycoreutils/po/my.po
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
-@@ -184,749 +205,756 @@
- msgid "Permissive Types"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Не можев да креирам клуч за %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Не можев да проверам дали е дефинирано мапирање за најава за %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Мапирањето за најава за %s е веќе дефинирано"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux-корисникот %s не постои"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux-корисникот %s не постои"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Не можев да креирам мапирање за најава за %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Не можев да поставам име за %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Не можев да поставам MLS-опсег за %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Не можев да поставам SELinux-корисник за %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Не можев да додадам мапирање за најава за %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- #, fuzzy
- msgid "add SELinux user mapping"
- msgstr "Не можев да го додадам SELinux-корисникот %s"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Побарува seuser или serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Мапирањето за најава за %s не е дефинирано"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Не можев да пребарувам во seuser за %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Не можев да го изменам мапирањето за најава за %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Мапирањето за најава за %s е дефинирано во политиката и не може да биде "
- "избришан"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Не можев да го избришам мапирањето за најава за %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Не можев да ги прикажам мапирањата за најави"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- #, fuzzy
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "Потребен е SELinux-тип"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Не можев да додадам контекст за датотека за %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Не можев да проверам дали е дефиниран SELinux-корисникот %s"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux-корисникот %s е веќе дефиниран"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Не можев да креирам SELinux-корисник за %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Не можев да ја додадам улогата %s за %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Не можев да го поставам MLS-нивото за %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Не можев да го додадам префиксот %s за %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Не можев да го извлечам клучот за %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Не можев да го додадам SELinux-корисникот %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Побарува префикс, улоги, ниво или опсег"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Побарува префикс или улоги"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux-корисникот %s не е дефиниран"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Не можев да пребарувам во корисниците за %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Не можев да го изменам SELinux-корисникот %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "SELinux-корисникот %s е дефиниран во политиката и не може да биде избришан"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Не можев да го избришам SELinux-корисникот %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Не можев да ги прикажам SELinux-корисниците"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Не можев да ги прикажам улогите за корисникот %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
  msgstr ""
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Потребен е протокол udp или tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Потребна е порта"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Не можев да креирам клуч за %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Потребен е тип"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Не можев да проверам дали е дефинирана порта %s/%s"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Портата %s/%s е веќе дефинирана"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Не можев да креирам порта за %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Не можев да креирам контекст за %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Не можев да поставам корисник во контекстот за порта за %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Не можев да поставам улога во контекстот за порта за %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Не можев да поставам тип во контекстот за порта за %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Не можев да поставам mls-полиња во контекстот за порта за %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Не можев да поставам контекст за порта за %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Не можев да ја додадам портата %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Побарува setype или serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Побарува setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Портата %s/%s не е дефинирана"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Не можев да пребарувам на портата %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Не можев да ја изменам портата %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
- msgid "Could not list the ports"
- msgstr "Не можев да ги прикажам портите"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
- msgid "Could not delete the port %s"
- msgstr "Не можев да ја избришам портата %s/%s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Портата %s/%s е дефинирана во политиката и не може да биде избришана"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Не можев да ја избришам портата %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Не можев да ги прикажам портите"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
- msgid "Node Address is required"
- msgstr "Потребна е порта"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Потребна е порта"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Потребен е SELinux-тип"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Не можев да креирам клуч за %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
- msgid "Could not check if addr %s is defined"
- msgstr "Не можев да проверам дали е дефинирана порта %s/%s"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Портата %s/%s е веќе дефинирана"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
- msgid "Could not create addr for %s"
- msgstr "Не можев да креирам клуч за %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Не можев да креирам контекст за %s"
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
- msgid "Could not set mask for %s"
- msgstr "Не можев да поставам име за %s"
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
- msgid "Could not set user in addr context for %s"
- msgstr "Не можев да поставам корисник во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
- msgid "Could not set role in addr context for %s"
- msgstr "Не можев да поставам улога во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
- msgid "Could not set type in addr context for %s"
- msgstr "Не можев да поставам тип во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr "Не можев да поставам mls-полиња во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
- msgid "Could not set addr context for %s"
- msgstr "Не можев да поставам контекст за датотека за %s"
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
- msgid "Could not add addr %s"
- msgstr "Не можев да ја додадам портата %s/%s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
- msgid "Addr %s is not defined"
- msgstr "Портата %s/%s не е дефинирана"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
- msgid "Could not query addr %s"
- msgstr "Не можев да пребарувам на портата %s/%s"
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
- msgid "Could not modify addr %s"
- msgstr "Не можев да ја изменам портата %s/%s"
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Портата %s/%s е дефинирана во политиката и не може да биде избришана"
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
- msgid "Could not delete addr %s"
- msgstr "Не можев да го избришам интерфејсот %s"
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
- msgid "Could not list addrs"
- msgstr "Не можев да ги прикажам портите"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Не можев да проверам дали е дефиниран интерфејсот %s"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Интерфејсот %s е веќе дефиниран"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Не можев да креирам интерфејс за %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Не можев да поставам корисник во контекстот за интерфејс за %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Не можев да поставам улога во контекстот за интерфејс за %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Не можев да поставам тип во контекстот за интерфејс за %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Не можев да поставам mls-полиња во контекстот за интерфејс за %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Не можев да поставам контекст за интерфејс за %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Не можев да поставам контекст за порака за %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Не можев да го додадам интерфејсот %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Интерфејсот %s не е дефиниран"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Не можев да пребарувам на интерфејсот %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Не можев да го изменам интерфејсот %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Интерфејсот %s е дефиниран во политиката и не може да биде избришан"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Не можев да го избришам интерфејсот %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Не можев да ги прикажам интерфејсите"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Не можев да поставам корисник во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Не можев да поставам улога во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Не можев да поставам mls-полиња во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Не можев да проверам дали е дефиниран контекст за датотека за %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Контекстот за датотека за %s е веќе дефиниран"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Не можев да креирам контекст за датотека за %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Не можев да поставам тип во контекстот за датотека за %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Не можев да поставам контекст за датотека за %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Не можев да додадам контекст за датотека за %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Побарува setype, serange или seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Контекстот за датотека за %s не е дефиниран"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Не можев да пребарувам во контекстот на датотека за %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Не можев да го изменам контекстот за датотека за %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
- msgid "Could not list the file contexts"
- msgstr "Не можев да ги прикажам контекстите на датотеките"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
- msgid "Could not delete the file context %s"
- msgstr "Не можев да го избришам контекстот за датотека за %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Контекстот за датотека за %s е дефиниран во политиката и не може да биде "
- "избришан"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Не можев да го избришам контекстот за датотека за %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Не можев да ги прикажам контекстите на датотеките"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Не можев да ги прикажам контекстите на локалните датотеки"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Не можев да проверам дали е дефинирана логичката вредност %s"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Логичката вредност %s не е дефинирана"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Не можев да го пребарувам контекстот на датотека %s"
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "Мора да наведете префикс"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "Не можев да ја избришам логичката вредност %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Не можев да ја изменам логичката вредност %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
- "Логичката вредност %s е дефинирана во политиката и не може да биде избришана"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Не можев да ја избришам логичката вредност %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Не можев да ги прикажам логичките вредности"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
-@@ -1300,86 +1328,2087 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Грешка во опциите %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "преводите не се поддржани на машини што немаат MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Потребен е SELinux-тип"
++
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Потребен е SELinux-тип"
++
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Грешка при испраќањето порака за контрола.\n"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Мора да наведете улога"
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
++
 +#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Мора да наведете улога"
 +msgid ""
 +"Selinux\n"
 +"File Type"
-+msgstr "Потребен е SELinux-тип"
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Мора да наведете улога"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Генерирам датотека за тип на спроведување: %s.te"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Интерфејсот %s не е дефиниран"
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Контекстот за датотека за %s не е дефиниран"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux-корисникот %s не е дефиниран"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Компилирам политика"
++
 +#: ../gui/loginsPage.py:133
-+#, fuzzy, python-format
++#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Потребен е SELinux-тип"
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Проверувам %s за автентичност.\n"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Потребен е SELinux-тип"
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Не можев да го додадам SELinux-корисникот %s"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Не можев да го изменам SELinux-корисникот %s"
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Не можев да го избришам SELinux-корисникот %s"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Не можев да го изменам SELinux-корисникот %s"
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Не можам да ја прочитам политиката на складиштето."
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Потребен е SELinux-тип"
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
@@ -152981,488 +154199,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
-+#, fuzzy
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Грешка при испраќањето порака за контрола.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+#, fuzzy
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Мора да наведете улога"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+#, fuzzy
-+msgid "You must enter a name"
-+msgstr "Мора да наведете улога"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
 +
-+#: ../gui/polgengui.py:610
-+#, fuzzy
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Мора да наведете улога"
++msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
-+#, fuzzy
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Генерирам датотека за тип на спроведување: %s.te"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
-+#, fuzzy
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Интерфејсот %s не е дефиниран"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
-+#, fuzzy
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Контекстот за датотека за %s не е дефиниран"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -153495,7 +154766,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -153544,9 +154815,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+#, fuzzy
 +msgid "SELinux Service Protection"
-+msgstr "SELinux-корисникот %s не е дефиниран"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
@@ -153954,9 +155224,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:87
-+#, fuzzy
 +msgid "Compatibility"
-+msgstr "Компилирам политика"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
@@ -154294,9 +155563,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+#, fuzzy
 +msgid "SASL authentication server"
-+msgstr "Проверувам %s за автентичност.\n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
@@ -154626,18 +155894,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -154678,7 +155942,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -154687,26 +155950,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Потребен е SELinux-тип"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -154718,59 +155974,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Не можев да го додадам SELinux-корисникот %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -154778,2479 +156033,1091 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mk.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Не можев да го изменам SELinux-корисникот %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Не можев да го избришам SELinux-корисникот %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Не можев да го додадам SELinux-корисникот %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Не можев да го изменам SELinux-корисникот %s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Не можам да ја прочитам политиката на складиштето."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
 +#: ../gui/usersPage.py:138
-+#, fuzzy, python-format
++#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Потребен е SELinux-тип"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "преводите не се поддржани на машини што немаат MLS"
- #~ msgid "Requires value"
- #~ msgstr "Побарува вредност"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils-2.0.85/po/ml.po
---- nsapolicycoreutils/po/ml.po        2011-02-17 15:11:25.821723374 -0500
-+++ policycoreutils-2.0.85/po/ml.po    2011-02-18 16:03:41.385975861 -0500
-@@ -1,3 +1,4 @@
-+# translation of policycoreutils.HEAD.ml.po to
- # translation of ml.po to
++msgstr ""
+diff --git a/policycoreutils/po/nb.po b/policycoreutils/po/nb.po
+index d206584..8b79fbc 100644
+--- a/policycoreutils/po/nb.po
++++ b/policycoreutils/po/nb.po
+@@ -1,20 +1,21 @@
+-# Norwegian bokmål translation of policycoreutils.
+-# Copyright (C) 2006 Red Hat, Inc.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
-@@ -5,12 +6,13 @@
- # Ani Peter <apeter@redhat.com>, 2006, 2007.
+-# Kjartan Maraas <kmaraas@gnome.org>, 2006, 2007.
+ #
++# Translators:
  msgid ""
  msgstr ""
--"Project-Id-Version: ml\n"
-+"Project-Id-Version: policycoreutils.HEAD.ml\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-01 13:24+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-03 12:56+0530\n"
- "Last-Translator: \n"
- "Language-Team:  <en@li.org>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-10-04 15:01+0200\n"
+-"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
+-"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
++"Language: nb\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-@@ -20,6 +22,23 @@
- "\n"
- "\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "ഒരു ഗ്രാഫിക്കല്‍ സജ്ജീകരണത്തില്‍ SELinux ക്രമീകരിയ്ക്കുക"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux മാനേജ്മെന്റ്"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux യ പോളിസി ഘങ്ങള്‍ തയ്യാറാക്കുക"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux പോളിസി ഉത്പാദന പ്രയോഗം"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -27,7 +46,7 @@
- "         <args ...> are the arguments to that script."
+@@ -137,13 +138,13 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
- "USAGE: run_init <script> <args ...>\n"
--"  where: <script> പ്രവറ്‍ത്തിപ്പിക്കുവാനുളള init scriptന്‍റെ പേര്,\n"
-+"  where: <script> പ്രവര്‍ത്തിപ്പിക്കുവാനുളള init scriptന്‍റെ പേര്,\n"
- "         <args ...> സ്ക്രിപ്പ്റ്റിനുളള arguments."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
-@@ -57,7 +76,7 @@
- #: ../run_init/run_init.c:275
- #, c-format
- msgid "run_init: incorrect password for %s\n"
--msgstr "run_init: %sന് തെറ്റായ പാസ്വേഡ് \n"
-+msgstr "run_init: %sന് തെറ്റായ  പാസ്‌വേര്‍ഡ് \n"
- #: ../run_init/run_init.c:309
- #, c-format
-@@ -102,16 +121,15 @@
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "പോളിസി സ്റ്റോറ്‍ വായിക്കുവാന്‍ സാധിക്കുന്നില്ല."
-+msgstr "പോളിസി സ്റ്റോര്‍ വായിക്കുവാന്‍ സാധിക്കുന്നില്ല."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
- msgstr "semanage കണക്ഷന്‍ സ്ഥാപിക്കുവാന്‍ സാധ്യമല്ല"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%sന് MLS റയ്ന്ച് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "MLS സജ്ജമാക്കിയ അവസ്ഥ പരീക്ഷിക്കുവാന്‍ സാധ്യമായില്ല"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -126,14 +144,15 @@
- msgid "Level"
- msgstr "ലവല്‍"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "തര്‍ജ്ജമ"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "തറ്‍ജിമകളില്‍ spaces '%s' ഉണ്ടാകുവാന്‍ പാടില്ല"
-+msgstr "തര്‍ജമകളില്‍ spaces '%s' ഉണ്ടാകുവാന്‍ പാടില്ല"
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -156,764 +175,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "സെമനേജ് ഇടപാടു് നിലവില്‍ പുരോഗമിക്കുന്നു"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage transaction ആരംഭിക്കുവാന്‍ സാധിച്ചില്ല"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage transaction ആരംഭിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "semanage transaction സമര്‍പ്പിക്കുവാന്‍ സാധ്യമായില്ല"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "സെമനേജ് ഇടപാടു് പുരോഗമിക്കുന്നില്ല"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux യൂസറുകളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "SELinux ഘടകങ്ങള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "പെര്‍മിസ്സീവ്"
-+msgstr "പെര്‍മിസ്സീവ് തരത്തിലുള്ളവ"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "പെര്‍മ്മിസ്സീവ് ഘടകം %s ക്രമികരിക്കുവാന്‍ സാധ്യമായില്ല (ഘടകം ഇന്‍സ്റ്റലേഷന്‍ പരാജയപ്പെട്ടു)"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versjon"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
 -msgstr ""
-+msgstr "പെര്‍മ്മിസ്സീവ് ഘടകം %s നീക്കം ചെയ്യുവാന്‍ സാധ്യമായില്ല (നീക്കം ചെയ്യല്‍ പരാജയപ്പെട്ടു)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%sയ്ക്ക് ഒരു കീ ഉണ്ടാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് define ചെയ്തിട്ടണ്ട്"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "%s എന്ന Linux യൂസറ്‍ നിലവിലില്ല"
-+msgstr "%s എന്ന ലിനക്സ് ഗ്രൂപ്പ് നിലവിലില്ല"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
--msgstr "%s എന്ന Linux യൂസറ്‍ നിലവിലില്ല"
-+msgstr "%s എന്ന Linux ഉപയോക്താവു് നിലവിലില്ല"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ഉണ്ടാക്കുവാന് സാധിച്ചില്ല"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "%sന് പേര് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് പേര് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "%sന് MLS റയ്ന്ച് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് MLS പരിധി സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
--msgstr "%sന് SELinux യൂസറിനെ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് SELinux ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux യൂസര്‍ മാപ്പിങ് ചേര്‍ക്കുക"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser അല്ലെന്കില്‍ serange ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് define ചെയ്തിട്ടില്ല"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Could not query seuser for %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല"
++msgstr "Slått av"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%sനുളള ലോഗിന്‍ മാപ്പിംങ് പരിഷ്കരിക്കുവാന്‍ നീക്കം ചെയ്യുവാന്‍ സാസാധിച്ചില്ല"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "ലോഗിന്‍ മാപ്പിംങുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
+@@ -269,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "പ്രവേശന നാമം"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux ഉപയോക്താവ്"
+ msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS പരിധി"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%sനുളള ഫൈല്‍ context ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നു് കുറഞ്ഞതു് ഒരു ജോലി എങ്കിലും ചേര്‍ത്തിരിക്കണം"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
--msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sഎന്ന SELinux ഉപയോക്താവു്്നല്‍കിയിട്ടുണ്ടോടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടുണ്ട്"
-+msgstr "%s എന്ന SELinux ഉപയോക്താവു് നിലവിലുണ്ടു്"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
--msgstr "%sഎന്ന SELinux യൂസറ്‍ സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല "
-+msgstr "%s എന്ന SELinux ഉപയോക്താവിനെ സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല "
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
--msgstr "%sന് റോള്‍ %s ചേറ്‍ക്കുവാന്‍ സാധിക്കില്ല"
-+msgstr "%s നു് റോള്‍ %s ചേര്‍ക്കുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
--msgstr "%sന് MLS ലവല്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് MLS പരിധി സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr "%sന് പ്രഫിക്സ് %s ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് പ്രഫിക്സ് %s ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%sന് കീ extract ചെയ്യുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
--msgstr "SELinux യൂസറ്‍ %s ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "SELinux ഉപയോക്താവു് %s ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "പ്രഫിക്സ്, റോളുകള്‍,ലവലുകള്‍ അല്ലെന്കില്‍ റയിന്ചുകള്‍ ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "പ്രഫിക്സ് അല്ലെന്കില്‍ റോളുകള്‍ ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
--msgstr "%sഎന്ന SELinux യൂസറ്‍ define ചെയ്തിട്ടില്ല"
-+msgstr "%s എന്ന SELinux ഉപയോക്താവു് നല്‍കിയിട്ടില്ല"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr "Could not query user for %s"
-+msgstr "%s-നുള്ള ഉപയോക്താവിനെ ലഭ്യമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
--msgstr "SELinux യൂസറ്‍ %sനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "SELinux ഉപയോക്താവു് %s-നെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "SELinux യൂസറ്‍ %sനെ പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല"
-+msgstr "SELinux ഉപയോക്താവു് %s-നെ പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "%sന് SELinux യൂസറിനെ നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
--msgstr "SELinux യൂസറുകളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "SELinux ഉപയോക്താക്കളെ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
--msgstr "യൂസറ്‍ %sനുളള റോളുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "ഉപയോക്താവു് %s-നുളള റോളുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "പേരിടല്‍"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "പ്രിഫിക്സ്"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS ലവല്‍"
+ msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS പരിധി"
+@@ -387,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux റോളുകള്‍"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "udp അല്ലെന്കില്‍ tcp എന്ന പ്രോട്ടോക്കോളുകള്‍ ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
--msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
-+msgstr "പോര്‍ട്ട് ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%sയ്ക്ക് കീ സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല "
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ടൈപ്പ് ആവശ്യമുണ്ട്ല്ല "
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr "%s/%sഎന്ന പോറ്‍ട്ട് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sഎന്ന പോര്‍ട്ട് നല്‍കിയിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
--msgstr "പോറ്‍ട്ട് %s/%s already defined"
-+msgstr "പോര്‍ട്ട് %s/%s നിലവില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
--msgstr "%s/%sഎന്ന പോറ്‍ട്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sഎന്ന പോര്‍ട്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%sന് context സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ യൂസറ്‍ ടൈപ്പ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%s-നുള്ള പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരം എന്നു് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr "%s/%sന് പോറ്‍ട്ട് contextല്‍ mls ഫീല്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീല്‍ഡുകള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr "%s/%sന് പോറ്‍ട്ട് context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%sന് പോര്‍ട്ട് കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
--msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%s എന്ന പോര്‍ട്ട് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype അല്ലന്കില്‍ serange ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
--msgstr "പോറ്‍ട്ട് %s/%s define ചെയ്തിട്ടില്ല"
-+msgstr "പോര്‍ട്ട് %s/%s ലഭ്യമാക്കിയിട്ടില്ല"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
--msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s/%s എന്ന പോര്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
--msgstr "പോറ്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "പോര്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "പോര്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "പോര്‍ട്ട് %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "പോറ്‍ട്ട് %s/%s പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
-+msgstr "പോര്‍ട്ട് %s/%s പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
--msgstr "പോറ്‍ട്ട് %s/%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "പോര്‍ട്ട് %s/%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
--msgstr "പോറ്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "പോര്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux രീതിയിലുള്ള പോര്‍ട്ട്"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -517,7 +524,7 @@ msgstr ""
  msgid "Proto"
- msgstr "Proto"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "പോര്‍ട്ട് നംബര്‍"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
-+msgstr "നോഡിന്റെ വിലാസം ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "പോറ്‍ട്ട് ആവശ്യമുണ്ട്"
-+msgstr "നോഡ് നെറ്റ്‌മാസ്ക് ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "അപരിചിതം അല്ലെങ്കില്‍ ലഭ്യമല്ലാത്ത സമ്പ്രദായം"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux Type ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%sയ്ക്ക് കീ ഉണ്ടാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "%s/%sഎന്ന പോറ്‍ട്ട് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന വിലാസം നിഷ്കര്‍ഷിച്ചിട്ടുണ്ടെങ്കില്‍ ഇതു് പരിശോധിക്കുവാന്‍ സാധ്യമല്ല"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "പോറ്‍ട്ട് %s/%s already defined"
-+msgstr "%s എന്ന വിലാസം നിഷ്കര്‍ഷിച്ചിട്ടുണ്ടു്"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%sയ്ക്ക് ഒരു കീ ഉണ്ടാക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള വിലാസം ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%sന് context ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%sന് പേര് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള മാസ്ക് ക്രമികരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ ക്രമികരിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ജോലി ക്രമികരിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരും എന്നു് ക്രമികരിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ ക്രമികരിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%sന് ഫൈല്‍ context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസത്തിന്റെ കോണ്‍ടെക്സ്റ്റ് ക്രമികരിക്കുവാനായില്ല"
+ msgstr ""
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-ലുള്ള വിലാസം ചേര്‍ക്കുവാനായില്ല"
+@@ -595,9 +602,9 @@ msgid "Could not add addr %s"
+ msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "പോറ്‍ട്ട് %s/%s define ചെയ്തിട്ടില്ല"
-+msgstr "%s എന്ന വിലാസം നിഷ്കര്‍ഷിച്ചിട്ടില്ല"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "%s/%s എന്ന പോറ്‍ട്ട് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "വിലാസം %s-നായി ചോദിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "പോറ്‍ട്ട് %s/%s പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "വിലാസം %s-ല്‍ മാറ്റം വരുത്തുവാന്‍ സാധ്യമല്ല"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "പോറ്‍ട്ട് %s/%s പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
-+msgstr "വിലാസം %s പോളിസിയില്‍ നിഷ്കര്‍ഷിച്ചിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "വിലാസം %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "പോറ്‍ട്ടുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "വിലാസങ്ങള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ലഭ്യമാക്കിയിട്ടുണ്ടോ  എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടുണ്ട്"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ലഭ്യമാക്കിയിട്ടുണ്ടു്"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നു് ഇന്റര്‍ഫെയിസ് ഉണ്ടാക്കവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ ഏതു് തരം എന്നു് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "%sന് ഇന്‍റ്ററ്‍ഫെയ്സ് context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുള്ള ഇന്റര്‍ഫെയിസ് കോണ്‍ടെക്സ്റ്റില്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%sന് മെസ്സേജ് context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ചേര്‍ക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് define ചെയ്തിട്ടില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ലഭ്യമാക്കിയിട്ടില്ല"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ് പോളിസിയില്‍ ലഭ്യമാക്കിയിട്ടുണ്ടു്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
--msgstr "%s എന്ന ഇന്‍റ്ററ്‍ഫെയ്സ് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s എന്ന ഇന്റര്‍ഫെയിസ്് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
--msgstr "ഇന്‍റ്ററ്‍ഫെയ്സുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "ഇന്റര്‍ഫെയിസുകള്‍‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux സംയോജകഘടകം"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "കോണ്‍ടെക്സ്റ്റ്"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ യൂസറ്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%s-നുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റില്‍ ഉപയോക്താവിനെ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sനുളള ഫൈല്‍ contextല്‍ റോള്‍ സജ്ജമാക്കുവാന്‍ന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ mls ഫീള്‍ഡുകള്‍ സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sനുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റില്‍ mls ഫീള്‍ഡുകള്‍ സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "തെറ്റായ ഫയല്‍ പ്രത്യേകതകള്‍"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%sനുളള ഫൈല്‍ context define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%sനുളള ഫൈല്‍ context define ചെയ്തിട്ടുണ്ട്"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%sനുളള ഫൈല്‍ context ഉണ്ടാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sനുളള ഫൈല്‍ contextല്‍ ടൈപ്പ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "%sന് ഫൈല്‍ context സെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sന് ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "%sനുളള ഫൈല്‍ context ചേറ്‍ക്കുവാന്‍ സാധിച്ചില്ല"
-+msgstr "%sനുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് സജ്ജമാക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange അല്ലന്കില്‍ seuser ആവശ്യമുണ്ട്"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%sനുളള ഫൈല്‍ context define ചെയ്തിട്ടില്ല"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%sനുളള ഫൈല്‍ context ചോദ്യം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%sനുളള ഫൈല്‍ context പരിഷ്ക്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "%sനുളള ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%sനുളള ഫൈല്‍ context പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%sനുളള ഫൈല്‍ context നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "ഫൈല്‍ contextകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "ലോക്കല്‍ ഫൈല്‍ contextകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "ലോക്കല്‍ ഫൈല്‍ കോണ്‍ടെക്സ്റ്റുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ഏത് തരം"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "ബൂള്യന്‍ ആകുന്ന %s define ചെയ്തിട്ടുണ്ടോ എന്ന് പരിശോധിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "ബൂള്യന്‍ %s define ചെയ്തിട്ടില്ല"
+-msgstr "%s er ikke i %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1326
  #, python-format
- msgid "Could not query file context %s"
- msgstr "context ചോദ്യം ചെയ്യുവാന്‍ സാധിക്കാഞ്ഞ ഫൈല്‍ ആണ് %s"
+@@ -869,9 +876,9 @@ msgid "Could not query file context %s"
+ msgstr ""
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "ഒരു മൂല്ല്യം പറഞ്ഞിരിക്കണം"
-+msgstr "താഴെ പറഞ്ഞിരിക്കുന്നതില്‍ ഒരു മൂല്ല്യം പറഞ്ഞിരിക്കണം: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "ബൂള്യന്‍ %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
-+msgstr "ബൂള്യന്‍ %s-നു് സജീവമായ ഒരു മൂല്ല്യം ക്രമികരിക്കുവാനായില്ല"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "ബൂ്ബള്യന്‍ %s പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "തെറ്റായ രീതി %s: റിക്കോര്‍ഡ് %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "%s ബൂള്യന്‍ പോളിസിയില്‍ define ചെയ്തിട്ടുണ്ട്, നീക്കം ചെയ്യുവാന്‍ സാധിക്കില്ല"
+-msgstr "Du må oppgi et navn"
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2004
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "ബൂള്യന്‍ %s നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "ബൂള്യനുകള്‍ ലിസ്റ്റ് ചെയ്യുവാന്‍ അസാധ്യം"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "അപരിചിതം"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "ഓഫ് ചെയ്യുക"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ഓണ്‍ ചെയ്യുക"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux ബൂളിയന്‍"
+@@ -926,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "വിവരണം"
-@@ -953,34 +973,34 @@
- msgstr "എന്‍വിറോണ്‍മെന്‍റ് വെടിപ്പാക്കുവാന്‍ സാധ്യമല്ല\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "initing ല്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
-+msgstr "വിശേഷതകള്‍ ആരംഭിക്കുന്നതില്‍ പിശക്, നിര്‍ത്തുന്നു.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "ക്രമീകരണങ്ങളില്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
-+msgstr "ക്രമീകരണങ്ങളില്‍ പിഴവ്, നിര്‍ത്തുന്നു.\n"
+ msgstr ""
  
- #: ../newrole/newrole.c:570
+@@ -983,7 +991,7 @@ msgstr ""
+ #: ../newrole/newrole.c:641
  #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr "KEEPCAPS സെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിറ്‍ത്തുന്നു\n"
-+msgstr "KEEPCAPS സെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിര്‍ത്തു്‍ത്തുന്നു\n"
+ msgid "Error allocating memory.\n"
+-msgstr ""
++msgstr "Feil under allokering av minne.\n"
  
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
+ #: ../newrole/newrole.c:648
  #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr "droppingല്‍ പിഴവ്, നിറ്‍ത്തുന്നു\n"
-+msgstr "droppingല്‍ പിഴവ്, നിര്‍ത്തുന്നു\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
+@@ -998,7 +1006,7 @@ msgstr ""
+ #: ../newrole/newrole.c:699
  #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr "uid മാറ്റുന്നതില്‍ പിഴവ്, നിറ്‍ത്തുന്നു.\n"
-+msgstr "uid മാറ്റുന്നതില്‍ പിഴവ്, നിര്‍ത്തുന്നു.\n"
+ msgid "Error!  Could not open %s.\n"
+-msgstr ""
++msgstr "Feil:  Klarte ikke å åpne %s.\n"
  
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
+ #: ../newrole/newrole.c:705
  #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr "KEEPCAPS റീസെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിറ്‍ത്തുന്നു\n"
-+msgstr "KEEPCAPS റീസെറ്റ് ചെയ്യുന്നതില്‍ പിഴവ്,നിര്‍ത്തുന്നു\n"
+@@ -1165,9 +1173,9 @@ msgid "failed to exec shell\n"
+ msgstr ""
  
- #: ../newrole/newrole.c:597
- #, c-format
-@@ -1055,7 +1075,7 @@
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr "ക്ഷമിക്കണം, SELinux kernel സപ്പോറ്‍ട്ടില്‍ -l ഉപയോഗിക്കുവുന്നതാണ്.\n"
-+msgstr "ക്ഷമിക്കണം, SELinux kernel പിന്തുണയില്‍ -l ഉപയോഗിക്കുവുന്നതാണ്.\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "bruk:   %s [-q]\n"
++msgstr "bruk:   %s [-qi]\n"
  
- #: ../newrole/newrole.c:921
+ #: ../load_policy/load_policy.c:71
  #, c-format
-@@ -1145,7 +1165,7 @@
- #: ../newrole/newrole.c:1196
+@@ -1239,7 +1247,7 @@ msgstr "Bruk %s -d fil ..."
+ #: ../scripts/chcat:330
  #, c-format
- msgid "newrole: incorrect password for %s\n"
--msgstr "newrole: %sന്  തെറ്റായ പാസ്വേഡ് \n"
-+msgstr "newrole: %sന്  തെറ്റായ പാസ്‌വേര്‍ഡ് \n"
+ msgid "Usage %s -l -d user ..."
+-msgstr ""
++msgstr "Bruk %s -l -d bruker ..."
  
- #: ../newrole/newrole.c:1223
+ #: ../scripts/chcat:331
  #, c-format
-@@ -1222,7 +1242,7 @@
- #: ../scripts/chcat:267 ../scripts/chcat:272
- msgid "Can not combine +/- with other types of categories"
--msgstr "മറ്റ് കാറ്റഗറികളോടൊപ്പം +/- കൂട്ടിചേറ്‍ക്കുവാന്‍ സാധ്യമല്ല"
-+msgstr "മറ്റ് കാറ്റഗറികളോടൊപ്പം +/- കൂട്ടിചേര്‍ക്കുവാന്‍ സാധ്യമല്ല"
+@@ -1263,133 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
  
- #: ../scripts/chcat:319
- msgid "Can not have multiple sensitivities"
-@@ -1285,1693 +1305,2215 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "ഉപാധിയില്‍ പിഴവ്: %s "
+ msgstr ""
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "non-MLS മഷീനുകളില്‍ തറ്‍ജിമകള്‍ സപ്പോറ്‍ട്ട് ചെയ്യുന്നില്ല"
--
--#~ msgid "Boolean"
--#~ msgstr "ബൂളിയന്‍"
--
--#~ msgid "all"
--#~ msgstr "എല്ലാം "
--
--#~ msgid "Customized"
--#~ msgstr "യഥേഷ്ടമാക്കിയിരിക്കുന്നു"
--
--#~ msgid "File Labeling"
--#~ msgstr "ഫയലിന് പേരിടല്‍"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ഫയലിനുള്ള\n"
--#~ "പ്രത്യേകതകള്‍"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "രീതിയിലുള്ള ഫയല്‍"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ഏത് തരത്തിലുള്ള\n"
--#~ "ഫയല്‍"
--
--#~ msgid "User Mapping"
--#~ msgstr "യൂസര്‍ മാപ്പിങ്"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "പ്രവേശന\n"
--#~ "നാമം"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ഉപയോക്താവ്"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS പരിധി"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "'%s' ലോഗിന്‍ ആവശ്യമുണ്ട്"
--
--#~ msgid "Policy Module"
--#~ msgstr "പോളിസി ഘടകം"
--
--#~ msgid "Module Name"
--#~ msgstr "ഘടകത്തിന്റെ പേര്"
--
--#~ msgid "Version"
--#~ msgstr "ലക്കം"
--
--#~ msgid "Disable Audit"
--#~ msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Enable Audit"
--#~ msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന സജ്ജമാക്കുക"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "അനി പീറ്റര്‍ <apeter@redhat.com>"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux പോളിസി ഉത്പാദന പ്രയോഗം"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "ഒരു പോളിസി ഫ്രെയിംവര്‍ക്കുണ്ടാക്കുക, SELinux ഉപയോഗിക്കുന്ന പ്രയോഗങ്ങള്‍ അല്ലെങ്കില്‍ "
--#~ "ഉപയോക്താക്കള്‍ക്ക് പരിമിതി കല്‍പിക്കുക എന്നിവയ്ക്കായി ഈ പ്രയോഗം ഉപയോഗിക്കാം.   \n"
--#~ "\n"
--#~ "പ്രയോഗം ഉല്‍പാദിപ്പിക്കുന്നത്:\n"
--#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ് ഫയല്‍ (te)\n"
--#~ "ഇന്റര്‍ഫെയിസ് ഫയല്‍ (if)\n"
--#~ "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയല്‍ (fc)\n"
--#~ "ഷെല്‍ സ്ക്രിപ്റ്റ് (sh) - പോളിസി കംപൈല്‍ ചെയ്ത് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനായി ഉപയോഗിക്കുന്നു. "
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "ഏത് തരം പ്രയോഗം/ഉപയോക്താവിന്റെ ജോലി എന്ന് തിരഞ്ഞെടുക്കുക"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>പ്രയോഗങ്ങള്‍</b>"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "%s er allerede i %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "ബൂളിയന്‍"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "എല്ലാം "
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "യഥേഷ്ടമാക്കിയിരിക്കുന്നു"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "ഫയലിന് പേരിടല്‍"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "init സ്ക്രിപ്റ്റുകള്‍ വഴി ബൂട്ട് ചെയ്യുമ്പോള്‍ ആരംഭിക്കുന്ന ഡെമണുകളാണ് സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍.  "
--#~ "ഇതിന് സാധാരണയായി, /etc/rc.d/init.d-ല്‍ ഒരു സ്ക്രിപ്റ്റ് ആവശ്യമുണ്ട്."
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"ഫയലിനുള്ള\n"
-+"പ്രത്യേകതകള്‍"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"രീതിയിലുള്ള ഫയല്‍"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "xinetd ആരംഭിക്കുന്ന ഡെമണുകള്‍ ആണ് ഇന്റര്‍നെറ്റ് സര്‍വീസുകളുടെ ഡെമണ്‍"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"ഏത് തരത്തിലുള്ള\n"
-+"ഫയല്‍"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ഇന്റര്‍നെറ്റ് സര്‍വീസസ് ഡെമണ്‍ (inetd)"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "യൂസര്‍ മാപ്പിങ്"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr "വെബ് സര്‍വര്‍ (അപ്പാച്ചെ) ആരംഭിച്ച വെബ് പ്രയോഗങ്ങള്‍/സ്ക്രിപ്റ്റ് (CGI) CGI സ്ക്രിപ്റ്റുകള്‍"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"പ്രവേശന\n"
-+"നാമം"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "വെബ് ആപ്ളിക്കേഷന്‍/സ്ക്രിപ്റ്റ് (CGI)"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"ഉപയോക്താവ്"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "ഉപയോക്താവ് ആരംഭിക്കുന്നതിനുള്ള പ്രയോഗം ഏതാണോ അതാകുന്നു ഉപയോക്താവിനുള്ള പ്രയോഗം (യൂസര്‍ "
--#~ "ആപ്ലിക്കേഷന്‍)"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS പരിധി"
--#~ msgid "User Application"
--#~ msgstr "ഉപയോക്താവിനുള്ള പ്രയോഗം"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "'%s' ലോഗിന്‍ ആവശ്യമുണ്ട്"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ലോഗിന്‍ ചെയ്ത ഉപയോക്താക്കള്‍</b>"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "പോളിസി ഘടകം"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "നിലവിലുള്ള ഒരു ലോഗിന്‍ യൂസര്‍ റിക്കോര്‍ഡില്‍ മാറ്റം വരുത്തുന്നു."
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "ഘടകത്തിന്റെ പേര്"
--#~ msgid "Existing User Roles"
--#~ msgstr "ഉപയോക്തവാന് നിലവിലുള്ള നിയമനങ്ങള്‍"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "ലക്കം"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "ടെര്‍മിനല്‍ അല്ലെങ്കില്‍ റിമോട്ട് ലോഗിന്‍ വഴി മാത്രമേ സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് "
--#~ "പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su "
--#~ "എന്നിവ ലഭ്യമല്ല."
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന രഹിതമാക്കുക"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "ഏറ്റവും കുറഞ്ഞ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "ഓഡിറ്റ് പ്രവര്‍ത്തന സജ്ജമാക്കുക"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "എക്സ് അല്ലെങ്കില്‍ ടെര്‍മിനല്‍ വഴി സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  "
--#~ "സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su എന്നിവ ലഭ്യമല്ല."
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "ഏറ്റവും കൂടിയ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su, sudo എന്നിവ "
--#~ "ഇല്ലാത്ത ഉപയോക്താവ്."
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "User Role"
--#~ msgstr "ഉപയോക്താവിന്റെ ജോലി"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su എന്നിവ ഇല്ലാത്ത "
--#~ "ഉപയോക്താവിന് റൂട്ട് അഡ്മിനിസ്ട്രേഷന്‍ ജോലികളിലേക്ക് sudo ചെയ്യുവാന്‍ സാധിക്കുന്നു"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "അനി പീറ്റര്‍ <apeter@redhat.com>"
--#~ msgid "Admin User Role"
--#~ msgstr "അഡ്മിന്‍ ഉപയോക്താവിന്റെ നിയമനം "
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"ഒരു പോളിസി ഫ്രെയിംവര്‍ക്കുണ്ടാക്കുക, SELinux ഉപയോഗിക്കുന്ന പ്രയോഗങ്ങള്‍ അല്ലെങ്കില്‍ "
-+"ഉപയോക്താക്കള്‍ക്ക് പരിമിതി കല്‍പിക്കുക എന്നിവയ്ക്കായി ഈ പ്രയോഗം ഉപയോഗിക്കാം.   \n"
-+"\n"
-+"പ്രയോഗം ഉല്‍പാദിപ്പിക്കുന്നത്:\n"
-+"ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ് ഫയല്‍ (te)\n"
-+"ഇന്റര്‍ഫെയിസ് ഫയല്‍ (if)\n"
-+"ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയല്‍ (fc)\n"
-+"ഷെല്‍ സ്ക്രിപ്റ്റ് (sh) - പോളിസി കംപൈല്‍ ചെയ്ത് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനായി ഉപയോഗിക്കുന്നു. "
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "ഏത് തരം പ്രയോഗം/ഉപയോക്താവിന്റെ ജോലി എന്ന് തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>പ്രയോഗങ്ങള്‍</b>"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>റൂട്ട് ഉപയോക്താക്കള്‍</b>"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"init സ്ക്രിപ്റ്റുകള്‍ വഴി ബൂട്ട് ചെയ്യുമ്പോള്‍ ആരംഭിക്കുന്ന ഡെമണുകളാണ് സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍.  "
-+"ഇതിന് സാധാരണയായി, /etc/rc.d/init.d-ല്‍ ഒരു സ്ക്രിപ്റ്റ് ആവശ്യമുണ്ട്."
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "റൂട്ട് ആയി പ്രവര്‍ത്തിക്കുമ്പോള്‍, ഈ ഉപയോക്താവാണ് സിസ്റ്റം നിരീക്ഷിക്കുന്നത് എങ്കില്‍, റൂട്ട് "
--#~ "അഡ്മിനിസ്ട്രേറ്റര്‍ യൂസര്‍ റോള്‍ തിരഞ്ഞെടുക്കുക.  ഈ ഉപയോക്താവിന് സിസ്റ്റമിലേക്ക് നേരിട്ട് "
--#~ "പ്രവേശിക്കുവാന്‍ സാധ്യമല്ല."
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "സ്റ്റാന്‍ഡേര്‍ഡ് Init ഡെമണ്‍"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS സിസ്റ്റം ഡെമണ്‍"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "xinetd ആരംഭിക്കുന്ന ഡെമണുകള്‍ ആണ് ഇന്റര്‍നെറ്റ് സര്‍വീസുകളുടെ ഡെമണ്‍"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "ഇന്റര്‍നെറ്റ് സര്‍വീസസ് ഡെമണ്‍ (inetd)"
--#~ msgid "Root Admin User Role"
--#~ msgstr "റൂട്ട് അഡ്മിന്‍ യൂസര്‍ റോള്‍"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "വെബ് സര്‍വര്‍ (അപ്പാച്ചെ) ആരംഭിച്ച വെബ് പ്രയോഗങ്ങള്‍/സ്ക്രിപ്റ്റ് (CGI) CGI സ്ക്രിപ്റ്റുകള്‍"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "പ്രയോഗത്തിന്റെ പേര് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ ജോലി നല്‍കുക"
-+#: ../gui/polgen.glade:322
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "വെബ് ആപ്ളിക്കേഷന്‍/സ്ക്രിപ്റ്റ് (CGI)"
--#~ msgid "Name"
--#~ msgstr "പേര്"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"ഉപയോക്താവ് ആരംഭിക്കുന്നതിനുള്ള പ്രയോഗം ഏതാണോ അതാകുന്നു ഉപയോക്താവിനുള്ള പ്രയോഗം (യൂസര്‍ "
-+"ആപ്ലിക്കേഷന്‍)"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "നിഷ്കര്‍ഷിക്കുന്നതിനായുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "ഉപയോക്താവിനുള്ള പ്രയോഗം"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>ലോഗിന്‍ ചെയ്ത ഉപയോക്താക്കള്‍</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "നിലവിലുള്ള ഒരു ലോഗിന്‍ യൂസര്‍ റിക്കോര്‍ഡില്‍ മാറ്റം വരുത്തുന്നു."
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "ഉപയോക്തവാന് നിലവിലുള്ള നിയമനങ്ങള്‍"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"ടെര്‍മിനല്‍ അല്ലെങ്കില്‍ റിമോട്ട് ലോഗിന്‍ വഴി മാത്രമേ സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് "
-+"പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su "
-+"എന്നിവ ലഭ്യമല്ല."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "ഏറ്റവും കുറഞ്ഞ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "പ്രയോഗത്തിന് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ നിയമനത്തിന് ഒരു പേര് നല്‍കുക."
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"എക്സ് അല്ലെങ്കില്‍ ടെര്‍മിനല്‍ വഴി സിസ്റ്റമിലേക്ക് ഈ ഉപയോക്താവിന് പ്രവേശിക്കുവാന്‍ സാധിക്കുന്നു.  "
-+"സ്വതവേ, ഈ ഉപയോക്താവിന്, setuid, നെറ്റ്‌വര്‍ക്കിങ്, sudo, su എന്നിവ ലഭ്യമല്ല."
--#~ msgid "Executable"
--#~ msgstr "പ്രവര്‍ത്തിപ്പിക്കുവാന്‍ സാധിക്കുന്ന"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "ഏറ്റവും കൂടിയ ടെര്‍മിനല്‍ യൂസര്‍ റോള്‍"
--#~ msgid "Init script"
--#~ msgstr "Init script"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su, sudo എന്നിവ ഇല്ലാത്ത "
-+"ഉപയോക്താവ്."
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "പ്രയോഗം തുടങ്ങുന്നതിനുള്ള init സ്ക്രിപ്റ്റിനുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "ഉപയോക്താവിന്റെ ജോലി"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "നിങ്ങള്‍ക്ക് യഥേഷ്ടം ഉപയോക്താവിന്റെ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"പൂര്‍ണ്ണ നെറ്റ്‌വര്‍ക്കിങുള്ള, മാറ്റം സാധ്യമല്ലാത്ത setuid പ്രയോഗങ്ങള്‍, su എന്നിവ ഇല്ലാത്ത "
-+"ഉപയോക്താവിന് റൂട്ട് അഡ്മിനിസ്ട്രേഷന്‍ ജോലികളിലേക്ക് sudo ചെയ്യുവാന്‍ സാധിക്കുന്നു"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "ഉപയോക്താവ് ഏത് ജോലികളില്‍ നിന്നും ഈ പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറുന്നു എന്ന് "
--#~ "തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "അഡ്മിന്‍ ഉപയോക്താവിന്റെ നിയമനം "
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>റൂട്ട് ഉപയോക്താക്കള്‍</b>"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "ഈ ഉപയോക്താവിന്റെ പരിമിതികള്‍ മാറുന്നതിനായുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"റൂട്ട് ആയി പ്രവര്‍ത്തിക്കുമ്പോള്‍, ഈ ഉപയോക്താവാണ് സിസ്റ്റം നിരീക്ഷിക്കുന്നത് എങ്കില്‍, റൂട്ട് "
-+"അഡ്മിനിസ്ട്രേറ്റര്‍ യൂസര്‍ റോള്‍ തിരഞ്ഞെടുക്കുക.  ഈ ഉപയോക്താവിന് സിസ്റ്റമിലേക്ക് നേരിട്ട് "
-+"പ്രവേശിക്കുവാന്‍ സാധ്യമല്ല."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "റൂട്ട് അഡ്മിന്‍ യൂസര്‍ റോള്‍"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "പ്രയോഗത്തിന്റെ പേര് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ ജോലി നല്‍കുക"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "പേര്"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "നിഷ്കര്‍ഷിക്കുന്നതിനായുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "പ്രയോഗത്തിന് അല്ലെങ്കില്‍ ഉപയോക്താവിന്റെ നിയമനത്തിന് ഒരു പേര് നല്‍കുക."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "പ്രവര്‍ത്തിപ്പിക്കുവാന്‍ സാധിക്കുന്ന"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init script"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "നിങ്ങള്‍ ഈ ഉപയോക്താവിന്റെ ജോലികള്‍ ഏത് പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറണം എന്ന് "
--#~ "തിരഞ്ഞെടുക്കുക."
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "പ്രയോഗം തുടങ്ങുന്നതിനുള്ള init സ്ക്രിപ്റ്റിനുള്ള പൂര്‍ണ്ണ പാഥ് നല്‍കുക."
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "ഈ ഡൊമെയിനിലേക്ക് ഉപയോക്താവിന്റെ ഏതെല്ലാം ജോലികള്‍ മാറുന്നു എന്ന് തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "നിങ്ങള്‍ക്ക് യഥേഷ്ടം ഉപയോക്താവിന്റെ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "ഈ ഉപയോക്താവിന് കൈകാര്യം ചെയ്യുന്നതിനുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
++msgstr ""
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"ഉപയോക്താവ് ഏത് ജോലികളില്‍ നിന്നും ഈ പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറുന്നു എന്ന് തിരഞ്ഞെടുക്കുക"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ഈ ഉപയോക്താവ് നിരീക്ഷിക്കുന്നതിനുള്ള ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക."
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "ഈ ഉപയോക്താവിന്റെ പരിമിതികള്‍ മാറുന്നതിനായുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "ഈ ഉപയോക്താവിന് കൂടുതല്‍ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"നിങ്ങള്‍ ഈ ഉപയോക്താവിന്റെ ജോലികള്‍ ഏത് പ്രയോഗങ്ങളുടെ ഡൊമെയിനുകളിലേക്ക് മാറണം എന്ന് "
-+"തിരഞ്ഞെടുക്കുക."
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "പ്രയോഗം/ഉപയോക്താവിന് ലഭ്യമാകുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ഈ ഡൊമെയിനിലേക്ക് ഉപയോക്താവിന്റെ ഏതെല്ലാം ജോലികള്‍ മാറുന്നു എന്ന് തിരഞ്ഞെടുക്കുക"
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ഈ ഉപയോക്താവിന് കൈകാര്യം ചെയ്യുന്നതിനുള്ള കൂടുതല്‍ ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "ഈ ഉപയോക്താവ് നിരീക്ഷിക്കുന്നതിനുള്ള ഡൊമെയിനുകള്‍ തിരഞ്ഞെടുക്കുക."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ഈ ഉപയോക്താവിന് കൂടുതല്‍ ജോലികള്‍ തിരഞ്ഞെടുക്കുക"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "പ്രയോഗം/ഉപയോക്താവിന് ലഭ്യമാകുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP പോര്‍ട്ടുകള്‍</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടിലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "എല്ലാം"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP പോര്‍ട്ടുകള്‍</b>"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"0 ഉള്ള bindresvport-നെ വിളിക്കുന്നതിന് പ്രയോഗം/ഉപയോക്താവിനെ അനുവദിക്കുക. പോര്‍ട്ട് "
-+"600-1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുക"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടിലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "All"
--#~ msgstr "എല്ലാം"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"പ്രയോഗം/ഉപയോക്താവിന് ബൈന്‍ഡ് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന മറ്റ് "
-+"പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "0 ഉള്ള bindresvport-നെ വിളിക്കുന്നതിന് പ്രയോഗം/ഉപയോക്താവിനെ അനുവദിക്കുക. പോര്‍ട്ട് 600-"
--#~ "1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുക"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "മറ്റൊന്നിനും കരുതിട്ടില്ലാത്ത പോര്‍ട്ടുകള്‍ (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "പോര്‍ട്ടുകള്‍ തിരഞ്ഞെടുക്കുക"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടുകള്‍ > 1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിന് ബൈന്‍ഡ് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
--#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP പോര്‍ട്ടുകള്‍</b>"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "മറ്റൊന്നിനും കരുതിട്ടില്ലാത്ത പോര്‍ട്ടുകള്‍ (>1024)"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "പ്രയോഗം/ഉപയോക്താവ് കണക്ട് ചെയ്യുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
--#~ msgid "Select Ports"
--#~ msgstr "പോര്‍ട്ടുകള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:1958
++msgstr ""
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
-+"പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി ടിസിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന മറ്റ് "
-+"പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
  
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും udp പോര്‍ട്ടുകള്‍ > 1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന മറ്റ് "
-+"പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
  
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP പോര്‍ട്ടുകള്‍</b>"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "സാധാരണ പ്രയോഗങ്ങളുടെ വിശേഷതകള്‍ തിരഞ്ഞെടുക്കുക"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "translator-credits"
+-#~ msgstr "Kjartan Maraas <kmaraas@gnome.org>"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Programmer</b>"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog സന്ദേശങ്ങള്‍ എഴുതുന്നു\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Brukere</b>"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp-ലുള്ള താല്‍ക്കാലിക ഫയലകുള്‍ ഉണ്ടാക്കുക/കൈകാര്യം ചെയ്യുക."
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "Rolle"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "അധികാരം ഉറപ്പാക്കുന്നതിനായി പാം ഉപയോഗിക്കുക"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Brukere</b>"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch അല്ലെങ്കില്‍ getpw* കോളുകള്‍ ഉപയോഗിക്കുന്നു"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Name"
+-#~ msgstr "Navn"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus ഉപയോഗിക്കുന്നു"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "ഓഡിറ്റ് സന്ദേശങ്ങള്‍ അയയ്ക്കുന്നു"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "Velg porter"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "ടെര്‍മിനലുമായി ബന്ധപ്പെടുന്നു"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP-porter</b>"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ഈമെയില്‍ അയയ്ക്കുന്നു"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "പ്രയോഗം കൈകാര്യം ചെയ്യുന്നതിനുള്ള ഫയലുകള്‍/ഡയറക്ടറികള്‍ തിരഞ്ഞെടുക്കുക."
++msgstr ""
  
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "പ്രയോഗം/ഉപയോക്താവ് കണക്ട് ചെയ്യുന്ന നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ നല്‍കുക"
-+#: ../gui/polgen.glade:2607
+-#~ msgid "Role"
+-#~ msgstr "Rolle"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Application"
+-#~ msgstr "Program"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Du må oppgi et navn"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Pid, ലോഗ്, /var/lib എന്നീ ഫയലുകളിലേക്ക് \"എഴുതുന്നതിന്\" ‌‌‌പ്രയോഗത്തിന് ആവശ്യമായ ഫയലുകള്‍/"
-+"ഡയറക്ടറികള്‍ ചേര്‍ക്കുക ..."
  
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി ടിസിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
--#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "പ്രയോഗം ഉപയോഗിക്കുന്ന ബൂളിയനുകള്‍ തിരഞ്ഞെടുക്കുക"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "ഈ പ്രയോഗം/ഉപയോക്താവിന് ആവശ്യമുള്ള ബൂളിയനുകള്‍ ചേര്‍ക്കുക/നീക്കുക"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "പോളിസി ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "പോളിസി ഡയറക്ടറി"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "പോളിസി ഫയലുകള്‍ ലഭ്യമാക്കിയിരിക്കുന്നു"
+-#~ msgid "You must enter a name"
+-#~ msgstr "Du må oppgi et navn"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിന് കണക്ട് ചെയ്യുന്നതിനായി യുഡിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
--#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
-+"ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
-+"കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ സ്ക്രിപ്റ്റ് "
-+"പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
-+"ഉപയോക്താവിനുള്ള ജോലികളിലേക്ക് ലിനക്സ് ലോഗിന്‍ ഉപയോക്താക്കളെ മാപ്പ് ചെയ്യുന്നതിനായി semanage "
-+"അല്ലെങ്കില്‍ useradd ഉപയോഗിക്കുക\n"
-+"സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
-+"ഉപയോക്താവായി ലോഗിന്‍ ചെയ്ത് ഈ ജോലി പരീക്ഷിക്കുക .\n"
-+"te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Konfigurer SELinux"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#~ msgid "Select common application traits"
--#~ msgstr "സാധാരണ പ്രയോഗങ്ങളുടെ വിശേഷതകള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Protocol"
+-#~ msgstr "Protokoll"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+"ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
-+"ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
-+"\n"
-+"കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ സ്ക്രിപ്റ്റ് "
-+"പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
-+"സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
-+"avc സന്ദേശങ്ങള്‍ ഉണ്ടാക്കുന്നതിനായി പ്രയോഗം പ്രവര്‍ത്തിപ്പിക്കുകയോ വീണ്ടും ആരംഭിക്കുകയോ ചെയ്യുക .\n"
-+"te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Port"
+-#~ msgstr "Port"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "Minnebeskyttelse"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "ബൂളിയന്‍സ് ഡയലോഗ് ചേര്‍ക്കുക"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Montering"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "ബൂളിയന്‍ പേര്"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "നിയമനം"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "Nettverkskonfigurasjon"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "നിലവിലുള്ള _ഉപയോക്താവ്"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Databaser"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "പ്രയോഗം"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "X-tjener"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ഒരു ഡയറക്ടറി ആയിരിക്കണം"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "നിങ്ങള്‍ ഒരു ഉപയോക്താവ് ആയിരിക്കണം"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "പരിമിതി ആവശ്യമുള്ള നിഷ്കര്‍ഷിക്കേണ്ട ഫയല്‍ തിരഞ്ഞെടുക്കുക."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "പരിമിതി ആവശ്യമുള്ള ഇനിറ്റ് സ്ക്രിപ്റ്റ് ഫയല്‍ തിരഞ്ഞെടുക്കുക."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Kompatibilitet"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "പ്രയോഗം ഉണ്ടാക്കുകയോ അതിലേക്ക് എഴുതുകയോ ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഫയല്‍ തിരഞ്ഞെടുക്കുക"
++msgstr ""
  
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog സന്ദേശങ്ങള്‍ എഴുതുന്നു\t"
-+#: ../gui/polgengui.py:481
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD-tjeneste"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"പ്രയോഗത്തിന്റെ ഉടമസ്ഥതയിലുള്ളതും അതിലേക്ക് എഴുതുകയും ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഡയറക്ടറി "
-+"തിരഞ്ഞെടുക്കുക"
  
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp-ലുള്ള താല്‍ക്കാലിക ഫയലകുള്‍ ഉണ്ടാക്കുക/കൈകാര്യം ചെയ്യുക."
-+#: ../gui/polgengui.py:541
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "പോളിസി ഫയലുകള്‍ ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
++msgstr ""
  
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "അധികാരം ഉറപ്പാക്കുന്നതിനായി പാം ഉപയോഗിക്കുക"
-+#: ../gui/polgengui.py:554
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"നിലവിലുള്ള പോളിസിയില്‍ %s_t എന്ന രീതി നിഷ്കര്‍ഷിച്ചിരിക്കുന്നു.\n"
-+"നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
  
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch അല്ലെങ്കില്‍ getpw* കോളുകള്‍ ഉപയോഗിക്കുന്നു"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "പേര് ഉറപ്പാക്കുക"
++msgstr ""
  
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ഉപയോഗിക്കുന്നു"
-+#: ../gui/polgengui.py:558
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "Minnebeskyttelse"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"നിലവിലുള്ള പോളിസിയില്‍ %s.pp എന്ന ഘടകം ലഭ്യമാണ്.\n"
-+"നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
  
--#~ msgid "Sends audit messages"
--#~ msgstr "ഓഡിറ്റ് സന്ദേശങ്ങള്‍ അയയ്ക്കുന്നു"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "ഒരു പേര് പറഞ്ഞിരിക്കണം"
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Du må være root for å kjøre %s."
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ടെര്‍മിനലുമായി ബന്ധപ്പെടുന്നു"
-+#: ../gui/polgengui.py:610
+-#~ msgid "Other"
+-#~ msgstr "Annet"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "പ്രവര്‍ത്തനത്തിലുള്ളത് പറഞ്ഞിരിക്കണം"
++msgstr ""
  
--#~ msgid "Sends email"
--#~ msgstr "ഈമെയില്‍ അയയ്ക്കുന്നു"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Files and Directories"
+-#~ msgstr "Filer og kataloger"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux ക്രമികരിക്കുക"
++msgstr ""
  
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "പ്രയോഗം കൈകാര്യം ചെയ്യുന്നതിനുള്ള ഫയലുകള്‍/ഡയറക്ടറികള്‍ തിരഞ്ഞെടുക്കുക."
-+#: ../gui/polgen.py:174
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "പോര്‍ട്ടുകളുടെ നമ്പര്‍ 1 മുതല്‍ %d ആയിരിക്കണം"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "Pid, ലോഗ്, /var/lib എന്നീ ഫയലുകളിലേക്ക് \"എഴുതുന്നതിന്\" ‌‌‌പ്രയോഗത്തിന് ആവശ്യമായ ഫയലുകള്‍/"
--#~ "ഡയറക്ടറികള്‍ ചേര്‍ക്കുക ..."
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയ/ഉപയോക്താവിനുള്ള ഒരു പേര് നല്‍കുക"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "പ്രയോഗം ഉപയോഗിക്കുന്ന ബൂളിയനുകള്‍ തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER തരത്തിലുള്ളവ നിഷ്കര്‍ഷിക്കുവാന്‍ സാധ്യമല്ല"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "ഈ പ്രയോഗം/ഉപയോക്താവിന് ആവശ്യമുള്ള ബൂളിയനുകള്‍ ചേര്‍ക്കുക/നീക്കുക"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "ഡെമണ്‍ പ്രയോഗങ്ങള്‍ക്ക് മാത്രമേ init സ്ക്രിപ്റ്റ് ഉപയോഗിക്കുവാന്‍ സാധിക്കൂ"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "പോളിസി ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog ഒരു ബൂളിയന്‍ ആയിരിക്കണം"
--#~ msgid "Policy Directory"
--#~ msgstr "പോളിസി ഡയറക്ടറി"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER തരത്തിലുള്ളവയ്ക്ക് സ്വയമേ ഒരു tmp തരത്തിലുള്ളത് ലഭ്യമാകുന്നു "
--#~ msgid "Generated Policy Files"
--#~ msgstr "പോളിസി ഫയലുകള്‍ ലഭ്യമാക്കിയിരിക്കുന്നു"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയയ്ക്കുള്ള പാഥ് നല്‍കുക"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
--#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
--#~ "കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ "
--#~ "സ്ക്രിപ്റ്റ് പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
--#~ "ഉപയോക്താവിനുള്ള ജോലികളിലേക്ക് ലിനക്സ് ലോഗിന്‍ ഉപയോക്താക്കളെ മാപ്പ് ചെയ്യുന്നതിനായി "
--#~ "semanage അല്ലെങ്കില്‍ useradd ഉപയോഗിക്കുക\n"
--#~ "സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
--#~ "ഉപയോക്താവായി ലോഗിന്‍ ചെയ്ത് ഈ ജോലി പരീക്ഷിക്കുക .\n"
--#~ "te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "എന്‍ഫോര്‍സ്മെന്റ് ഫയല്‍ ടൈപ്പ് ചെയ്യുക "
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ഈ ടൂള്‍ താഴെ പറയുന്നവ ലഭ്യമാക്കുന്നു: \n"
--#~ "ടൈപ്പ് എന്‍ഫോഴ്സ്മെന്റ്(te), ഫയല്‍ കോണ്‍ടെക്സ്റ്റ്(fc), ഇന്റര്‍ഫെയിസ്(if), ഷെല്‍ സ്ക്രിപ്റ്റ്(sh)\n"
--#~ "\n"
--#~ "കംപൈല്‍/ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനും ഫയലുകള്‍/ഡയറക്ടറികള്‍ക്ക് വീണ്ടും പേര് മാറ്റുന്നതിനും ഷെല്‍ "
--#~ "സ്ക്രിപ്റ്റ് പ്രവര്‍ത്തിപ്പിക്കുക.  \n"
--#~ "സിസ്റ്റം പെര്‍മ്മിസ്സീവ് മോഡിലാക്കുക (setenforce 0). \n"
--#~ "avc സന്ദേശങ്ങള്‍ ഉണ്ടാക്കുന്നതിനായി പ്രയോഗം പ്രവര്‍ത്തിപ്പിക്കുകയോ വീണ്ടും ആരംഭിക്കുകയോ "
--#~ "ചെയ്യുക .\n"
--#~ "te ഫയലില്‍ കൂടുതല്‍ നിയമങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി audit2allow -R ഉപയോഗിക്കുക.\n"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ഇന്റര്‍ഫെയിസ് ഫയല്‍"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "ബൂളിയന്‍സ് ഡയലോഗ് ചേര്‍ക്കുക"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയലുകള്‍"
--#~ msgid "Boolean Name"
--#~ msgstr "ബൂളിയന്‍ പേര്"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "സ്ക്രിപ്റ്റ് ക്രമികരിക്കുക"
--#~ msgid "Role"
--#~ msgstr "നിയമനം"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് "
--#~ msgid "Existing_User"
--#~ msgstr "നിലവിലുള്ള _ഉപയോക്താവ്"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux തരത്തിലുള്ള\n"
-+"പോര്‍ട്ട്"
--#~ msgid "Application"
--#~ msgstr "പ്രയോഗം"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "സമ്പ്രദായം"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ഒരു ഡയറക്ടറി ആയിരിക്കണം"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"ലവല്‍"
--#~ msgid "You must select a user"
--#~ msgstr "നിങ്ങള്‍ ഒരു ഉപയോക്താവ് ആയിരിക്കണം"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "പോര്‍ട്ട്"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "\"%s\" എന്ന പോര്‍ട്ട് നംബര്‍ തെറ്റാണ്.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "പട്ടികയില്‍ കാണുക"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "ഗ്രൂപ്പായുള്ള കാഴ്ച"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -157298,26 +157165,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux സര്‍വീസ് സുരക്ഷ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "അഡ്മിന്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "/-ലേക്ക് corefile-കള്‍ എഴുതുന്നതിനായി എല്ലാ ഡെമണുകളേയും അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "നല്‍കിയിട്ടില്ലാത്ത tty ഉപയോഗിക്കുന്നതിനുള്ള കഴിവ് എല്ലാ ഡെമണുകള്‍ക്കും അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -157326,170 +157193,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "ഉപയോക്താവിനുള്ള അനുമതികള്‍"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "പരിമിതി ആവശ്യമുള്ള നിഷ്കര്‍ഷിക്കേണ്ട ഫയല്‍ തിരഞ്ഞെടുക്കുക."
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി gadmin "
-+"SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "പരിമിതി ആവശ്യമുള്ള ഇനിറ്റ് സ്ക്രിപ്റ്റ് ഫയല്‍ തിരഞ്ഞെടുക്കുക."
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
-+"ഗസ്റ്റ്SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "പ്രയോഗം ഉണ്ടാക്കുകയോ അതിലേക്ക് എഴുതുകയോ ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഫയല്‍ തിരഞ്ഞെടുക്കുക"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "മെമ്മറി സുരക്ഷ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "ജാവാ എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "mount ഉപയോഗിച്ച് ഏത് ഫയലും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "mount ഉപയോഗിച്ച് ഏത് ഡയറക്ടറിയും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh-keysign പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ssh-നെ അനുവദിക്കുക"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "പ്രയോഗത്തിന്റെ ഉടമസ്ഥതയിലുള്ളതും അതിലേക്ക് എഴുതുകയും ചെയ്യുന്നതിന് പരിമിതിയുള്ള ഡയറക്ടറി "
--#~ "തിരഞ്ഞെടുക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി staff "
-+"SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "പോളിസി ഫയലുകള്‍ ഉണ്ടാക്കുന്നതിനുള്ള ഡയറക്ടറി തിരഞ്ഞെടുക്കുക"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി sysadm "
-+"SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "നിലവിലുള്ള പോളിസിയില്‍ %s_t എന്ന രീതി നിഷ്കര്‍ഷിച്ചിരിക്കുന്നു.\n"
--#~ "നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
-+"പരിമിതകളില്ലാത്ത SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid "Verify Name"
--#~ msgstr "പേര് ഉറപ്പാക്കുക"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "നെറ്റ്‌വര്‍ക്ക് ക്രമികരണം"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "പേരില്ലാത്ത പാക്കറ്റുകളെ നെറ്റ്‌വര്‍ക്കിലൂടെ കടത്തിവിടാന്‍ അനുവദിക്കുക"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "നിലവിലുള്ള പോളിസിയില്‍ %s.pp എന്ന ഘടകം ലഭ്യമാണ്.\n"
--#~ "നിങ്ങള്‍ക്ക് മുമ്പോട്ട് പോകണമോ?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി യൂസര്‍ "
-+"SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#~ msgid "You must enter a name"
--#~ msgstr "ഒരു പേര് പറഞ്ഞിരിക്കണം"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"unconfined_execmem-ലേക്ക് dyntrans ചെയ്യുന്നതിനായി പരിമിതികളില്ലാത്തവയെ അനുവദിക്കുക"
--#~ msgid "You must enter a executable"
--#~ msgstr "പ്രവര്‍ത്തനത്തിലുള്ളത് പറഞ്ഞിരിക്കണം"
++
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "ഡേറ്റാ ശേഖരണങ്ങള്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "mysql സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "postgres സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "X ഷെയര്‍ഡ് മെമ്മറിയിലേക്ക് എഴുതുന്നതിനായി ക്ളൈന്റുകളെ അനുവദിക്കുക"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux ക്രമികരിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി xguest "
-+"SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "പോര്‍ട്ടുകളുടെ നംബര്‍ 1 മുതല്‍ %d ആയിരിക്കണം "
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS-നൊപ്പം പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഡെമണുകളെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -157497,1151 +157313,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "വെബ് പ്രയോഗങ്ങള്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "സ്റ്റാഫ് SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "യൂസര്‍ SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് എഴുതുന്നതിനായി സ്റ്റാഫ് വെബ് ബ്രൌസറുകളെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amanda-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavis-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "ക്ളസ്റ്റര്‍ സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയ/ഉപയോക്താവിനുള്ള ഒരു പേര് നല്‍കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"പല ഉള്ളടക്കങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി cdrecord-നെ അനുവദിക്കുക. nfs, samba, മാറ്റുവാന്‍ "
-+"സാധിക്കുന്ന ഡിവൈസുകള്‍, യൂസര്‍ temp, വിശ്വസനീയമല്ലാത്ത കണ്‍ടെന്റ് ഫയലുകള്‍ എന്നിവ"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER തരത്തിലുള്ളവ നിഷ്കര്‍ഷിക്കുവാന്‍ സാധ്യമല്ല"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "പ്രിന്റ് ചെയ്യല്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd ബാക്കെന്‍ഡ് സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "നേരിട്ട് ഡെമണുകള്‍ ആരംഭിക്കുന്നതിനായി sysadm_t-നെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "ഇവല്യൂഷനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "കളികള്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "കളികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "വെബ് ബ്രൌസറുകള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "തണ്ടര്‍ബേര്‍ഡിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "കോംപാറ്റിബിളിറ്റി"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "ഡെമണ്‍ പ്രയോഗങ്ങള്‍ക്ക് മാത്രമേ init സ്ക്രിപ്റ്റ് ഉപയോഗിക്കുവാന്‍ സാധിക്കൂ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "സുരക്ഷയ്ക്ക് കോട്ടം തട്ടാത്തതും തകരാറുള്ളതുമായ കാര്യങ്ങള്‍ ഓഡിറ്റ് ചെയ്യരുത്"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "http rotatelogs-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD സര്‍വീസ്"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd ചൈള്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി ഇവല്യൂഷ്യന്‍, തണ്ടര്‍ബേര്‍ഡ് എന്നിവരെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ വായിക്കുന്നതിനായി മോസിലാ ബ്രൌസറിനെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "നെയിം സര്‍വീസ്"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "സാംബാ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "ഒരു സാധാരണ ഉപയോക്താവിന് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി pppd-യെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "ppt-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog ഒരു ബൂളിയന്‍ ആയിരിക്കണം"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"നിലവാരമില്ലാത്ത സ്ഥാനങ്ങളിലുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനുള്ള പ്രോഗ്രാമുകള്‍ അനുവദിക്കുക (default_t)"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER തരത്തിലുള്ളവയ്ക്ക് സ്വയമേ ഒരു tmp തരത്തിലുള്ളത് ലഭ്യമാകുന്നു"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "നിങ്ങള്‍ക്ക് പരിമിതിയുള്ള പ്രക്രിയയ്ക്കുള്ള പാഥ് നല്‍കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+"ഒരു ഡെമണ്‍ ആയി പ്രവര്‍ത്തിക്കുന്നതിന് പകരം inetd ആയി പ്രവര്‍ത്തിക്കുന്നതിന് ssh-നെ അനുവദിക്കുക"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "എന്‍ഫോര്‍സ്മെന്റ് ഫയല്‍ ടൈപ്പ് ചെയ്യുക"
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "nfs ഡയറക്ടറികള്‍ പങ്കിടുന്നതിനായി Samba-യെ അനുവദിക്കുക"
--#~ msgid "Interface file"
--#~ msgstr "ഇന്റര്‍ഫെയിസ് ഫയല്‍"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL ഓഥന്റിക്കേഷന്‍ സര്‍വര്‍"
--#~ msgid "File Contexts file"
--#~ msgstr "ഫൈല്‍ കോണ്‍ടെക്സ്റ്റ് ഫയലുകള്‍"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "/etc/shadow ലഭ്യമാക്കുന്നതിനായി sasl ഓഥന്റിക്കേഷന്‍ സര്‍വറിനെ അനുവദിക്കുക"
--#~ msgid "Setup Script"
--#~ msgstr "സ്ക്രിപ്റ്റ് ക്രമികരിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"എക്സിക്യൂട്ടബിളും റൈറ്റബിളുമായി പ്രവര്‍ത്തിപ്പിക്കുന്നതിന് ഒരു മെമ്മറിയിലേക്ക് മാപ്പ് ചെയ്യുന്നതിനായി "
-+"എക്സ്-വിന്‍ഡോസ് സര്‍വറിനെ അനുവദിക്കുക"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux തരത്തിലുള്ള\n"
--#~ "പോര്‍ട്ട്"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo, su ബാധകമായവയിലേക്ക് മാറുന്നതിനായി അനുവദിക്കരുത്"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "കേര്‍ണല്‍ ഘടകങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
--#~ msgid "Protocol"
--#~ msgstr "സമ്പ്രദായം"
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+"കേര്‍ണലിന്റെ SELinux പോളിസിയില്‍ മാറ്റം വരുത്തുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "ലവല്‍"
++
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Port"
--#~ msgstr "പോര്‍ട്ട്"
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "\"%s\" എന്ന പോര്‍ട്ട് നംബര്‍ തെറ്റാണ്.  0 < PORT_NUMBER < 65536 "
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
--#~ msgid "List View"
--#~ msgstr "പട്ടികയില്‍ കാണുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Group View"
--#~ msgstr "ഗ്രൂപ്പായുള്ള കാഴ്ച"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux സര്‍വീസ് സുരക്ഷ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Admin"
--#~ msgstr "അഡ്മിന്‍"
++msgstr ""
++
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "/-ലേക്ക് corefile-കള്‍ എഴുതുന്നതിനായി എല്ലാ ഡെമണുകളേയും അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "നല്‍കിയിട്ടില്ലാത്ത tty ഉപയോഗിക്കുന്നതിനുള്ള കഴിവ് എല്ലാ ഡെമണുകള്‍ക്കും അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "User Privs"
--#~ msgstr "ഉപയോക്താവിനുള്ള അനുമതികള്‍"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "സ്പാമിനുള്ള സുരക്ഷ "
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഗസ്റ്റ് "
--#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
--#~ "gadmin SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി spamd അനുവദിക്കുക"
--#~ msgid "Memory Protection"
--#~ msgstr "മെമ്മറി സുരക്ഷ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "സ്പാം അസ്സാസ്സിന്‍ ഡെമണ്‍ നെറ്റ്‌വര്‍ക്ക് പ്രവേശനം അനുവദിക്കുക"
--#~ msgid "Allow java executable stack"
--#~ msgstr "ജാവാ എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Mount"
--#~ msgstr "Mount"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "സ്ക്വിഡ്"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "mount ഉപയോഗിച്ച് ഏത് ഫയലും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "നെറ്റ്‌വര്‍ക്കിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി squid ഡെമണിനെ അനുവദിക്കുക"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "mount ഉപയോഗിച്ച് ഏത് ഡയറക്ടറിയും മൌണ്ട് ചെയ്യുന്നതിനായി അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer എക്സിക്യൂട്ടബിള്‍ സ്റ്റാക്ക് അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
--#~ msgid "SSH"
--#~ msgstr "SSH"
++msgstr ""
++
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh ലോഗിനുകളെ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh-keysign പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ssh-നെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"sysadm ഹോം ഡയറക്ടറി തിരഞ്ഞ് ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി staff_r users-നെ അനുവദിക്കുക "
-+"(such as ~/.bashrc)"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി staff "
--#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "യൂണിവേഴ്സല്‍ SSL ടണല്‍"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "xinetd-ന് പുറത്ത് ഒറ്റയ്ക്ക് പ്രവര്‍ത്തിക്കുന്നതിനായി stunnel ഡെമണിനെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "സിസ്റ്റം cron ജോലികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
--#~ "sysadm SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി xinetd-യെ അനുവദിക്കുക. ഡൊമെയില്‍ "
-+"വ്യക്തമാക്കിയിട്ടില്ലാത്തതും അത് ആരംഭിക്കുന്നതുമായഏത് ഡസേവനങ്ങളുംഇതില്‍ ഉള്‍പ്പെടുന്നു."
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
--#~ "പരിമിതകളില്ലാത്ത SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി rc സ്ക്രിപ്റ്റുകളെ അനുവദിക്കുക. ഡൊമെയില്‍ "
-+"വ്യക്തമാക്കിയിട്ടില്ലാത്തതും rc സ്ക്രിപ്റ്റ് ആരംഭിക്കുന്നതുമായ ഏത് ഡെമണും ഇതില്‍ ഉള്‍പ്പെടുന്നു."
--#~ msgid "Network Configuration"
--#~ msgstr "നെറ്റ്‌വര്‍ക്ക് ക്രമികരണം"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "പരിതികളില്ലാതെ rpm പ്രവര്‍ത്തിക്കുന്നതിനായി അനുവദിക്കുക"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "പേരില്ലാത്ത പാക്കറ്റുകളെ നെറ്റ്‌വര്‍ക്കിലൂടെ കടത്തിവിടാന്‍ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"അനുവദനീയമായ പ്രയോഗങ്ങളായ hotplug, insmod എന്നിവ പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിന് "
-+"അനുവദിക്കുക"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി യൂസര്‍ "
--#~ "SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr ""
--#~ "unconfined_execmem-ലേക്ക് dyntrans ചെയ്യുന്നതിനായി പരിമിതികളില്ലാത്തവയെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"su, sudo, അല്ലെങ്കില്‍ userhelper ഉപയോഗിച്ച് user_r-നെ sysadm_r-ല്‍ എത്തിക്കുന്നതിനായി "
-+"അനുവദിക്കുക. അല്ലായെങ്കില്‍, staff_r-ന് മാത്രമേ സാധിക്കൂ."
--#~ msgid "Databases"
--#~ msgstr "ഡേറ്റാ ശേഖരണങ്ങള്‍"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "mount കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "mysql സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"സാധാരണ ഉപയോക്താക്കള്‍ക്ക് നേരിട്ടുള്ള മൌസ് ലഭ്യത അനുവദിക്കുക (എക്സ് സര്‍വറിന് മാത്രം അനുവദിക്കുക)"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "postgres സോക്കറ്റിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "dmesg കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--#~ msgid "XServer"
--#~ msgstr "XServer"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"നെറ്റ്‌വര്‍ക്ക് സംയോജക ഘടകങ്ങള്‍ നിയന്ത്രിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക (USERCTL=true "
-+"എന്നതും ആവശ്യമുണ്ട്)"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "X ഷെയര്‍ഡ് മെമ്മറിയിലേക്ക് എഴുതുന്നതിനായി ക്ളൈന്റുകളെ അനുവദിക്കുക"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "ping പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി സാധാരണ ഉപയോക്താവിനെ അനുവദിക്കുക"
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി അല്ലെങ്കില്‍ /tmp-ല്‍ ഫയലുകള്‍ പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി "
--#~ "xguest SELinux ഉപയോക്താക്കളുടെ അക്കൌണ്ടുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"r/w noextattrfile (FAT, CDROM, FLOPPY) r/w ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--#~ msgid "NIS"
--#~ msgstr "NIS"
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "usb ഡിവൈസുകള്‍ rw ചെയ്യുന്നതിനായി ഉപയോക്താക്കളെ അനുവദിക്കുക"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "NIS-നൊപ്പം പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഡെമണുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"ഇത് പ്രവര്‍ത്തനരഹിതമാക്കി ഉപയോക്താക്കളെ ടിസിപി സര്‍വറുകള്‍ പ്രവര്‍ത്തിക്കുന്നതിനായി അനുവദിക്കുന്നത് "
-+"(പോര്‍ട്ടുകളിലേക്ക് ബൈന്‍ഡ് ചെയ്ത് അതേ ഡൊമിയിനില്‍ നിന്നും മറ്റുള്ളവരില്‍ നിന്നും കണക്ഷന്‍ "
-+"സ്വീകരിക്കുക)  എഫ്ടിപി പാസ്സീവ് മോഡ് നിഷ്ക്രിയമാക്കി മറ്റ് സമ്പ്രദായങ്ങളും മാറ്റുന്നു."
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ttyfiles സ്റ്റാറ്റ് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm ലോഗിനുകള്‍ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "ഫിസിക്കല്‍ ഡിസ്ക് ഡിവൈസുകളിലേക്ക് റീഡ്/റൈറ്റ് പ്രവര്‍ത്തി xen അനുവദിക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen control ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS പാസ്‌വേര്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS ട്രാന്‍സ്ഫര്‍ ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--#~ msgid "Web Applications"
--#~ msgstr "വെബ് പ്രയോഗങ്ങള്‍"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികള്‍ കൈകാര്യം ചെയ്യുന്നതിനായി SELinux webadm "
-+"ഉപയോക്താവിനെ അനുവദിക്കുക"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "സ്റ്റാഫ് SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി SELinux webadm "
-+"ഉപയോക്താവിനെ അനുവദിക്കുക"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "നിങ്ങള്‍ക്ക് %s '%s' നീക്കം ചെയ്യണമെന്നുറപ്പാണോ?"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "യൂസര്‍ SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s നീക്കം ചെയ്യുക"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux ഉപയോക്താവിനെ വെബ് ബ്രൌസര്‍ ഡൊമെയിനിലേക്ക് മാറ്റുക"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s ചേര്‍ക്കുക"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് എഴുതുന്നതിനായി സ്റ്റാഫ് വെബ് ബ്രൌസറുകളെ അനുവദിക്കുക"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s-ല്‍ മാറ്റം വരുത്തുക"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "പെര്‍മിസ്സീവ്"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "എന്‍ഫോര്‍സിങ്"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "പ്രവര്‍ത്തന രഹിതം"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "അവസ്ഥ"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"പോളിസി മാറ്റിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
-+"ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് മുമ്പോട്ട് "
-+"പോകണമെന്നുറപ്പാണോ?"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -158651,79 +158271,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"SELinux നിര്‍ജ്ജീവാമാക്കുന്നു എങ്കില്‍ റീബൂട്ട് ചെയ്യേണ്ടതുണ്ട്.  ഇത് ഉത്തമമല്ല. കാരണം, നിങ്ങള്‍ക്ക് "
-+"പിന്നീട് SELinux ആവശ്യമാണ് എങ്കില്‍, ഓണ്‍ ചെയ്യുന്നതിനായി, സിസ്റ്റം വീണ്ടും റീലേബല്‍ "
-+"ചെയ്യണ്ടതുണ്ട്. SELinux നിങ്ങളുടെ സിസ്റ്റമില്‍ എന്തെങ്കിലും തകരാറുകള്‍ ഉണ്ടാക്കുന്നുണ്ടോ എന്ന് "
-+"അറിയണമെങ്കില്‍ നിങ്ങള്‍ക്ക് പെര്‍മ്മിസ്സീവ് മോഡിലേക്ക് മാറ്റാം. ഇത് പിശകുകള്‍ മാത്രം ലോഗ് ചെയ്യുന്നു, "
-+"കൂടാതെ SELinux പോളിസി എന്‍ഫോഴ്സ് ചെയ്യുന്നുമില്ല. പെര്‍മ്മിസ്സീവ് മോഡുകള്‍ക്ക് റീബൂട്ട് "
-+"ചെയ്യേണ്ടതില്ല.    നിങ്ങള്‍ക്ക് മുമ്പോട്ട് തുടരണമോ?"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux സജ്ജമാക്കിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
-+"ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് മുമ്പോട്ട് "
-+"പോകണമെന്നുറപ്പാണോ?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"പകര്‍പ്പവകാശം (c)2006 Red Hat, Inc.\n"
-+"പകര്‍പ്പവകാശം (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux ലോഗിന്‍ മാപ്പിങ് ചേര്‍ക്കുക"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ ചേര്‍ക്കുക"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux തരത്തിലുള്ള"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"ലവല്‍"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "ഫയലിനുള്ള പ്രത്യേകതകള്‍"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "ഏത് തരം ഫയല്‍"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -158734,4504 +158322,2183 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ml.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"എല്ലാ ഫയലുകളും\n"
-+"സാധാരണ ഫയല്‍\n"
-+"ഡയറക്ടറി\n"
-+"ക്യാരക്ടര്‍ ഡിവൈസ്\n"
-+"ബ്ളോക്ക് ഡിവൈസ്\n"
-+"സോക്കറ്റ്\n"
-+"സിംബോളിക് ലിങ്ക്\n"
-+"നെയിമ്ഡ് പൈപ്പ്\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux ഉപയോക്താവിനെ ചേര്‍ക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux അഡ്മിനിസ്ട്രേഷന്‍"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "ചേര്‍ക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "ഗുണഗണങ്ങള്‍ (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "നീക്കം ചെയ്യുക (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "മാനേജ്മെന്റ് ഒബ്ജക്ട് തിരഞ്ഞെടുക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>തിരഞ്ഞെടുക്കുക:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "സിസ്റ്റമില്‍ സ്വതവേയുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "ക്ളസ്റ്റര്‍ സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"പ്രവര്‍ത്തന രഹിതം\n"
-+"പെര്‍മ്മിസ്സീവ്\n"
-+"എന്‍ഫോഴ്സിങ്\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "നിലവിലുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "സിസ്റ്റത്തിന്റെ സ്വതവേയുള്ള പോളിസി തരത്തിലുള്ളവ: "
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "പല ഉള്ളടക്കങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി cdrecord-നെ അനുവദിക്കുക. nfs, samba, മാറ്റുവാന്‍ "
--#~ "സാധിക്കുന്ന ഡിവൈസുകള്‍, യൂസര്‍ temp, വിശ്വസനീയമല്ലാത്ത കണ്‍ടെന്റ് ഫയലുകള്‍ എന്നിവ"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ ചെയ്യണമെങ്കില്‍ തിരഞ്ഞെടുക്കുക.  "
-+"സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ പോളിസി മാറ്റുകയോ, "
-+"നിര്‍ജ്ജീവം എന്നതില്‍ നിന്നും എന്‍ഫോഴ്സിങ് ആകുകയോ ചെയ്യുന്നു എങ്കില്‍ റീലേബല്‍ ആവശ്യമുണ്ട്."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ലേബല്‍ മാറ്റുക."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "ബൂളിയന്‍ ക്രമികരണത്തിനെ സിസ്റ്റമിന്റെ സ്വതവേയുള്ളതാക്കി മാറ്റുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ ബൂളിയനുകളും തമ്മില്‍ മാറ്റുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Run booleans lockdown wizard"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Lockdown..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "ഫില്‍‌റ്റര്‍"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ചേര്‍ക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റില്‍ മാറ്റം വരുത്തുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് നീക്കം ചെയ്യുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "യഥേഷ്ടം തയ്യാറാക്കിയ ഫയലിന്റെ കോണ്‍ടെക്സ്റ്റും മറ്റെല്ലാം തമ്മില്‍ മാറ്റുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux യൂസര്‍ മാപ്പിങ് ചേര്‍ക്കുക"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux യൂസര്‍ മാപ്പിങില്‍ മാറ്റം വരുത്തുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux യൂസര്‍ മാപ്പിങ് നീക്കം ചെയ്യുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "ഉപയോക്താവിനെ ചേര്‍ക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "ഉപയോക്താവില്‍ മാറ്റം വരുത്തുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "തര്‍ജ്ജമ ചേര്‍ക്കുക"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "തര്‍ജ്ജമയില്‍ മാറ്റം വരുത്തുക"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "തര്‍ജ്ജമ നീക്കം ചെയ്യുക"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് ചേര്‍ക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടില്‍ മാറ്റം വരുത്തുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് നീക്കം ചെയ്യുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ പോര്‍ട്ടുകളും തമ്മില്‍ മാറ്റുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "പുതിയ പോളിസി ഘടകം ഉണ്ടാക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "ലഭ്യമാകുന്ന പോളിസി ഘടകം നീക്കം ചെയ്യുക"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"കൂടുതലുള്ള ഓഡിറ്റ് നിയമങ്ങള്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക, അവ സാധാരണ ലോഗ് ഫയലുകളില്‍ റിപ്പോര്‍ട്ട് "
-+"ചെയ്യപ്പെടുന്നില്ല."
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "പ്രക്രിയ പെര്‍മിസ്സീവ് മോഡിലേക്കു് മാറ്റുന്നു"
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "പ്രക്രിയ എന്‍ഫോഴ്സിങ് മോഡിലേക്കു് മാറ്റുന്നു"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "പ്രൊസസ്സ് ഡൊമെയിന്‍"
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Printing"
--#~ msgstr "പ്രിന്റ് ചെയ്യല്‍"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd ബാക്കെന്‍ഡ് സര്‍വറിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക "
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "നേരിട്ട് ഡെമണുകള്‍ ആരംഭിക്കുന്നതിനായി sysadm_t-നെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ഇവല്യൂഷനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Games"
--#~ msgstr "കളികള്‍"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "കളികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "വെബ് ബ്രൌസറുകള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "തണ്ടര്‍ബേര്‍ഡിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Compatibility"
--#~ msgstr "കോംപാറ്റിബിളിറ്റി"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr "സുരക്ഷയ്ക്ക് കോട്ടം തട്ടാത്തതും തകരാറുള്ളതുമായ കാര്യങ്ങള്‍ ഓഡിറ്റ് ചെയ്യരുത്"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "http rotatelogs-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD സര്‍വീസ്"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd ചൈള്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr ""
--#~ "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി ഇവല്യൂഷ്യന്‍, തണ്ടര്‍ബേര്‍ഡ് എന്നിവരെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "ഉപയോക്താവിനുള്ള ഫയലുകള്‍ വായിക്കുന്നതിനായി മോസിലാ ബ്രൌസറിനെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Name Service"
--#~ msgstr "നെയിം സര്‍വീസ്"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Samba"
--#~ msgstr "സാംബാ"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "ഒരു സാധാരണ ഉപയോക്താവിന് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി pppd-യെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "ppt-യ്ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "നിലവാരമില്ലാത്ത സ്ഥാനങ്ങളിലുള്ള ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനുള്ള പ്രോഗ്രാമുകള്‍ അനുവദിക്കുക "
--#~ "(default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr ""
--#~ "ഒരു ഡെമണ്‍ ആയി പ്രവര്‍ത്തിക്കുന്നതിന് പകരം inetd ആയി പ്രവര്‍ത്തിക്കുന്നതിന് ssh-നെ അനുവദിക്കുക"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "nfs ഡയറക്ടറികള്‍ പങ്കിടുന്നതിനായി Samba-യെ അനുവദിക്കുക"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL ഓഥന്റിക്കേഷന്‍ സര്‍വര്‍"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "/etc/shadow ലഭ്യമാക്കുന്നതിനായി sasl ഓഥന്റിക്കേഷന്‍ സര്‍വറിനെ അനുവദിക്കുക"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "എക്സിക്യൂട്ടബിളും റൈറ്റബിളുമായി പ്രവര്‍ത്തിപ്പിക്കുന്നതിന് ഒരു മെമ്മറിയിലേക്ക് മാപ്പ് "
--#~ "ചെയ്യുന്നതിനായി എക്സ്-വിന്‍ഡോസ് സര്‍വറിനെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo, su ബാധകമായവയിലേക്ക് മാറുന്നതിനായി അനുവദിക്കരുത്"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "കേര്‍ണല്‍ ഘടകങ്ങള്‍ ലഭ്യമാക്കുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "കേര്‍ണലിന്റെ SELinux പോളിസിയില്‍ മാറ്റം വരുത്തുന്നതിനായി ഒരു പ്രക്രിയകളേയും അനുവദിക്കരുത്"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans-നുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroublesoot ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Spam Protection"
--#~ msgstr "സ്പാമിനുള്ള സുരക്ഷ "
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി spamd അനുവദിക്കുക"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "സ്പാം അസ്സാസ്സിന്‍ ഡെമണ്‍ നെറ്റ്‌വര്‍ക്ക് പ്രവേശനം അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Squid"
--#~ msgstr "സ്ക്വിഡ്"
--
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "നെറ്റ്‌വര്‍ക്കിലേക്ക് കണക്ട് ചെയ്യുന്നതിനായി squid ഡെമണിനെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക "
--
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh ലോഗിനുകളെ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
--
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "sysadm ഹോം ഡയറക്ടറി തിരഞ്ഞ് ഫയലുകള്‍ ലഭ്യമാക്കുന്നതിനായി staff_r users-നെ അനുവദിക്കുക "
--#~ "(such as ~/.bashrc)"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "യൂണിവേഴ്സല്‍ SSL ടണല്‍"
--
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "xinetd-ന് പുറത്ത് ഒറ്റയ്ക്ക് പ്രവര്‍ത്തിക്കുന്നതിനായി stunnel ഡെമണിനെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "സിസ്റ്റം cron ജോലികള്‍ക്കുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി xinetd-യെ അനുവദിക്കുക. ഡൊമെയില്‍ "
--#~ "വ്യക്തമാക്കിയിട്ടില്ലാത്തതും അത് ആരംഭിക്കുന്നതുമായഏത് ഡസേവനങ്ങളുംഇതില്‍ ഉള്‍പ്പെടുന്നു."
--
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "പരിമിതികളില്ലാതെ പ്രവര്‍ത്തിക്കുന്നതിനായി rc സ്ക്രിപ്റ്റുകളെ അനുവദിക്കുക. ഡൊമെയില്‍ "
--#~ "വ്യക്തമാക്കിയിട്ടില്ലാത്തതും rc സ്ക്രിപ്റ്റ് ആരംഭിക്കുന്നതുമായ ഏത് ഡെമണും ഇതില്‍ ഉള്‍പ്പെടുന്നു."
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "പരിതികളില്ലാതെ rpm പ്രവര്‍ത്തിക്കുന്നതിനായി അനുവദിക്കുക"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "അനുവദനീയമായ പ്രയോഗങ്ങളായ hotplug, insmod എന്നിവ പരിമിതികളില്ലാതെ "
--#~ "പ്രവര്‍ത്തിക്കുന്നതിന് അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതകമാക്കുക"
--
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "su, sudo, അല്ലെങ്കില്‍ userhelper ഉപയോഗിച്ച് user_r-നെ sysadm_r-ല്‍ "
--#~ "എത്തിക്കുന്നതിനായി അനുവദിക്കുക. അല്ലായെങ്കില്‍, staff_r-ന് മാത്രമേ സാധിക്കൂ."
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "mount കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "സാധാരണ ഉപയോക്താക്കള്‍ക്ക് നേരിട്ടുള്ള മൌസ് ലഭ്യത അനുവദിക്കുക (എക്സ് സര്‍വറിന് മാത്രം അനുവദിക്കുക)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "dmesg കമാന്‍ഡ് പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "നെറ്റ്‌വര്‍ക്ക് സംയോജക ഘടകങ്ങള്‍ നിയന്ത്രിക്കുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക "
--#~ "(USERCTL=true എന്നതും ആവശ്യമുണ്ട്)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "ping പ്രവര്‍ത്തിപ്പിക്കുന്നതിനായി സാധാരണ ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "r/w noextattrfile (FAT, CDROM, FLOPPY) r/w ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ "
--#~ "അനുവദിക്കുക"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "usb ഡിവൈസുകള്‍ rw ചെയ്യുന്നതിനായി ഉപയോക്താക്കളെ അനുവദിക്കുക"
--
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "ഇത് പ്രവര്‍ത്തനരഹിതമാക്കി ഉപയോക്താക്കളെ ടിസിപി സര്‍വറുകള്‍ പ്രവര്‍ത്തിക്കുന്നതിനായി "
--#~ "അനുവദിക്കുന്നത് (പോര്‍ട്ടുകളിലേക്ക് ബൈന്‍ഡ് ചെയ്ത് അതേ ഡൊമിയിനില്‍ നിന്നും മറ്റുള്ളവരില്‍ നിന്നും "
--#~ "കണക്ഷന്‍ സ്വീകരിക്കുക)  എഫ്ടിപി പാസ്സീവ് മോഡ് നിഷ്ക്രിയമാക്കി മറ്റ് സമ്പ്രദായങ്ങളും മാറ്റുന്നു."
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ttyfiles സ്റ്റാറ്റ് ചെയ്യുന്നതിനായി ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm ലോഗിനുകള്‍ sysadm_r:sysadm_t ആയി അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "ഫിസിക്കല്‍ ഡിസ്ക് ഡിവൈസുകളിലേക്ക് റീഡ്/റൈറ്റ് പ്രവര്‍ത്തി xen അനുവദിക്കുക"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen control ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS പാസ്‌വേര്‍ഡ് ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS ട്രാന്‍സ്ഫര്‍ ഡെമണിനുള്ള SELinux സുരക്ഷ പ്രവര്‍ത്തന രഹിതമാക്കുക"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികള്‍ കൈകാര്യം ചെയ്യുന്നതിനായി SELinux "
--#~ "webadm ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "അവകാശമില്ലാത്ത ഉപയോക്താക്കളുടെ ഹോം ഡയറക്ടറികളിലേക്ക് പ്രവേശിക്കുന്നതിനായി SELinux "
--#~ "webadm ഉപയോക്താവിനെ അനുവദിക്കുക"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "നിങ്ങള്‍ക്ക് %s '%s' നീക്കം ചെയ്യണമെന്നുറപ്പാണോ?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s നീക്കം ചെയ്യുക"
--
--#~ msgid "Add %s"
--#~ msgstr "%s ചേര്‍ക്കുക"
--
--#~ msgid "Modify %s"
--#~ msgstr "%s-ല്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Permissive"
--#~ msgstr "പെര്‍മിസ്സീവ്"
--
--#~ msgid "Enforcing"
--#~ msgstr "എന്‍ഫോര്‍സിങ്"
--
--#~ msgid "Disabled"
--#~ msgstr "പ്രവര്‍ത്തന രഹിതം"
--
--#~ msgid "Status"
--#~ msgstr "അവസ്ഥ"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "പോളിസി മാറ്റിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
--#~ "ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് "
--#~ "മുമ്പോട്ട് പോകണമെന്നുറപ്പാണോ?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux നിര്‍ജ്ജീവാമാക്കുന്നു എങ്കില്‍ റീബൂട്ട് ചെയ്യേണ്ടതുണ്ട്.  ഇത് ഉത്തമമല്ല. കാരണം, "
--#~ "നിങ്ങള്‍ക്ക് പിന്നീട് SELinux ആവശ്യമാണ് എങ്കില്‍, ഓണ്‍ ചെയ്യുന്നതിനായി, സിസ്റ്റം വീണ്ടും "
--#~ "റീലേബല്‍ ചെയ്യണ്ടതുണ്ട്. SELinux നിങ്ങളുടെ സിസ്റ്റമില്‍ എന്തെങ്കിലും തകരാറുകള്‍ ഉണ്ടാക്കുന്നുണ്ടോ "
--#~ "എന്ന് അറിയണമെങ്കില്‍ നിങ്ങള്‍ക്ക് പെര്‍മ്മിസ്സീവ് മോഡിലേക്ക് മാറ്റാം. ഇത് പിശകുകള്‍ മാത്രം ലോഗ് "
--#~ "ചെയ്യുന്നു, കൂടാതെ SELinux പോളിസി എന്‍ഫോഴ്സ് ചെയ്യുന്നുമില്ല. പെര്‍മ്മിസ്സീവ് മോഡുകള്‍ക്ക് റീബൂട്ട് "
--#~ "ചെയ്യേണ്ടതില്ല.    നിങ്ങള്‍ക്ക് മുമ്പോട്ട് തുടരണമോ?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux സജ്ജമാക്കിയാല്‍ അടുത്ത തവണ ബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ "
--#~ "ചെയ്യണ്ടതാകുന്നു.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ക്ക് "
--#~ "മുമ്പോട്ട് പോകണമെന്നുറപ്പാണോ?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "പകര്‍പ്പവകാശം (c)2006 Red Hat, Inc.\n"
--#~ "പകര്‍പ്പവകാശം (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux ലോഗിന്‍ മാപ്പിങ് ചേര്‍ക്കുക"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടുകള്‍ ചേര്‍ക്കുക"
--
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux തരത്തിലുള്ള"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "ലവല്‍"
--
--#~ msgid "File Specification"
--#~ msgstr "ഫയലിനുള്ള പ്രത്യേകതകള്‍"
--
--#~ msgid "File Type"
--#~ msgstr "ഏത് തരം ഫയല്‍"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "എല്ലാ ഫയലുകളും\n"
--#~ "സാധാരണ ഫയല്‍\n"
--#~ "ഡയറക്ടറി\n"
--#~ "ക്യാരക്ടര്‍ ഡിവൈസ്\n"
--#~ "ബ്ളോക്ക് ഡിവൈസ്\n"
--#~ "സോക്കറ്റ്\n"
--#~ "സിംബോളിക് ലിങ്ക്\n"
--#~ "നെയിമ്ഡ് പൈപ്പ്\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ഉപയോക്താവിനെ ചേര്‍ക്കുക"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux അഡ്മിനിസ്ട്രേഷന്‍"
--
--#~ msgid "Add"
--#~ msgstr "ചേര്‍ക്കുക"
--
--#~ msgid "_Properties"
--#~ msgstr "ഗുണഗണങ്ങള്‍ (_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "നീക്കം ചെയ്യുക (_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "മാനേജ്മെന്റ് ഒബ്ജക്ട് തിരഞ്ഞെടുക്കുക"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>തിരഞ്ഞെടുക്കുക:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "സിസ്റ്റമില്‍ സ്വതവേയുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "നിലവിലുള്ള എന്‍ഫോര്‍സിങ് മോഡ്"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "സിസ്റ്റത്തിന്റെ സ്വതവേയുള്ള പോളിസി തരത്തിലുള്ളവ: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ഫയല്‍ സിസ്റ്റം പൂര്‍ണ്ണമായും റീലേബല്‍ ചെയ്യണമെങ്കില്‍ "
--#~ "തിരഞ്ഞെടുക്കുക.  സിസ്റ്റമിന്റെ വ്യാപ്തി അനുസരിച്ച് റീലേബലിങിന് സമയമെടുക്കുന്നു.നിങ്ങള്‍ പോളിസി "
--#~ "മാറ്റുകയോ, നിര്‍ജ്ജീവം എന്നതില്‍ നിന്നും എന്‍ഫോഴ്സിങ് ആകുകയോ ചെയ്യുന്നു എങ്കില്‍ റീലേബല്‍ ആവശ്യമുണ്ട്."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "അടുത്ത തവണ റീബൂട്ട് ചെയ്യുമ്പോള്‍ ലേബല്‍ മാറ്റുക."
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "ബൂളിയന്‍ ക്രമികരണത്തിനെ സിസ്റ്റമിന്റെ സ്വതവേയുള്ളതാക്കി മാറ്റുക"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ ബൂളിയനുകളും തമ്മില്‍ മാറ്റുക"
--
--#~ msgid "Filter"
--#~ msgstr "ഫില്‍‌റ്റര്‍"
--
--#~ msgid "Add File Context"
--#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് ചേര്‍ക്കുക"
--
--#~ msgid "Modify File Context"
--#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റില്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Delete File Context"
--#~ msgstr "ഫയല്‍ കോണ്‍ടെക്സ്റ്റ് നീക്കം ചെയ്യുക"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയ ഫയലിന്റെ കോണ്‍ടെക്സ്റ്റും മറ്റെല്ലാം തമ്മില്‍ മാറ്റുക"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux യൂസര്‍ മാപ്പിങ് ചേര്‍ക്കുക"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux യൂസര്‍ മാപ്പിങില്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux യൂസര്‍ മാപ്പിങ് നീക്കം ചെയ്യുക"
--
--#~ msgid "Add Translation"
--#~ msgstr "തര്‍ജ്ജമ ചേര്‍ക്കുക"
--
--#~ msgid "Modify Translation"
--#~ msgstr "തര്‍ജ്ജമയില്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Delete Translation"
--#~ msgstr "തര്‍ജ്ജമ നീക്കം ചെയ്യുക"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux ഉപയോക്താവില്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Add Network Port"
--#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് ചേര്‍ക്കുക"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ടില്‍ മാറ്റം വരുത്തുക"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "നെറ്റ്‌വര്‍ക്ക് പോര്‍ട്ട് നീക്കം ചെയ്യുക"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "യഥേഷ്ടം തയ്യാറാക്കിയവയും മറ്റെല്ലാ പോര്‍ട്ടുകളും തമ്മില്‍ മാറ്റുക"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "പുതിയ പോളിസി ഘടകം ഉണ്ടാക്കുക"
--
--#~ msgid "Load policy module"
--#~ msgstr "പോളിസി ഘടകം ലഭ്യമാക്കുക"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ലഭ്യമാകുന്ന പോളിസി ഘടകം നീക്കം ചെയ്യുക"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "കൂടുതലുള്ള ഓഡിറ്റ് നിയമങ്ങള്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക, അവ സാധാരണ ലോഗ് ഫയലുകളില്‍ റിപ്പോര്‍ട്ട് "
--#~ "ചെയ്യപ്പെടുന്നില്ല."
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "സെന്‍സിറ്റിവിറ്റി നിലവാരം"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "'%s' എന്ന SELinux ഉപയോക്താവ് ആവശ്യമുണ്ട്"
--
--#~ msgid "Requires value"
--#~ msgstr "മൂല്ല്യം ആവശ്യമുണ്ട്"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "അസാധുവായ പ്രിഫിക്സ് ആണ്%s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും tcp പോര്‍ട്ടുകള്‍ > 1024-ലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുക"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr "പ്രയോഗം/ഉപയോക്താവിനെ ഏതെങ്കിലും tcp പോര്‍ട്ടിലേക്ക് ബൈന്‍ഡ് ചെയ്യുവാന്‍ അനുവദിക്കുന്നു"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "പ്രയോഗം/ഉപയോക്താവിന് ബൈന്‍ഡ് ചെയ്യുന്നതിനായി ടിസിപി പോര്‍ട്ടുകളോ അവയുടെ പരിധിയില്‍പ്പെടുന്ന "
--#~ "മറ്റ് പോര്‍ട്ടുകളോ കോമാ ഉപയോഗിച്ച് വേര്‍തിരിച്ച് നല്‍കുക. ഉദാ: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux പോളിസി ഉത്പാദന ഡ്രൂയിഡ്"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "മറ്റൊന്നിനും കരുതിട്ടില്ലാത്ത പോര്‍ട്ടുകള്‍  (>1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "0 ഉള്ള bindresvport ആണ് നിങ്ങളുടെ പ്രയോഗം ആവശ്യപ്പെടുന്നത് എങ്കില്‍ ഈ ചെക്ക്ബട്ടണ്‍ "
--#~ "ഉപയോഗിക്കുക."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "എന്‍ഫോര്‍സിങ്\n"
--#~ "പെര്‍മിസ്സീവ്\n"
--#~ "പ്രവര്‍ത്തന രഹിതം\n"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "'%s' എന്ന SELinux ഉപയോക്താവ് ആവശ്യമുണ്ട്"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils-2.0.85/po/mr.po
---- nsapolicycoreutils/po/mr.po        2011-02-17 15:11:25.579727370 -0500
-+++ policycoreutils-2.0.85/po/mr.po    2011-02-18 16:03:41.385975861 -0500
-@@ -1,25 +1,44 @@
--# translation of policycoreutils.HEAD.mr.po to marathi
-+# translation of mr.po to Marathi
- # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
- # Rahul Bhalerao <rbhalera@redhat.com>, 2006.
- # Rahul Bhalerao <b.rahul.pm@gmail.com>, 2006.
- # sandeep shedmake <sandeep.shedmake@gmail.com>, 2007.
--# Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008.
-+# Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008, 2009.
-+# Sandeep Shedmake <sshedmak@redhat.com>, 2010.
- msgid ""
- msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.mr\n"
-+"Project-Id-Version: mr\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-03-24 15:54+0530\n"
--"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
--"Language-Team: marathi\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-27 15:42+0530\n"
-+"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
-+"Language-Team: Marathi <fedora-trans-mr@redhat.com>\n"
-+"Language: mr\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
- "Plural-Forms: nplurals=2; plural=(n!=1);\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "ग्राफिकल सेटिंगमध्ये SELinux संरचीत करा"
++msgstr ""
+diff --git a/policycoreutils/po/nds.po b/policycoreutils/po/nds.po
+new file mode 100644
+index 0000000..7f0e110
+--- /dev/null
++++ b/policycoreutils/po/nds.po
+@@ -0,0 +1,3375 @@
++# translation of policycoreutils.HEAD.po to
++# translation of policycoreutils.HEAD.nds.po to
++# Low German translation of policycoreutils.
++# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
++#
++#
++# Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>, 2010.
++msgid ""
++msgstr ""
++"Project-Id-Version: policycoreutils.HEAD.nds\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2010-12-05 15:46+0100\n"
++"Last-Translator: Nils-Christoph Fiedler <ncfiedler@gnome.org>\n"
++"Language-Team: Fedora Low German <nds-lowgerman@lists.sourceforge.net>\n"
++"Language: nds\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++"X-Poedit-Language: Low German\n"
++"X-Generator: KBabel 1.11.4\n"
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux मॅनेजमेंट"
++#: ../run_init/run_init.c:67
++msgid ""
++"USAGE: run_init <script> <args ...>\n"
++"  where: <script> is the name of the init script to run,\n"
++"         <args ...> are the arguments to that script."
++msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux करार घटके निर्माण करा"
++#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
++#, c-format
++msgid "failed to initialize PAM\n"
++msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux करार निर्माण साधन"
++#: ../run_init/run_init.c:139
++#, c-format
++msgid "failed to get account information\n"
++msgstr ""
 +
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -27,8 +46,8 @@
- "         <args ...> are the arguments to that script."
- msgstr ""
- "वापर: run_init <script> <args ...>\n"
--"  जेथे: <script> हे चालवायच्या init स्क्रीप्टचे नाव आहे,\n"
--"         <args ...> हे त्या स्क्रीप्टचे आर्ग्यूमेंट्स आहेत."
-+"  जेथे: <script> हे चालवायच्या init स्क्रिप्टचे नाव आहे,\n"
-+"         <args ...> हे त्या स्क्रिप्टचे आर्ग्यूमेंट्स आहेत."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
- #, c-format
-@@ -109,9 +128,8 @@
- msgstr "semanage जोडणी प्रस्तापित करू शकत नाही"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "MLS परिसीमा %s साठी निर्धारित करता आली नाही"
-+msgstr "MLS कार्यान्वीत स्तरची चाचणी करणे अशक्य"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -120,20 +138,21 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s उघडण्यास असमर्थ: अनुवाद non-MLS मशीनींवर समर्थित नाहीत: %s"
-+msgstr "%s उघडणे अशक्य: भाषांतरन विना-MLS मशीन्स् यावर समर्थीत नाही: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr "स्थर"
-+msgstr "स्तर"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr "अनुवाद"
-+msgstr "भाषांतरन"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "अनुवादांत मोकळ्या जागा '%s' असू शकत नाहीत "
-+msgstr "भाषांतरनात स्पेसेस् '%s' समाविष्टीत असणे शक्य नाही "
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -143,12 +162,12 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s अनुवादांत आधिच व्याख्यीत"
-+msgstr "भाषांतरनात %s आधिपासूनच ठरवले आहे"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s अनुवादांत व्याख्यीत नाही"
-+msgstr "भाषांतरनात %s ठरवले नाही"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
-@@ -156,764 +175,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage ट्रांजॅकशनची प्रगती आधिपासूनच आहे"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage व्यवहार सुरू करता आला नाही"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage व्यवहार सुरू करता आला नाही"
-+msgstr "semanage व्यवहार पाठवू शकला नाही"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage ट्रांजॅकशनची प्रगती नाही"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux उपयोक्त्यांची यादी करता आली नाही"
-+msgstr "SELinux विभागांची सूची दाखवणे अशक्य"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "परवानगीक"
-+msgstr "परवानगीय प्रकार"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "परवानगीय क्षेत्र %s निश्चित करू शकले नाही (विभाग प्रतिष्ठापन अपयशी)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "परवानगीय क्षेत्र %s काढून टाकू शकत नाही (काढून टाकणे अपयशी)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s साठी कळ निर्माण करू शकत नाही"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s साठी लॉगीन मॅपिंग व्याख्यीत केली आहे का हे तपासू शकलो नाही"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s साठी लॉगीन मॅपिंग आधिच व्याख्यीत केलेली आहे"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
++#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
++msgid "Password:"
++msgstr ""
++
++#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
++#, c-format
++msgid "Cannot find your entry in the shadow passwd file.\n"
++msgstr ""
++
++#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
++#, c-format
++msgid "getpass cannot open /dev/tty\n"
++msgstr ""
++
++#: ../run_init/run_init.c:275
++#, c-format
++msgid "run_init: incorrect password for %s\n"
++msgstr ""
++
++#: ../run_init/run_init.c:309
++#, c-format
++msgid "Could not open file %s\n"
++msgstr ""
++
++#: ../run_init/run_init.c:336
++#, c-format
++msgid "No context in file %s\n"
++msgstr ""
++
++#: ../run_init/run_init.c:361
++#, c-format
++msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
++msgstr ""
++
++#: ../run_init/run_init.c:380
++#, c-format
++msgid "authentication failed.\n"
++msgstr ""
++
++#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
++#, c-format
++msgid "Could not set exec context to %s.\n"
++msgstr ""
++
++#: ../audit2allow/audit2allow:230
++msgid "******************** IMPORTANT ***********************\n"
++msgstr ""
++
++#: ../audit2allow/audit2allow:231
++msgid "To make this policy package active, execute:"
++msgstr ""
++
++#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
++msgid "global"
++msgstr ""
++
++#: ../semanage/seobject.py:222
++msgid "Could not create semanage handle"
++msgstr ""
++
++#: ../semanage/seobject.py:230
++msgid "SELinux policy is not managed or store cannot be accessed."
++msgstr ""
++
++#: ../semanage/seobject.py:235
++msgid "Cannot read policy store."
++msgstr ""
++
++#: ../semanage/seobject.py:240
++msgid "Could not establish semanage connection"
++msgstr ""
++
++#: ../semanage/seobject.py:245
++msgid "Could not test MLS enabled status"
++msgstr ""
++
++#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
++msgid "Not yet implemented"
++msgstr ""
++
++#: ../semanage/seobject.py:255
++msgid "Semanage transaction already in progress"
++msgstr ""
++
++#: ../semanage/seobject.py:264
++msgid "Could not start semanage transaction"
++msgstr ""
++
++#: ../semanage/seobject.py:274
++msgid "Could not commit semanage transaction"
++msgstr ""
++
++#: ../semanage/seobject.py:279
++msgid "Semanage transaction not in progress"
++msgstr ""
++
++#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
++msgid "Could not list SELinux modules"
++msgstr ""
++
++#: ../semanage/seobject.py:304
++msgid "Modules Name"
++msgstr ""
++
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
++msgid "Version"
++msgstr ""
++
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
++msgid "Disabled"
++msgstr ""
++
++#: ../semanage/seobject.py:322
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux उपयोक्ता %s अस्तित्वात नाही"
-+msgstr "Linux समुह %s अस्तित्वात नाही"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux उपयोक्ता %s अस्तित्वात नाही"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s साठी लॉगीन मॅपिंग निर्माण करू शकलो नाही"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s साठी नाव ठेवता आले नाही"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "MLS परिसीमा %s साठी निर्धारित करता आली नाही"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "SELinux उपयोक्ता %s साठी निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s साठी लॉगीन मॅपिंग जमा करता आले नाही"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux मॅपिंग वापरकर्ता समाविष्टीत करा"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser किंवा serange आवश्यक"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s साठी लॉगीन मॅपिंग व्याख्यीत नाही"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "seuser ला %s साठी प्रश्न करू शकलो नाही"
--#: ../semanage/seobject.py:496
++msgid "Could not disable module %s (remove failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:333
++#, python-format
++msgid "Could not enable module %s (remove failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:348
++#, python-format
++msgid "Could not remove module %s (remove failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:358
++msgid "dontaudit requires either 'on' or 'off'"
++msgstr ""
++
++#: ../semanage/seobject.py:387
++msgid "Builtin Permissive Types"
++msgstr ""
++
++#: ../semanage/seobject.py:397
++msgid "Customized Permissive Types"
++msgstr ""
++
++#: ../semanage/seobject.py:438
++#, python-format
++msgid "Could not set permissive domain %s (module installation failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:444
++#, python-format
++msgid "Could not remove permissive domain %s (remove failed)"
++msgstr ""
++
++#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
++#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
++#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
++#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
++#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
++#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
++#: ../semanage/seobject.py:2037
++#, python-format
++msgid "Could not create a key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
++#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
++#, python-format
++msgid "Could not check if login mapping for %s is defined"
++msgstr ""
++
 +#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s साठी लॉगीन मॅपिंग बदलू शकलो नाही"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s साठी लॉगीन मॅपिंग धोरणात व्याख्यीत आहे, ती नष्ट करता येत नाही "
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s साठी लॉगीन मॅपिंग नष्ट करू शकलो नाही"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "लॉगीन मॅपिंग्सची यादी करू शकलो नाही"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
++#, python-format
++msgid "Linux Group %s does not exist"
++msgstr ""
++
++#: ../semanage/seobject.py:497
++#, python-format
++msgid "Linux User %s does not exist"
++msgstr ""
++
++#: ../semanage/seobject.py:501
++#, python-format
++msgid "Could not create login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
++#, python-format
++msgid "Could not set name for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
++#, python-format
++msgid "Could not set MLS range for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:514
++#, python-format
++msgid "Could not set SELinux user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:518
++#, python-format
++msgid "Could not add login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:536
++msgid "Requires seuser or serange"
++msgstr ""
++
++#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
++#, python-format
++msgid "Login mapping for %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:563
++#, python-format
++msgid "Could not query seuser for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:577
++#, python-format
++msgid "Could not modify login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:611
++#, python-format
++msgid "Login mapping for %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:615
++#, python-format
++msgid "Could not delete login mapping for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
++#: ../semanage/seobject.py:893
++msgid "Could not list login mappings"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "दाखलन नाव"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
++msgid "Login Name"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux वापरकर्ता"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS क्षेत्र"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
++msgid "SELinux User"
++msgstr ""
++
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
++msgid "MLS/MCS Range"
++msgstr ""
++
++#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
++#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
++#: ../semanage/seobject.py:860
 +#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s साठी फाइल संदर्भ जोडता आला नाही"
-+msgstr "%s साठी किमान एक भूमिका जोडली पाहिजे"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux उपयोक्ता %s व्याखीत असल्याचे तपासू शकलो नाही"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux उपयोक्ता %s आधिच व्याख्यीत आहे"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "SELinux उपयोक्ता %s साठी निर्माण करता आला नाही"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "भुमिका %s जमा करता आली नाही %s करता"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s साठी MLS स्तर निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "पूर्वपद %s जमा करता आले नाही %s करीता"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s साठी कळ खेचता आली नाही"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux उपयोक्ता %s जोडता आला नाही"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "पूर्वपद, भुमिका, स्तर किंवा परिसीमा आवश्यक"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "पूर्वपद किंवा भुमिका आवश्यक"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux उपयोक्ता %s व्याख्यीत नाही"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s साठी उपयोक्त्यास प्रश्न करू शकत नाही"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux उपयोक्ता %s मध्ये बदल करता आले नाही"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux उपयोक्ता %s धोरणामध्ये व्याख्यीत आहे, नष्ट करता येणार नाही"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux उपयोक्ता %s नष्ट करता आला नाही"
--#: ../semanage/seobject.py:762
++msgid "Could not check if SELinux user %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
++#: ../semanage/seobject.py:866
++#, python-format
++msgid "Could not query user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:722
++#, python-format
++msgid "You must add at least one role for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:737
++#, python-format
++msgid "Could not create SELinux user for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:746
++#, python-format
++msgid "Could not add role %s for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:755
++#, python-format
++msgid "Could not set MLS level for %s"
++msgstr ""
++
 +#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux उपयोक्त्यांची यादी करता आली नाही"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "उपयोक्ता %s साठी भुमिकांची यादी करता आली नाही"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "लेबलींग"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "पुर्वपद"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS स्थर"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS क्षेत्र"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux भूमिका"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "प्रोटोकॉल udp किंवा tcp आवश्यक आहे"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "पोर्ट आवश्यक आहे"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s साठी कळ निर्माण करता आली नाही"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "प्रकार आवश्यक आहे"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "%s/%s पोर्ट व्याख्यीत आहे काय हे तपासता आले नाही"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "पोर्ट %s/%s आधिच व्याख्यीत"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s साठी पोर्ट निर्माण करता आले नाही"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s साठी संदर्भ निर्माण करता आला नाही"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s च्या पोर्ट संदर्भात उपयोक्त्यास निर्धारित करता आले नाही"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s साठी  पोर्ट संदर्भात भुमिका निर्धारित करता आली नाही"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s साठी पोर्ट संदर्भात प्रकार निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s साठी पोर्ट संदर्भात mls क्षेत्रे निर्धारित करता आली नाहीत"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s साठी पोर्ट संदर्भ निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s पोर्ट जोडू शकत नाही"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype किंवा serange आवश्यक"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype आवश्यक"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "पोर्ट %s/%s व्याख्यीत नाही"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "पोर्ट %s/%s ला प्रश्न करता आले नाही"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "पोर्ट %s/%s मध्ये बदल करता आले नाहीत"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "पोर्टांची यादी बनविता आली नाही"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "पोर्ट %s नष्ट करता आले नाही"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "पोर्ट %s/%s धोरणात व्याख्यीत आहे, नष्ट करता येणार नाही"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "पोर्ट %s/%s नष्ट करता आले नाही"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "पोर्टांची यादी करता आली नाही"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux पोर्ट प्रकार"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "प्रोटो"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "पोर्ट क्रमांक"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "पोर्ट आवश्यक आहे"
-+msgstr "नोड पत्ता आवश्यक आहे"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "पोर्ट आवश्यक आहे"
-+msgstr "नोड नेटमास्क् आवश्यक आहे"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "अपरिचीत किंवा न आढळलेले शिष्टाचार"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux प्रकार आवश्यक आहे"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s साठी कळ बनवू शकलो नाही"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "%s/%s पोर्ट व्याख्यीत आहे काय हे तपासता आले नाही"
-+msgstr "पत्ता %s व्याख्यीत आहे हे तपासता आले नाही"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
++msgid "Could not add prefix %s for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:761
 +#, python-format
- msgid "Addr %s already defined"
--msgstr "पोर्ट %s/%s आधिच व्याख्यीत"
-+msgstr "पत्ता %s आधिपासूनच व्याख्यीत आहे"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
++msgid "Could not extract key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:765
 +#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s साठी कळ निर्माण करू शकत नाही"
-+msgstr "%s करीता पत्ता बनवू शकले नाही"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
--msgstr "%s साठी संदर्भ निर्माण करता आला नाही"
-+msgstr "%s साठी संदर्भ निर्माण करू शकले नाही"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
++msgid "Could not add SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:787
++msgid "Requires prefix, roles, level or range"
++msgstr ""
++
++#: ../semanage/seobject.py:789
++msgid "Requires prefix or roles"
++msgstr ""
++
++#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
 +#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s साठी नाव ठेवता आले नाही"
-+msgstr "%s करीता मास्क् निश्चित करता आले नाही"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
++msgid "SELinux user %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:828
 +#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s साठी फाइल संदर्भात उपयोक्ता निर्धारित करता आला नाही"
-+msgstr "%s करीता पत्ता संदर्भात वापरकर्ता निश्चित करू शकले नाही"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
++msgid "Could not modify SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:862
 +#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s साठी फाइल संदर्भात भुमिका निर्धारित करता आली नाही"
-+msgstr "%s साठी पत्ता संदर्भात भुमिका निश्चित करू शकले नाही"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
++msgid "SELinux user %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:873
 +#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s च्या फाइल संदर्भात प्रकार निर्धआरित करता आला नाही"
-+msgstr "%s करीता पत्ता संदर्भातील प्रकार निश्चित करू शकले नाही"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
++msgid "Could not delete SELinux user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:911
++msgid "Could not list SELinux users"
++msgstr ""
++
++#: ../semanage/seobject.py:917
 +#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s साठी फाइल संदर्भात mls क्षेत्रे निर्धारित करता आले नाहीत"
-+msgstr "%s करीता पत्ता संदर्भ अंतर्गत mls क्षेत्र निश्चित करू शकत नाही"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
++msgid "Could not list roles for user %s"
++msgstr ""
++
++#: ../semanage/seobject.py:942
++msgid "Labeling"
++msgstr ""
++
++#: ../semanage/seobject.py:942
++msgid "MLS/"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "Prefix"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "MCS Level"
++msgstr ""
++
++#: ../semanage/seobject.py:943
++msgid "MCS Range"
++msgstr ""
++
++#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
++msgid "SELinux Roles"
++msgstr ""
++
++#: ../semanage/seobject.py:963
++msgid "Protocol udp or tcp is required"
++msgstr ""
++
++#: ../semanage/seobject.py:965
++msgid "Port is required"
++msgstr ""
++
++#: ../semanage/seobject.py:975
++msgid "Invalid Port"
++msgstr ""
++
++#: ../semanage/seobject.py:979
 +#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s साठी फाइल संदर्भ निर्धारित करता आला नाही"
-+msgstr "%s करीता पत्ता संदर्भ निश्चित करू शकत नाही"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
++msgid "Could not create a key for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:990
++msgid "Type is required"
++msgstr ""
++
++#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
++#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
 +#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s पोर्ट जोडू शकत नाही"
-+msgstr "पत्ता %s जोडू शकत नाही"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
++msgid "Could not check if port %s/%s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:998
 +#, python-format
- msgid "Addr %s is not defined"
--msgstr "पोर्ट %s/%s व्याख्यीत नाही"
-+msgstr "पत्ता %s निश्चित केले नाही"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
++msgid "Port %s/%s already defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1002
 +#, python-format
- msgid "Could not query addr %s"
--msgstr "पोर्ट %s/%s ला प्रश्न करता आले नाही"
-+msgstr "पत्ता %s ला प्रश्न विचारू शकत नाही"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
++msgid "Could not create port for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1008
 +#, python-format
- msgid "Could not modify addr %s"
--msgstr "पोर्ट %s/%s मध्ये बदल करता आले नाहीत"
-+msgstr "पत्ता %s संपादीत करू शकत नाही"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
++msgid "Could not create context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1012
 +#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "पोर्ट %s/%s धोरणात व्याख्यीत आहे, नष्ट करता येणार नाही"
-+msgstr "पत्ता %s नियमावलीत निश्चित केले आहे, वगळले जाऊ शकत नाही"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
++msgid "Could not set user in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1016
 +#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s नष्ट करता आला नाही"
-+msgstr "पत्ता %s नष्ट करू शकत नाही"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "पोर्टांची यादी करता आली नाही"
-+msgstr "addrs यादीत दर्शवू शकले नाही"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "इंटरफेस %s व्याख्यीत आहे काय हे तपासता आले नाही"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "इंटरफेस %s आधिच व्याख्यीत"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s साठी इंटरफेस निर्माण करता आला नाही"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s च्या इंटरफेस संदर्भात उपयोक्ता निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s च्या इंटरफेस संदर्भामध्ये भुमिका निर्धारित करता आली नाही"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s च्या इंटरफेस संदर्भात प्रकार निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s च्या इंटरफेस संदर्भात mls क्षेत्रे निर्धारित करता आली नाहीत"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s साठी इंटरफेस संदर्भ निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s साठी संदेश संदर्भ निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "इंटरफेस %s जमा करता आला नाही"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "इंटरफेस %s व्याख्यीत नाही"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "इंटरफेस %s ला प्रश्न करता आले नाही"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "इंटरफेस %s मध्ये बदल करता आले नाही"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "इंटरफेस %s धोरणात व्याख्यीत आहे, नष्ट करता येणार नाही"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "इंटरफेस %s नष्ट करता आला नाही"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "इंटरफेसची यादी करता आली नाही"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux संवादपट"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "संदर्भ"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s साठी फाइल संदर्भात उपयोक्ता निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s साठी फाइल संदर्भात भुमिका निर्धारित करता आली नाही"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s साठी फाइल संदर्भात mls क्षेत्रे निर्धारित करता आले नाहीत"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "अवैध फाइल गुणविशेष"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s साठी संदर्भ फाइल व्याख्यीत आहे काय हे तपासता आले नाही"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s साठी फाइल संदर्भ आधिच व्याख्यीत"
--#: ../semanage/seobject.py:1465
++msgid "Could not set role in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1020
++#, python-format
++msgid "Could not set type in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1025
++#, python-format
++msgid "Could not set mls fields in port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1029
++#, python-format
++msgid "Could not set port context for %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1033
++#, python-format
++msgid "Could not add port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
++#: ../semanage/seobject.py:1508
++msgid "Requires setype or serange"
++msgstr ""
++
++#: ../semanage/seobject.py:1049
++msgid "Requires setype"
++msgstr ""
++
++#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
++#, python-format
++msgid "Port %s/%s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1061
++#, python-format
++msgid "Could not query port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1072
++#, python-format
++msgid "Could not modify port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1085
++msgid "Could not list the ports"
++msgstr ""
++
++#: ../semanage/seobject.py:1101
++#, python-format
++msgid "Could not delete the port %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1118
++#, python-format
++msgid "Port %s/%s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1122
++#, python-format
++msgid "Could not delete port %s/%s"
++msgstr ""
++
++#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
++msgid "Could not list ports"
++msgstr ""
++
++#: ../semanage/seobject.py:1199
++msgid "SELinux Port Type"
++msgstr ""
++
++#: ../semanage/seobject.py:1199
++msgid "Proto"
++msgstr ""
++
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
++msgid "Port Number"
++msgstr ""
++
++#: ../semanage/seobject.py:1218
++msgid "Node Address is required"
++msgstr ""
++
++#: ../semanage/seobject.py:1233
++msgid "Unknown or missing protocol"
++msgstr ""
++
++#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
++#: ../semanage/seobject.py:1724
++msgid "SELinux Type is required"
++msgstr ""
++
++#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
++#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
++#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
++#: ../semanage/seobject.py:1728
++#, python-format
++msgid "Could not create key for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
++#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
++#, python-format
++msgid "Could not check if addr %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1262
++#, python-format
++msgid "Could not create addr for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
++#: ../semanage/seobject.py:1686
++#, python-format
++msgid "Could not create context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1272
++#, python-format
++msgid "Could not set mask for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1276
++#, python-format
++msgid "Could not set user in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1280
++#, python-format
++msgid "Could not set role in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1284
++#, python-format
++msgid "Could not set type in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1289
++#, python-format
++msgid "Could not set mls fields in addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1293
++#, python-format
++msgid "Could not set addr context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1297
++#, python-format
++msgid "Could not add addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
++#, python-format
++msgid "Addr %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1326
++#, python-format
++msgid "Could not query addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1336
++#, python-format
++msgid "Could not modify addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1364
++#, python-format
++msgid "Addr %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1368
++#, python-format
++msgid "Could not delete addr %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1380
++msgid "Could not deleteall node mappings"
++msgstr ""
++
++#: ../semanage/seobject.py:1394
++msgid "Could not list addrs"
++msgstr ""
++
++#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
++#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
++#, python-format
++msgid "Could not check if interface %s is defined"
++msgstr ""
++
 +#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s साठी फाइल संदर्भ निर्माण करता आला नाही"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s च्या फाइल संदर्भात प्रकार निर्धआरित करता आला नाही"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s साठी फाइल संदर्भ निर्धारित करता आला नाही"
--#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not create interface for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1470
++#, python-format
++msgid "Could not set user in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1474
++#, python-format
++msgid "Could not set role in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1478
++#, python-format
++msgid "Could not set type in interface context for %s"
++msgstr ""
++
 +#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s साठी फाइल संदर्भ जोडता आला नाही"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange किंवा seuser आवश्यक"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s साठी फाइल संदर्भ व्याख्यीत नाही"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s साठी फाइल संदर्भास प्रश्न करता आले नाही"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s साठी फाइल संदर्भात बदल करता आले नाही"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "फाइल संदर्भांची यादी करता आली नाही"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "फाइल संदर्भ नष्ट %s करता आला नाही"
--#: ../semanage/seobject.py:1592
++#, python-format
++msgid "Could not set mls fields in interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1487
++#, python-format
++msgid "Could not set interface context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1491
++#, python-format
++msgid "Could not set message context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1495
++#, python-format
++msgid "Could not add interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
++#, python-format
++msgid "Interface %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1522
++#, python-format
++msgid "Could not query interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1533
++#, python-format
++msgid "Could not modify interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1558
++#, python-format
++msgid "Interface %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1562
++#, python-format
++msgid "Could not delete interface %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1574
++msgid "Could not delete all interface  mappings"
++msgstr ""
++
 +#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s साठी फाइल संदर्भ धोरणात व्याख्यीत, नष्ट करता येणार नाही"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s साठी फाइल संदर्भ नष्ट करता आला नाही"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "फाइल संदर्भांची यादी करता आली नाही"
--#: ../semanage/seobject.py:1617
++msgid "Could not list interfaces"
++msgstr ""
++
 +#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "स्थानिक फाइल संदर्भांची यादी करता आली नाही"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "प्रकार"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "boolean %s व्याख्यीत आहे काय हे तपासता आले नाही"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "boolean %s व्याख्यीत नाही"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "फाइल संदर्भ %s ला प्रश्न करता आले नाही"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
++msgid "SELinux Interface"
++msgstr ""
++
++#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
++msgid "Context"
++msgstr ""
++
++#: ../semanage/seobject.py:1663
 +#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "तुम्ही मुल्य प्रविष्ट केलेच पाहिजे"
-+msgstr "तुम्ही खालिल मुल्य पैकी एक मुल्य प्रविष्ट केले पाहिजे: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
++msgid "Equivalence class for %s already exists"
++msgstr ""
++
++#: ../semanage/seobject.py:1669
 +#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "boolean %s नष्ट करता आले नाही"
-+msgstr "बूलीयन %s चे सक्रीय मुल्य निश्चित करू शकले नाही"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "boolean %s मध्ये बदल करता आले नाही"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "अयोग्य प्रकार %s: रेकॉर्ड %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "boolean %s धोरणात व्याख्यीत आहे, नष्ट करता येणार नाही"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "boolean %s नष्ट करता आले नाही"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "booleans ची यादी करता आली नाही"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "अपरिचीत"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "बंद"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "चालू"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux बूलीयन"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "वर्णन"
-@@ -945,7 +965,7 @@
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr "चूक!  शेल वैध नाही.\n"
-+msgstr "त्रुटी!  शेल वैध नाही.\n"
- #: ../newrole/newrole.c:509
- #, c-format
-@@ -953,59 +973,59 @@
- msgstr "पर्यावरण साफ करण्यास असमर्थ\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
++msgid "File spec %s conflicts with equivalency rule '%s %s'"
++msgstr ""
++
++#: ../semanage/seobject.py:1678
++#, python-format
++msgid "Equivalence class for %s does not exists"
++msgstr ""
++
++#: ../semanage/seobject.py:1692
++#, python-format
++msgid "Could not set user in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1696
++#, python-format
++msgid "Could not set role in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
++#, python-format
++msgid "Could not set mls fields in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1707
++msgid "Invalid file specification"
++msgstr ""
++
++#: ../semanage/seobject.py:1709
++msgid "File specification can not include spaces"
++msgstr ""
++
++#: ../semanage/seobject.py:1714
++#, python-format
++msgid ""
++"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
++msgstr ""
++
++#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
++#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
++#: ../semanage/seobject.py:1876
++#, python-format
++msgid "Could not check if file context for %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1745
++#, python-format
++msgid "Could not create file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1753
++#, python-format
++msgid "Could not set type in file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
++#: ../semanage/seobject.py:1822
++#, python-format
++msgid "Could not set file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1767
++#, python-format
++msgid "Could not add file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1781
++msgid "Requires setype, serange or seuser"
++msgstr ""
++
++#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
++#, python-format
++msgid "File context for %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1800
++#, python-format
++msgid "Could not query file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1826
++#, python-format
++msgid "Could not modify file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1839
++msgid "Could not list the file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1853
++#, python-format
++msgid "Could not delete the file context %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1878
++#, python-format
++msgid "File context for %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:1884
++#, python-format
++msgid "Could not delete file context for %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1899
++msgid "Could not list file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1903
++msgid "Could not list local file contexts"
++msgstr ""
++
++#: ../semanage/seobject.py:1936
++msgid "SELinux fcontext"
++msgstr ""
++
++#: ../semanage/seobject.py:1936
++msgid "type"
++msgstr ""
++
++#: ../semanage/seobject.py:1949
++msgid ""
++"\n"
++"SELinux Distribution fcontext Equivalence \n"
++msgstr ""
++
++#: ../semanage/seobject.py:1954
++msgid ""
++"\n"
++"SELinux Local fcontext Equivalence \n"
++msgstr ""
++
++#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
++#: ../semanage/seobject.py:2046
++#, python-format
++msgid "Could not check if boolean %s is defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
++#, python-format
++msgid "Boolean %s is not defined"
++msgstr ""
++
++#: ../semanage/seobject.py:1994
++#, python-format
++msgid "Could not query file context %s"
++msgstr ""
++
++#: ../semanage/seobject.py:1999
++#, python-format
++msgid "You must specify one of the following values: %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2004
++#, python-format
++msgid "Could not set active value of boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2007
++#, python-format
++msgid "Could not modify boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2025
++#, python-format
++msgid "Bad format %s: Record %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2048
++#, python-format
++msgid "Boolean %s is defined in policy, cannot be deleted"
++msgstr ""
++
++#: ../semanage/seobject.py:2052
++#, python-format
++msgid "Could not delete boolean %s"
++msgstr ""
++
++#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
++msgid "Could not list booleans"
++msgstr ""
++
++#: ../semanage/seobject.py:2104
++msgid "unknown"
++msgstr ""
++
++#: ../semanage/seobject.py:2117
++msgid "off"
++msgstr ""
++
++#: ../semanage/seobject.py:2117
++msgid "on"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "SELinux boolean"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "State"
++msgstr ""
++
++#: ../semanage/seobject.py:2131
++msgid "Default"
++msgstr ""
++
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
++msgid "Description"
++msgstr ""
++
++#: ../newrole/newrole.c:201
 +#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "क्षमता आरंभण्यात चूक, सोडत आहे.\n"
-+msgstr "क्षमता प्रारंभ करतेवेळी त्रुटी, रद्द करत आहे.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "क्षमता निर्धारित करण्यात चूक, सोडत आहे\n"
-+msgstr "क्षमता निर्धारित करण्यात त्रुटी, सोडत आहे\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr "KEEPCAPS निर्धारित करण्यात चूक, सोडत आहे\n"
-+msgstr "KEEPCAPS निर्धारित करण्यात त्रुटी, सोडत आहे\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr "क्षमता सोडण्यात चूक, सोडत आहे\n"
-+msgstr "क्षमता सोडण्यात त्रुटी, सोडत आहे\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
- #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr "uid बदलण्यात चूक, सोडत आहे.\n"
-+msgstr "uid बदलण्यात त्रुटी, सोडत आहे.\n"
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr "KEEPCAPS पुनःनिर्धारित करण्यात चूक, सोडत आहे\n"
-+msgstr "KEEPCAPS पुनःनिर्धारित करण्यात त्रुटी, सोडत आहे\n"
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "SETUID क्षमता सोडण्यात चूक, सोडत आहे\n"
-+msgstr "SETUID क्षमता सोडण्यात त्रुटी, सोडत आहे\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
- msgid "Error freeing caps\n"
--msgstr "caps मुक्त करण्यात चूक\n"
-+msgstr "caps मुक्त करण्यात त्रुटी\n"
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr "ऑडिट प्रणालीस जोडण्यात चूक\n"
-+msgstr "ऑडिट प्रणालीस जोडण्यात त्रुटी\n"
- #: ../newrole/newrole.c:707
- #, c-format
- msgid "Error allocating memory.\n"
--msgstr "स्मृती वाटपात चूक.\n"
-+msgstr "स्मृती वाटपात त्रुटी.\n"
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr "ऑडिट संदेश पाठवण्यात चूक.\n"
-+msgstr "ऑडिट संदेश पाठवण्यात त्रुटी.\n"
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
-@@ -1015,7 +1035,7 @@
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr "चूक!  %s उघडू शकलो नाही.\n"
-+msgstr "त्रुटी!  %s उघडू शकलो नाही.\n"
- #: ../newrole/newrole.c:771
- #, c-format
-@@ -1045,12 +1065,12 @@
- #: ../newrole/newrole.c:901
- #, c-format
- msgid "Error: multiple roles specified\n"
--msgstr "चूक: बहू भूमिका दर्शवल्या\n"
-+msgstr "त्रुटी: बहू भूमिका दर्शवल्या\n"
- #: ../newrole/newrole.c:909
- #, c-format
- msgid "Error: multiple types specified\n"
--msgstr "चूक: बहू प्रकार दर्शवले\n"
-+msgstr "त्रुटी: बहू प्रकार दर्शवले\n"
- #: ../newrole/newrole.c:916
- #, c-format
-@@ -1060,7 +1080,7 @@
- #: ../newrole/newrole.c:921
- #, c-format
- msgid "Error: multiple levels specified\n"
--msgstr "चूक: बहू स्तर दर्शवले\n"
-+msgstr "त्रुटी: बहू स्तर दर्शवले\n"
- #: ../newrole/newrole.c:931
- #, c-format
-@@ -1170,7 +1190,7 @@
- #: ../newrole/newrole.c:1314
- #, c-format
- msgid "Error allocating shell's argv0.\n"
--msgstr "शेलचा argv0 वाटण्यात चूक.\n"
-+msgstr "शेलचा argv0 वाटण्यात त्रुटी.\n"
- #: ../newrole/newrole.c:1346
- #, c-format
-@@ -1283,1683 +1303,2211 @@
- #: ../scripts/chcat:399
- #, c-format
- msgid "Options Error %s "
--msgstr "पर्याय चूक %s "
--
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "अनुवाद non-MLS मशीनींवर समर्थित नाहीत"
--
--#~ msgid "Boolean"
--#~ msgstr "बूलीयन"
--
--#~ msgid "all"
--#~ msgstr "सर्व"
--
--#~ msgid "Customized"
--#~ msgstr "इच्छिक"
--
--#~ msgid "File Labeling"
--#~ msgstr "फाइल लेबलींग"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "फाइल\n"
--#~ "संरचना"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "फाइल प्रकार"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "फाइल\n"
--#~ "प्रकार"
--
--#~ msgid "User Mapping"
--#~ msgstr "वापरकर्ता मॅपिंग"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "दाखलन\n"
--#~ "नाव"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "वापरकर्ता"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS क्षेत्र"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "'%s' दाखलन आवश्यक आहे"
--
--#~ msgid "Policy Module"
--#~ msgstr "करार घटक"
--
--#~ msgid "Module Name"
--#~ msgstr "घटकाचे नाव"
--
--#~ msgid "Version"
--#~ msgstr "आवृत्ती"
--
--#~ msgid "Disable Audit"
--#~ msgstr "ऑडीट अकार्यान्वीत करा"
--
--#~ msgid "Enable Audit"
--#~ msgstr "ऑडीट कार्यान्वीत करा"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "करार घटक दाखल करा"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux करार निर्माण साधन"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "SELinux वापरकर्ते व त्यावरील अनुप्रयोगांना मर्यादीत करण्यासाठी, हा साधनचा करार "
--#~ "रचना निर्माणासाठी केला जाउ शकतो.   \n"
--#~ "\n"
--#~ "साधन खालील निर्माण करतो:\n"
--#~ "जबरन फाइल प्रकार (te)\n"
--#~ "संवादपट फाइल (if)\n"
--#~ "फाइल संदर्भ फाइल (fc)\n"
--#~ "शेल स्क्रीप्ट (sh) - ज्याचा वापर करार संकलन व प्रतिष्ठापना करीता होतो. "
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "अनुप्रयोग/वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>अनुप्रयोग</b>"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "मानक Init डीमन असे डीमन जी बूटच्यावेळी init स्क्रीप्ट च्या मदतीने सुरुवात होते.  या "
--#~ "करीता /etc/rc.d/init.d मधील स्क्रीप्टची गरज लागते"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "मानक Init डीमन"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "इनटरनेट सेवा डीमन त्या डीमन आहेत जी xinetd च्या मदतीने सुरु होतात"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "इनटरनेट सेवा डीमन (inetd)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr "वेब अनुप्रयोग/Script (CGI) CGI स्क्रीप्ट वेब सर्वर (apache) द्वारे सुरुवात केलेले"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "वेब अनुप्रयोग/स्क्रीप्ट (CGI)"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "वापरकर्ता अनुप्रयोग ती अनुप्रयोग आहेत जी आपल्याला वापरकर्त्याकडून मर्यादीत "
--#~ "करतायेण्याजोगी वाटेल"
--
--#~ msgid "User Application"
--#~ msgstr "वापरकर्ता अनुप्रयोग"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>वापरकर्ता दाखलन</b>"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "सद्याचे वापरकर्ता दाखलन रेकॉर्ड संपादीत करा."
--
--#~ msgid "Existing User Roles"
--#~ msgstr "अस्तित्वातील वापरकर्ता भूमिका"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "हा वापरकर्ता मशीन वर दाखलन टर्मिनल किंवा दूरर्स्थ दाखलन द्वारे दाखलन करेल.  "
--#~ "मुलभूतरित्या वापरकर्ताकडे  setuid, संजाळ, su, sudo नसतील."
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "किमान टर्मिनल वापरकर्ता भूमिका"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "हा वापरकर्ता मशीनवर X किंवा टर्मिनल द्वारे दाखलन करू शकतो.  मुलभूतरित्या या "
--#~ "वापरकर्त्याकडे setuid नाही, संजाळ नाही, sudo नाही, su नाही"
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "किमान X Windows वापरकर्ता भूमिका"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, sudo नाही "
--#~ "सक्षम वापरकर्ता."
--
--#~ msgid "User Role"
--#~ msgstr "वापरकर्ता भूमिका"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, परंतु रूट "
--#~ "प्रशासक भूमिका करीता sudo करू शकणार वापरकर्ता"
--
--#~ msgid "Admin User Role"
--#~ msgstr "प्रशासक वापरकर्ता भूमिका"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>रूट वापरकर्ता</b>"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "वापरकर्ता प्रणालीवर रुट मध्ये जर प्रणालीचा प्रशासक स्वरूपी कार्यरत असल्यास, रूट "
--#~ "वापरकर्ता निवडा.  ह्या वापरकर्त्याला प्रणालीवर प्रत्यक्षरीत्या दाखल करता येणे शक्य "
--#~ "होणार नाही."
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "रूट प्रशासक वापरकर्ता पध्दती"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "अनुप्रयोग किंवा वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
--
--#~ msgid "Name"
--#~ msgstr "नाव"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "मर्यादीत एक्जीक्यूटेबेलाकरीता पूर्ण मार्ग प्रविष्ट करा."
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "मर्यदीत अनुप्रयोग किंवा वापरकर्ता भूमिका करीता एकमेव रीतीने नाव प्रविष्ट करा."
--
--#~ msgid "Executable"
--#~ msgstr "एक्जीक्यूटेबल"
--
--#~ msgid "Init script"
--#~ msgstr "Init स्क्रीप्ट"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "मर्यदीत अनुप्रयोग सुरू करण्याकरीता init स्क्रीप्ट मध्ये पूर्ण मार्ग प्रविष्ट करा."
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "इच्छिक बनविण्याजोगी वापरकर्ता भूमिका निवडा"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "या अनुप्रयोग क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा."
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "ह्या वापरकर्तास स्थानांतर कसे असावे ह्या करीता अतिरीक्त अनुप्रयोग क्षेत्र निवडा."
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "या क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "हा वापरकर्ता प्रशासकीय कामास कोणते क्षेत्र वापरेल ती क्षेत्र निवडा"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "हा वापरकर्तास प्रशासकीय क्षेत्र आपण निवडून द्या."
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "अनुप्रयोगास/वापरकर्ताच्या संपर्कात येत असलेल्या tcp पोर्ट ची यादी प्रविष्ट करा"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP पोर्ट</b>"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "मर्यादीत अनुप्रयोग/वापरकर्त्यास कुठल्याही udp पोर्ट शी बंधनकारक होण्यास परवानगी देतो"
--
--#~ msgid "All"
--#~ msgstr "सर्व"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "अनुप्रयोगास/वापरकर्त्यास bindresvport 0 सह हाक देण्यास परवानगी द्या. पोर्ट 600-"
--#~ "1024 शी बांधणी करीत आहे"
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
--#~ "पोर्ट क्षे त्राचीयादी प्रविष्ट करा. उदाहरण: 612, 650-660"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "अनारक्षीत पोर्ट (>1024)"
--
--#~ msgid "Select Ports"
--#~ msgstr "पोर्ट निवडा"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "अनुप्रयोगास/वापरकर्त्यास कुठल्याही udp पोर्ट > 1024 शी बंधनकारक होण्यास परवानगी देतो"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP पोर्टस्</b>"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "ह्या अनुप्रयोगास/वापरकर्ता संपर्कात येत असलेल्या संजाळ पोर्टची यादी प्रविष्ट करा"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत tcp पोर्ट किंवा "
--#~ "पोर्ट क्षेत्राची यादी प्रविष्ट करा.  उहारणार्थ: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
--#~ "पोर्ट क्षेत्राची यादी प्रविष्ट करा. उदाहरण: 612, 650-660"
--
--#~ msgid "Select common application traits"
--#~ msgstr "साधारणतः अनुप्रोगाचे विशेष गुणधर्म"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog संदेश लिहीतो\t"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp मध्ये तात्पूरती फाइल निर्माण/संपादीत करा"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "अधिप्रमाणन करीता Pam चा वापर करतो"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch किंवा getpw* कॉल वापरतो"
--
--#~ msgid "Uses dbus"
--#~ msgstr "dbus वापरतो"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "ऑडिट संदेश पाठवितो"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "टर्मिनलशी संवाद साधतो"
--
--#~ msgid "Sends email"
--#~ msgstr "ईमेल पाठवा"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "मर्यादीत अनुप्रयोगच्या नियंत्रणातील फाइल/संचयीका निवडा"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ह्या अनुप्रयोगास लागणाऱ्या \"लेखन\" करीता फाइल/संचयीका समाविष्ट करा. Pid फाइल, "
--#~ "लॉग फाइल, /var/lib फाइल ..."
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "मर्यदीत अनुप्रयोग/वापरकर्ता करीता बूलीयन जोडा/काढूण टाका"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
--
--#~ msgid "Policy Directory"
--#~ msgstr "करार संचयीका"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "निर्माण झालेल्या करार फाइल"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "हे साधन खालिल निर्माण करतो: \n"
--#~ "टाइप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रीप्ट(sh).\n"
--#~ "संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रीप्ट कार्यान्वीत "
--#~ "करा.  \n"
--#~ "आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
--#~ "avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
--#~ "te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
--#~ "करा.\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "हे साधन खालिल निर्माण करतो: \n"
--#~ "टाईप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रीप्ट(sh).\n"
--#~ "संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रीप्ट कार्यान्वीत "
--#~ "करा.  \n"
--#~ "आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
--#~ "avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
--#~ "te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
--#~ "करा.\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "बूलियन संवाद जोडा"
--
--#~ msgid "Boolean Name"
--#~ msgstr "बूलीयन नाव"
--
--#~ msgid "Role"
--#~ msgstr "भूमिका"
--
--#~ msgid "Existing_User"
--#~ msgstr "अस्तित्वातील_वापरकर्ता"
--
--#~ msgid "Application"
--#~ msgstr "अनुप्रयोग"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s संचयीका असायला हवी"
--
--#~ msgid "You must select a user"
--#~ msgstr "तुम्ही वापरकर्ता निवडला पाहिजे"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "कार्यान्वीत फाइल मर्यादीत करण्याकरीता निवडा."
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "init script फाइल मर्यादीत करण्याकरीता निवडा."
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "मर्यादीत अनुप्रयोगच्या नावी असलेले व त्यास लिहीतायेण्याजोगी असलेले संचयीका निवडा"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "टाइप %s_t आधिपासूनच सद्याचे करार मध्ये व्याख्यीत केले आहे.\n"
--#~ "तुम्हाला पुढे जायचे?"
--
--#~ msgid "Verify Name"
--#~ msgstr "नाव तपासा"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "विभाग %s.pp आधिपासूनच सद्याचे करार मध्ये दाखल केले आहे.\n"
--#~ "तुम्हाला नक्की पुढे जायचे?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "तुम्ही एक नाव प्रविष्ट केलेच पाहिजे"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "आपण एक्जीक्यूटेबल प्रविष्ट केलेच पाहिजे"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux संरचीत करा"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "पोर्टचे क्रमांकन किंवा क्रमांकाचे क्षेत्र 1 पासून %d पर्यंत असायला पाहिजे"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "मर्यादीत कार्यपद्धती/वापरकर्त्यास नाव प्रविष्ट केले पाहिजे"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER प्रकार परवानगीरहीत एक्झीक्यूटेबल नाही"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "फक्त DAEMON अनुप्रयोगच init स्क्रीप्टचा वापर करू शकतात"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog बूलीयन संख्या असली पाहिजे "
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER प्रकार आपोआप tmp प्रकार मिळते"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "आपल्या मर्यादीत कार्यपद्धतीकरीता एक्जीक्यूटेबेल मार्ग प्रविष्ट केलाच पाहिजे"
--
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "प्रकार सक्ती फाइल"
--
--#~ msgid "Interface file"
--#~ msgstr "संवादपट फाइल"
--
--#~ msgid "File Contexts file"
--#~ msgstr "फाइल संदर्भ फाइल"
--
--#~ msgid "Setup Script"
--#~ msgstr "संरचना स्क्रीप्ट"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux पोर्ट\n"
--#~ "प्रकार"
--
--#~ msgid "Protocol"
--#~ msgstr "प्रोटोकॉल"
--
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "स्थर"
--
--#~ msgid "Port"
--#~ msgstr "पोर्ट"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "पोर्ट क्रमांक \"%s\" वैध नाही.  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "दृश्य पहा"
--
--#~ msgid "Group View"
--#~ msgstr "संच दृश्य"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux सेवा सुरक्षा"
--
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct डीमन करीता SELinux सुरक्षा अकार्यन्वीत करा"
--
--#~ msgid "Admin"
--#~ msgstr "ऑडमीन"
--
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "सर्व डीमनना कोरफाइल्स लिहीण्याकरीता परवानगी द्या /"
--
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "अनिश्चित ttys ला वापरण्याची कार्यक्षमता सर्व डीमन्सला द्या"
--
--#~ msgid "User Privs"
--#~ msgstr "वापरकर्ता Privs"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#~ msgid "Memory Protection"
--#~ msgstr "स्मृता सुरक्षा द्या"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "जावा कार्यारत स्टॅकला परवानगी द्या"
--
--#~ msgid "Mount"
--#~ msgstr "आरोहण"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "कुठलिही फाइल आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "कुठलिही संचयीका आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
--
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer कार्यारत स्टॅकला परवानगी द्या"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh ला ssh-keysign कार्यरत करण्याकरीता परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "स्टॉफ SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "मर्यादीत SELinux वावरकर्ता खातींना फाइलला मुख्य संचयीका किंवा /tmp मध्ये कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#~ msgid "Network Configuration"
--#~ msgstr "संजाळ संरचना"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "संजळावर लेबल नसलेले पॅकेट प्रवाहीत करण्याकरीता परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "वापरकर्ता SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "unconfined_execmem करीता मर्यादीतला dyntrans करण्याकरीता परवानगी द्या"
--
--#~ msgid "Databases"
--#~ msgstr "डाटाबेसेस"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "mysql सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "postgres सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
--
--#~ msgid "XServer"
--#~ msgstr "XServer"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "X सहभागीय स्मृतीस लिहीण्याकरीता क्लाएंटला परवानगी द्या"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux वापरकर्ता खात्यांना मुख्य संचिकेत किंवा /tmp मध्ये फाइल्स कार्यान्वीत "
--#~ "करण्याकरीता परवानगी द्या"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "डीमनला NIS शी कार्यरत ठेवण्यास परवानगी द्या"
--
--#~ msgid "Web Applications"
--#~ msgstr "वेब अनुप्रयोग"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "स्टॉफ SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "वापरकर्ता SELinux वापरकर्तापासून  ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "मुख्य संचिकेत स्टॉफ वेब ब्राऊजरांना लिहीण्याकरीता परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "अमॅनडा करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "अमॅवीस करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "क्लस्टर सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "खालील अनुक्रमणिकेत अंतर्भूत वाचण्याकरीता cdrecord ला परवानगी द्या. nfs, samba, "
--#~ "काढूनठेवतायेण्याजोगी साधने, वापरकर्त्याचे टेंम व अविश्वासू मजकूर फाइल"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Cron"
--#~ msgstr "क्रॉन"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Printing"
--#~ msgstr "छपाई"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd बॅकएंड सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+msgstr "पर्याय त्रुटी %s "
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "बूलीयन"
++msgid "failed to set PAM_TTY\n"
++msgstr ""
 +
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "सर्व"
++#: ../newrole/newrole.c:290
++#, c-format
++msgid "newrole: service name configuration hashtable overflow\n"
++msgstr ""
 +
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "इच्छिक"
++#: ../newrole/newrole.c:300
++#, c-format
++msgid "newrole:  %s:  error on line %lu.\n"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "फाइल लेबलींग"
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "प्रत्यक्ष रूपी डीमन सुरू करण्याकरीता sysadm_t ला परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "एव्हलूशन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Games"
--#~ msgstr "खेळ"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "खेळांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "वेब ब्राउजर करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "थंडरबर्ड करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "फेचमेल करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Compatibility"
--#~ msgstr "सहत्व"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "माहीत असलेल्या ज्याचे उल्लंगन शक्य आहे परंतु सुरक्षाकारणास्तव भीती नसलेल्या गोष्टी ऑडीट "
--#~ "करू नका"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "यजमान डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "hplip डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd लॉगबदली करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD सेवा"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd उप डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Kerberos"
--#~ msgstr "केरबेरोस"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "मेलमॅन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "एव्हल्यूशन व थंडरबर्डला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "मोझीला ब्राउजरला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Name Service"
--#~ msgstr "नाव सेवा"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "संजाळ व्यवस्थापका करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Samba"
--#~ msgstr "सांबा"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "पूर्वपद करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "नियमीत वापरकर्त्यास pppd कार्यरत करण्याकरीता परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readhead करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "फाइल अ-मानक स्थानापासून (default_t) वाचण्याकरीता परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "डीमन एवजी inetd पासून ssh ला कार्यरत करण्यास परवानगी द्या"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "वापरकर्त्याच्ये nfs संचयीका सहभाग करण्यास Samba ला परवानगी द्या"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL अधिप्रमाणित सर्वर"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl अधिप्रमाणीत सर्वरला /etc/shadow वाचण्यास परवानगी द्या"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "स्मृती क्षेत्रास कार्यान्वीत व लिहीतायेण्याजोगी करण्यास X-Windows सर्वरला मॅप करण्याची "
--#~ "परवानगी द्या"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo व su प्रभावित मध्ये स्थानांतरीत होण्यास परवानगी देऊ नका"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "कुठल्याही कार्यपद्धतीस कर्नल घटक दाखल करण्यास परवानगी देऊ नका"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "कुठल्याही कार्यपद्धतीस कर्नल SELinux करार संपादीत करण्यास परवानगी देऊ नका"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
++#: ../newrole/newrole.c:439
++#, c-format
++msgid "cannot find valid entry in the passwd file.\n"
 +msgstr ""
-+"फाइल\n"
-+"संरचना"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
++
++#: ../newrole/newrole.c:450
++#, c-format
++msgid "Out of memory!\n"
 +msgstr ""
-+"Selinux\n"
-+"फाइल प्रकार"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
++
++#: ../newrole/newrole.c:455
++#, c-format
++msgid "Error!  Shell is not valid.\n"
 +msgstr ""
-+"फाइल\n"
-+"प्रकार"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "वापरकर्ता मॅपिंग"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
++
++#: ../newrole/newrole.c:512
++#, c-format
++msgid "Unable to clear environment\n"
 +msgstr ""
-+"दाखलन\n"
-+"नाव"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
++
++#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
++#, c-format
++msgid "Error changing uid, aborting.\n"
 +msgstr ""
-+"SELinux\n"
-+"वापरकर्ता"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
++
++#: ../newrole/newrole.c:612
++#, c-format
++msgid "Error resetting KEEPCAPS, aborting\n"
 +msgstr ""
-+"MLS/\n"
-+"MCS क्षेत्र"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "'%s' दाखलन आवश्यक आहे"
--#~ msgid "Spam Protection"
--#~ msgstr "स्पॅम सुरक्षा"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "करार घटक"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "घटकाचे नाव"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd ला मुख्य संचयीका प्रवेशास परवानगी द्या"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "आवृत्ती"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "स्पॅम निषक्रीयक डीमनाला संजाळ प्रवेशास परवानगी द्या"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "ऑडीट अकार्यान्वीत करा"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "ऑडीट कार्यान्वीत करा"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "करार घटक दाखल करा"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid डीमनला संजाळ प्रवेशास परवानगी द्या"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh दाखलनला sysadm_r:sysadm_t च्या स्वरूपास दाखलनास परवानगी द्या"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
++
++#: ../newrole/newrole.c:635
++#, c-format
++msgid "Error connecting to audit system.\n"
 +msgstr ""
-+"संदिप शेडमाके <sandeep.shedmake@gmail.com>, 2008, 2009; संदिप शेडमाके "
-+"<sshedmak@redhat.com> 2010."
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "staff_r वापरकर्त्यांना sysadm तील मुख्य संचयीका व वाचतायेण्याजोगी फाइल (जसे की ~/."
--#~ "bashrc) शोधण्यास परवानगी द्या"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"SELinux वापरकर्ते व त्यावरील अनुप्रयोगांना मर्यादीत करण्यासाठी, हा साधनचा करार रचना "
-+"निर्माणासाठी केला जाउ शकतो.   \n"
-+"\n"
-+"साधन खालील निर्माण करतो:\n"
-+"जबरन फाइल प्रकार (te)\n"
-+"संवादपट फाइल (if)\n"
-+"फाइल संदर्भ फाइल (fc)\n"
-+"शेल स्क्रिप्ट (sh) - ज्याचा वापर करार संकलन व प्रतिष्ठापना करीता होतो. "
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "अनुप्रयोग/वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
++#: ../newrole/newrole.c:641
++#, c-format
++msgid "Error allocating memory.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>अनुप्रयोग</b>"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "वैश्विक SSL मार्ग"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
++#: ../newrole/newrole.c:648
++#, c-format
++msgid "Error sending audit message.\n"
 +msgstr ""
-+"मानक Init डीमन असे डीमन जी बूटच्यावेळी init स्क्रिप्ट च्या मदतीने सुरुवात होते.  या "
-+"करीता /etc/rc.d/init.d मधील स्क्रिप्टची गरज लागते"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "मानक Init डीमन"
 +
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS प्रणाली डिमन"
++#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
++#, c-format
++msgid "Could not determine enforcing mode.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "इनटरनेट सेवा डीमन त्या डीमन आहेत जी xinetd च्या मदतीने सुरु होतात"
++#: ../newrole/newrole.c:699
++#, c-format
++msgid "Error!  Could not open %s.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "इनटरनेट सेवा डीमन (inetd)"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "stunnel डीमनला स्वतंत्ररीत्या, xinetd च्या बाहेर कार्यरत ठेवण्याची परवानगी द्या"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "वेब अनुप्रयोग/Script (CGI) CGI स्क्रिप्ट वेब सर्वर (apache) द्वारे सुरुवात केलेले"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "वेब अनुप्रयोग/स्क्रिप्ट (CGI)"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
++#: ../newrole/newrole.c:705
++#, c-format
++msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
 +msgstr ""
-+"वापरकर्ता अनुप्रयोग ती अनुप्रयोग आहेत जी आपल्याला वापरकर्त्याकडून मर्यादीत करतायेण्याजोगी "
-+"वाटेल"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "वापरकर्ता अनुप्रयोग"
 +
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>वापरकर्ता दाखलन</b>"
++#: ../newrole/newrole.c:715
++#, c-format
++msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "सद्याचे वापरकर्ता दाखलन रेकॉर्ड संपादीत करा."
++#: ../newrole/newrole.c:725
++#, c-format
++msgid "%s!  Could not set new context for %s\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "अस्तित्वातील वापरकर्ता भूमिका"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "प्रणाली क्रॉन कार्यांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++#: ../newrole/newrole.c:772
++#, c-format
++msgid "%s changed labels.\n"
 +msgstr ""
-+"हा वापरकर्ता मशीन वर दाखलन टर्मिनल किंवा दूरर्स्थ दाखलन द्वारे दाखलन करेल.  मुलभूतरित्या "
-+"वापरकर्ताकडे  setuid, संजाळ, su, sudo नसतील."
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "किमान टर्मिनल वापरकर्ता भूमिका"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
++
++#: ../newrole/newrole.c:778
++#, c-format
++msgid "Warning! Could not restore context for %s\n"
 +msgstr ""
-+"हा वापरकर्ता मशीनवर X किंवा टर्मिनल द्वारे दाखलन करू शकतो.  मुलभूतरित्या या "
-+"वापरकर्त्याकडे setuid नाही, संजाळ नाही, sudo नाही, su नाही"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "किमान X Windows वापरकर्ता भूमिका"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
++
++#: ../newrole/newrole.c:835
++#, c-format
++msgid "Error: multiple roles specified\n"
 +msgstr ""
-+"पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, sudo नाही "
-+"सक्षम वापरकर्ता."
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "वापरकर्ता भूमिका"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
++
++#: ../newrole/newrole.c:843
++#, c-format
++msgid "Error: multiple types specified\n"
 +msgstr ""
-+"पूर्ण संजाळ समर्थीत, स्थानांतरन विना पण setuid अनुप्रयोग नाही, su नाही, परंतु रूट "
-+"प्रशासक भूमिका करीता sudo करू शकणार वापरकर्ता"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "xinetd ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच त्या सेवाही जी क्षेत्र "
--#~ "स्थानांतर प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "प्रशासक वापरकर्ता भूमिका"
 +
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>रूट वापरकर्ता</b>"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "rc स्क्रीप्ट ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच rc स्क्रीप्ट द्वारे सुरुवात "
--#~ "केलेले कुठलेही डीमन जी क्षेत्र स्थानांतर प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++#: ../newrole/newrole.c:850
++#, c-format
++msgid "Sorry, -l may be used with SELinux MLS support.\n"
 +msgstr ""
-+"वापरकर्ता प्रणालीवर रुट मध्ये जर प्रणालीचा प्रशासक स्वरूपी कार्यरत असल्यास, रूट वापरकर्ता "
-+"निवडा.  ह्या वापरकर्त्याला प्रणालीवर प्रत्यक्षरीत्या दाखल करता येणे शक्य होणार नाही."
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm ला unconfined कार्यरत करण्यास परवानगी द्या"
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "रूट प्रशासक वापरकर्ता पध्दती"
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "अनुप्रयोग किंवा वापरकर्त्याची भूमिका मर्यादीत करण्याकरीता निवडा"
++#: ../newrole/newrole.c:855
++#, c-format
++msgid "Error: multiple levels specified\n"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "नाव"
++#: ../newrole/newrole.c:865
++#, c-format
++msgid "Error: you are not allowed to change levels on a non secure terminal \n"
++msgstr ""
++
++#: ../newrole/newrole.c:891
++#, c-format
++msgid "Couldn't get default type.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:901
++#, c-format
++msgid "failed to get new context.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:908
++#, c-format
++msgid "failed to set new role %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:915
++#, c-format
++msgid "failed to set new type %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:925
++#, c-format
++msgid "failed to build new range with level %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:930
++#, c-format
++msgid "failed to set new range %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:938
++#, c-format
++msgid "failed to convert new context to string\n"
++msgstr ""
++
++#: ../newrole/newrole.c:943
++#, c-format
++msgid "%s is not a valid context\n"
++msgstr ""
++
++#: ../newrole/newrole.c:950
++#, c-format
++msgid "Unable to allocate memory for new_context"
++msgstr ""
++
++#: ../newrole/newrole.c:976
++#, c-format
++msgid "Unable to obtain empty signal set\n"
++msgstr ""
++
++#: ../newrole/newrole.c:984
++#, c-format
++msgid "Unable to set SIGHUP handler\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1053
++#, c-format
++msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1070
++#, c-format
++msgid "failed to get old_context.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1077
++#, c-format
++msgid "Warning!  Could not retrieve tty information.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1098
++#, c-format
++msgid "error on reading PAM service configuration.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1133
++#, c-format
++msgid "newrole: incorrect password for %s\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1160
++#, c-format
++msgid "newrole: failure forking: %s"
++msgstr ""
++
++#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
++#, c-format
++msgid "Unable to restore tty label...\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
++#, c-format
++msgid "Failed to close tty properly\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1224
++#, c-format
++msgid "Could not close descriptors.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1251
++#, c-format
++msgid "Error allocating shell's argv0.\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1287
++#, c-format
++msgid "Unable to restore the environment, aborting\n"
++msgstr ""
++
++#: ../newrole/newrole.c:1298
++msgid "failed to exec shell\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:22
++#, c-format
++msgid "usage:  %s [-qi]\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:71
++#, c-format
++msgid "%s:  Policy is already loaded and initial load requested\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:80
++#, c-format
++msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
++msgstr ""
++
++#: ../load_policy/load_policy.c:90
++#, c-format
++msgid "%s:  Can't load policy:  %s\n"
++msgstr ""
++
++#: ../scripts/chcat:92 ../scripts/chcat:169
++msgid "Requires at least one category"
++msgstr ""
++
++#: ../scripts/chcat:106 ../scripts/chcat:183
++#, c-format
++msgid "Can not modify sensitivity levels using '+' on %s"
++msgstr ""
++
++#: ../scripts/chcat:110
++#, c-format
++msgid "%s is already in %s"
++msgstr ""
++
++#: ../scripts/chcat:188 ../scripts/chcat:198
++#, c-format
++msgid "%s is not in %s"
++msgstr ""
++
++#: ../scripts/chcat:267 ../scripts/chcat:272
++msgid "Can not combine +/- with other types of categories"
++msgstr ""
++
++#: ../scripts/chcat:319
++msgid "Can not have multiple sensitivities"
++msgstr ""
++
++#: ../scripts/chcat:325
++#, c-format
++msgid "Usage %s CATEGORY File ..."
++msgstr ""
++
++#: ../scripts/chcat:326
++#, c-format
++msgid "Usage %s -l CATEGORY user ..."
++msgstr ""
++
++#: ../scripts/chcat:327
++#, c-format
++msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
++msgstr ""
++
++#: ../scripts/chcat:328
++#, c-format
++msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
++msgstr ""
++
++#: ../scripts/chcat:329
++#, c-format
++msgid "Usage %s -d File ..."
++msgstr ""
++
++#: ../scripts/chcat:330
++#, c-format
++msgid "Usage %s -l -d user ..."
++msgstr ""
++
++#: ../scripts/chcat:331
++#, c-format
++msgid "Usage %s -L"
++msgstr ""
++
++#: ../scripts/chcat:332
++#, c-format
++msgid "Usage %s -L -l user"
++msgstr ""
++
++#: ../scripts/chcat:333
++msgid "Use -- to end option list.  For example"
++msgstr ""
++
++#: ../scripts/chcat:334
++msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
++msgstr ""
++
++#: ../scripts/chcat:335
++msgid "chcat -l +CompanyConfidential juser"
++msgstr ""
++
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
++msgid "Options Error %s "
++msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++#, fuzzy
++msgid "all"
++msgstr "Allens"
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++#, fuzzy
++msgid "User Mapping"
++msgstr "Brukerprogramm"
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
++
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
++
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
++
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
++
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
++
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
++
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
++
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
++
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
++
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr "Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>"
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:177
++#, fuzzy
++msgid "<b>Applications</b>"
++msgstr "Netprogramme"
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
++
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
++
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
++
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++#, fuzzy
++msgid "Web Application/Script (CGI)"
++msgstr "Netprogramme"
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr "Brukerprogramm"
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
++
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "मर्यादीत एक्जीक्यूटेबेलाकरीता पूर्ण मार्ग प्रविष्ट करा."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr "..."
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "मर्यदीत अनुप्रयोग किंवा वापरकर्ता भूमिका करीता एकमेव रीतीने नाव प्रविष्ट करा."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "एक्जीक्यूटेबल"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init स्क्रिप्ट"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "अधिकार असेले अपअनुप्रयोग जसे hotplug व insmod ला unconfined कार्यरत करण्याकरीता "
--#~ "परवानगी द्या"
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "मर्यदीत अनुप्रयोग सुरू करण्याकरीता init स्क्रिप्ट मध्ये पूर्ण मार्ग प्रविष्ट करा."
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "इच्छिक बनविण्याजोगी वापरकर्ता भूमिका निवडा"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "या अनुप्रयोग क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा."
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "ह्या वापरकर्तास स्थानांतर कसे असावे ह्या करीता अतिरीक्त अनुप्रयोग क्षेत्र निवडा."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "या क्षेत्र करीता स्थानांतरन करण्याजोगी वापरकर्ता भूमिका निवडा"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "हा वापरकर्ता प्रशासकीय कामास कोणते क्षेत्र वापरेल ती क्षेत्र निवडा"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "हा वापरकर्तास प्रशासकीय क्षेत्र आपण निवडून द्या."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "स्थानांतरन करीता अतिरीक्त वापरकर्ता क्षेत्र निवडा"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "अनुप्रयोगास/वापरकर्ताच्या संपर्कात येत असलेल्या tcp पोर्ट ची यादी प्रविष्ट करा"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP पोर्ट</b>"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "sysadm_r via su, sudo, किंवा userhelper पर्यंत पोहचण्यास user_r ला परवानगी "
--#~ "द्या. किंवा, फक्त staff_r हे करू शकतो"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"मर्यादीत अनुप्रयोग/वापरकर्त्यास कुठल्याही udp पोर्ट शी बंधनकारक होण्यास परवानगी देतो"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "वापरकर्त्यांना mount आदेश कार्यरत करण्यास परवानगी द्या"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "सर्व"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "नियमीत वापरकर्त्यांना प्रत्यक्षरुपी माउस प्रवेशास परवानगी द्या (फक्त X सर्वरला "
--#~ "परवानगी द्या)"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++msgstr "Allens"
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"अनुप्रयोगास/वापरकर्त्यास bindresvport 0 सह हाक देण्यास परवानगी द्या. पोर्ट 600-1024 "
-+"शी बांधणी करीत आहे"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "वापरकर्त्यांना dmesg आदेश कार्यरत करण्यास परवानगी द्या"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "वापरकर्त्यांना संजाळ संवादपट नियंत्रीत करण्यास परवानगी द्या (ह्याचीही गरज असते "
--#~ "USERCTL=true)"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
-+"पोर्ट क्षे त्राचीयादी प्रविष्ट करा. उदाहरण: 612, 650-660"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "साधारण वापरकर्त्यास ping कार्यरत करण्यास परवानगी द्या"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "अनारक्षीत पोर्ट (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "पोर्ट निवडा"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY) करीता वापरकर्त्यास परवानगी द्या"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"अनुप्रयोगास/वापरकर्त्यास कुठल्याही udp पोर्ट > 1024 शी बंधनकारक होण्यास परवानगी देतो"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "usb साधन rw करण्याकरीता वापरकर्त्यांना परवानगी द्या"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP पोर्टस्</b>"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "TCP सर्वर कार्यरत करण्याकरीता वापरकर्त्यांना परवानगी द्या (पोर्टशी बंधनकारक व आतील "
--#~ "क्षेत्रातून व बाहेरील वापरकर्त्यांकडून संपर्क स्वीकारतो)  याला असमर्थित केल्यास FTP "
--#~ "निषक्रीय माध्यमात जातो व इतर प्रोटोकॉलही बदलू शकतात"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "ह्या अनुप्रयोगास/वापरकर्ता संपर्कात येत असलेल्या संजाळ पोर्टची यादी प्रविष्ट करा"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "वापरकर्त्याला ttyfiles stat करण्याकरीता परवानगी द्या"
-+#: ../gui/polgen.glade:1958
++msgstr ""
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत tcp पोर्ट किंवा "
-+"पोर्ट क्षेत्राची यादी प्रविष्ट करा.  उहारणार्थ: 612, 650-660"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"ह्या अनुप्रयोगास/वापरकर्तास संपर्कात येत असलेल्या स्वल्पविराम विभाजीत udp पोर्ट किंवा "
-+"पोर्ट क्षेत्राची यादी प्रविष्ट करा. उदाहरण: 612, 650-660"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "साधारणतः अनुप्रोगाचे विशेष गुणधर्म"
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog संदेश लिहीतो\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp मध्ये तात्पूरती फाइल निर्माण/संपादीत करा"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "अधिप्रमाणन करीता Pam चा वापर करतो"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch किंवा getpw* कॉल वापरतो"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus वापरतो"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "ऑडिट संदेश पाठवितो"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "टर्मिनलशी संवाद साधतो"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ईमेल पाठवा"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "मर्यादीत अनुप्रयोगच्या नियंत्रणातील फाइल/संचयीका निवडा"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"ह्या अनुप्रयोगास लागणाऱ्या \"लेखन\" करीता फाइल/संचयीका समाविष्ट करा. Pid फाइल, लॉग "
-+"फाइल, /var/lib फाइल ..."
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "मर्यदीत अनुप्रयोग/वापरकर्ता करीता बूलीयन जोडा/काढूण टाका"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "करार संचयीका"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "निर्माण झालेल्या करार फाइल"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"हे साधन खालिल निर्माण करतो: \n"
-+"टाइप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रिप्ट(sh).\n"
-+"संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रिप्ट कार्यान्वीत करा.  \n"
-+"आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
-+"avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
-+"te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
-+"करा.\n"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm दाखलनाला sysadm_r:sysadm_t रूपी परवानगी द्या"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"हे साधन खालिल निर्माण करतो: \n"
-+"टाईप ऐंफोर्समेंट (te), फाइल संदर्भ(fc), संवाद(if), शेल स्क्रिप्ट(sh).\n"
-+"संकलन/प्रतिष्ठापन व फाइल/संचयीका पुन्हा लेबल करण्याकरीता शेल स्क्रिप्ट कार्यान्वीत करा.  \n"
-+"आता तुम्ही प्रणाली परवांगीक माध्यमात ठेवू शकता (setenforce 0). \n"
-+"avc संदेश निर्माण करण्याकरीता अनुप्रयोग कार्यान्वीत/पुन्हा चालू करा.\n"
-+"te फाइल करीता अतिरीक्त नियमावली निर्माण करण्याकरीता audit2allow -R चा वापर "
-+"करा.\n"
-+
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "बूलियन संवाद जोडा"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "बूलीयन नाव"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "भूमिका"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "अस्तित्वातील_वापरकर्ता"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++#, fuzzy
 +msgid "Application"
-+msgstr "अनुप्रयोग"
++msgstr "Brukerprogramm"
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s संचयीका असायला हवी"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "तुम्ही वापरकर्ता निवडला पाहिजे"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "कार्यान्वीत फाइल मर्यादीत करण्याकरीता निवडा."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "init script फाइल मर्यादीत करण्याकरीता निवडा."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "मर्यादीत अनुप्रयोगच्या द्वारे निर्मीत किंवा लिखीत फाइल निवडा"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "मर्यादीत अनुप्रयोगच्या नावी असलेले व त्यास लिहीतायेण्याजोगी असलेले संचयीका निवडा"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "यात करार फाइल बनविण्याकरीता संचयीका निवडा"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"टाइप %s_t आधिपासूनच सद्याचे करार मध्ये व्याख्यीत केले आहे.\n"
-+"तुम्हाला पुढे जायचे?"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "नाव तपासा"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen ला डीस्क ड्राइव्ह साधन वाचण्यास/लिहीण्यास परवानगी द्या"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"विभाग %s.pp आधिपासूनच सद्याचे करार मध्ये दाखल केले आहे.\n"
-+"तुम्हाला नक्की पुढे जायचे?"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "तुम्ही एक नाव प्रविष्ट केलेच पाहिजे"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen constrol करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "आपण एक्जीक्यूटेबल प्रविष्ट केलेच पाहिजे"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux संरचीत करा"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS गुप्तशब्द डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "पोर्ट 1 ते %d पर्यंतची संख्या किंवा संख्याचे क्षेत्र असायला हवे "
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "मर्यादीत कार्यपद्धती/वापरकर्त्यास नाव प्रविष्ट केले पाहिजे"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS सथानांतर डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER प्रकार परवानगीरहीत एक्झीक्यूटेबल नाही"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका नियंत्रण करण्याची "
--#~ "परवानगी द्या"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "फक्त DAEMON अनुप्रयोगच init स्क्रिप्टचा वापर करू शकतात"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका वाचण्यास परवानगी "
--#~ "द्या"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog बूलीयन संख्या असली पाहिजे "
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "तुम्हाला नक्की %s '%s' काढून टाकायचे?"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER प्रकार यांस आपोआप tmp संदर्भ लागू होतो"
--#~ msgid "Delete %s"
--#~ msgstr "%s काढून टाका"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "आपल्या मर्यादीत कार्यपद्धतीकरीता एक्जीक्यूटेबेल मार्ग प्रविष्ट केलाच पाहिजे"
--#~ msgid "Add %s"
--#~ msgstr "%s समाविष्ट करा"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Type Enforcement फाइल"
--#~ msgid "Modify %s"
--#~ msgstr "%s संपादीत करा"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "संवाद फाइल"
--#~ msgid "Permissive"
--#~ msgstr "परवानगीक"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "फाइल संदर्भ फाइल"
--#~ msgid "Enforcing"
--#~ msgstr "जबरदस्तीरीत्या"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "स्क्रिप्ट संयोजीत करा"
--#~ msgid "Disabled"
--#~ msgstr "अकार्यान्वीत"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "जाळ पोर्ट"
--#~ msgid "Status"
--#~ msgstr "स्तिथी"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux पोर्ट\n"
-+"प्रकार"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "करारचा प्रकार बदल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज पडेल. "
--#~ "फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी आपल्या "
--#~ "पुढे जायचे आहे का?"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "शिष्टाचार"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "अकार्यनवीत SELinux वर स्थानांतर करतेवेळी पुन्हा बूटची गरज पडते. असे करणे योग्य नाही व "
--#~ "सुचवीलेही जात नाही.  पुढे SELinux वापरण्याचा फेरविचार केल्यास, प्रणालीस पुन्हा लेबल "
--#~ "करण्याची गरज पडेल.  SELinux मुळे आपल्या प्रणालीवर काही अडचन निर्माण होते का, हे "
--#~ "अनुभवण्यास परवानगीक माध्यमात जावे ज्याने फक्त त्रूटीची लॉग तयार होईल व SELinux "
--#~ "करारचे उल्लंगन होणार नाही.  परवानगीक माध्यमाला पुन्हा बूट करायची गरज पडत नाही    "
--#~ "तरी आपल्याला पुढे जायचे आहे का?"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"स्तर"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux समर्थित बदल केल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज "
--#~ "पडेल. फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी "
--#~ "आपल्या पुढे जायचे आहे का?"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "पोर्ट"
++msgstr "Port"
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "पोर्ट क्रमांक \"%s\" वैध नाही.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "दृश्य पहा"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "संच दृश्य"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -163279,26 +160546,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux सेवा सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct डीमन करीता SELinux सुरक्षा अकार्यन्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "ऑडमीन"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "सर्व डीमनना कोरफाइल्स लिहीण्याकरीता परवानगी द्या /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "अनिश्चित ttys ला वापरण्याची कार्यक्षमता सर्व डीमन्सला द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -163307,175 +160574,111 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "वापरकर्ता Privs"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux वापरकर्ता खाते यांस मुख्य संचयीका किंवा /tmp अंतर्गत फाइल कार्यान्वीत "
-+"करण्याकरीता परवानगी द्या"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "प्रतिकृती अधिकार (c)2006 Red Hat, Inc.\n"
--#~ "प्रतिकृती अधिकार (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"SELinux वापरकर्ता खाते यांस मुख्य संचयीका किंवा /tmp अंतर्गत फाइल कार्यान्वीत "
-+"करण्याकरीता परवानगी द्या"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux दाखलन मॅपिंग समाविष्टीत करा"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "स्मृता सुरक्षा द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "जावा कार्यारत स्टॅकला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "आरोहण"
++msgstr "Inbinnen"
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "कुठलिही फाइल आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "कुठलिही संचयीका आरोहीत करण्याकरीता आरोहणास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "mplayer कार्यारत स्टॅकला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh ला ssh-keysign कार्यरत करण्याकरीता परवानगी द्या"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux संजाळ पोर्ट समाविष्टीत करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"स्टॉफ SELinux वापरकर्ता खाते यांस मुख्य संचयीका किंवा /tmp अंतर्गत फाइल कार्यान्वीत "
-+"करण्याकरीता परवानगी द्या"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux प्रकार"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"SELinux वापरकर्ता खात्यांना मुख्य संचयीका किंवा /tmp अंतर्गत फाइल कार्यान्वीत "
-+"करण्याकरीता परवानगी द्या"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"अमर्यादीत SELinux वावरकर्ता खाते करीता मुख्य संचयीका किंवा /tmp अंतर्गत फाइल "
-+"कार्यान्वीत करण्याकरीता परवानगी द्या"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "स्थर"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "संजाळ संरचना"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "संजळावर लेबल नसलेले पॅकेट प्रवाहीत करण्याकरीता परवानगी द्या"
--#~ msgid "File Specification"
--#~ msgstr "फाइल गुणधर्म"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"SELinux वापरकर्ता खात्यांना मुख्य संचयीका किंवा /tmp अंतर्गत फाइल कार्यान्वीत "
-+"करण्याकरीता परवानगी द्या"
--#~ msgid "File Type"
--#~ msgstr "फाइल प्रकार"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "unconfined_execmem करीता मर्यादीतला dyntrans करण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "डाटाबेसेस"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "mysql सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "postgres सॉकेटला जोडण्याकरीता वापरकर्त्याला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "X सहभागीय स्मृतीस लिहीण्याकरीता क्लाएंटला परवानगी द्या"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "सर्व फाइल\n"
--#~ "नियमीत फाइल\n"
--#~ "संचयीका\n"
--#~ "अक्षरी साधन\n"
--#~ "ब्लॉक साधन\n"
--#~ "सॉकेट\n"
--#~ "संकेतीक लींक\n"
--#~ "नामांकीत पाइप\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux वापरकर्ता खाते यांस मुख्य संचयीका मध्ये किंवा /tmp अंतर्गत फाइल "
-+"कार्यान्वीत करण्याकरीता परवानगी द्या"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
@@ -163483,7 +160686,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "डीमनला NIS शी कार्यरत ठेवण्यास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -163491,142 +160694,136 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "वेब अनुप्रयोग"
++msgstr "Netprogramme"
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "स्टॉफ SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "वापरकर्ता SELinux वापरकर्तापासून  ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux वापरकर्तापासून ते वेब ब्राऊजर क्षेत्रामध्ये स्थानांतर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "मुख्य संचिकेत स्टॉफ वेब ब्राऊजरांना लिहीण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "अमॅनडा करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "अमॅवीस करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "क्लस्टर सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux वापरकर्ता समाविष्टीत करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"खालील अनुक्रमणिकेत अंतर्भूत वाचण्याकरीता cdrecord ला परवानगी द्या. nfs, samba, "
-+"काढूनठेवतायेण्याजोगी साधने, वापरकर्त्याचे टेंम व अविश्वासू मजकूर फाइल"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux प्रशासन"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "क्रॉन"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "छपाई"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd बॅकएंड सर्वर करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
@@ -163634,115 +160831,115 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccm करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "प्रत्यक्ष रूपी डीमन सुरू करण्याकरीता sysadm_t ला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "एव्हलूशन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "खेळ"
++msgstr "Speele"
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "खेळांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "वेब ब्राउजर करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "थंडरबर्ड करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "फेचमेल करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
@@ -163750,256 +160947,250 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "सहत्व"
--#~ msgid "Add"
--#~ msgstr "समाविष्ट"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"माहीत असलेल्या ज्याचे उल्लंगन शक्य आहे परंतु सुरक्षाकारणास्तव भीती नसलेल्या गोष्टी ऑडीट करू "
-+"नका"
--#~ msgid "_Properties"
--#~ msgstr "गुणधर्म (_P)"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "यजमान डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "hplip डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd लॉगबदली करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD सेवा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd उप डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "केरबेरोस"
++msgstr "Kerberos"
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "मेलमॅन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "एव्हल्यूशन व थंडरबर्डला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "मोझीला ब्राउजरला वापरकर्त्याचे फाइल वाचण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "नाव सेवा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "संजाळ व्यवस्थापका करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "सांबा"
++msgstr "Samba"
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "पूर्वपद करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
@@ -164007,83 +161198,83 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "नियमीत वापरकर्त्यास pppd कार्यरत करण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "prelink डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readhead करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "फाइल अ-मानक स्थानापासून (default_t) वाचण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricci करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
@@ -164091,114 +161282,108 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "डीमन एवजी inetd पासून ssh ला कार्यरत करण्यास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "वापरकर्त्याच्ये nfs संचयीका सहभाग करण्यास Samba ला परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL अधिप्रमाणित सर्वर"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl अधिप्रमाणीत सर्वरला /etc/shadow वाचण्यास परवानगी द्या"
--#~ msgid "_Delete"
--#~ msgstr "काढून टाका (_D)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"स्मृती क्षेत्रास कार्यान्वीत व लिहीतायेण्याजोगी करण्यास X-Windows सर्वरला मॅप करण्याची "
-+"परवानगी द्या"
--#~ msgid "Select Management Object"
--#~ msgstr "व्यवस्थापन वस्तू निवडा"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo व su प्रभावित मध्ये स्थानांतरीत होण्यास परवानगी देऊ नका"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "कुठल्याही कार्यपद्धतीस कर्नल घटक दाखल करण्यास परवानगी देऊ नका"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "कुठल्याही कार्यपद्धतीस कर्नल SELinux करार संपादीत करण्यास परवानगी देऊ नका"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setrans डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "स्पॅम सुरक्षा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "spamd ला मुख्य संचयीका प्रवेशास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "स्पॅम निषक्रीयक डीमनाला संजाळ प्रवेशास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
@@ -164206,340 +161391,258 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squid डीमनला संजाळ प्रवेशास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh दाखलनला sysadm_r:sysadm_t च्या स्वरूपास दाखलनास परवानगी द्या"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>निवडा:</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r वापरकर्त्यांना sysadm तील मुख्य संचयीका व वाचतायेण्याजोगी फाइल (जसे की ~/."
-+"bashrc) शोधण्यास परवानगी द्या"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "प्रणाली मुलभूत जबरन माध्यम"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "वैश्विक SSL मार्ग"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel डीमनला स्वतंत्ररीत्या, xinetd च्या बाहेर कार्यरत ठेवण्याची परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "प्रणाली क्रॉन कार्यांकरीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "spamd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "सध्याचे जबरन माध्यम"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच त्या सेवाही जी क्षेत्र स्थानांतर "
-+"प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "प्रणाली मुलभूत करार प्रकार: "
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"rc स्क्रिप्ट ला अमर्यादीतरीत्या कार्यरत ठेवण्याकरीता, व तसेच rc स्क्रिप्ट द्वारे सुरुवात केलेले "
-+"कुठलेही डीमन जी क्षेत्र स्थानांतर प्रत्यक्षरूपी निश्चीत नाही त्यांनाही परवानगी द्या"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "पुढच्या बूट पर्यंत पूर्ण फाइल प्रणालीस पुनः लेबेल करायचे असल्यास निवडा.  प्रणालीच्या "
--#~ "आकारावरून, पुनः लेबलीगला बराच वेळ लागू शकतो.  कराराचे प्रकार बदलत असल्यास किंवा "
--#~ "अकार्यन्वीत पासून जबरन पर्यंत जात असल्यास, पुनः लेबलची गरज पडेल."
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm ला unconfined कार्यरत करण्यास परवानगी द्या"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "पुढच्या पुनः बूटवेळी लेबल करा."
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"अधिकार असेले अपअनुप्रयोग जसे hotplug व insmod ला unconfined कार्यरत करण्याकरीता "
-+"परवानगी द्या"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "प्रणाली मुलभूत करीता बूलीयन संयोजना पुन्हा स्थापीत करा"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "इच्छिक व सर्व बूलीयन अंतर्गत टॉगल करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"sysadm_r via su, sudo, किंवा userhelper पर्यंत पोहचण्यास user_r ला परवानगी द्या. "
-+"किंवा, फक्त staff_r हे करू शकतो"
--#~ msgid "Filter"
--#~ msgstr "फिल्टर"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "वापरकर्त्यांना mount आदेश कार्यरत करण्यास परवानगी द्या"
--#~ msgid "Add File Context"
--#~ msgstr "फाइल संदर्भ समाविष्ट करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"नियमीत वापरकर्त्यांना प्रत्यक्षरुपी माउस प्रवेशास परवानगी द्या (फक्त X सर्वरला परवानगी "
-+"द्या)"
--#~ msgid "Modify File Context"
--#~ msgstr "फाइल संदर्भ संपादीत करा"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "वापरकर्त्यांना dmesg आदेश कार्यरत करण्यास परवानगी द्या"
--#~ msgid "Delete File Context"
--#~ msgstr "फाइल संदर्भ काढून टाका"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"वापरकर्त्यांना संजाळ संवादपट नियंत्रीत करण्यास परवानगी द्या (ह्याचीही गरज असते "
-+"USERCTL=true)"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "सर्व व इच्छिक फाइल संदर्भ अंतर्गत टॉगल करा"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "साधारण वापरकर्त्यास ping कार्यरत करण्यास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY) करीता वापरकर्त्यास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "usb साधन rw करण्याकरीता वापरकर्त्यांना परवानगी द्या"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux वापरकर्ता मॅपिंग समाविष्टीत करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"TCP सर्वर कार्यरत करण्याकरीता वापरकर्त्यांना परवानगी द्या (पोर्टशी बंधनकारक व आतील "
-+"क्षेत्रातून व बाहेरील वापरकर्त्यांकडून संपर्क स्वीकारतो)  याला असमर्थित केल्यास FTP निषक्रीय "
-+"माध्यमात जातो व इतर प्रोटोकॉलही बदलू शकतात"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "वापरकर्त्याला ttyfiles stat करण्याकरीता परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm दाखलनाला sysadm_r:sysadm_t रूपी परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen ला डीस्क ड्राइव्ह साधन वाचण्यास/लिहीण्यास परवानगी द्या"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen constrol करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS गुप्तशब्द डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS सथानांतर डीमन करीता SELinux सुरक्षा अकार्यान्वीत करा"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux वापरकर्ता मॅपिंग संपादीत करा"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका नियंत्रण करण्याची "
-+"परवानगी द्या"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux वापरकर्ता मॅपिंग काढून टाकत आहे"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"SELinux webadm वापरकर्त्यास अधिकार विना वापरकर्ता मुख्य संचयीका वाचण्यास परवानगी द्या"
--#~ msgid "Add Translation"
--#~ msgstr "भाषांतरन समाविष्ट करा"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "तुम्हाला नक्की %s '%s' काढून टाकायचे?"
--#~ msgid "Modify Translation"
--#~ msgstr "भाषांतरन संपादित करा"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%s काढून टाका"
--#~ msgid "Delete Translation"
--#~ msgstr "भाषांतरने काढून टाका"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%s समाविष्ट करा"
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux वापरकर्ता संपादीत करा"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%s संपादीत करा"
--#~ msgid "Add Network Port"
--#~ msgstr "संजाळ पोर्ट समाविष्ट करा"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "परवानगीक"
--#~ msgid "Edit Network Port"
--#~ msgstr "संजाळ पोर्ट संपादित करा"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "जबरदस्तीरीत्या"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "बंद करणे"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "स्तिथी"
--#~ msgid "Delete Network Port"
--#~ msgstr "संजाळ पोर्ट काढून टाका"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"करारचा प्रकार बदल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज पडेल. "
-+"फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी आपल्या पुढे "
-+"जायचे आहे का?"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "इच्छिक व सर्व पोर्ट अंतर्गत टॉगल करा"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -164549,83 +161652,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"अकार्यनवीत SELinux वर स्थानांतर करतेवेळी पुन्हा बूटची गरज पडते. असे करणे योग्य नाही व "
-+"सुचवीलेही जात नाही.  पुढे SELinux वापरण्याचा फेरविचार केल्यास, प्रणालीस पुन्हा लेबल "
-+"करण्याची गरज पडेल.  SELinux मुळे आपल्या प्रणालीवर काही अडचन निर्माण होते का, हे "
-+"अनुभवण्यास परवानगीक माध्यमात जावे ज्याने फक्त त्रूटीची लॉग तयार होईल व SELinux करारचे "
-+"उल्लंगन होणार नाही.  परवानगीक माध्यमाला पुन्हा बूट करायची गरज पडत नाही    तरी "
-+"आपल्याला पुढे जायचे आहे का?"
--#~ msgid "Generate new policy module"
--#~ msgstr "नविन करार घटक निर्माण करा"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinux समर्थित बदल केल्यास पुढच्या बूटला पूर्प फाइल प्रणालीस पुन्हा लेबल करण्याजी गरज "
-+"पडेल. फाइल प्रणालीच्या आकारावर अवलंबून पुन्हा लेबल करायला बराच वेळ लागू शकतो.  तरी "
-+"आपल्या पुढे जायचे आहे का?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Load policy module"
--#~ msgstr "करार घटक दाखल करा"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"प्रतिकृती अधिकार (c)2006 Red Hat, Inc.\n"
-+"प्रतिकृती अधिकार (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "दाखलकरतायेण्याजोगी करार घटक काढून टाका"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux दाखलन मॅपिंग समाविष्टीत करा"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux संजाळ पोर्ट समाविष्टीत करा"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux प्रकार"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "अतिरीक ऑडीट नियम कार्यान्वीत/अकार्यान्वीत करा, ज्याचा अहवाल साधारणतः लॉग "
--#~ "फाइलमध्ये नसतो."
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"स्तर"
--#~ msgid "Sensitvity Level"
--#~ msgstr "संवेदनशीलतेचा स्थर"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "फाइल गुणधर्म"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "फाइल प्रकार"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux वापरकर्ता '%s' जरूरी आहे"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -164636,1920 +161703,2144 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"सर्व फाइल\n"
-+"नियमीत फाइल\n"
-+"संचयीका\n"
-+"अक्षरी साधन\n"
-+"ब्लॉक साधन\n"
-+"सॉकेट\n"
-+"संकेतीक लींक\n"
-+"नामांकीत पाइप\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux वापरकर्ता समाविष्टीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux प्रशासन"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "समाविष्ट"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "गुणधर्म (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "काढून टाका (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "व्यवस्थापन वस्तू निवडा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>निवडा:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "प्रणाली मुलभूत जबरन माध्यम"
--#~ msgid "Requires value"
--#~ msgstr "मूल्य आवश्यक"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"अकार्यान्वीत\n"
-+"परवानगीय\n"
-+"लागू केलेले\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "सध्याचे जबरन माध्यम"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "प्रणाली मुलभूत करार प्रकार: "
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"पुढच्या बूट पर्यंत पूर्ण फाइल प्रणालीस पुनः लेबेल करायचे असल्यास निवडा.  प्रणालीच्या "
-+"आकारावरून, पुनः लेबलीगला बराच वेळ लागू शकतो.  कराराचे प्रकार बदलत असल्यास किंवा "
-+"अकार्यन्वीत पासून जबरन पर्यंत जात असल्यास, पुनः लेबलची गरज पडेल."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "पुढच्या पुनः बूटवेळी लेबल करा."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "प्रणाली मुलभूत करीता बूलीयन संयोजना पुन्हा स्थापीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "इच्छिक व सर्व बूलीयन अंतर्गत टॉगल करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "बूलीयन कुलूपबंद कार्यक्रम चालवा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "कुलूपबंद..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "फिल्टर"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "फाइल संदर्भ समाविष्ट करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "फाइल संदर्भ संपादीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "फाइल संदर्भ काढून टाका"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "सर्व व इच्छिक फाइल संदर्भ अंतर्गत टॉगल करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux वापरकर्ता मॅपिंग समाविष्टीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux वापरकर्ता मॅपिंग संपादीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux वापरकर्ता मॅपिंग काढून टाकत आहे"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "वापरकर्ता समावेष करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "वापरकर्ता संपादीत करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "वापरकर्ता काढून टाका"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "भाषांतरन समावेश करा"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "भाषांतरन संपादित करा"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "भाषांतरन नष्ट करा"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "संजाळ पोर्ट समाविष्ट करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "संजाळ पोर्ट संपादित करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "संजाळ पोर्ट काढून टाका"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "इच्छिक व सर्व पोर्ट अंतर्गत टॉगल करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "नविन करार घटक निर्माण करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "करार घटक दाखल करा"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "दाखलकरतायेण्याजोगी करार घटक काढून टाका"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "अवैध पूर्वपद %s"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"अतिरीक ऑडीट नियम कार्यान्वीत/अकार्यान्वीत करा, ज्याचा अहवाल साधारणतः लॉग फाइलमध्ये "
-+"नसतो."
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "अनुप्रयोगास/वापरकर्त्यास कुठल्याही tcp पोर्ट > 1024 शी बंधनकारक होण्यास परवानगी देतो"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "मर्यादीत अनुप्रयोगास/वापरकर्त्यास कुठल्याही tcp पोर्टशी बंधनकारक होण्यास परवानगी देतो"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "प्रक्रिया पद्धत परवानगीय करा."
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ह्या अनुप्रयोगास बंधनकारक करण्याकरीता स्वल्पविराम विभाजीत tcp पोर्ट ची यादी "
--#~ "प्रविष्ट करा. Example: 612, 650-660"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "प्रक्रिया पद्धत जबरनरित्या लागू करा"
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux करार निर्माण ड्र्यूईड"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "प्रक्रिया क्षेत्र"
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "अनारक्षीत पोर्ट  (> 1024)"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "अनुप्रयोग 0 सह bindresvport ला कार्यास हाक देत असल्यास हा चेकबटन वापरा."
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux वापरकर्ता '%s' जरूरी आहे"
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "जबरन\n"
--#~ "परवानगीक\n"
--#~ "अकार्यान्वीत\n"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "संवेदनशीलता स्तर"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils-2.0.85/po/ms.po
---- nsapolicycoreutils/po/ms.po        2011-02-17 15:11:25.105735199 -0500
-+++ policycoreutils-2.0.85/po/ms.po    2011-02-18 16:03:41.385975861 -0500
-@@ -7,14 +7,34 @@
++msgstr ""
+diff --git a/policycoreutils/po/nl.po b/policycoreutils/po/nl.po
+index 64ba5d6..e32d403 100644
+--- a/policycoreutils/po/nl.po
++++ b/policycoreutils/po/nl.po
+@@ -1,20 +1,25 @@
+-# translation of policycoreutils to Dutch
+-# This file is distributed under the same license as the policycoreutils package.
+-# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
++# Translators:
++# Geert Warrink <geert.warrink@onsnet.nu>, 2009, 2010.
+ # Peter van Egdom <p.van.egdom@gmail.com>, 2006, 2007, 2008.
++# R.E. van der Luit <nippur@fedoraproject.org>, 2009.
+ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2007-07-27 23:11+0800\n"
- "Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
- "Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
-+"Language: ms\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-08-10 15:45+0200\n"
+-"Last-Translator: Peter van Egdom <p.van.egdom@gmail.com>\n"
+-"Language-Team: Dutch <vertaling@nl.linux.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Dutch (http://www.transifex.net/projects/p/fedora/language/"
++"nl/)\n"
+ "Language: nl\n"
  "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=utf-8\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "Jenis SELinux diperlukan"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "gagal baca fail menu:%s"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -124,7 +144,8 @@
- msgid "Level"
+@@ -23,7 +28,8 @@ msgid ""
+ "         <args ...> are the arguments to that script."
  msgstr ""
+ "GEBRUIK: run_init <script> <argumenten ...>\n"
+-"  waar: <script> de naam is van het init script dat moet worden uitgevoerd,\n"
++"  waarin: <script> de naam is van het init script dat moet worden "
++"uitgevoerd,\n"
+ "        <argumenten ...> de argumenten zijn voor dat script."
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+@@ -34,7 +40,7 @@ msgstr "initialiseren van PAM is mislukt\n"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "verkrijgen van account-informatie is mislukt\n"
++msgstr "verkrijgen van account informatie is mislukt\n"
  
-@@ -179,746 +200,753 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -43,7 +49,7 @@ msgstr "Wachtwoord:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "Kan uw item in het shadow passwd bestand niet vinden.\n"
++msgstr "Kan jouw ingang in het schaduw passwd bestand niet vinden.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+@@ -68,7 +74,7 @@ msgstr "Geen context in bestand %s\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr "Sorry, run_init mag alleen worden gebruikt op een SELinux kernel.\n"
++msgstr "Sorry, run_init mag alleen worden gebruikt met een SELinux kernel.\n"
+ #: ../run_init/run_init.c:380
+ #, c-format
+@@ -86,32 +92,31 @@ msgstr "******************** BELANGRIJK **********************\n"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr ""
++msgstr "Om dit tactiek pakket te activeren, voer uit:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "globaal"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+-msgstr ""
++msgstr "Kan semanage handle niet creëren"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "SELinux policy is niet beheerd of store kan niet worden benaderd."
++msgstr "SELinux tactiek is niet beheerd of krijg geen toegang tot opslag."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "Kan policy store niet lezen."
++msgstr "Kan tactiek opslag niet lezen."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "Kan semanage-connectie niet tot stand brengen"
++msgstr "Kan semanage verbinding niet tot stand brengen"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Kan MLS bereik niet instellen voor %s"
++msgstr "Kan MLS aangezet status niet testen"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -119,36 +124,35 @@ msgstr "Nog niet geïmplementeerd"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage transactie is al bezig"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+-msgstr "Kan semanage-transactie niet starten"
++msgstr "Kan semanage transactie niet starten"
+ #: ../semanage/seobject.py:274
+ msgid "Could not commit semanage transaction"
+-msgstr "Kan semanage-transactie niet uitvoeren"
++msgstr "Kan semanage transactie niet uitvoeren"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage transactie is niet bezig"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+ msgid "Could not list SELinux modules"
+ msgstr "Kan SELinux modules niet tonen"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Modulenaam"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versie"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Uitgezet"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+@@ -156,9 +160,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Kan rol %s niet toevoegen voor %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+@@ -170,24 +174,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, fuzzy, python-format
- msgid "Could not create a key for %s"
- msgstr "Tidak dapat mencipta konteks fail untuk %s"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissive soorten"
++msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, fuzzy, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Tidak dapat memeriksa jika konteks fail untuk %s telah dinyatakan"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissive soorten"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, fuzzy, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Tiada 'Mountpoints' dikenalpasti"
+ #: ../semanage/seobject.py:438
+ #, python-format
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "Kan toelatend domein %s niet instellen (module installatie mislukte)"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Partisyen Diminta Tidak Wujud"
+ #: ../semanage/seobject.py:444
+ #, python-format
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "Kan toelatend domein %s niet verwijderen (verwijderen mislukte)"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, fuzzy, python-format
- msgid "Linux User %s does not exist"
- msgstr "Partisyen Diminta Tidak Wujud"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -204,7 +206,7 @@ msgstr "Kan geen sleutel aanmaken voor %s"
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+ #, python-format
+ msgid "Could not check if login mapping for %s is defined"
+-msgstr "Kan niet controleren of login mapping voor %s is gedefinieerd"
++msgstr "Kan niet controleren of inlog afbeelding voor %s is gedefinieerd"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:492
+ #, python-format
+@@ -219,7 +221,7 @@ msgstr "Linux gebruiker %s bestaat niet"
+ #: ../semanage/seobject.py:501
+ #, python-format
  msgid "Could not create login mapping for %s"
- msgstr "Tidak dapat mencipta konteks fail untuk %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, fuzzy, python-format
- msgid "Could not set name for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
+-msgstr "Kan geen login mapping aanmaken voor %s"
++msgstr "Kan geen inlog afbeelding aanmaken voor %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+ #, python-format
+@@ -229,7 +231,7 @@ msgstr "Kan naam niet instellen voor %s"
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+ #, python-format
  msgid "Could not set MLS range for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, fuzzy, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Tidak dapat menetapkan pengguna dalam konteks fail untuk %s"
+-msgstr "Kan MLS bereik niet instellen voor %s"
++msgstr "Kan MLS reeks niet instellen voor %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:514
+ #, python-format
+@@ -239,7 +241,7 @@ msgstr "Kan SELinux gebruiker niet instellen voor %s"
+ #: ../semanage/seobject.py:518
+ #, python-format
  msgid "Could not add login mapping for %s"
- msgstr "Tidak dapat menambah konteks fail untuk %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- #, fuzzy
- msgid "add SELinux user mapping"
- msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
+-msgstr "Kan login mapping niet toevoegen voor %s"
++msgstr "Kan inlog afbeelding niet toevoegen voor %s"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- #, fuzzy
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Memerlukan setype, serange atau seuser"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, fuzzy, python-format
+@@ -248,7 +250,7 @@ msgstr "Vereist seuser of serange"
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+ #, python-format
  msgid "Login mapping for %s is not defined"
- msgstr "Konteks fail %s tidak dinyatakan"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, fuzzy, python-format
- msgid "Could not query seuser for %s"
- msgstr "Tidak dapat menyoal konteks fail untuk %s"
+-msgstr "Login mapping voor %s is niet gedefinieerd"
++msgstr "Inlog afbeelding voor %s is niet gedefinieerd"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:563
+ #, python-format
+@@ -258,36 +260,42 @@ msgstr "Kan seuser niet opvragen voor %s"
+ #: ../semanage/seobject.py:577
+ #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "Tidak dapat mengubahsuai konteks fail untuk %s"
+-msgstr "Kan login mapping niet veranderen voor %s"
++msgstr "Kan inlog afbeelding niet veranderen voor %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
  msgstr ""
+-"Login mapping voor %s is gedefinieerd in policy, kan niet worden verwijderd"
++"Inlog afbeelding voor %s is gedefinieerd in tactiek, kan niet worden "
++"verwijderd"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:615
+ #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "Tidak dapat memadam konteks fail untuk %s"
+-msgstr "Kan login mapping niet verwijderen voor %s"
++msgstr "Kan inlog afbeelding niet verwijderen voor %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- #, fuzzy
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr "Tidak dapat menyenaraikan konteks fail"
+-msgstr "Kan login mappings niet tonen"
++msgstr "Kan inlog afbeeldingen niet tonen"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+-msgstr ""
++msgstr "Inlog naam"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- #, fuzzy
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "Jenis SELinux diperlukan"
+ msgstr "SELinux gebruiker"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
+-msgstr "MLS/MCS bereik"
++msgstr "MLS/MCS reeks"
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+@@ -305,7 +313,7 @@ msgstr "Kan gebruiker niet opvragen voor %s"
+ #: ../semanage/seobject.py:722
+ #, python-format
  msgid "You must add at least one role for %s"
- msgstr "Tidak dapat menambah konteks fail untuk %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, fuzzy, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Tidak dapat memeriksa jika konteks fail untuk %s telah dinyatakan"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, fuzzy, python-format
- msgid "SELinux user %s is already defined"
- msgstr "$file bukan milik \"$user\""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, fuzzy, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Tidak dapat mencipta konteks fail untuk %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, fuzzy, python-format
- msgid "Could not add role %s for %s"
- msgstr "Tidak dapat menambah konteks fail untuk %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, fuzzy, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, fuzzy, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Tidak dapat menambah konteks fail untuk %s"
+-msgstr "U moet ten minste een rol voor %s toevoegen"
++msgstr "Je moet ten minste een rol voor %s toevoegen"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:737
+ #, python-format
+@@ -330,7 +338,7 @@ msgstr "Kan prefix %s niet toevoegen voor %s"
+ #: ../semanage/seobject.py:761
+ #, python-format
  msgid "Could not extract key for %s"
- msgstr "Tidak dapat membuka %s untuk salinan: %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, fuzzy, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- #, fuzzy
- msgid "Requires prefix or roles"
- msgstr "Memerlukan setype, serange atau seuser"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, fuzzy, python-format
- msgid "SELinux user %s is not defined"
- msgstr "Jenis terminal `%s' tidak ditakrifkan."
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, fuzzy, python-format
- msgid "Could not query user for %s"
- msgstr "Tidak dapat menyoal konteks fail untuk %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, fuzzy, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
+-msgstr "Kan sleutel niet uitpakken voor %s"
++msgstr "Kan sleutel niet extraheren voor %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:765
+ #, python-format
+@@ -359,7 +367,7 @@ msgstr "Kan SELinux gebruiker %s niet veranderen"
+ #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "$file bukan milik \"$user\""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, fuzzy, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Tidak dapat menyenaraikan pengguna SELinux"
+ msgstr ""
+-"SELinux gebruiker %s is gedefinieerd in policy, kan niet worden verwijderd"
++"SELinux gebruiker %s is gedefinieerd in tactiek, kan niet worden verwijderd"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:873
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Tidak dapat menyenaraikan peranan untuk pengguna %s"
+@@ -377,7 +385,7 @@ msgstr "Kan rollen voor gebruiker %s niet tonen"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr ""
+-msgstr ""
++msgstr "Labelen"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+@@ -393,11 +401,12 @@ msgstr "MCS niveau"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr ""
+-msgstr "MCS bereik"
++msgstr "MCS reeks"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
+-msgstr ""
++msgstr "SELinux rollen"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Protokol udp atau tcp diperlukan"
+@@ -408,9 +417,8 @@ msgid "Port is required"
+ msgstr "Poort is vereist"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Port diperlukan"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Ongeldige prefix %s"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Tidak dapat mencipta kekunci untuk %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Jenis diperlukan"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+@@ -425,7 +433,7 @@ msgstr "Type is vereist"
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "Tidak dapat memeriksa sama ada port %s/%s telah dinyatakan"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s telah ditakrif"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Tidak dapat mencipta port untuk %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Tidak dapat mencipta konteks untuk %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Tidak dapat menetapkan pengguna dalam konteks port untuk %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Tidak dapat menetapkan tugas dalam konteks port untuk %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Tidak dapat menetapkan jenis dalam konteks port untuk %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Tidak dapat menetapkan medan mls dalam konteks port untuk %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Tidak dapat menetapkan konteks port untuk %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Tidak dapat menambah port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Memerlukan setype atau serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Memerlukan setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s tidak dinyatakan"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Tidak dapat menyoal port %s/%s"
+-msgstr "Kan niet controleren of poort %s/%s is gedefinieerd"
++msgstr "Kan niet controleren of poort %s/%s gedefinieerd is"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:998
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Tidak dapat mengubah port %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
- msgid "Could not list the ports"
- msgstr "Tidak dapat menyenaraikan port"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
- msgid "Could not delete the port %s"
- msgstr "Tidak dapat memadam port %s/%s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+@@ -508,7 +516,7 @@ msgstr "Kan poort %s niet verwijderen"
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s dinyatakan dalam polisi, tidak boleh dipadam"
+-msgstr "Poort %s/%s is gedefinieerd in policy, kan niet worden verwijderd"
++msgstr "Poort %s/%s is gedefinieerd in tactiek, kan niet worden verwijderd"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Tidak dapat memadam port %s/%s"
+@@ -521,24 +529,23 @@ msgstr "Kan poorten niet tonen"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Tidak dapat menyenaraikan port"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr ""
+-msgstr ""
++msgstr "SELinux poort type"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr ""
+-msgstr ""
++msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+-msgstr "Poortnummer"
++msgstr "Poort nummer"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "Port diperlukan"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Port diperlukan"
+-msgstr "Poort is vereist"
++msgstr "Node adres is vereist"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Jenis SELinux diperlukan"
+-msgstr ""
++msgstr "Onbekend of ontbrekend protocol"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Tidak dapat mencipta kekunci untuk %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -555,14 +562,14 @@ msgstr "Kan geen sleutel aanmaken voor %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "Tidak dapat memeriksa sama ada port %s/%s telah dinyatakan"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Port %s/%s telah ditakrif"
+-msgstr "Kan niet controleren of poort %s/%s is gedefinieerd"
++msgstr "Kan niet controleren of addr %s is gedefinieerd"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "Tidak dapat mencipta konteks fail untuk %s"
+-msgstr "Kan geen sleutel aanmaken voor %s"
++msgstr "Kan geen addr aanmaken voor %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Tidak dapat mencipta konteks untuk %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -571,80 +578,78 @@ msgid "Could not create context for %s"
+ msgstr "Kan geen context aanmaken voor %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
+-msgstr "Kan naam niet instellen voor %s"
++msgstr "Kan geen masker instellen voor %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "Tidak dapat menetapkan pengguna dalam konteks fail untuk %s"
+-msgstr "Kan gebruiker in bestandscontext niet instellen voor %s"
++msgstr "Kan gebruiker in addr context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "Tidak dapat menetapkan tugas dalam konteks fail untuk %s"
+-msgstr "Kan rol in bestandscontext niet instellen voor %s"
++msgstr "Kan rol in addr context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "Tidak dapat menetapkan jenis dalam konteks fail untuk %s"
+-msgstr "Kan type in bestandscontext niet instellen voor %s"
++msgstr "Kan type in addr context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "Tidak dapat menetapkan medan mls dalam konteks fail untuk %s"
+-msgstr "Kan mls velden in bestandscontext niet instellen voor %s"
++msgstr "Kan mls velden in addr context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet instellen voor %s"
++msgstr "Kan addr context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "Tidak dapat menambah port %s/%s"
+-msgstr "Kan poort %s/%s niet toevoegen"
++msgstr "Kan addr %s niet toevoegen"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "Port %s/%s tidak dinyatakan"
+-msgstr "Poort %s/%s is niet gedefinieerd"
++msgstr "Addr %s is niet gedefinieerd"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "Tidak dapat menyoal port %s/%s"
+-msgstr "Kan poort %s/%s niet opvragen"
++msgstr "Kan addr %s niet bevragen"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "Tidak dapat mengubah port %s/%s"
+-msgstr "Kan poort %s/%s niet veranderen"
++msgstr "Kan addr %s niet veranderen"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s dinyatakan dalam polisi, tidak boleh dipadam"
+-msgstr "Poort %s/%s is gedefinieerd in policy, kan niet worden verwijderd"
++msgstr "Addr %s gedefinieerd in tactiek, kan niet worden verwijderd"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "Tidak dapat memadam antaramuka %s"
+-msgstr "Kan de %s niet verwijderen"
++msgstr "Kan addr %s niet verwijderen"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Kan login mapping niet verwijderen voor %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "Tidak dapat menyenaraikan port"
+-msgstr "Kan poorten niet tonen"
++msgstr "Kan addr's niet tonen"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "Tidak dapat memeriksa sama ada antaramuka %s dinyatakan"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Antaramuka %s telah ditakrif"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Tidak dapat mencipta antaramuka untuk %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Tidak dapat menetapkan pengguna dalam konteks antaramuka untuk %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Tidak dapat menetapkan tugas dalam konteks antaramuka untuk %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Tidak dapat menetapkan jenis dalam konteks antaramuka untuk %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Tidak dapat menetapkan medan mls dalam konteks antaramuka untuk %s"
+-msgstr "Kan niet controleren of interface %s is gedefinieerd"
++msgstr "Kan niet controleren of interface %s gedefinieerd is"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1461
  #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Tidak dapat menetapkan konteks antaramuka untuk %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+@@ -679,7 +684,7 @@ msgstr "Kan interface context niet instellen voor %s"
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr "Tidak dapat menetapkan konteks mesej untuk %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Tidak dapat menambah antaramuka %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Antaramuka %s tidak dinyatakan"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Tidak dapat menyoal antaramuka %s"
+-msgstr "Kan message context niet instellen voor %s"
++msgstr "Kan boodschap context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1495
  #, python-format
- msgid "Could not modify interface %s"
- msgstr "Tidak dapat mengubah antaramuka %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+@@ -704,7 +709,7 @@ msgstr "Kan interface %s niet veranderen"
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Antaramuka %s dinyatakan dalam polisi, tidak boleh dipadam"
+-msgstr "Interface %s is gedefinieerd in policy, kan niet worden verwijderd"
++msgstr "Interface %s is gedefinieerd in tactiek, kan niet worden verwijderd"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
- msgid "Could not delete interface %s"
- msgstr "Tidak dapat memadam antaramuka %s"
+@@ -712,9 +717,8 @@ msgid "Could not delete interface %s"
+ msgstr "Kan interface %s niet verwijderen"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Kan interface %s niet verwijderen"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Tidak dapat menyenaraikan antaramuka"
+@@ -729,9 +733,9 @@ msgid "Context"
+ msgstr "Context"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Bestandscontext voor %s is al gedefinieerd"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -739,28 +743,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux gebruiker %s bestaat niet"
++msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr "Tidak dapat menetapkan pengguna dalam konteks fail untuk %s"
+-msgstr "Kan gebruiker in bestandscontext niet instellen voor %s"
++msgstr "Kan gebruiker in bestand context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr "Tidak dapat menetapkan tugas dalam konteks fail untuk %s"
+-msgstr "Kan rol in bestandscontext niet instellen voor %s"
++msgstr "Kan rol in bestand context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "Tidak dapat menetapkan medan mls dalam konteks fail untuk %s"
+-msgstr "Kan mls velden in bestandscontext niet instellen voor %s"
++msgstr "Kan mls velden in bestand context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr ""
+-msgstr ""
++msgstr "Ongeldige bestand specificatie"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -777,28 +781,28 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr "Tidak dapat memeriksa jika konteks fail untuk %s telah dinyatakan"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Konteks fail %s telah dinyatakan"
+-msgstr "Kan niet controleren of bestandscontext voor %s is gedefinieerd"
++msgstr "Kan niet controleren of bestand context voor %s is gedefinieerd"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr "Tidak dapat mencipta konteks fail untuk %s"
+-msgstr "Kan geen bestandscontext aanmaken voor %s"
++msgstr "Kan geen bestand context aanmaken voor %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr "Tidak dapat menetapkan jenis dalam konteks fail untuk %s"
+-msgstr "Kan type in bestandscontext niet instellen voor %s"
++msgstr "Kan type in bestand context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr "Tidak dapat menetapkan konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet instellen voor %s"
++msgstr "Kan bestand context niet instellen voor %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr "Tidak dapat menambah konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet toevoegen voor %s"
++msgstr "Kan bestand context niet toevoegen voor %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr "Memerlukan setype, serange atau seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+@@ -807,53 +811,54 @@ msgstr "Vereist setype, serange of seuser"
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr "Konteks fail %s tidak dinyatakan"
+-msgstr "Bestandscontext voor %s is niet gedefinieerd"
++msgstr "Bestand context voor %s is niet gedefinieerd"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr "Tidak dapat menyoal konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet opvragen voor %s"
++msgstr "Kan bestand context niet opvragen voor %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr "Tidak dapat mengubahsuai konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet veranderen voor %s"
++msgstr "Kan bestand context niet veranderen voor %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
- msgstr "Tidak dapat menyenaraikan konteks fail"
+-msgstr "Kan bestandscontexten niet tonen"
++msgstr "Kan bestand contexten niet tonen"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1853
+ #, python-format
  msgid "Could not delete the file context %s"
- msgstr "Tidak dapat memadam konteks fail untuk %s"
+-msgstr "Kan bestandscontext %s niet verwijderen"
++msgstr "Kan bestand context %s niet verwijderen"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
  msgstr ""
+-"Bestandscontext voor %s is gedefinieerd in policy, kan niet worden verwijderd"
++"Bestand context voor %s is gedefinieerd in tactiek, kan niet worden "
++"verwijderd"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr "Tidak dapat memadam konteks fail untuk %s"
+-msgstr "Kan bestandscontext niet verwijderen voor %s"
++msgstr "Kan bestand context niet verwijderen voor %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr "Tidak dapat menyenaraikan konteks fail"
+-msgstr "Kan bestandscontexten niet tonen"
++msgstr "Kan bestand contexten niet tonen"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr "Tidak dapat menyenaraikan konteks fail tempatan"
+-msgstr "Kan lokale bestandscontexten niet tonen"
++msgstr "Kan lokale bestand contexten niet tonen"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr ""
+-msgstr ""
++msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
- msgstr ""
+-msgstr "soort"
++msgstr "type"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -871,51 +876,51 @@ msgstr ""
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr "Tidak dapat memeriksa sama ada boolean %s dinyatakan"
+-msgstr "Kan niet controleren of boolean %s is gedefinieerd"
++msgstr "Kan niet controleren of Boolean %s gedefinieerd is"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
- msgstr "Boolean %s tidak dinyatakan"
+-msgstr "Booleaan %s is niet gedefinieerd"
++msgstr "Boolean %s is niet gedefinieerd"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr "Tidak dapat menyoal fail konteks %s"
+-msgstr "Kan bestandscontext %s niet opvragen"
++msgstr "Kan bestand context %s niet opvragen"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:1999
+ #, python-format
  msgid "You must specify one of the following values: %s"
- msgstr "Anda mesti nyatakan peranti."
+-msgstr "U moet een van de volgende waarden opgeven: %s"
++msgstr "Je moet een van de volgende waarden opgeven: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
+ #: ../semanage/seobject.py:2004
+ #, python-format
  msgid "Could not set active value of boolean %s"
- msgstr "Tidak dapat memadam boolean %s"
+-msgstr "Kan actieve waarde van booleaan %s niet instellen"
++msgstr "Kan actieve waarde van Boolean %s niet instellen"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr "Tidak dapat mengubah boolean %s"
+-msgstr "Kan booleaan %s niet veranderen"
++msgstr "Kan Boolean %s niet veranderen"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr ""
++msgstr "Verkeerd formaat %s: Record %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Boolean %s dinyatakan dalam polisi, tidak boleh dipadam"
+-msgstr "Booleaan %s is gedefinieerd in policy, kan niet worden verwijderd"
++msgstr "Boolean %s is gedefinieerd in tactiek, kan niet worden verwijderd"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr "Tidak dapat memadam boolean %s"
+-msgstr "Kan booleaan %s niet verwijderen"
++msgstr "Kan Boolean %s niet verwijderen"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr "Tidak dapat menyenaraikan boolean"
+-msgstr "Kan booleanen niet tonen"
++msgstr "Kan Booleans niet tonen"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -931,20 +936,20 @@ msgstr "aan"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1297,79 +1325,2083 @@
- msgid "Options Error %s "
- msgstr "Ralat Pilihan: %s"
+-msgstr ""
++msgstr "SELinux Boolean"
  
+ #: ../semanage/seobject.py:2131
 -#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Jenis SELinux diperlukan"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
+ msgid "State"
+-msgstr "Status"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Jenis SELinux diperlukan"
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr "Standaard"
 +msgstr ""
  
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Terdapat ralat RPM.  Mesejnya ialah:\n"
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+-msgstr ""
++msgstr "Beschrijving"
  
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Anda mesti nyatakan peranti."
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -954,17 +959,17 @@ msgstr "instellen van PAM_TTY is mislukt\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "newrole: service naam configuratie hashtable overflow\n"
  
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Anda mesti nyatakan peranti."
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "newrole:  %s:  fout op regel %lu.\n"
  
-+#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Anda mesti nyatakan peranti."
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr "Jenis SELinux diperlukan"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "kan geen geldig item in het passwd bestand vinden.\n"
++msgstr "kan geen geldige ingang in het passwd bestand vinden.\n"
  
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Antaramuka %s tidak dinyatakan"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
+ #: ../newrole/newrole.c:450
+ #, c-format
+@@ -1004,12 +1009,12 @@ msgstr "Fout bij het toewijzen van geheugen.\n"
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "Fout bij het versturen van audit melding.\n"
++msgstr "Fout bij het versturen van audit boodschap.\n"
  
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Konteks fail %s tidak dinyatakan"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Kan enforcing mode niet vaststellen.\n"
++msgstr "Kan afdwingende mode niet vaststellen.\n"
  
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Jenis terminal `%s' tidak ditakrifkan."
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
+ #: ../newrole/newrole.c:699
+ #, c-format
+@@ -1038,7 +1043,7 @@ msgstr "%s!  Kon geen nieuwe context instellen voor %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+ msgid "%s changed labels.\n"
+-msgstr "%s heeft andere labels.\n"
++msgstr "%s veranderde labels.\n"
  
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Menghimpun polisi"
+ #: ../newrole/newrole.c:778
+ #, c-format
+@@ -1069,11 +1074,12 @@ msgstr "Fout: meerdere niveaus opgegeven\n"
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr ""
++"Fout: Niveaus op een onbeveiligde terminal veranderen is niet toegestaan \n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Kan standaardtype niet verkrijgen.\n"
++msgstr "Kan standaard type niet verkrijgen.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+@@ -1093,7 +1099,7 @@ msgstr "instellen van nieuw type %s is mislukt\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "samenstellen van nieuw bereik met niveau %s is mislukt\n"
++msgstr "samenstellen van nieuwe reeks met niveau %s is mislukt\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+@@ -1118,17 +1124,17 @@ msgstr "Niet in staat om geheugen te reserveren voor new_context"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "Niet in staat om een lege signaalverzameling te verkrijgen\n"
++msgstr "Niet in staat om een lege signaal set te verkrijgen\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "Niet in staat om SIGHUP-verwerker in te stellen\n"
++msgstr "Niet in staat om SIGHUP verwerker in te stellen\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr "Sorry, newrole mag alleen worden gebruikt op een SELinux kernel.\n"
++msgstr "Sorry, newrole mag alleen worden gebruikt met een SELinux kernel.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+@@ -1138,12 +1144,12 @@ msgstr "verkrijgen van old_context is mislukt.\n"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Waarschuwing! Kan tty-informatie niet ophalen.\n"
++msgstr "Waarschuwing! Kan tty informatie niet ophalen.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr ""
++msgstr "fout bij het lezen van de PAM service instelling.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+@@ -1158,7 +1164,7 @@ msgstr "newrole: forking mislukt: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "Niet in staat om tty-label terug te zetten...\n"
++msgstr "Niet in staat om tty label terug te zetten...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+@@ -1168,7 +1174,7 @@ msgstr "Afsluiten van tty op een juiste manier is mislukt\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Kan indicators niet sluiten.\n"
++msgstr "Kan beschrijvingen niet sluiten.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+@@ -1192,17 +1198,17 @@ msgstr "gebruik:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s:  Tactiek is al geladen en initiële inladen wordt verzocht\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
++msgstr "%s:  Kan tactiek niet laden en afdwingende mode verzocht:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s:  Kan policy:  %s niet laden\n"
++msgstr "%s:  Kan tactiek:  %s niet laden\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+@@ -1212,7 +1218,7 @@ msgstr "Vereist tenminste één categorie"
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+ msgstr ""
+-"Kan sensitivity niveaus door gebruik te maken van '+' op %s niet wijzigen"
++"Kan gevoeligheid niveaus door gebruik te maken van '+' op %s niet wijzigen"
+ #: ../scripts/chcat:110
+ #, c-format
+@@ -1230,7 +1236,7 @@ msgstr "Kan +/- niet combineren met andere typen categorieën"
+ #: ../scripts/chcat:319
+ msgid "Can not have multiple sensitivities"
+-msgstr "Kan geen meerdere sensitivities hebben"
++msgstr "Kan geen meerdere gevoeligheden hebben"
+ #: ../scripts/chcat:325
+ #, c-format
+@@ -1274,7 +1280,7 @@ msgstr "Gebruik %s -L -l gebruiker"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "Gebruik -- om de optielijst te beëindigen.  Bijvoorbeeld"
++msgstr "Gebruik -- om de optie lijst te beëindigen.  Bijvoorbeeld"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1284,442 +1290,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "Fout in opties %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Niet in staat om %s te openen: vertalingen zijn niet ondersteund op niet-"
+-#~ "MLS machines: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Pengesahan gagal"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Jenis SELinux diperlukan"
++
 +#: ../gui/loginsPage.py:133
-+#, fuzzy, python-format
++#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Jenis SELinux diperlukan"
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "gagal baca fail menu:%s"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Jenis SELinux diperlukan"
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "Niveau"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "Vertaling"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Vertalingen kunnen geen spaties bevatten '%s' "
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Ongeldig niveau '%s' "
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s is al gedefinieerd in vertalingen"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s niet gedefinieerd in vertalingen"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Login mapping voor %s is al gedefinieerd"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux gebruiker %s is al gedefinieerd"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Poort is vereist"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Poort %s/%s is al gedefinieerd"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Interface %s is al gedefinieerd"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Fout bij het initialiseren van capabilities, afbreken.\n"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Fout bij het instellen van capabilities, afbreken.\n"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Fout bij het instellen van KEEPCAPS, afbreken\n"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Fout bij het uitzetten van capabilities, afbreken\n"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Fout bij het uitzetten van SETUID capability, afbreken\n"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Fout bij het vrijgeven van caps\n"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "vertalingen niet ondersteund op niet-MLS machines"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "bestandstype"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "gebruiker"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS bereik"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Login '%s' is vereist"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "translator-credits"
+-#~ msgstr "Peter van Egdom <p.van.egdom@gmail.com>"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Applicaties</b>"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Webapplicatie/script (CGI)"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "User Role"
+-#~ msgstr "Gebruikersrol"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Name"
+-#~ msgstr "Naam"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP-poorten</b>"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Niet-gereserveerde poorten (> 1024)"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP-poorten</b>"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Boolean Name"
+-#~ msgstr "Booleaanse naam"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Role"
+-#~ msgstr "Rol"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "Application"
+-#~ msgstr "Applicatie"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s moet een directory zijn"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "You must select a user"
+-#~ msgstr "U moet een gebruiker selecteren"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "You must enter a name"
+-#~ msgstr "U moet een naam invoeren"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "You must enter a executable"
+-#~ msgstr "U moet een uitvoerbaar bestand opgeven"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux configureren"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Interface file"
+-#~ msgstr "Interface-bestand"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Protocol"
+-#~ msgstr "Protocol"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "niveau"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "Port"
+-#~ msgstr "Poort"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Poortnummer \"%s\" is niet geldig.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "Netwerkconfiguratie"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Databases"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Compatibiliteit"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL-authenticatieserver"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Spam Protection"
+-#~ msgstr "Spambeveiliging"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Universele SSL-tunnel"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Delete %s"
+-#~ msgstr "%s wissen"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Add %s"
+-#~ msgstr "%s toevoegen"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Modify %s"
+-#~ msgstr "%s veranderen"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Permissive"
+-#~ msgstr "Permissive"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c) 2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux type"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "niveau"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "File Type"
+-#~ msgstr "Bestandstype"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux gebruiker toevoegen"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Add"
+-#~ msgstr "Toevoegen"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "_Properties"
+-#~ msgstr "_Eigenschappen"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+#, fuzzy
+-#~ msgid "_Delete"
+-#~ msgstr "_Wissen"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Terdapat ralat RPM.  Mesejnya ialah:\n"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "label37"
+-#~ msgstr "label37"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Filter"
+-#~ msgstr "Filter"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "label38"
+-#~ msgstr "label38"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "label39"
+-#~ msgstr "label39"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux gebruiker veranderen"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Add Network Port"
+-#~ msgstr "Netwerkpoorten toevoegen"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Load policy module"
+-#~ msgstr "Policy-module laden"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux gebruiker '%s' is vereist"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "<b>Boolean</b>"
+-#~ msgstr "<b>Booleaan</b>"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "<b>Description</b>"
+-#~ msgstr "<b>Omschrijving</b>"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+#, fuzzy
+-#~ msgid "<b>Status</b>"
+-#~ msgstr "<b>Status</b>"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Anda mesti nyatakan peranti."
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Apply"
+-#~ msgstr "Toepassen"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Save Boolean Configuration File"
+-#~ msgstr "Booleaan configuratiebestand opslaan"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "_Previous"
+-#~ msgstr "_Vorige"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Requires value"
+-#~ msgstr "Vereist waarde"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Niet-gereserveerde poorten (> 1024)"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+#, fuzzy
-+msgid "You must enter a name"
-+msgstr "Anda mesti nyatakan peranti."
-+
-+#: ../gui/polgengui.py:610
-+#, fuzzy
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Anda mesti nyatakan peranti."
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "label34"
+-#~ msgstr "label34"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "label35"
+-#~ msgstr "label35"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "value"
+-#~ msgstr "waarde"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "MLS/MCS niveau"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS niveau"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Vereist 2 of meer argumenten"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "%s not defined"
+-#~ msgstr "%s niet gedefinieerd"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s niet geldig voor %s objecten\n"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
-+#, fuzzy
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "bereik niet ondersteund op niet-MLS machines"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Antaramuka %s tidak dinyatakan"
-+
-+#: ../gui/polgen.py:850
-+#, fuzzy
++msgstr ""
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Ongeldige waarde %s"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Konteks fail %s tidak dinyatakan"
-+
-+#: ../gui/polgen.py:851
++msgstr ""
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Om dit nieuw aangemaakte policy-pakket in de kernel te laden,\n"
+-#~ "dient u het volgende commando uit te voeren \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Fout in opties: %s "
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -166582,7 +163873,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -166631,9 +163922,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+#, fuzzy
 +msgid "SELinux Service Protection"
-+msgstr "Jenis terminal `%s' tidak ditakrifkan."
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
@@ -167041,9 +164331,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:87
-+#, fuzzy
 +msgid "Compatibility"
-+msgstr "Menghimpun polisi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
@@ -167381,9 +164670,8 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+#, fuzzy
 +msgid "SASL authentication server"
-+msgstr "Pengesahan gagal"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
@@ -167713,18 +165001,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -167765,7 +165049,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -167774,26 +165057,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Jenis SELinux diperlukan"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:814
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -167805,59 +165081,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -167865,58527 +165140,4674 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ms.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Pengguna %s tidak dapat dipadam: %s.\n"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "gagal baca fail menu:%s"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
 +#: ../gui/usersPage.py:138
-+#, fuzzy, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "Jenis SELinux diperlukan"
- #~ msgid "Requires value"
- #~ msgstr "Memerlukan nilai"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/my.po policycoreutils-2.0.85/po/my.po
---- nsapolicycoreutils/po/my.po        2011-02-17 15:11:25.679725718 -0500
-+++ policycoreutils-2.0.85/po/my.po    2011-02-18 16:03:41.386975868 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
 +#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
++msgid "SELinux user '%s' is required"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nb.po policycoreutils-2.0.85/po/nb.po
---- nsapolicycoreutils/po/nb.po        2011-02-17 15:11:25.268732508 -0500
-+++ policycoreutils-2.0.85/po/nb.po    2011-02-18 16:03:41.386975868 -0500
-@@ -1,20 +1,38 @@
- # Norwegian bokmål translation of policycoreutils.
- # Copyright (C) 2006 Red Hat, Inc.
--# This file is distributed under the same license as the PACKAGE package.
--# Kjartan Maraas <kmaraas@gnome.org>, 2006, 2007.
-+# This file is distributed under the same license as the policycoreutils package.
-+# Kjartan Maraas <kmaraas@gnome.org>, 2006-2010.
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: policycoreutils\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-10-04 15:01+0200\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-10-31 19:19+0100\n"
- "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
- "Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Konfigurer SELinux i et grafisk program"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux-håndtering"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Lag regelmoduler for SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -117,7 +135,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -169,736 +188,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "%s er allerede i %s"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
- msgid "Addr %s is not defined"
- msgstr "%s er ikke i %s"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "Du må oppgi et navn"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -985,7 +1011,7 @@
- #: ../newrole/newrole.c:707
- #, c-format
- msgid "Error allocating memory.\n"
--msgstr ""
-+msgstr "Feil under allokering av minne.\n"
- #: ../newrole/newrole.c:714
- #, c-format
-@@ -1000,7 +1026,7 @@
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr ""
-+msgstr "Feil:  Klarte ikke å åpne %s.\n"
- #: ../newrole/newrole.c:771
- #, c-format
-@@ -1167,9 +1193,9 @@
- msgstr ""
- #: ../load_policy/load_policy.c:22
--#, fuzzy, c-format
-+#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "bruk:   %s [-q]\n"
-+msgstr "bruk:   %s [-qi]\n"
- #: ../load_policy/load_policy.c:71
- #, c-format
-@@ -1241,7 +1267,7 @@
- #: ../scripts/chcat:330
- #, c-format
- msgid "Usage %s -l -d user ..."
--msgstr ""
-+msgstr "Bruk %s -l -d bruker ..."
- #: ../scripts/chcat:331
- #, c-format
-@@ -1270,127 +1296,2079 @@
- msgid "Options Error %s "
- msgstr ""
--#~ msgid "Version"
--#~ msgstr "Versjon"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "alle"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Egendefinert"
--#~ msgid "translator-credits"
--#~ msgstr "Kjartan Maraas <kmaraas@gnome.org>"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Programmer</b>"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
--#, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Brukere</b>"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"Bruker"
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS-område"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Regelmodul"
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Navn på modul"
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versjon"
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
- #, fuzzy
--#~ msgid "User Role"
--#~ msgstr "Rolle"
-+msgid "Enable Audit"
-+msgstr "Slå på"
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Last regelmodul"
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Kjartan Maraas <kmaraas@gnome.org>"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Programmer</b>"
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS systemtjeneste"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Brukerprogram"
-+#: ../gui/polgen.glade:389
- #, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Brukere</b>"
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Brukere</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Eksisterende brukerroller"
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
--#~ msgid "Name"
--#~ msgstr "Navn"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
--#~ msgid "Select Ports"
--#~ msgstr "Velg porter"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP-porter</b>"
-+#: ../gui/polgen.glade:516
-+#, fuzzy
-+msgid "User Role"
-+msgstr "Rolle"
--#~ msgid "Role"
--#~ msgstr "Rolle"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
--#~ msgid "Application"
--#~ msgstr "Program"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+#: ../gui/polgen.glade:583
- #, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Du må oppgi et navn"
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Brukere</b>"
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Navn"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
--#~ msgid "You must enter a name"
--#~ msgstr "Du må oppgi et navn"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Velg porter"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP-porter</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
--#~ msgid "Configue SELinux"
--#~ msgstr "Konfigurer SELinux"
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
--#~ msgid "Protocol"
--#~ msgstr "Protokoll"
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
--#~ msgid "Port"
--#~ msgstr "Port"
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
--#~ msgid "Admin"
--#~ msgstr "Admin"
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
--#~ msgid "Memory Protection"
--#~ msgstr "Minnebeskyttelse"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
--#~ msgid "Mount"
--#~ msgstr "Montering"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
--#~ msgid "Network Configuration"
--#~ msgstr "Nettverkskonfigurasjon"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
--#~ msgid "Databases"
--#~ msgstr "Databaser"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
--#~ msgid "XServer"
--#~ msgstr "X-tjener"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
--#~ msgid "CVS"
--#~ msgstr "CVS"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
--#~ msgid "Compatibility"
--#~ msgstr "Kompatibilitet"
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD-tjeneste"
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Rolle"
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Program"
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
- #, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "Minnebeskyttelse"
-+msgid "You must select a user"
-+msgstr "Du må oppgi et navn"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
--#~ msgid "You must be root to run %s."
--#~ msgstr "Du må være root for å kjøre %s."
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
--#~ msgid "Other"
--#~ msgstr "Annet"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
--#~ msgid "Files and Directories"
--#~ msgstr "Filer og kataloger"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
--#~ msgid "FTP"
--#~ msgstr "FTP"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
--#~ msgid "Zebra"
--#~ msgstr "Zebra"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Du må oppgi et navn"
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Konfigurer SELinux"
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+#, fuzzy
-+msgid "Network Port"
-+msgstr "Nettverkskonfigurasjon"
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protokoll"
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Admin"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Minnebeskyttelse"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Montering"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Nettverkskonfigurasjon"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Databaser"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "X-tjener"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Utskrift"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Slå av SELinux-beskyttelse for dictd-tjenesten"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "La sysadm_t starte tjenester direkte"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Slå av SELinux-beskyttelse for Evolution"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Spill"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Slå av SELinux-beskyttelse for spill"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Slå av SELinux-beskyttelse for nettlesere"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Slå av SELinux-beskyttelse for Thunderbird"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Slå av SELinux-beskyttelse for distccd-tjenesten"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Slå av SELinux-beskyttelse for dmesg-tjenesten"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Kompatibilitet"
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD-tjeneste"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Beskyttelse mot spam"
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Slett %s"
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Legg til %s"
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Endre %s"
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Ettergivende"
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Tvungen"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Slått av"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Status"
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux type"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"Nivå"
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Filspesifikasjon"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Filtype"
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Legg til SELinux-bruker"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux administrasjon"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Legg til"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "Egenska_per"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Slett"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+#, fuzzy
-+msgid "Select Management Object"
-+msgstr "Velg "
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Velg:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Slått av\n"
-+"Ettergivende\n"
-+"Tvungen\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Nedlåsing..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filter"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Legg til filkontekst"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Endre filkontekst"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Slett filkontekst"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Legg til bruker"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Endre bruker"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Slett bruker"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Legg til oversettelse"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Endre oversettelse"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Slett oversettelse"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Legg til nettverksport"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Rediger nettverksport"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Slett nettverksport"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Lag ny regelmodul"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Last regelmodul"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Fjern lastbar regelmodul"
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Endre prosessmodus til ettergivende."
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Endre prosessmodus til tvungen"
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux bruker «%s» kreves"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nds_DE.po policycoreutils-2.0.85/po/nds_DE.po
---- nsapolicycoreutils/po/nds_DE.po    1969-12-31 19:00:00.000000000 -0500
-+++ policycoreutils-2.0.85/po/nds_DE.po        2011-02-18 16:03:41.386975868 -0500
-@@ -0,0 +1,3363 @@
-+# translation of policycoreutils.HEAD.po to
-+# translation of policycoreutils.HEAD.nds.po to
-+# Low German translation of policycoreutils.
-+# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
-+#
-+#
-+# Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>, 2010.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: policycoreutils.HEAD.nds\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-12-05 15:46+0100\n"
-+"Last-Translator: Nils-Christoph Fiedler <ncfiedler@gnome.org>\n"
-+"Language-Team: Fedora Low German <nds-lowgerman@lists.sourceforge.net>\n"
-+"Language: nds\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Poedit-Language: Low German\n"
-+"X-Generator: KBabel 1.11.4\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:67
-+msgid ""
-+"USAGE: run_init <script> <args ...>\n"
-+"  where: <script> is the name of the init script to run,\n"
-+"         <args ...> are the arguments to that script."
-+msgstr ""
-+
-+#: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
-+#, c-format
-+msgid "failed to initialize PAM\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:139
-+#, c-format
-+msgid "failed to get account information\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:162 ../newrole/newrole.c:338
-+msgid "Password:"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:197 ../newrole/newrole.c:363
-+#, c-format
-+msgid "Cannot find your entry in the shadow passwd file.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:203 ../newrole/newrole.c:370
-+#, c-format
-+msgid "getpass cannot open /dev/tty\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:275
-+#, c-format
-+msgid "run_init: incorrect password for %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:309
-+#, c-format
-+msgid "Could not open file %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:336
-+#, c-format
-+msgid "No context in file %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:361
-+#, c-format
-+msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:380
-+#, c-format
-+msgid "authentication failed.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
-+#, c-format
-+msgid "Could not set exec context to %s.\n"
-+msgstr ""
-+
-+#: ../audit2allow/audit2allow:217
-+msgid "******************** IMPORTANT ***********************\n"
-+msgstr ""
-+
-+#: ../audit2allow/audit2allow:218
-+msgid "To make this policy package active, execute:"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:48
-+msgid "Could not create semanage handle"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:55
-+msgid "SELinux policy is not managed or store cannot be accessed."
-+msgstr ""
-+
-+#: ../semanage/seobject.py:60
-+msgid "Cannot read policy store."
-+msgstr ""
-+
-+#: ../semanage/seobject.py:65
-+msgid "Could not establish semanage connection"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:70
-+msgid "Could not test MLS enabled status"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:142 ../semanage/seobject.py:146
-+msgid "global"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:206
-+#, python-format
-+msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:239
-+msgid "Level"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
-+msgid "Translation"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:247 ../semanage/seobject.py:261
-+#, python-format
-+msgid "Translations can not contain spaces '%s' "
-+msgstr ""
-+
-+#: ../semanage/seobject.py:250
-+#, python-format
-+msgid "Invalid Level '%s' "
-+msgstr ""
-+
-+#: ../semanage/seobject.py:253
-+#, python-format
-+msgid "%s already defined in translations"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:265
-+#, python-format
-+msgid "%s not defined in translations"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:290
-+msgid "Not yet implemented"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:294
-+msgid "Semanage transaction already in progress"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:303
-+msgid "Could not start semanage transaction"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:309
-+msgid "Could not commit semanage transaction"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:313
-+msgid "Semanage transaction not in progress"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:325
-+msgid "Could not list SELinux modules"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:336
-+msgid "Permissive Types"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:366
-+#, python-format
-+msgid "Could not set permissive domain %s (module installation failed)"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:380
-+#, python-format
-+msgid "Could not remove permissive domain %s (remove failed)"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
-+#, python-format
-+msgid "Could not create a key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
-+#, python-format
-+msgid "Could not check if login mapping for %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:412
-+#, python-format
-+msgid "Login mapping for %s is already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:417
-+#, python-format
-+msgid "Linux Group %s does not exist"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:422
-+#, python-format
-+msgid "Linux User %s does not exist"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:426
-+#, python-format
-+msgid "Could not create login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
-+#, python-format
-+msgid "Could not set name for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
-+#, python-format
-+msgid "Could not set MLS range for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:439
-+#, python-format
-+msgid "Could not set SELinux user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:443
-+#, python-format
-+msgid "Could not add login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
-+msgid "add SELinux user mapping"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:462
-+msgid "Requires seuser or serange"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
-+#, python-format
-+msgid "Login mapping for %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:476
-+#, python-format
-+msgid "Could not query seuser for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:492
-+#, python-format
-+msgid "Could not modify login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:524
-+#, python-format
-+msgid "Login mapping for %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:528
-+#, python-format
-+msgid "Could not delete login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:551
-+msgid "Could not list login mappings"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
-+msgid "Login Name"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
-+msgid "SELinux User"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
-+msgid "MLS/MCS Range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:590
-+#, python-format
-+msgid "You must add at least one role for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
-+#, python-format
-+msgid "Could not check if SELinux user %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:600
-+#, python-format
-+msgid "SELinux user %s is already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:604
-+#, python-format
-+msgid "Could not create SELinux user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:613
-+#, python-format
-+msgid "Could not add role %s for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:622
-+#, python-format
-+msgid "Could not set MLS level for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:625
-+#, python-format
-+msgid "Could not add prefix %s for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:628
-+#, python-format
-+msgid "Could not extract key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:632
-+#, python-format
-+msgid "Could not add SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:655
-+msgid "Requires prefix, roles, level or range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:657
-+msgid "Requires prefix or roles"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
-+#, python-format
-+msgid "SELinux user %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:671
-+#, python-format
-+msgid "Could not query user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:698
-+#, python-format
-+msgid "Could not modify SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:731
-+#, python-format
-+msgid "SELinux user %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:735
-+#, python-format
-+msgid "Could not delete SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:758
-+msgid "Could not list SELinux users"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:764
-+#, python-format
-+msgid "Could not list roles for user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:777
-+msgid "Labeling"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:777
-+msgid "MLS/"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "Prefix"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Level"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
-+msgid "SELinux Roles"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:798
-+msgid "Protocol udp or tcp is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:800
-+msgid "Port is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:811
-+#, python-format
-+msgid "Could not create a key for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:822
-+msgid "Type is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
-+#, python-format
-+msgid "Could not check if port %s/%s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:830
-+#, python-format
-+msgid "Port %s/%s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:834
-+#, python-format
-+msgid "Could not create port for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:840
-+#, python-format
-+msgid "Could not create context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:844
-+#, python-format
-+msgid "Could not set user in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:848
-+#, python-format
-+msgid "Could not set role in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:852
-+#, python-format
-+msgid "Could not set type in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:857
-+#, python-format
-+msgid "Could not set mls fields in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:861
-+#, python-format
-+msgid "Could not set port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:865
-+#, python-format
-+msgid "Could not add port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
-+msgid "Requires setype or serange"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:881
-+msgid "Requires setype"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
-+#, python-format
-+msgid "Port %s/%s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:893
-+#, python-format
-+msgid "Could not query port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:904
-+#, python-format
-+msgid "Could not modify port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:917
-+msgid "Could not list the ports"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:933
-+#, python-format
-+msgid "Could not delete the port %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:950
-+#, python-format
-+msgid "Port %s/%s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:954
-+#, python-format
-+msgid "Could not delete port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
-+msgid "Could not list ports"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013
-+msgid "SELinux Port Type"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013
-+msgid "Proto"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
-+msgid "Port Number"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
-+msgid "Node Address is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
-+msgid "Node Netmask is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
-+msgid "Unknown or missing protocol"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
-+msgid "SELinux Type is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
-+#, python-format
-+msgid "Could not create key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
-+msgid "Could not check if addr %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1060
-+#, python-format
-+msgid "Addr %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1064
-+#, python-format
-+msgid "Could not create addr for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
-+#, python-format
-+msgid "Could not create context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1073
-+#, python-format
-+msgid "Could not set mask for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1078
-+#, python-format
-+msgid "Could not set user in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1082
-+#, python-format
-+msgid "Could not set role in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1086
-+#, python-format
-+msgid "Could not set type in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1091
-+#, python-format
-+msgid "Could not set mls fields in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1095
-+#, python-format
-+msgid "Could not set addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1099
-+#, python-format
-+msgid "Could not add addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
-+msgid "Addr %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1139
-+#, python-format
-+msgid "Could not query addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1150
-+#, python-format
-+msgid "Could not modify addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1188
-+#, python-format
-+msgid "Addr %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1192
-+#, python-format
-+msgid "Could not delete addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1208
-+msgid "Could not list addrs"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
-+#, python-format
-+msgid "Could not check if interface %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1262
-+#, python-format
-+msgid "Interface %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1266
-+#, python-format
-+msgid "Could not create interface for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1275
-+#, python-format
-+msgid "Could not set user in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1279
-+#, python-format
-+msgid "Could not set role in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1283
-+#, python-format
-+msgid "Could not set type in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1288
-+#, python-format
-+msgid "Could not set mls fields in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1292
-+#, python-format
-+msgid "Could not set interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1296
-+#, python-format
-+msgid "Could not set message context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1300
-+#, python-format
-+msgid "Could not add interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
-+#, python-format
-+msgid "Interface %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1327
-+#, python-format
-+msgid "Could not query interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1338
-+#, python-format
-+msgid "Could not modify interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1363
-+#, python-format
-+msgid "Interface %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1367
-+#, python-format
-+msgid "Could not delete interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1383
-+msgid "Could not list interfaces"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1393
-+msgid "SELinux Interface"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
-+msgid "Context"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1417
-+#, python-format
-+msgid "Could not set user in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1421
-+#, python-format
-+msgid "Could not set role in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
-+#, python-format
-+msgid "Could not set mls fields in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1432
-+msgid "Invalid file specification"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
-+#, python-format
-+msgid "Could not check if file context for %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1457
-+#, python-format
-+msgid "File context for %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1461
-+#, python-format
-+msgid "Could not create file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1469
-+#, python-format
-+msgid "Could not set type in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
-+#, python-format
-+msgid "Could not set file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1483
-+#, python-format
-+msgid "Could not add file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1497
-+msgid "Requires setype, serange or seuser"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
-+#, python-format
-+msgid "File context for %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1516
-+#, python-format
-+msgid "Could not query file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1542
-+#, python-format
-+msgid "Could not modify file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1556
-+msgid "Could not list the file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1570
-+#, python-format
-+msgid "Could not delete the file context %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1588
-+#, python-format
-+msgid "File context for %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1594
-+#, python-format
-+msgid "Could not delete file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1609
-+msgid "Could not list file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1613
-+msgid "Could not list local file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1632
-+msgid "SELinux fcontext"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1632
-+msgid "type"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
-+#, python-format
-+msgid "Could not check if boolean %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
-+#, python-format
-+msgid "Boolean %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1668
-+#, python-format
-+msgid "Could not query file context %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1673
-+#, python-format
-+msgid "You must specify one of the following values: %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1677
-+#, python-format
-+msgid "Could not set active value of boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1680
-+#, python-format
-+msgid "Could not modify boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1698
-+#, python-format
-+msgid "Bad format %s: Record %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1721
-+#, python-format
-+msgid "Boolean %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1725
-+#, python-format
-+msgid "Could not delete boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
-+msgid "Could not list booleans"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1773
-+msgid "unknown"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1776
-+msgid "off"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1776
-+msgid "on"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1785
-+msgid "SELinux boolean"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
-+msgid "Description"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:198
-+#, c-format
-+msgid "failed to set PAM_TTY\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:287
-+#, c-format
-+msgid "newrole: service name configuration hashtable overflow\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:297
-+#, c-format
-+msgid "newrole:  %s:  error on line %lu.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:436
-+#, c-format
-+msgid "cannot find valid entry in the passwd file.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:447
-+#, c-format
-+msgid "Out of memory!\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:452
-+#, c-format
-+msgid "Error!  Shell is not valid.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:509
-+#, c-format
-+msgid "Unable to clear environment\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:556 ../newrole/newrole.c:634
-+#, c-format
-+msgid "Error initializing capabilities, aborting.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:564 ../newrole/newrole.c:640
-+#, c-format
-+msgid "Error setting capabilities, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:570
-+#, c-format
-+msgid "Error setting KEEPCAPS, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:578 ../newrole/newrole.c:652
-+#, c-format
-+msgid "Error dropping capabilities, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:584 ../newrole/newrole.c:683
-+#, c-format
-+msgid "Error changing uid, aborting.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
-+#, c-format
-+msgid "Error resetting KEEPCAPS, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:597
-+#, c-format
-+msgid "Error dropping SETUID capability, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:602 ../newrole/newrole.c:657
-+#, c-format
-+msgid "Error freeing caps\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:701
-+#, c-format
-+msgid "Error connecting to audit system.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:707
-+#, c-format
-+msgid "Error allocating memory.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:714
-+#, c-format
-+msgid "Error sending audit message.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
-+#, c-format
-+msgid "Could not determine enforcing mode.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:765
-+#, c-format
-+msgid "Error!  Could not open %s.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:771
-+#, c-format
-+msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:781
-+#, c-format
-+msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:791
-+#, c-format
-+msgid "%s!  Could not set new context for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:838
-+#, c-format
-+msgid "%s changed labels.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:844
-+#, c-format
-+msgid "Warning! Could not restore context for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:901
-+#, c-format
-+msgid "Error: multiple roles specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:909
-+#, c-format
-+msgid "Error: multiple types specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:916
-+#, c-format
-+msgid "Sorry, -l may be used with SELinux MLS support.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:921
-+#, c-format
-+msgid "Error: multiple levels specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:931
-+#, c-format
-+msgid "Error: you are not allowed to change levels on a non secure terminal \n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:957
-+#, c-format
-+msgid "Couldn't get default type.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:967
-+#, c-format
-+msgid "failed to get new context.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:974
-+#, c-format
-+msgid "failed to set new role %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:981
-+#, c-format
-+msgid "failed to set new type %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:991
-+#, c-format
-+msgid "failed to build new range with level %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:996
-+#, c-format
-+msgid "failed to set new range %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1004
-+#, c-format
-+msgid "failed to convert new context to string\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1009
-+#, c-format
-+msgid "%s is not a valid context\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1016
-+#, c-format
-+msgid "Unable to allocate memory for new_context"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1042
-+#, c-format
-+msgid "Unable to obtain empty signal set\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1050
-+#, c-format
-+msgid "Unable to set SIGHUP handler\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1116
-+#, c-format
-+msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1133
-+#, c-format
-+msgid "failed to get old_context.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1140
-+#, c-format
-+msgid "Warning!  Could not retrieve tty information.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1161
-+#, c-format
-+msgid "error on reading PAM service configuration.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1196
-+#, c-format
-+msgid "newrole: incorrect password for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1223
-+#, c-format
-+msgid "newrole: failure forking: %s"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
-+#, c-format
-+msgid "Unable to restore tty label...\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
-+#, c-format
-+msgid "Failed to close tty properly\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1287
-+#, c-format
-+msgid "Could not close descriptors.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1314
-+#, c-format
-+msgid "Error allocating shell's argv0.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1346
-+#, c-format
-+msgid "Unable to restore the environment, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1357
-+msgid "failed to exec shell\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:22
-+#, c-format
-+msgid "usage:  %s [-qi]\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:71
-+#, c-format
-+msgid "%s:  Policy is already loaded and initial load requested\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:80
-+#, c-format
-+msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:90
-+#, c-format
-+msgid "%s:  Can't load policy:  %s\n"
-+msgstr ""
-+
-+#: ../scripts/chcat:92 ../scripts/chcat:169
-+msgid "Requires at least one category"
-+msgstr ""
-+
-+#: ../scripts/chcat:106 ../scripts/chcat:183
-+#, c-format
-+msgid "Can not modify sensitivity levels using '+' on %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:110
-+#, c-format
-+msgid "%s is already in %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:188 ../scripts/chcat:198
-+#, c-format
-+msgid "%s is not in %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:267 ../scripts/chcat:272
-+msgid "Can not combine +/- with other types of categories"
-+msgstr ""
-+
-+#: ../scripts/chcat:319
-+msgid "Can not have multiple sensitivities"
-+msgstr ""
-+
-+#: ../scripts/chcat:325
-+#, c-format
-+msgid "Usage %s CATEGORY File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:326
-+#, c-format
-+msgid "Usage %s -l CATEGORY user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:327
-+#, c-format
-+msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:328
-+#, c-format
-+msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:329
-+#, c-format
-+msgid "Usage %s -d File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:330
-+#, c-format
-+msgid "Usage %s -l -d user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:331
-+#, c-format
-+msgid "Usage %s -L"
-+msgstr ""
-+
-+#: ../scripts/chcat:332
-+#, c-format
-+msgid "Usage %s -L -l user"
-+msgstr ""
-+
-+#: ../scripts/chcat:333
-+msgid "Use -- to end option list.  For example"
-+msgstr ""
-+
-+#: ../scripts/chcat:334
-+msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-+msgstr ""
-+
-+#: ../scripts/chcat:335
-+msgid "chcat -l +CompanyConfidential juser"
-+msgstr ""
-+
-+#: ../scripts/chcat:399
-+#, c-format
-+msgid "Options Error %s "
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Brukerprogramm"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Allens"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Inbinnen"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Netprogramme"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Speele"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nds.po policycoreutils-2.0.85/po/nds.po
---- nsapolicycoreutils/po/nds.po       1969-12-31 19:00:00.000000000 -0500
-+++ policycoreutils-2.0.85/po/nds.po   2011-02-18 16:03:41.436976206 -0500
-@@ -0,0 +1,3363 @@
-+# translation of policycoreutils.HEAD.po to
-+# translation of policycoreutils.HEAD.nds.po to
-+# Low German translation of policycoreutils.
-+# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
-+#
-+#
-+# Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>, 2010.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: policycoreutils.HEAD.nds\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-12-05 15:46+0100\n"
-+"Last-Translator: Nils-Christoph Fiedler <ncfiedler@gnome.org>\n"
-+"Language-Team: Fedora Low German <nds-lowgerman@lists.sourceforge.net>\n"
-+"Language: nds\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Poedit-Language: Low German\n"
-+"X-Generator: KBabel 1.11.4\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:67
-+msgid ""
-+"USAGE: run_init <script> <args ...>\n"
-+"  where: <script> is the name of the init script to run,\n"
-+"         <args ...> are the arguments to that script."
-+msgstr ""
-+
-+#: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
-+#, c-format
-+msgid "failed to initialize PAM\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:139
-+#, c-format
-+msgid "failed to get account information\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:162 ../newrole/newrole.c:338
-+msgid "Password:"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:197 ../newrole/newrole.c:363
-+#, c-format
-+msgid "Cannot find your entry in the shadow passwd file.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:203 ../newrole/newrole.c:370
-+#, c-format
-+msgid "getpass cannot open /dev/tty\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:275
-+#, c-format
-+msgid "run_init: incorrect password for %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:309
-+#, c-format
-+msgid "Could not open file %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:336
-+#, c-format
-+msgid "No context in file %s\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:361
-+#, c-format
-+msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:380
-+#, c-format
-+msgid "authentication failed.\n"
-+msgstr ""
-+
-+#: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
-+#, c-format
-+msgid "Could not set exec context to %s.\n"
-+msgstr ""
-+
-+#: ../audit2allow/audit2allow:217
-+msgid "******************** IMPORTANT ***********************\n"
-+msgstr ""
-+
-+#: ../audit2allow/audit2allow:218
-+msgid "To make this policy package active, execute:"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:48
-+msgid "Could not create semanage handle"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:55
-+msgid "SELinux policy is not managed or store cannot be accessed."
-+msgstr ""
-+
-+#: ../semanage/seobject.py:60
-+msgid "Cannot read policy store."
-+msgstr ""
-+
-+#: ../semanage/seobject.py:65
-+msgid "Could not establish semanage connection"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:70
-+msgid "Could not test MLS enabled status"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:142 ../semanage/seobject.py:146
-+msgid "global"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:206
-+#, python-format
-+msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:239
-+msgid "Level"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
-+msgid "Translation"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:247 ../semanage/seobject.py:261
-+#, python-format
-+msgid "Translations can not contain spaces '%s' "
-+msgstr ""
-+
-+#: ../semanage/seobject.py:250
-+#, python-format
-+msgid "Invalid Level '%s' "
-+msgstr ""
-+
-+#: ../semanage/seobject.py:253
-+#, python-format
-+msgid "%s already defined in translations"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:265
-+#, python-format
-+msgid "%s not defined in translations"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:290
-+msgid "Not yet implemented"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:294
-+msgid "Semanage transaction already in progress"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:303
-+msgid "Could not start semanage transaction"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:309
-+msgid "Could not commit semanage transaction"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:313
-+msgid "Semanage transaction not in progress"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:325
-+msgid "Could not list SELinux modules"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:336
-+msgid "Permissive Types"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:366
-+#, python-format
-+msgid "Could not set permissive domain %s (module installation failed)"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:380
-+#, python-format
-+msgid "Could not remove permissive domain %s (remove failed)"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
-+#, python-format
-+msgid "Could not create a key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
-+#, python-format
-+msgid "Could not check if login mapping for %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:412
-+#, python-format
-+msgid "Login mapping for %s is already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:417
-+#, python-format
-+msgid "Linux Group %s does not exist"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:422
-+#, python-format
-+msgid "Linux User %s does not exist"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:426
-+#, python-format
-+msgid "Could not create login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
-+#, python-format
-+msgid "Could not set name for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
-+#, python-format
-+msgid "Could not set MLS range for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:439
-+#, python-format
-+msgid "Could not set SELinux user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:443
-+#, python-format
-+msgid "Could not add login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
-+msgid "add SELinux user mapping"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:462
-+msgid "Requires seuser or serange"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
-+#, python-format
-+msgid "Login mapping for %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:476
-+#, python-format
-+msgid "Could not query seuser for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:492
-+#, python-format
-+msgid "Could not modify login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:524
-+#, python-format
-+msgid "Login mapping for %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:528
-+#, python-format
-+msgid "Could not delete login mapping for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:551
-+msgid "Could not list login mappings"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
-+msgid "Login Name"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
-+msgid "SELinux User"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
-+msgid "MLS/MCS Range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:590
-+#, python-format
-+msgid "You must add at least one role for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
-+#, python-format
-+msgid "Could not check if SELinux user %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:600
-+#, python-format
-+msgid "SELinux user %s is already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:604
-+#, python-format
-+msgid "Could not create SELinux user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:613
-+#, python-format
-+msgid "Could not add role %s for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:622
-+#, python-format
-+msgid "Could not set MLS level for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:625
-+#, python-format
-+msgid "Could not add prefix %s for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:628
-+#, python-format
-+msgid "Could not extract key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:632
-+#, python-format
-+msgid "Could not add SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:655
-+msgid "Requires prefix, roles, level or range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:657
-+msgid "Requires prefix or roles"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
-+#, python-format
-+msgid "SELinux user %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:671
-+#, python-format
-+msgid "Could not query user for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:698
-+#, python-format
-+msgid "Could not modify SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:731
-+#, python-format
-+msgid "SELinux user %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:735
-+#, python-format
-+msgid "Could not delete SELinux user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:758
-+msgid "Could not list SELinux users"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:764
-+#, python-format
-+msgid "Could not list roles for user %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:777
-+msgid "Labeling"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:777
-+msgid "MLS/"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "Prefix"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Level"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778
-+msgid "MCS Range"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
-+msgid "SELinux Roles"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:798
-+msgid "Protocol udp or tcp is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:800
-+msgid "Port is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:811
-+#, python-format
-+msgid "Could not create a key for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:822
-+msgid "Type is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
-+#, python-format
-+msgid "Could not check if port %s/%s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:830
-+#, python-format
-+msgid "Port %s/%s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:834
-+#, python-format
-+msgid "Could not create port for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:840
-+#, python-format
-+msgid "Could not create context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:844
-+#, python-format
-+msgid "Could not set user in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:848
-+#, python-format
-+msgid "Could not set role in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:852
-+#, python-format
-+msgid "Could not set type in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:857
-+#, python-format
-+msgid "Could not set mls fields in port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:861
-+#, python-format
-+msgid "Could not set port context for %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:865
-+#, python-format
-+msgid "Could not add port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
-+msgid "Requires setype or serange"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:881
-+msgid "Requires setype"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
-+#, python-format
-+msgid "Port %s/%s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:893
-+#, python-format
-+msgid "Could not query port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:904
-+#, python-format
-+msgid "Could not modify port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:917
-+msgid "Could not list the ports"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:933
-+#, python-format
-+msgid "Could not delete the port %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:950
-+#, python-format
-+msgid "Port %s/%s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:954
-+#, python-format
-+msgid "Could not delete port %s/%s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
-+msgid "Could not list ports"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013
-+msgid "SELinux Port Type"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013
-+msgid "Proto"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
-+msgid "Port Number"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
-+msgid "Node Address is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
-+msgid "Node Netmask is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
-+msgid "Unknown or missing protocol"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
-+msgid "SELinux Type is required"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
-+#, python-format
-+msgid "Could not create key for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
-+msgid "Could not check if addr %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1060
-+#, python-format
-+msgid "Addr %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1064
-+#, python-format
-+msgid "Could not create addr for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
-+#, python-format
-+msgid "Could not create context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1073
-+#, python-format
-+msgid "Could not set mask for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1078
-+#, python-format
-+msgid "Could not set user in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1082
-+#, python-format
-+msgid "Could not set role in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1086
-+#, python-format
-+msgid "Could not set type in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1091
-+#, python-format
-+msgid "Could not set mls fields in addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1095
-+#, python-format
-+msgid "Could not set addr context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1099
-+#, python-format
-+msgid "Could not add addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
-+msgid "Addr %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1139
-+#, python-format
-+msgid "Could not query addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1150
-+#, python-format
-+msgid "Could not modify addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1188
-+#, python-format
-+msgid "Addr %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1192
-+#, python-format
-+msgid "Could not delete addr %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1208
-+msgid "Could not list addrs"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
-+#, python-format
-+msgid "Could not check if interface %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1262
-+#, python-format
-+msgid "Interface %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1266
-+#, python-format
-+msgid "Could not create interface for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1275
-+#, python-format
-+msgid "Could not set user in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1279
-+#, python-format
-+msgid "Could not set role in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1283
-+#, python-format
-+msgid "Could not set type in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1288
-+#, python-format
-+msgid "Could not set mls fields in interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1292
-+#, python-format
-+msgid "Could not set interface context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1296
-+#, python-format
-+msgid "Could not set message context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1300
-+#, python-format
-+msgid "Could not add interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
-+#, python-format
-+msgid "Interface %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1327
-+#, python-format
-+msgid "Could not query interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1338
-+#, python-format
-+msgid "Could not modify interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1363
-+#, python-format
-+msgid "Interface %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1367
-+#, python-format
-+msgid "Could not delete interface %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1383
-+msgid "Could not list interfaces"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1393
-+msgid "SELinux Interface"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
-+msgid "Context"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1417
-+#, python-format
-+msgid "Could not set user in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1421
-+#, python-format
-+msgid "Could not set role in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
-+#, python-format
-+msgid "Could not set mls fields in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1432
-+msgid "Invalid file specification"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
-+#, python-format
-+msgid "Could not check if file context for %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1457
-+#, python-format
-+msgid "File context for %s already defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1461
-+#, python-format
-+msgid "Could not create file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1469
-+#, python-format
-+msgid "Could not set type in file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
-+#, python-format
-+msgid "Could not set file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1483
-+#, python-format
-+msgid "Could not add file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1497
-+msgid "Requires setype, serange or seuser"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
-+#, python-format
-+msgid "File context for %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1516
-+#, python-format
-+msgid "Could not query file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1542
-+#, python-format
-+msgid "Could not modify file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1556
-+msgid "Could not list the file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1570
-+#, python-format
-+msgid "Could not delete the file context %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1588
-+#, python-format
-+msgid "File context for %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1594
-+#, python-format
-+msgid "Could not delete file context for %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1609
-+msgid "Could not list file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1613
-+msgid "Could not list local file contexts"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1632
-+msgid "SELinux fcontext"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1632
-+msgid "type"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
-+#, python-format
-+msgid "Could not check if boolean %s is defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
-+#, python-format
-+msgid "Boolean %s is not defined"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1668
-+#, python-format
-+msgid "Could not query file context %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1673
-+#, python-format
-+msgid "You must specify one of the following values: %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1677
-+#, python-format
-+msgid "Could not set active value of boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1680
-+#, python-format
-+msgid "Could not modify boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1698
-+#, python-format
-+msgid "Bad format %s: Record %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1721
-+#, python-format
-+msgid "Boolean %s is defined in policy, cannot be deleted"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1725
-+#, python-format
-+msgid "Could not delete boolean %s"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
-+msgid "Could not list booleans"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1773
-+msgid "unknown"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1776
-+msgid "off"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1776
-+msgid "on"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1785
-+msgid "SELinux boolean"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
-+msgid "Description"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:198
-+#, c-format
-+msgid "failed to set PAM_TTY\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:287
-+#, c-format
-+msgid "newrole: service name configuration hashtable overflow\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:297
-+#, c-format
-+msgid "newrole:  %s:  error on line %lu.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:436
-+#, c-format
-+msgid "cannot find valid entry in the passwd file.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:447
-+#, c-format
-+msgid "Out of memory!\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:452
-+#, c-format
-+msgid "Error!  Shell is not valid.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:509
-+#, c-format
-+msgid "Unable to clear environment\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:556 ../newrole/newrole.c:634
-+#, c-format
-+msgid "Error initializing capabilities, aborting.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:564 ../newrole/newrole.c:640
-+#, c-format
-+msgid "Error setting capabilities, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:570
-+#, c-format
-+msgid "Error setting KEEPCAPS, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:578 ../newrole/newrole.c:652
-+#, c-format
-+msgid "Error dropping capabilities, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:584 ../newrole/newrole.c:683
-+#, c-format
-+msgid "Error changing uid, aborting.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
-+#, c-format
-+msgid "Error resetting KEEPCAPS, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:597
-+#, c-format
-+msgid "Error dropping SETUID capability, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:602 ../newrole/newrole.c:657
-+#, c-format
-+msgid "Error freeing caps\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:701
-+#, c-format
-+msgid "Error connecting to audit system.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:707
-+#, c-format
-+msgid "Error allocating memory.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:714
-+#, c-format
-+msgid "Error sending audit message.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
-+#, c-format
-+msgid "Could not determine enforcing mode.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:765
-+#, c-format
-+msgid "Error!  Could not open %s.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:771
-+#, c-format
-+msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:781
-+#, c-format
-+msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:791
-+#, c-format
-+msgid "%s!  Could not set new context for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:838
-+#, c-format
-+msgid "%s changed labels.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:844
-+#, c-format
-+msgid "Warning! Could not restore context for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:901
-+#, c-format
-+msgid "Error: multiple roles specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:909
-+#, c-format
-+msgid "Error: multiple types specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:916
-+#, c-format
-+msgid "Sorry, -l may be used with SELinux MLS support.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:921
-+#, c-format
-+msgid "Error: multiple levels specified\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:931
-+#, c-format
-+msgid "Error: you are not allowed to change levels on a non secure terminal \n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:957
-+#, c-format
-+msgid "Couldn't get default type.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:967
-+#, c-format
-+msgid "failed to get new context.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:974
-+#, c-format
-+msgid "failed to set new role %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:981
-+#, c-format
-+msgid "failed to set new type %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:991
-+#, c-format
-+msgid "failed to build new range with level %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:996
-+#, c-format
-+msgid "failed to set new range %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1004
-+#, c-format
-+msgid "failed to convert new context to string\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1009
-+#, c-format
-+msgid "%s is not a valid context\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1016
-+#, c-format
-+msgid "Unable to allocate memory for new_context"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1042
-+#, c-format
-+msgid "Unable to obtain empty signal set\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1050
-+#, c-format
-+msgid "Unable to set SIGHUP handler\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1116
-+#, c-format
-+msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1133
-+#, c-format
-+msgid "failed to get old_context.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1140
-+#, c-format
-+msgid "Warning!  Could not retrieve tty information.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1161
-+#, c-format
-+msgid "error on reading PAM service configuration.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1196
-+#, c-format
-+msgid "newrole: incorrect password for %s\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1223
-+#, c-format
-+msgid "newrole: failure forking: %s"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
-+#, c-format
-+msgid "Unable to restore tty label...\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
-+#, c-format
-+msgid "Failed to close tty properly\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1287
-+#, c-format
-+msgid "Could not close descriptors.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1314
-+#, c-format
-+msgid "Error allocating shell's argv0.\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1346
-+#, c-format
-+msgid "Unable to restore the environment, aborting\n"
-+msgstr ""
-+
-+#: ../newrole/newrole.c:1357
-+msgid "failed to exec shell\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:22
-+#, c-format
-+msgid "usage:  %s [-qi]\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:71
-+#, c-format
-+msgid "%s:  Policy is already loaded and initial load requested\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:80
-+#, c-format
-+msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
-+msgstr ""
-+
-+#: ../load_policy/load_policy.c:90
-+#, c-format
-+msgid "%s:  Can't load policy:  %s\n"
-+msgstr ""
-+
-+#: ../scripts/chcat:92 ../scripts/chcat:169
-+msgid "Requires at least one category"
-+msgstr ""
-+
-+#: ../scripts/chcat:106 ../scripts/chcat:183
-+#, c-format
-+msgid "Can not modify sensitivity levels using '+' on %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:110
-+#, c-format
-+msgid "%s is already in %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:188 ../scripts/chcat:198
-+#, c-format
-+msgid "%s is not in %s"
-+msgstr ""
-+
-+#: ../scripts/chcat:267 ../scripts/chcat:272
-+msgid "Can not combine +/- with other types of categories"
-+msgstr ""
-+
-+#: ../scripts/chcat:319
-+msgid "Can not have multiple sensitivities"
-+msgstr ""
-+
-+#: ../scripts/chcat:325
-+#, c-format
-+msgid "Usage %s CATEGORY File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:326
-+#, c-format
-+msgid "Usage %s -l CATEGORY user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:327
-+#, c-format
-+msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:328
-+#, c-format
-+msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:329
-+#, c-format
-+msgid "Usage %s -d File ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:330
-+#, c-format
-+msgid "Usage %s -l -d user ..."
-+msgstr ""
-+
-+#: ../scripts/chcat:331
-+#, c-format
-+msgid "Usage %s -L"
-+msgstr ""
-+
-+#: ../scripts/chcat:332
-+#, c-format
-+msgid "Usage %s -L -l user"
-+msgstr ""
-+
-+#: ../scripts/chcat:333
-+msgid "Use -- to end option list.  For example"
-+msgstr ""
-+
-+#: ../scripts/chcat:334
-+msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-+msgstr ""
-+
-+#: ../scripts/chcat:335
-+msgid "chcat -l +CompanyConfidential juser"
-+msgstr ""
-+
-+#: ../scripts/chcat:399
-+#, c-format
-+msgid "Options Error %s "
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Nils-Christoph Fiedler <ncfiedler@fedoraproject.org>"
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Brukerprogramm"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Allens"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Inbinnen"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Netprogramme"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Speele"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nl.po policycoreutils-2.0.85/po/nl.po
---- nsapolicycoreutils/po/nl.po        2011-02-17 15:11:25.137734670 -0500
-+++ policycoreutils-2.0.85/po/nl.po    2011-02-18 16:03:41.436976207 -0500
-@@ -1,19 +1,42 @@
-+# translation of policycoreutils.HEAD.nl.po to Dutch
- # translation of policycoreutils to Dutch
- # This file is distributed under the same license as the policycoreutils package.
--# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
--#
-+# Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
- # Peter van Egdom <p.van.egdom@gmail.com>, 2006, 2007, 2008.
-+# R.E. van der Luit <nippur@fedoraproject.org>, 2009.
-+# Geert Warrink <geert.warrink@onsnet.nu>, 2009, 2010.
-+# Geert Warrink <geert.warrink@onsnet.nu>, 2009, 2010.
- msgid ""
- msgstr ""
--"Project-Id-Version: policycoreutils\n"
-+"Project-Id-Version: policycoreutils.HEAD.nl\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-08-10 15:45+0200\n"
--"Last-Translator: Peter van Egdom <p.van.egdom@gmail.com>\n"
--"Language-Team: Dutch <vertaling@nl.linux.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-14 14:01+0200\n"
-+"Last-Translator: Geert Warrink <geert.warrink@onsnet.nu>\n"
-+"Language-Team: Fedora\n"
-+"Language: nl\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
--"Content-Transfer-Encoding: 8bit\n"
-+"Content-Transfer-Encoding: \n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Virtaal 0.6.1\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configureer SELinux in een grafische omgeving"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux beheer"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Maak een SELinux tactiek module aan"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux tactiek generatie gereedschap"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -22,7 +45,8 @@
- "         <args ...> are the arguments to that script."
- msgstr ""
- "GEBRUIK: run_init <script> <argumenten ...>\n"
--"  waar: <script> de naam is van het init script dat moet worden uitgevoerd,\n"
-+"  waarin: <script> de naam is van het init script dat moet worden "
-+"uitgevoerd,\n"
- "        <argumenten ...> de argumenten zijn voor dat script."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
-@@ -33,7 +57,7 @@
- #: ../run_init/run_init.c:139
- #, c-format
- msgid "failed to get account information\n"
--msgstr "verkrijgen van account-informatie is mislukt\n"
-+msgstr "verkrijgen van account informatie is mislukt\n"
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
- msgid "Password:"
-@@ -42,7 +66,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "Kan uw item in het shadow passwd bestand niet vinden.\n"
-+msgstr "Kan jouw ingang in het schaduw passwd bestand niet vinden.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
-@@ -67,7 +91,7 @@
- #: ../run_init/run_init.c:361
- #, c-format
- msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
--msgstr "Sorry, run_init mag alleen worden gebruikt op een SELinux kernel.\n"
-+msgstr "Sorry, run_init mag alleen worden gebruikt met een SELinux kernel.\n"
- #: ../run_init/run_init.c:380
- #, c-format
-@@ -85,45 +109,45 @@
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr ""
-+msgstr "Om dit tactiek pakket te activeren, voer uit:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
--msgstr ""
-+msgstr "Kan semanage handle niet creëren"
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "SELinux policy is niet beheerd of store kan niet worden benaderd."
-+msgstr "SELinux tactiek is niet beheerd of krijg geen toegang tot opslag."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "Kan policy store niet lezen."
-+msgstr "Kan tactiek opslag niet lezen."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
--msgstr "Kan semanage-connectie niet tot stand brengen"
-+msgstr "Kan semanage verbinding niet tot stand brengen"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Kan MLS bereik niet instellen voor %s"
-+msgstr "Kan MLS aangezet status niet testen"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "globaal"
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Niet in staat om %s te openen: vertalingen zijn niet ondersteund op niet-MLS "
-+"Niet in staat om %s te openen: vertalingen niet ondersteund op niet-MLS "
- "machines: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "Niveau"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Vertaling"
-@@ -145,7 +169,7 @@
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s niet gedefinieerd in vertalingen"
-+msgstr "%s is niet gedefinieerd in vertalingen"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
-@@ -153,19 +177,19 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage transactie is al bezig"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
--msgstr "Kan semanage-transactie niet starten"
-+msgstr "Kan semanage transactie niet starten"
- #: ../semanage/seobject.py:309
- msgid "Could not commit semanage transaction"
--msgstr "Kan semanage-transactie niet uitvoeren"
-+msgstr "Kan semanage transactie niet uitvoeren"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage transactie is niet bezig"
- #: ../semanage/seobject.py:325
- msgid "Could not list SELinux modules"
-@@ -173,746 +197,752 @@
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
--msgstr "Permissive soorten"
-+msgstr "Toelatende types"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "Kan toelatend domein %s niet instellen (module installatie mislukte)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Kan toelatend domein %s niet verwijderen (verwijderen mislukte)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Kan geen sleutel aanmaken voor %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
--msgstr "Kan niet controleren of login mapping voor %s is gedefinieerd"
-+msgstr "Kan niet controleren of inlog afbeelding voor %s is gedefinieerd"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "Login mapping voor %s is al gedefinieerd"
-+msgstr "Inlog afbeelding voor %s is al gedefinieerd"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux groep %s bestaat niet"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux gebruiker %s bestaat niet"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr "Kan geen login mapping aanmaken voor %s"
-+msgstr "Kan geen inlog afbeelding aanmaken voor %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Kan naam niet instellen voor %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "Kan MLS bereik niet instellen voor %s"
-+msgstr "Kan MLS reeks niet instellen voor %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Kan SELinux gebruiker niet instellen voor %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "Kan login mapping niet toevoegen voor %s"
-+msgstr "Kan inlog afbeelding niet toevoegen voor %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr ""
-+msgstr "voeg SELinux gebruiker afbeelding toe"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Vereist seuser of serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr "Login mapping voor %s is niet gedefinieerd"
-+msgstr "Inlog afbeelding voor %s is niet gedefinieerd"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Kan seuser niet opvragen voor %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr "Kan login mapping niet veranderen voor %s"
-+msgstr "Kan inlog afbeelding niet veranderen voor %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--"Login mapping voor %s is gedefinieerd in policy, kan niet worden verwijderd"
-+"Inlog afbeelding voor %s is gedefinieerd in tactiek, kan niet worden "
-+"verwijderd"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr "Kan login mapping niet verwijderen voor %s"
-+msgstr "Kan inlog afbeelding niet verwijderen voor %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr "Kan login mappings niet tonen"
-+msgstr "Kan inlog afbeeldingen niet tonen"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
--msgstr ""
-+msgstr "Inlog naam"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux gebruiker"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
--msgstr "MLS/MCS bereik"
-+msgstr "MLS/MCS reeks"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
--msgstr "U moet ten minste een rol voor %s toevoegen"
-+msgstr "Je moet ten minste een rol voor %s toevoegen"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Kan niet controleren of SELinux gebruiker %s is gedefinieerd"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux gebruiker %s is al gedefinieerd"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Kan geen SELinux gebruiker aanmaken voor %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Kan rol %s niet toevoegen voor %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Kan MLS niveau niet instellen voor %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Kan prefix %s niet toevoegen voor %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
--msgstr "Kan sleutel niet uitpakken voor %s"
-+msgstr "Kan sleutel niet extraheren voor %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Kan SELinux gebruiker %s niet toevoegen"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Vereist prefix, rollen, niveau of bereik"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Vereist prefix of rollen"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux gebruiker %s is niet gedefinieerd"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Kan gebruiker niet opvragen voor %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Kan SELinux gebruiker %s niet veranderen"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--"SELinux gebruiker %s is gedefinieerd in policy, kan niet worden verwijderd"
-+"SELinux gebruiker %s is gedefinieerd in tactiek, kan niet worden verwijderd"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Kan SELinux gebruiker %s niet verwijderen"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Kan SELinux gebruikers niet tonen"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Kan rollen voor gebruiker %s niet tonen"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr ""
-+msgstr "Labelen"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefix"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS niveau"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
--msgstr "MCS bereik"
-+msgstr "MCS reeks"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
--msgstr ""
-+msgstr "SELinux rollen"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Protocol udp of tcp is vereist"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Poort is vereist"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Kan geen sleutel aanmaken voor %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Type is vereist"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr "Kan niet controleren of poort %s/%s is gedefinieerd"
-+msgstr "Kan niet controleren of poort %s/%s gedefinieerd is"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Poort %s/%s is al gedefinieerd"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Kan geen poort aanmaken voor %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Kan geen context aanmaken voor %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Kan gebruiker in poort context niet instellen voor %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Kan rol in poort context niet instellen voor %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Kan type in poort context niet instellen voor %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Kan mls velden in poort context niet instellen voor %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Kan poort context niet instellen voor %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Kan poort %s/%s niet toevoegen"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Vereist setype of serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Vereist setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Poort %s/%s is niet gedefinieerd"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Kan poort %s/%s niet opvragen"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Kan poort %s/%s niet veranderen"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Kan poorten niet tonen"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "Kan poort %s niet verwijderen"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "Poort %s/%s is gedefinieerd in policy, kan niet worden verwijderd"
-+msgstr "Poort %s/%s is gedefinieerd in tactiek, kan niet worden verwijderd"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Kan poort %s/%s niet verwijderen"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Kan poorten niet tonen"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr ""
-+msgstr "SELinux poort type"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
--msgstr ""
-+msgstr "Proto"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
--msgstr "Poortnummer"
-+msgstr "Poort nummer"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "Poort is vereist"
-+msgstr "Node adres is vereist"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Poort is vereist"
-+msgstr "Node netmasker is vereist"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "Onbekend of ontbrekend protocol"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux type is vereist"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Kan geen sleutel aanmaken voor %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Kan niet controleren of poort %s/%s is gedefinieerd"
-+msgstr "Kan niet controleren of addr %s is gedefinieerd"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Poort %s/%s is al gedefinieerd"
-+msgstr "Addr %s is al gedefinieerd"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "Kan geen sleutel aanmaken voor %s"
-+msgstr "Kan geen addr aanmaken voor %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Kan geen context aanmaken voor %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "Kan naam niet instellen voor %s"
-+msgstr "Kan geen masker instellen voor %s"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "Kan gebruiker in bestandscontext niet instellen voor %s"
-+msgstr "Kan gebruiker in addr context niet instellen voor %s"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Kan rol in bestandscontext niet instellen voor %s"
-+msgstr "Kan rol in addr context niet instellen voor %s"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Kan type in bestandscontext niet instellen voor %s"
-+msgstr "Kan type in addr context niet instellen voor %s"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "Kan mls velden in bestandscontext niet instellen voor %s"
-+msgstr "Kan mls velden in addr context niet instellen voor %s"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Kan bestandscontext niet instellen voor %s"
-+msgstr "Kan addr context niet instellen voor %s"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "Kan poort %s/%s niet toevoegen"
-+msgstr "Kan addr %s niet toevoegen"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "Poort %s/%s is niet gedefinieerd"
-+msgstr "Addr %s is niet gedefinieerd"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "Kan poort %s/%s niet opvragen"
-+msgstr "Kan addr %s niet bevragen"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "Kan poort %s/%s niet veranderen"
-+msgstr "Kan addr %s niet veranderen"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Poort %s/%s is gedefinieerd in policy, kan niet worden verwijderd"
-+msgstr "Addr %s gedefinieerd in tactiek, kan niet worden verwijderd"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "Kan de %s niet verwijderen"
-+msgstr "Kan addr %s niet verwijderen"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Kan poorten niet tonen"
-+msgstr "Kan addr's niet tonen"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr "Kan niet controleren of interface %s is gedefinieerd"
-+msgstr "Kan niet controleren of interface %s gedefinieerd is"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Interface %s is al gedefinieerd"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Kan geen interface aanmaken voor %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Kan gebruiker in interface context niet instellen voor %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Kan rol in interface context niet instellen voor %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Kan type in interface context niet instellen voor %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Kan mls velden in interface context niet instellen voor %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Kan interface context niet instellen voor %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "Kan message context niet instellen voor %s"
-+msgstr "Kan boodschap context niet instellen voor %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Kan interface %s niet toevoegen"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Interface %s is niet gedefinieerd"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Kan interface %s niet opvragen"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Kan interface %s niet veranderen"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "Interface %s is gedefinieerd in policy, kan niet worden verwijderd"
-+msgstr "Interface %s is gedefinieerd in tactiek, kan niet worden verwijderd"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Kan interface %s niet verwijderen"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Kan interfaces niet tonen"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux interface"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Context"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "Kan gebruiker in bestandscontext niet instellen voor %s"
-+msgstr "Kan gebruiker in bestand context niet instellen voor %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "Kan rol in bestandscontext niet instellen voor %s"
-+msgstr "Kan rol in bestand context niet instellen voor %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "Kan mls velden in bestandscontext niet instellen voor %s"
-+msgstr "Kan mls velden in bestand context niet instellen voor %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr ""
-+msgstr "Ongeldige bestand specificatie"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "Kan niet controleren of bestandscontext voor %s is gedefinieerd"
-+msgstr "Kan niet controleren of bestand context voor %s is gedefinieerd"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "Bestandscontext voor %s is al gedefinieerd"
-+msgstr "Bestand context voor %s is al gedefinieerd"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr "Kan geen bestandscontext aanmaken voor %s"
-+msgstr "Kan geen bestand context aanmaken voor %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "Kan type in bestandscontext niet instellen voor %s"
-+msgstr "Kan type in bestand context niet instellen voor %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "Kan bestandscontext niet instellen voor %s"
-+msgstr "Kan bestand context niet instellen voor %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "Kan bestandscontext niet toevoegen voor %s"
-+msgstr "Kan bestand context niet toevoegen voor %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Vereist setype, serange of seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr "Bestandscontext voor %s is niet gedefinieerd"
-+msgstr "Bestand context voor %s is niet gedefinieerd"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr "Kan bestandscontext niet opvragen voor %s"
-+msgstr "Kan bestand context niet opvragen voor %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr "Kan bestandscontext niet veranderen voor %s"
-+msgstr "Kan bestand context niet veranderen voor %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "Kan bestandscontexten niet tonen"
-+msgstr "Kan bestand contexten niet tonen"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
--msgstr "Kan bestandscontext %s niet verwijderen"
-+msgstr "Kan bestand context %s niet verwijderen"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--"Bestandscontext voor %s is gedefinieerd in policy, kan niet worden verwijderd"
-+"Bestand context voor %s is gedefinieerd in tactiek, kan niet worden "
-+"verwijderd"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr "Kan bestandscontext niet verwijderen voor %s"
-+msgstr "Kan bestand context niet verwijderen voor %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "Kan bestandscontexten niet tonen"
-+msgstr "Kan bestand contexten niet tonen"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "Kan lokale bestandscontexten niet tonen"
-+msgstr "Kan lokale bestand contexten niet tonen"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
--msgstr ""
-+msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
--msgstr "soort"
-+msgstr "type"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr "Kan niet controleren of boolean %s is gedefinieerd"
-+msgstr "Kan niet controleren of Boolean %s gedefinieerd is"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
--msgstr "Booleaan %s is niet gedefinieerd"
-+msgstr "Boolean %s is niet gedefinieerd"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr "Kan bestandscontext %s niet opvragen"
-+msgstr "Kan bestand context %s niet opvragen"
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "U moet een van de volgende waarden opgeven: %s"
-+msgstr "Je moet een van de volgende waarden opgeven: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Kan actieve waarde van booleaan %s niet instellen"
-+msgstr "Kan actieve waarde van Boolean %s niet instellen"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
--msgstr "Kan booleaan %s niet veranderen"
-+msgstr "Kan Boolean %s niet veranderen"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Verkeerd formaat %s: Record %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "Booleaan %s is gedefinieerd in policy, kan niet worden verwijderd"
-+msgstr "Boolean %s is gedefinieerd in tactiek, kan niet worden verwijderd"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
--msgstr "Kan booleaan %s niet verwijderen"
-+msgstr "Kan Boolean %s niet verwijderen"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
--msgstr "Kan booleanen niet tonen"
-+msgstr "Kan Booleans niet tonen"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "onbekend"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "uit"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "aan"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
--msgstr ""
-+msgstr "SELinux Boolean"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
--msgstr ""
-+msgstr "Beschrijving"
- #: ../newrole/newrole.c:198
- #, c-format
-@@ -922,17 +952,17 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
-+msgstr "newrole: service naam configuratie hashtable overflow\n"
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
--msgstr ""
-+msgstr "newrole:  %s:  fout op regel %lu.\n"
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr "kan geen geldig item in het passwd bestand vinden.\n"
-+msgstr "kan geen geldige ingang in het passwd bestand vinden.\n"
- #: ../newrole/newrole.c:447
- #, c-format
-@@ -950,7 +980,7 @@
- msgstr "Niet in staat om de omgeving op te schonen\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Fout bij het initialiseren van capabilities, afbreken.\n"
-@@ -982,7 +1012,7 @@
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "Fout bij het uitzetten van SETUID capability, afbreken\n"
-+msgstr "Fout bij het uitzetten van SETUID mogelijkheid, afbreken\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
-@@ -1002,12 +1032,12 @@
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr "Fout bij het versturen van audit melding.\n"
-+msgstr "Fout bij het versturen van audit boodschap.\n"
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr "Kan enforcing mode niet vaststellen.\n"
-+msgstr "Kan afdwingende mode niet vaststellen.\n"
- #: ../newrole/newrole.c:765
- #, c-format
-@@ -1036,7 +1066,7 @@
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr "%s heeft andere labels.\n"
-+msgstr "%s veranderde labels.\n"
- #: ../newrole/newrole.c:844
- #, c-format
-@@ -1067,11 +1097,12 @@
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
- msgstr ""
-+"Fout: Niveaus op een onbeveiligde terminal veranderen is niet toegestaan \n"
- #: ../newrole/newrole.c:957
- #, c-format
- msgid "Couldn't get default type.\n"
--msgstr "Kan standaardtype niet verkrijgen.\n"
-+msgstr "Kan standaard type niet verkrijgen.\n"
- #: ../newrole/newrole.c:967
- #, c-format
-@@ -1091,7 +1122,7 @@
- #: ../newrole/newrole.c:991
- #, c-format
- msgid "failed to build new range with level %s\n"
--msgstr "samenstellen van nieuw bereik met niveau %s is mislukt\n"
-+msgstr "samenstellen van nieuwe reeks met niveau %s is mislukt\n"
- #: ../newrole/newrole.c:996
- #, c-format
-@@ -1116,17 +1147,17 @@
- #: ../newrole/newrole.c:1042
- #, c-format
- msgid "Unable to obtain empty signal set\n"
--msgstr "Niet in staat om een lege signaalverzameling te verkrijgen\n"
-+msgstr "Niet in staat om een lege signaal set te verkrijgen\n"
- #: ../newrole/newrole.c:1050
- #, c-format
- msgid "Unable to set SIGHUP handler\n"
--msgstr "Niet in staat om SIGHUP-verwerker in te stellen\n"
-+msgstr "Niet in staat om SIGHUP verwerker in te stellen\n"
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr "Sorry, newrole mag alleen worden gebruikt op een SELinux kernel.\n"
-+msgstr "Sorry, newrole mag alleen worden gebruikt met een SELinux kernel.\n"
- #: ../newrole/newrole.c:1133
- #, c-format
-@@ -1136,12 +1167,12 @@
- #: ../newrole/newrole.c:1140
- #, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Waarschuwing! Kan tty-informatie niet ophalen.\n"
-+msgstr "Waarschuwing! Kan tty informatie niet ophalen.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr ""
-+msgstr "fout bij het lezen van de PAM service instelling.\n"
- #: ../newrole/newrole.c:1196
- #, c-format
-@@ -1156,7 +1187,7 @@
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
- #, c-format
- msgid "Unable to restore tty label...\n"
--msgstr "Niet in staat om tty-label terug te zetten...\n"
-+msgstr "Niet in staat om tty label terug te zetten...\n"
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
- #, c-format
-@@ -1166,7 +1197,7 @@
- #: ../newrole/newrole.c:1287
- #, c-format
- msgid "Could not close descriptors.\n"
--msgstr "Kan indicators niet sluiten.\n"
-+msgstr "Kan beschrijvingen niet sluiten.\n"
- #: ../newrole/newrole.c:1314
- #, c-format
-@@ -1190,17 +1221,17 @@
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr ""
-+msgstr "%s:  Tactiek is al geladen en initiële inladen wordt verzocht\n"
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr ""
-+msgstr "%s:  Kan tactiek niet laden en afdwingende mode verzocht:  %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s:  Kan policy:  %s niet laden\n"
-+msgstr "%s:  Kan tactiek:  %s niet laden\n"
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
-@@ -1210,7 +1241,7 @@
- #, c-format
- msgid "Can not modify sensitivity levels using '+' on %s"
- msgstr ""
--"Kan sensitivity niveaus door gebruik te maken van '+' op %s niet wijzigen"
-+"Kan gevoeligheid niveaus door gebruik te maken van '+' op %s niet wijzigen"
- #: ../scripts/chcat:110
- #, c-format
-@@ -1228,7 +1259,7 @@
- #: ../scripts/chcat:319
- msgid "Can not have multiple sensitivities"
--msgstr "Kan geen meerdere sensitivities hebben"
-+msgstr "Kan geen meerdere gevoeligheden hebben"
- #: ../scripts/chcat:325
- #, c-format
-@@ -1272,7 +1303,7 @@
- #: ../scripts/chcat:333
- msgid "Use -- to end option list.  For example"
--msgstr "Gebruik -- om de optielijst te beëindigen.  Bijvoorbeeld"
-+msgstr "Gebruik -- om de optie lijst te beëindigen.  Bijvoorbeeld"
- #: ../scripts/chcat:334
- msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-@@ -1287,392 +1318,2238 @@
- msgid "Options Error %s "
- msgstr "Fout in opties %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "vertalingen niet ondersteund op niet-MLS machines"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Boolean"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "alle"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Aangepast"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Bestand labeling"
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "bestandstype"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Bestand\n"
-+"specificatie"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "gebruiker"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"SELinux\n"
-+"bestand type"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS bereik"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Bestand\n"
-+"type"
--#~ msgid "Login '%s' is required"
--#~ msgstr "Login '%s' is vereist"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Gebruikers afbeelding"
--#~ msgid "Module Name"
--#~ msgstr "Modulenaam"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Inlog\n"
-+"naam"
--#~ msgid "Version"
--#~ msgstr "Versie"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"gebruiker"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS bereik"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Inlog '%s' is vereist"
--#~ msgid "translator-credits"
--#~ msgstr "Peter van Egdom <p.van.egdom@gmail.com>"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Tactiek module"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Applicaties</b>"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Module naam"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Webapplicatie/script (CGI)"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versie"
--#~ msgid "User Role"
--#~ msgstr "Gebruikersrol"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Zet audit uit"
--#~ msgid "Name"
--#~ msgstr "Naam"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Zet audit aan"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Laad tactiek module"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP-poorten</b>"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Niet-gereserveerde poorten (> 1024)"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP-poorten</b>"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"Peter van Egdom <p.van.egdom@gmail.com>, Geert Warrink <geert.warrink@onsnet."
-+"nu>"
--#~ msgid "Boolean Name"
--#~ msgstr "Booleaanse naam"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Dit gereedschap kan gebruikt worden om een tactiek raamwerk te maken, om "
-+"toepassingen of gebruikers te beperken bij het gebruik van SELinux.   \n"
-+"\n"
-+"Het gereedschap maakt:\n"
-+"Type afdwinging bestand (te)\n"
-+"Interface bestand (if)\n"
-+"Bestand context bestand (fc)\n"
-+"Shell script (sh) - wordt gebruikt om de tactiek te compileren en te "
-+"installeren."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Selecteer type van de toepassing/gebruiker rol die beperkt moet worden"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Toepassingen</b>"
--#~ msgid "Role"
--#~ msgstr "Rol"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Standaard Init Daemon is een daemon die bij het opstarten van het systeem "
-+"gestart wordt via init scripts.  Vereist gewoonlijk een script in /etc/rc.d/"
-+"init.d"
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Standaard Init Daemon"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS Systeem Daemon"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Service Daemon zijn daemons die gestart wordt door xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
--#~ msgid "Application"
--#~ msgstr "Applicatie"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Web toepassingen/Script (CGI) CGI script gestart door de web server (apache)"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s moet een directory zijn"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Web toepassing/script (CGI)"
--#~ msgid "You must select a user"
--#~ msgstr "U moet een gebruiker selecteren"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Gebruiker toepassing is elke toepassing die je wilt beperken en gestart "
-+"wordt door een gebruiker"
--#~ msgid "You must enter a name"
--#~ msgstr "U moet een naam invoeren"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Gebruiker toepassing"
--#~ msgid "You must enter a executable"
--#~ msgstr "U moet een uitvoerbaar bestand opgeven"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Inlog gebruikers</b>"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux configureren"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Verander een bestaand inlog gebruiker record."
--#~ msgid "Interface file"
--#~ msgstr "Interface-bestand"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Bestaande gebruiker rollen"
--#~ msgid "Protocol"
--#~ msgstr "Protocol"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Deze gebruiker wil alleen inloggen op een machine met een terminal of "
-+"inloggen op afstand.  Standaard zal deze gebruiker  geen setuid, geen su, "
-+"geen sudo hebben."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Minimale terminal gebruiker rol"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "niveau"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Deze gebruiker kan inloggen op een machine met X of een terminal.  Standaard "
-+"zal deze gebruiker geen setuid, geen netwerk, geen sudo, geen su hebben"
--#~ msgid "Port"
--#~ msgstr "Poort"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Minimale X Windows gebruiker rol"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Poortnummer \"%s\" is niet geldig.  0 < PORT_NUMBER < 65536 "
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Gebruiker met volledig netwerk, geen setuid toepassingen zonder overgang, "
-+"geen sudo, geen su."
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Gebruiker rol"
--#~ msgid "Network Configuration"
--#~ msgstr "Netwerkconfiguratie"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Gebruiker met volledige netwerk, geen setuid toepassingen zonder overgang, "
-+"geen su, kan sudo gebruiken voor root beheerder rol"
--#~ msgid "Databases"
--#~ msgstr "Databases"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Beheer gebruiker rol"
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root gebruikers</b>"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Selecteer root beheerder gebruiker rol als deze gebruiker de machine gaat "
-+"beheren terwijl deze draait als root.  Deze gebruiker zal niet rechtstreeks "
-+"op het systeem kunnen inloggen."
--#~ msgid "Cron"
--#~ msgstr "Cron"
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root beheerder gebruiker rol"
--#~ msgid "CVS"
--#~ msgstr "CVS"
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+"Vul de naam van de toepassing of gebruiker rol in die beperkt moet worden"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Naam"
--#~ msgid "Compatibility"
--#~ msgstr "Compatibiliteit"
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Vul het volledige pad in voor het programma dat beperkt moet worden."
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Vul een unieke naam in voor de beperkte toepassing of gebruiker rol."
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Programma"
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init script"
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL-authenticatieserver"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Vul het volledige pad in voor het init script dat gebruikt wordt om de "
-+"beperkte toepassing te starten."
--#~ msgid "Spam Protection"
--#~ msgstr "Spambeveiliging"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Selecteer gebruiker rollen die je wilt aanpassen"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Selecteer de gebruiker rollen die over zullen gaan naar de domeinen van deze "
-+"toepassing."
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Universele SSL-tunnel"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Selecteer extra domeinen waarnaar deze gebruiker rol zal overgaan"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Selecteer de toepassing domeinen waarnaar je deze gebruiker rol wilt laten "
-+"overgaan."
--#~ msgid "Delete %s"
--#~ msgstr "%s wissen"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Selecteer gebruiker rollen die over zullen gaan naar dit domein"
--#~ msgid "Add %s"
--#~ msgstr "%s toevoegen"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Selecteer extra domeinen die deze gebruiker rol zal beheren"
--#~ msgid "Modify %s"
--#~ msgstr "%s veranderen"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Selecteer de domeinen die je deze gebruiker wilt laten beheren."
--#~ msgid "Permissive"
--#~ msgstr "Permissive"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Selecteer extra rollen voor deze gebruiker"
--#~ msgid "Status"
--#~ msgstr "Status"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Vul de netwerk poorten in waarnaar deze toepassing/gebruiker rol luistert"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP poorten</b>"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c) 2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Sta beperkte toepassing/ gebruiker rol toe te verbinden met elke udp poort"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux type"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Alle"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Sta toepassing/gebruiker rol toe om bindresvport aan te roepen met 0. "
-+"Verbinden met poort 600-1024"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "niveau"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "File Type"
--#~ msgstr "Bestandstype"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Vul een door komma's gescheiden lijst in van udp poorten of poort reeksen "
-+"waarnaar die toepassing/gebruiker rol verbindt. Bijvoorbeeld: 612, 650-660"
--#~ msgid "MLS"
--#~ msgstr "MLS"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Niet-gereserveerde poorten (> 1024)"
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux gebruiker toevoegen"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Selecteer poorten"
--#~ msgid "Add"
--#~ msgstr "Toevoegen"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Sta toepassing/gebruiker rol toe te verbinden met elke udp poort > 1024"
--#~ msgid "_Properties"
--#~ msgstr "_Eigenschappen"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP poorten</b>"
--#~ msgid "_Delete"
--#~ msgstr "_Wissen"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Vul netwerk poorten in waarnaar die toepassing/gebruiker rol verbindt"
--#~ msgid "label37"
--#~ msgstr "label37"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Vul een door komma's gescheiden lijst in van tcp poorten of poort reeksen "
-+"waarnaar die toepassing/gebruiker rol verbindt. Bijvoorbeeld: 612, 650-660"
--#~ msgid "Filter"
--#~ msgstr "Filter"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Vul een door komma's gescheiden lijst in van udp poorten of poort reeksen "
-+"waarnaar die toepassing/gebruiker rol verbindt. Bijvoorbeeld: 612, 650-660"
--#~ msgid "label50"
--#~ msgstr "label50"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Selecteer algemene toepassing eigenschappen"
--#~ msgid "label38"
--#~ msgstr "label38"
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Schrijf syslog boodschappen\t"
--#~ msgid "label39"
--#~ msgstr "label39"
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Maak/bewerk tijdelijke bestanden in /tmp"
--#~ msgid "label41"
--#~ msgstr "label41"
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Gebruik Pam voor authenticatie"
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux gebruiker veranderen"
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Gebruik nsswitch of getpw* aanroepen"
--#~ msgid "label40"
--#~ msgstr "label40"
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Gebruik dbus"
--#~ msgid "Add Network Port"
--#~ msgstr "Netwerkpoorten toevoegen"
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Stuur audit boodschappen"
--#~ msgid "label42"
--#~ msgstr "label42"
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Is interactief met de terminal"
--#~ msgid "Load policy module"
--#~ msgstr "Policy-module laden"
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Stuur email"
--#~ msgid "label44"
--#~ msgstr "label44"
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Selecteer bestanden/mappen die de toepassing beheert"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux gebruiker '%s' is vereist"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Voeg bestanden/mappen toe waarnaar de toepassing moet \"Schrijven\". Pid "
-+"bestanden, Log bestanden, /var/lib bestanden ..."
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Selecteer Booleans die de toepassing gebruikt"
--#~ msgid "Default"
--#~ msgstr "Standaard"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+"Voeg toe/verwijder Booleans gebruikt voor deze beperkte toepassing/gebruiker"
--#~ msgid "<b>Boolean</b>"
--#~ msgstr "<b>Booleaan</b>"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Selecteer map waarin deze tactiek aangemaakt wordt"
--#~ msgid "<b>Description</b>"
--#~ msgstr "<b>Omschrijving</b>"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Tactiek map"
--#~ msgid "<b>Status</b>"
--#~ msgstr "<b>Status</b>"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Aangemaakte tactiek bestanden"
--#~ msgid "Apply"
--#~ msgstr "Toepassen"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Dit gereedschap zal het volgende aanmaken: \n"
-+"Type afdwinging(te), Bestand context(fc), Interface(if), Shell script(sh)\n"
-+"Voer shell scripts als root uit om te compileren/installeren en de bestanden/"
-+"mappen opnieuw te labelen.  \n"
-+"Gebruik semanage of useradd om Linux inlog gebruikers af te beelden op "
-+"gebruiker rollen.\n"
-+"Zet de machine in de toelatende mode (setenforce 0). \n"
-+"Log in als de gebruiker en test deze gebruiker rol.\n"
-+"Gebruik audit2allow -R om extra regels voor het te bestand aan te maken.\n"
--#~ msgid "Save Boolean Configuration File"
--#~ msgstr "Booleaan configuratiebestand opslaan"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Dit gereedschap zal het volgende aanmaken: \n"
-+"Type afdwinging(te), Bestand context(fc), Interface(if), Shell script(sh)\n"
-+"\n"
-+"Voer shell scripts uit om te compileren/installeren en de bestanden/mappen "
-+"opnieuw te labelen.  \n"
-+"Zet de machine in de toelatende mode (setenforce 0). \n"
-+"Draai/start opnieuw op de toepassing om avc boodschappen aan te maken.\n"
-+"Gebruik audit2allow -R om extra regels voor het te bestand aan te maken.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Voeg Booleans toe dialoog"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Booleaan naam"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Rol"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Bestaande _gebruiker"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Toepassing"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s moet een map zijn"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Je moet een gebruiker selecteren"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Selecteer een uitvoerbaar bestand om te beperken."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Selecteer een init script om te beperken."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+"Selecteer bestand(en) die de beperkte toepassing aanmaakt of naar schrijft"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Selecteer map(pen) waarvan de beperkte toepassing eigenaar is en naar "
-+"schrijft"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Selecteer map om tactiek bestanden in aan te maken"
--#~ msgid "_Previous"
--#~ msgstr "_Vorige"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Type %s_t is al gedefinieerd in de huidige tactiek.\n"
-+"Wil je verder gaan?"
--#~ msgid "Requires value"
--#~ msgstr "Vereist waarde"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Verifieer naam"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Ongeldige prefix %s"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Module %s.pp is al geladen in de huidige tactiek.\n"
-+"Wil je verder gaan?"
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Niet-gereserveerde poorten (> 1024)"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Je moet een naam invullen"
--#~ msgid "label25"
--#~ msgstr "label25"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Je moet een uitvoerbaar bestand opgeven"
--#~ msgid "label26"
--#~ msgstr "label26"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux configureren"
--#~ msgid "label28"
--#~ msgstr "label28"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Poorten moeten nummers of nummer reeksen zijn van 1 tot %d."
--#~ msgid "label30"
--#~ msgstr "label30"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Je moet een naam invullen voor jouw beperkte proces/gebruiker"
--#~ msgid "label31"
--#~ msgstr "label31"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "GEBRUIKER types zijn niet toegestaan als uitvoerbaar"
--#~ msgid "label32"
--#~ msgstr "label32"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Alleen DAEMON toepassingen kunnen een init script gebruiken"
--#~ msgid "label33"
--#~ msgstr "label33"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog moet een boolean waarde hebben"
--#~ msgid "label34"
--#~ msgstr "label34"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "GEBRUIKER types krijgen automatisch een tmp type"
--#~ msgid "label35"
--#~ msgstr "label35"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Je moet het uitvoerbare pad invullen voor jouw beperkt proces"
--#, fuzzy
--#~ msgid "label51"
--#~ msgstr "label25"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Type afdwingingd bestand"
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Interface bestand"
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Bestand context bestand"
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Setup script"
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Netwerk poort"
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"SELinux poort\n"
-+"type"
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protocol"
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"MLS/MCS\n"
-+"niveau"
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Poort"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Poort nummer \"%s\" is niet geldig.  0 < POORT_NUMMER < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Lijst overzicht"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Groep overzicht"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux service bescherming"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Zet SELinux bescherming voor acct daemon uit"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Beheer"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Sta alle daemons toe om core bestanden te schrijven naar /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Sta alle daemons toe om niet-toegewezen ttys te gebruiken"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Gebruiker privileges"
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta gadmin SELinux gebruiker account toe om bestanden uit te voeren in the "
-+"persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta guest SELinux gebruiker account toe om bestanden uit te voeren in the "
-+"persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Geheugen bescherming"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Sta uitvoerbare java stack toe"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Aankoppelen"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Sta mount toe om elk bestand aan te koppelen"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Sta mount toe om elke map aan te koppelen"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Sta mplayer uitvoerbare stack toe"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Sta ssh toe ssh-keysign te draaien"
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta staff SELinux gebruiker account toe om bestanden uit te voeren in the "
-+"persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta sysadm SELinux gebruiker account toe om bestanden uit te voeren in the "
-+"persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Sta niet-beperkte SELinux gebruiker account toe om bestanden uit te voeren "
-+"in the persoonlijke map of /tmp"
--#~ msgid "value"
--#~ msgstr "waarde"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Netwerk configuratie"
--#~ msgid "FTP"
--#~ msgstr "FTP"
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Sta niet gelabelde pakketten toe zich te verplaatsen over het netwerk"
--#~ msgid "Zebra"
--#~ msgstr "Zebra"
--
--#~ msgid "Spam Assassin"
--#~ msgstr "Spam Assassin"
--
--#~ msgid "MLS/MCS Level"
--#~ msgstr "MLS/MCS niveau"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS niveau"
--
--#~ msgid "Requires 2 or more arguments"
--#~ msgstr "Vereist 2 of meer argumenten"
--
--#~ msgid "%s not defined"
--#~ msgstr "%s niet gedefinieerd"
--
--#~ msgid "%s not valid for %s objects\n"
--#~ msgstr "%s niet geldig voor %s objecten\n"
--
--#~ msgid "range not supported on Non MLS machines"
--#~ msgstr "bereik niet ondersteund op niet-MLS machines"
--
--#~ msgid "Invalid value %s"
--#~ msgstr "Ongeldige waarde %s"
--
--#~ msgid ""
--#~ "In order to load this newly created policy package into the kernel,\n"
--#~ "you are required to execute \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
--#~ msgstr ""
--#~ "Om dit nieuw aangemaakte policy-pakket in de kernel te laden,\n"
--#~ "dient u het volgende commando uit te voeren \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta gebruiker SELinux gebruiker account toe om bestanden uit te voeren in "
-+"the persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Sta niet-beperkt toe om te dyntrans naar unconfined_execmem"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Databases"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Sta gebruiker toe om te verbinden met mysql socket"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Sta gebruiker toe om te verbinden met postgres socket"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "XServer"
--#~ msgid "Options Error: %s "
--#~ msgstr "Fout in opties: %s "
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Sta cliënten toe om te schrijven naar X gedeeld geheugen"
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Sta xguest SELinux gebruiker account toe om bestanden uit te voeren in the "
-+"persoonlijke map of /tmp"
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Sta daemons toe om met NIS te draaien"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Web toepassingen"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Overgang van staff SELinux gebruiker naar Web browser domein"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Overgang van sysadm SELinux gebruiker naar Web browser domein"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Overgang van user SELinux gebruiker naar Web browser domein"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Overgang van xguest SELinux gebruiker naar Web browser domein"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Sta staff Web browsers toe te schrijven naar persoonlijke mappen"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Zet SELinux bescherming uit voor amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Zet SELinux bescherming uit voor amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Zet SELinux bescherming uit voor apmd daemon"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Zet SELinux bescherming uit voor arpwatch daemon"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Zet SELinux bescherming uit voor auditd daemon"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Zet SELinux bescherming uit voor automount daemon"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Zet SELinux bescherming uit voor avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Zet SELinux bescherming uit voor bluetooth daemon"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Zet SELinux bescherming uit voor canna daemon"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Zet SELinux bescherming uit voor cardmgr daemon"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Zet SELinux bescherming uit voor Cluster server"
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Sta cdrecord toe verscheidene inhoud te lezen. nfs, samba, verwijderbare "
-+"apparaten, gebruikers temp en niet-vertrouwde inhoud bestanden"
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Zet SELinux bescherming uit voor ciped daemon"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Zet SELinux bescherming uit voor clamd daemon"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Zet SELinux bescherming uit voor clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Zet SELinux bescherming uit voor clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Zet SELinux bescherming uit voor comsat daemon"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Zet SELinux bescherming uit voor courier daemon"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Zet SELinux bescherming uit voor cpucontrol daemon"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Zet SELinux bescherming uit voor cpuspeed daemon"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Zet SELinux bescherming uit voor crond daemon"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Afdrukken"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Zet SELinux bescherming uit voor cups back-end server"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Zet SELinux bescherming uit voor cupsd daemon"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Zet SELinux bescherming uit voor cupsd_lpd"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Zet SELinux bescherming uit voor cvs daemon"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Zet SELinux bescherming uit voor cyrus daemon"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Zet SELinux bescherming uit voor dbskkd daemon"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Zet SELinux bescherming uit voor dbusd daemon"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Zet SELinux bescherming uit voor dccd"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Zet SELinux bescherming uit voor dccifd"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Zet SELinux bescherming uit voor dccm"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Zet SELinux bescherming uit voor ddt daemon"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Zet SELinux bescherming uit voor dwvfsd daemon"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Zet SELinux bescherming uit voor dhcpc daemon"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Zet SELinux bescherming uit voor dhcpd daemon"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Zet SELinux bescherming uit voor dictd daemon"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Sta sysadm_t toe om daemons rechtstreeks op te starten"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Zet SELinux bescherming uit voor Evolution"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Spellen"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Zet SELinux bescherming uit voor spellen"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Zet SELinux bescherming uit voor web browsers"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Zet SELinux bescherming uit voor Thunderbird"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Zet SELinux bescherming uit voor distccd daemon"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Zet SELinux bescherming uit voor dmesg daemon"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Zet SELinux bescherming uit voor dnsmasq daemon"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Zet SELinux bescherming uit voor dovecot daemon"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Zet SELinux bescherming uit voor entropyd daemon"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Zet SELinux bescherming uit voor fetchmail"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Zet SELinux bescherming uit voor fingerd daemon"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Zet SELinux bescherming uit voor freshclam daemon"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Zet SELinux bescherming uit voor fsdaemon daemon"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Zet SELinux bescherming uit voor gpm daemon"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Zet SELinux bescherming uit voor gss daemon"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Zet SELinux bescherming uit voor Hal daemon"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Compatibiliteit"
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"Audit geen zaken waarvan we weten dat ze kapot, zijn maar die geen "
-+"beveiliging risico's zijn"
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Zet SELinux bescherming uit voor hostname daemon"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Zet SELinux bescherming uit voor hotplug daemon"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Zet SELinux bescherming uit voor howl daemon"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Zet SELinux bescherming uit voor cups hplip daemon"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Zet SELinux bescherming uit voor httpd rotatelogs"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD service"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Zet SELinux bescherming uit voor http suexec"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Zet SELinux bescherming uit voor hwclock daemon"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Zet SELinux bescherming uit voor i18n daemon"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Zet SELinux bescherming uit voor imazesrv daemon"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Zet SELinux bescherming uit voor inetd child daemons"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Zet SELinux bescherming uit voor inetd daemon"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Zet SELinux bescherming uit voor innd daemon"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Zet SELinux bescherming uit voor iptables daemon"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Zet SELinux bescherming uit voor ircd daemon"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Zet SELinux bescherming uit voor irqbalance daemon"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Zet SELinux bescherming uit voor iscsi daemon"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Zet SELinux bescherming uit voor jabberd daemon"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Zet SELinux bescherming uit voor kadmind daemon"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Zet SELinux bescherming uit voor klogd daemon"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Zet SELinux bescherming uit voor krb5kdc daemon"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Zet SELinux bescherming uit voor ktalk daemon"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Zet SELinux bescherming uit voor kudzu daemon"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Zet SELinux bescherming uit voor locate daemon"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Zet SELinux bescherming uit voor lpd daemon"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Zet SELinux bescherming uit voor lrrd daemon"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Zet SELinux bescherming uit voor lvm daemon"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Zet SELinux bescherming uit voor mailman"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Sta evolution en thunderbird toe om bestanden van gebruikers te lezen"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Zet SELinux bescherming uit voor mdadm daemon"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Zet SELinux bescherming uit voor monopd daemon"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Sta de mozilla browser toe om bestanden van gebruikers te lezen"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Zet SELinux bescherming uit voor mrtg daemon"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Zet SELinux bescherming uit voor mysqld daemon"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Zet SELinux bescherming uit voor nagios daemon"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Naam service"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Zet SELinux bescherming uit voor named daemon"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Zet SELinux bescherming uit voor nessusd daemon"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Zet SELinux bescherming uit voor NetworkManager"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Zet SELinux bescherming uit voor nfsd daemon"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Zet SELinux bescherming uit voor nmbd daemon"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Zet SELinux bescherming uit voor nrpe daemon"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Zet SELinux bescherming uit voor nscd daemon"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Zet SELinux bescherming uit voor nsd daemon"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Zet SELinux bescherming uit voor ntpd daemon"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Zet SELinux bescherming uit voor oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Zet SELinux bescherming uit voor oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Zet SELinux bescherming uit voor openvpn daemon"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Zet SELinux bescherming uit voor pam daemon"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Zet SELinux bescherming uit voor pegasus"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Zet SELinux bescherming uit voor perdition daemon"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Zet SELinux bescherming uit voor portmap daemon"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Zet SELinux bescherming uit voor portslave daemon"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Zet SELinux bescherming uit voor postfix"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Zet SELinux bescherming uit voor postgresql daemon"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Sta toe dat pppd draait voor een gewone gebruiker"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Zet SELinux bescherming uit voor pptp"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Zet SELinux bescherming uit voor prelink daemon"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Zet SELinux bescherming uit voor privoxy daemon"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Zet SELinux bescherming uit voor ptal daemon"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Zet SELinux bescherming uit voor pxe daemon"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Zet SELinux bescherming uit voor pyzord"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Zet SELinux bescherming uit voor quota daemon"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Zet SELinux bescherming uit voor radiusd daemon"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Zet SELinux bescherming uit voor radvd daemon"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Zet SELinux bescherming uit voor rdisc"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Zet SELinux bescherming uit voor readahead"
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Sta toe dat programma's bestanden lezen in niet-standaard locaties "
-+"(default_t)"
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Zet SELinux bescherming uit voor restorecond"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Zet SELinux bescherming uit voor rhgb daemon"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Zet SELinux bescherming uit voor ricci"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Zet SELinux bescherming uit voor ricci_modclusterd"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Zet SELinux bescherming uit voor rlogind daemon"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Zet SELinux bescherming uit voor rpcd daemon"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Zet SELinux bescherming uit voor rshd"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Zet SELinux bescherming uit voor rsync daemon"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Sta ssh toe van inetd te draaien in plaats van als een daemon"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Sta Samba toe om nfs mappen te delen"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL authenticatie server"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Sta toe dat de sasl authenticatie server /etc/shadow leest"
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Sta toe dat X-Windows server een geheugen gebied zowel uitvoerbaar als "
-+"beschrijfbaar maakt"
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Zet SELinux bescherming uit voor saslauthd daemon"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Zet SELinux bescherming uit voor scannerdaemon daemon"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Sta geen overgang toe naar sysadm_t, gevolgen voor sudo en su "
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Sta geen enkel proces toe om kernel modules te laden"
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Sta geen enkel proces toe om de kernel SELinux tactiek te veranderen"
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Zet SELinux bescherming uit voor sendmail daemon"
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Zet SELinux bescherming uit voor setrans"
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Zet SELinux bescherming uit voor setroubleshoot daemon"
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Zet SELinux bescherming uit voor Slapd daemon"
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Zet SELinux bescherming uit voor slrnpull daemon"
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Zet SELinux bescherming uit voor smbd daemon"
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Zet SELinux bescherming uit voor snmpd daemon"
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Zet SELinux bescherming uit voor snort daemon"
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Zet SELinux bescherming uit voor soundd daemon"
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Zet SELinux bescherming uit voor sound daemon"
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Spam bescherming"
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Zet SELinux bescherming uit voor spamd daemon"
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Sta spamd toegang toe tot persoonlijke mappen"
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Sta Spam Assassin daemon netwerk toegang toe"
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Zet SELinux bescherming uit voor speedmgmt daemon"
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Sta squid daemon toe te verbinden met het netwerk"
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Zet SELinux bescherming uit voor squid daemon"
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Zet SELinux bescherming uit voor ssh daemon"
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Sta ssh inloggen toe met sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"Sta staff_r gebruikers toe om de persoonlijke map van sysadm te doorzoeken "
-+"en bestanden te lezen (zoals ~/.bashrc)"
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Universele SSL tunnel"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Zet SELinux bescherming uit voor stunnel daemon"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Sta de stunnel daemon toe alleen-staand te draaien, buiten xinetd"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Zet SELinux bescherming uit voor swat daemon"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Zet SELinux bescherming uit voor sxid daemon"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Zet SELinux bescherming uit voor syslogd daemon"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Zet SELinux bescherming uit voor systeem cron taken"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Zet SELinux bescherming uit voor tcp daemon"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Zet SELinux bescherming uit voor telnet daemon"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Zet SELinux bescherming uit voor tftpd daemon"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Zet SELinux bescherming uit voor transpoxy daemon"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Zet SELinux bescherming uit voor udev daemon"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Zet SELinux bescherming uit voor uml daemon"
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"Sta xinetd toe om onbeperkt te draaien, inclusief alle services die het "
-+"start en die een domein overgang niet expliciet gedefinieerd hebben"
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"Sta rc scripts toe om onbeperkt te draaien, inclusief alle daemons gestart "
-+"door een rc script en die een domein overgang niet expliciet gedefinieerd "
-+"hebben"
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Sta rpm toe om onbeperkt te draaien"
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"Sta programma's met rechten zoals hotplug en insmod toe om onbeperkt te "
-+"draaien"
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Zet SELinux bescherming uit voor updfstab daemon"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Zet SELinux bescherming uit voor uptimed daemon"
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"Sta user_r toe om sysadm_r te bereiken met su, sudo, of userhelper. Anders "
-+"kan alleen staff_r dit doen"
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Sta gebruikers toe om het mount commando uit te voeren"
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"Sta reguliere gebruikers directe toegang tot de muis toe (sta alleen de X "
-+"server toe)"
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Sta gebruikers toe het dmesg commando te draaien"
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"Sta gebruikers toe de netwerk interfaces te controleren (heeft ook "
-+"USERCTL=true nodig)"
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Sta gewone gebruikers ping uit te voeren"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+"Sta gebruikers lezen/schrijven toe van noextattrfile (FAT, CDROM, FLOPPY)"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Sta gebruikers lezen/schrijven toe van usb apparaten"
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"Sta gebruikers toe TCP server te draaien (verbinden naar poorten en "
-+"verbindingen accepteren van hetzelfde domein en gebruiker erbuiten), dit "
-+"uitzetten forceert FTP passieve mode en kan andere protocollen veranderen"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Sta gebruiker toe stat tty bestanden uit te voeren"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Zet SELinux bescherming uit voor uucp daemon"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Zet SELinux bescherming uit voor vmware daemon"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Zet SELinux bescherming uit voor watchdog daemon"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Zet SELinux bescherming uit voor winbind daemon"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Zet SELinux bescherming uit voor xdm daemon"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Sta xdm inloggen toe als sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Zet SELinux bescherming uit voor xen daemon"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "Sta xen lezen/schrijven toe voor fysieke apparaten"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Zet SELinux bescherming uit voor xfs daemon"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Zet SELinux bescherming uit voor xen controle"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Zet SELinux bescherming uit voor ypbind daemon"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Zet SELinux bescherming uit voor NIS wachtwoord daemon"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Zet SELinux bescherming uit voor ypserv daemon"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Zet SELinux bescherming uit voor NIS transfer daemon"
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Sta SELinux webadmin gebruiker toe om persoonlijke mappen van gebruikers "
-+"zonder rechten te beheren"
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Sta SELinux webadmin gebruiker toe om persoonlijke mappen van gebruikers "
-+"zonder rechten te lezen"
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Weet je zeker dat je %s '%s' wilt verwijderen?"
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s wissen"
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s toevoegen"
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s veranderen"
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Toelatend"
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Afdwingend"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Uitgezet"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Status"
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Het tactiek type veranderen zal een opnieuw labelen van het gehele systeem "
-+"veroorzaken bij de volgende systeem opstart. Opnieuw labelen duurt lang "
-+"afhankelijk van de grootte van het bestandssysteem. Wil je verder gaan?"
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"Veranderen van SELinux naar uitgezet vereist een systeem opstart.  Dit wordt "
-+"niet aanbevolen.  Als je later besluit om SELinux weer aan te zetten, zal "
-+"het systeem opnieuw labelen nodig hebben.  Als je alleen wilt zien of "
-+"SELinux een probleem op jouw systeem veroorzaakt, kun je naar de toelatende "
-+"mode gaan die alleen fouten zal bewaren en de SELinux tactiek niet "
-+"afdwingen.  Toelatende mode vereist geen systeem opstart    Wil je verder "
-+"gaan?"
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Veranderen naar SELinux aangezet zal opnieuw labelen van het gehele "
-+"bestandssysteem veroorzaken bij de volgende systeem opstart. Opnieuw labelen "
-+"kost veel tijd afhankelijk van de grootte van het bestandssysteem.  Wil je "
-+"verder gaan?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c) 2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Voeg SELinux inlog afbeelding toe"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Voeg SELinux netwerk poorten toe"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux type"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"niveau"
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Bestand specificatie"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Bestand type"
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"alle bestanden\n"
-+"reguliere bestanden\n"
-+"map\n"
-+"karakter apparaat\n"
-+"blok apparaat\n"
-+"socket\n"
-+"symbolische link\n"
-+"named pipe\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux gebruiker toevoegen"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux beheer"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Toevoegen"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Eigenschappen"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Verwijderen"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Selecteer beheer object"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Selecteer:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Systeem standaard afdwingende mode"
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Uitgezet\n"
-+"Toelatend\n"
-+"Afdwingend\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Huidige afdwingende mode"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Systeem standaard tactiek type:"
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Selecteer dit als je het gehele bestandssysteem bij de volgende systeem "
-+"opstart opnieuw wilt labelen.  Opnieuw labelen kan veel tijd kosten, "
-+"afhankelijk van de grootte van het systeem.  Als je het tactiek type "
-+"verandert of je gaat van uitgezet naar afdwingend, is opnieuw labelen "
-+"vereist."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Opnieuw labelen bij de volgende systeem opstart."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Schakel de Boolean instelling om naar de systeem standaard"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Schakel om tussen Aangepaste en Alle Booleans"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Voer de Booleans afsluiten assistent uit"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Afsluiten..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filter"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Voeg bestand context toe"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Verander bestand context"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Verwijder bestand context"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Schakel om tussen alle en aangepast bestand context"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Voeg SELinux gebruikers afbeelding toe"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Verander SELinux gebruikers afbeelding"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Verwijder SELinux gebruikers afbeelding"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Voeg gebruiker toe"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Verander gebruiker"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Verwijder gebruiker"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Voeg vertaling toe"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Verander vertaling"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Verwijder vertaling"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Netwerk poort toevoegen"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Bewerk netwerk poort"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Verwijder netwerk poort"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Schakel om tussen Aangepaste en Alle poorten"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Maak een nieuwe tactiek module aan"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Tactiek module laden"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Verwijder laadbare tactiek module"
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"Zet de extra audit regels, die normaal niet gerapporteerd worden in de log "
-+"bestanden, aan of uit."
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Verander de proces mode naar toelatend."
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Verander de proces mode naar afdwingend."
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Proces domein"
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux gebruiker '%s' is vereist"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Gevoeligheid niveau"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nn.po policycoreutils-2.0.85/po/nn.po
---- nsapolicycoreutils/po/nn.po        2011-02-17 15:11:25.165734209 -0500
-+++ policycoreutils-2.0.85/po/nn.po    2011-02-18 16:03:41.436976207 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/no.po policycoreutils-2.0.85/po/no.po
---- nsapolicycoreutils/po/no.po        2011-02-17 15:11:25.260732640 -0500
-+++ policycoreutils-2.0.85/po/no.po    1969-12-31 19:00:00.000000000 -0500
-@@ -1,1272 +0,0 @@
--# 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.
--#
--#, fuzzy
--msgid ""
--msgstr ""
--"Project-Id-Version: PACKAGE VERSION\n"
--"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-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"
--"MIME-Version: 1.0\n"
--"Content-Type: text/plain; charset=UTF-8\n"
--"Content-Transfer-Encoding: 8bit\n"
--
--#: ../run_init/run_init.c:67
--msgid ""
--"USAGE: run_init <script> <args ...>\n"
--"  where: <script> is the name of the init script to run,\n"
--"         <args ...> are the arguments to that script."
--msgstr ""
--
--#: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
--#, c-format
--msgid "failed to initialize PAM\n"
--msgstr ""
--
--#: ../run_init/run_init.c:139
--#, c-format
--msgid "failed to get account information\n"
--msgstr ""
--
--#: ../run_init/run_init.c:162 ../newrole/newrole.c:338
--msgid "Password:"
--msgstr ""
--
--#: ../run_init/run_init.c:197 ../newrole/newrole.c:363
--#, c-format
--msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr ""
--
--#: ../run_init/run_init.c:203 ../newrole/newrole.c:370
--#, c-format
--msgid "getpass cannot open /dev/tty\n"
--msgstr ""
--
--#: ../run_init/run_init.c:275
--#, c-format
--msgid "run_init: incorrect password for %s\n"
--msgstr ""
--
--#: ../run_init/run_init.c:309
--#, c-format
--msgid "Could not open file %s\n"
--msgstr ""
--
--#: ../run_init/run_init.c:336
--#, c-format
--msgid "No context in file %s\n"
--msgstr ""
--
--#: ../run_init/run_init.c:361
--#, c-format
--msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
--msgstr ""
--
--#: ../run_init/run_init.c:380
--#, c-format
--msgid "authentication failed.\n"
--msgstr ""
--
--#: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
--#, c-format
--msgid "Could not set exec context to %s.\n"
--msgstr ""
--
--#: ../audit2allow/audit2allow:217
--msgid "******************** IMPORTANT ***********************\n"
--msgstr ""
--
--#: ../audit2allow/audit2allow:218
--msgid "To make this policy package active, execute:"
--msgstr ""
--
--#: ../semanage/seobject.py:48
--msgid "Could not create semanage handle"
--msgstr ""
--
--#: ../semanage/seobject.py:55
--msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr ""
--
--#: ../semanage/seobject.py:60
--msgid "Cannot read policy store."
--msgstr ""
--
--#: ../semanage/seobject.py:65
--msgid "Could not establish semanage connection"
--msgstr ""
--
--#: ../semanage/seobject.py:70
--msgid "Could not test MLS enabled status"
--msgstr ""
--
--#: ../semanage/seobject.py:142 ../semanage/seobject.py:146
--msgid "global"
--msgstr ""
--
--#: ../semanage/seobject.py:206
--#, python-format
--msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr ""
--
--#: ../semanage/seobject.py:239
--msgid "Level"
--msgstr ""
--
--#: ../semanage/seobject.py:239
--msgid "Translation"
--msgstr ""
--
--#: ../semanage/seobject.py:247 ../semanage/seobject.py:261
--#, python-format
--msgid "Translations can not contain spaces '%s' "
--msgstr ""
--
--#: ../semanage/seobject.py:250
--#, python-format
--msgid "Invalid Level '%s' "
--msgstr ""
--
--#: ../semanage/seobject.py:253
--#, python-format
--msgid "%s already defined in translations"
--msgstr ""
--
--#: ../semanage/seobject.py:265
--#, python-format
--msgid "%s not defined in translations"
--msgstr ""
--
--#: ../semanage/seobject.py:290
--msgid "Not yet implemented"
--msgstr ""
--
--#: ../semanage/seobject.py:294
--msgid "Semanage transaction already in progress"
--msgstr ""
--
--#: ../semanage/seobject.py:303
--msgid "Could not start semanage transaction"
--msgstr ""
--
--#: ../semanage/seobject.py:309
--msgid "Could not commit semanage transaction"
--msgstr ""
--
--#: ../semanage/seobject.py:313
--msgid "Semanage transaction not in progress"
--msgstr ""
--
--#: ../semanage/seobject.py:325
--msgid "Could not list SELinux modules"
--msgstr ""
--
--#: ../semanage/seobject.py:336
--msgid "Permissive Types"
--msgstr ""
--
--#: ../semanage/seobject.py:378
--#, python-format
--msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
--
--#: ../semanage/seobject.py:384
--#, python-format
--msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
--
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
--#, python-format
--msgid "Could not create a key for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
--#, python-format
--msgid "Could not check if login mapping for %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:416
--#, python-format
--msgid "Login mapping for %s is already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:421
--#, python-format
--msgid "Linux Group %s does not exist"
--msgstr ""
--
--#: ../semanage/seobject.py:426
--#, python-format
--msgid "Linux User %s does not exist"
--msgstr ""
--
--#: ../semanage/seobject.py:430
--#, python-format
--msgid "Could not create login mapping for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
--#, python-format
--msgid "Could not set name for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
--#, python-format
--msgid "Could not set MLS range for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:443
--#, python-format
--msgid "Could not set SELinux user for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:447
--#, python-format
--msgid "Could not add login mapping for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
--msgid "add SELinux user mapping"
--msgstr ""
--
--#: ../semanage/seobject.py:466
--msgid "Requires seuser or serange"
--msgstr ""
--
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
--#, python-format
--msgid "Login mapping for %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:480
--#, python-format
--msgid "Could not query seuser for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:496
--#, python-format
--msgid "Could not modify login mapping for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:528
--#, python-format
--msgid "Login mapping for %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:532
--#, python-format
--msgid "Could not delete login mapping for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:555
--msgid "Could not list login mappings"
--msgstr ""
--
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--msgid "Login Name"
--msgstr ""
--
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
--msgid "SELinux User"
--msgstr ""
--
--#: ../semanage/seobject.py:568
--msgid "MLS/MCS Range"
--msgstr ""
--
--#: ../semanage/seobject.py:594
--#, python-format
--msgid "You must add at least one role for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
--#, python-format
--msgid "Could not check if SELinux user %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:604
--#, python-format
--msgid "SELinux user %s is already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:608
--#, python-format
--msgid "Could not create SELinux user for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:617
--#, python-format
--msgid "Could not add role %s for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:626
--#, python-format
--msgid "Could not set MLS level for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:629
--#, python-format
--msgid "Could not add prefix %s for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:632
--#, python-format
--msgid "Could not extract key for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:636
--#, python-format
--msgid "Could not add SELinux user %s"
--msgstr ""
--
--#: ../semanage/seobject.py:659
--msgid "Requires prefix, roles, level or range"
--msgstr ""
--
--#: ../semanage/seobject.py:661
--msgid "Requires prefix or roles"
--msgstr ""
--
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
--#, python-format
--msgid "SELinux user %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:675
--#, python-format
--msgid "Could not query user for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:702
--#, python-format
--msgid "Could not modify SELinux user %s"
--msgstr ""
--
--#: ../semanage/seobject.py:735
--#, python-format
--msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:739
--#, python-format
--msgid "Could not delete SELinux user %s"
--msgstr ""
--
--#: ../semanage/seobject.py:762
--msgid "Could not list SELinux users"
--msgstr ""
--
--#: ../semanage/seobject.py:768
--#, python-format
--msgid "Could not list roles for user %s"
--msgstr ""
--
--#: ../semanage/seobject.py:781
--msgid "Labeling"
--msgstr ""
--
--#: ../semanage/seobject.py:781
--msgid "MLS/"
--msgstr ""
--
--#: ../semanage/seobject.py:782
--msgid "Prefix"
--msgstr ""
--
--#: ../semanage/seobject.py:782
--msgid "MCS Level"
--msgstr ""
--
--#: ../semanage/seobject.py:782
--msgid "MCS Range"
--msgstr ""
--
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
--msgid "SELinux Roles"
--msgstr ""
--
--#: ../semanage/seobject.py:802
--msgid "Protocol udp or tcp is required"
--msgstr ""
--
--#: ../semanage/seobject.py:804
--msgid "Port is required"
--msgstr ""
--
--#: ../semanage/seobject.py:815
--#, python-format
--msgid "Could not create a key for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:826
--msgid "Type is required"
--msgstr ""
--
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
--#, python-format
--msgid "Could not check if port %s/%s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:834
--#, python-format
--msgid "Port %s/%s already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:838
--#, python-format
--msgid "Could not create port for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:844
--#, python-format
--msgid "Could not create context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:848
--#, python-format
--msgid "Could not set user in port context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:852
--#, python-format
--msgid "Could not set role in port context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:856
--#, python-format
--msgid "Could not set type in port context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:861
--#, python-format
--msgid "Could not set mls fields in port context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:865
--#, python-format
--msgid "Could not set port context for %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:869
--#, python-format
--msgid "Could not add port %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
--msgid "Requires setype or serange"
--msgstr ""
--
--#: ../semanage/seobject.py:885
--msgid "Requires setype"
--msgstr ""
--
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
--#, python-format
--msgid "Port %s/%s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:897
--#, python-format
--msgid "Could not query port %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:908
--#, python-format
--msgid "Could not modify port %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:921
--msgid "Could not list the ports"
--msgstr ""
--
--#: ../semanage/seobject.py:937
--#, python-format
--msgid "Could not delete the port %s"
--msgstr ""
--
--#: ../semanage/seobject.py:954
--#, python-format
--msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:958
--#, python-format
--msgid "Could not delete port %s/%s"
--msgstr ""
--
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
--msgid "Could not list ports"
--msgstr ""
--
--#: ../semanage/seobject.py:1017
--msgid "SELinux Port Type"
--msgstr ""
--
--#: ../semanage/seobject.py:1017
--msgid "Proto"
--msgstr ""
--
--#: ../semanage/seobject.py:1017
--msgid "Port Number"
--msgstr ""
--
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--msgid "Node Address is required"
--msgstr ""
--
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--msgid "Node Netmask is required"
--msgstr ""
--
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
--msgid "Unknown or missing protocol"
--msgstr ""
--
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
--msgid "SELinux Type is required"
--msgstr ""
--
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
--#, python-format
--msgid "Could not create key for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, python-format
--msgid "Could not check if addr %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1064
--#, python-format
--msgid "Addr %s already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1068
--#, python-format
--msgid "Could not create addr for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
--#, python-format
--msgid "Could not create context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1077
--#, python-format
--msgid "Could not set mask for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1082
--#, python-format
--msgid "Could not set user in addr context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1086
--#, python-format
--msgid "Could not set role in addr context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1090
--#, python-format
--msgid "Could not set type in addr context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1095
--#, python-format
--msgid "Could not set mls fields in addr context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1099
--#, python-format
--msgid "Could not set addr context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1103
--#, python-format
--msgid "Could not add addr %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, python-format
--msgid "Addr %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1143
--#, python-format
--msgid "Could not query addr %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1154
--#, python-format
--msgid "Could not modify addr %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1192
--#, python-format
--msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:1196
--#, python-format
--msgid "Could not delete addr %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1212
--msgid "Could not list addrs"
--msgstr ""
--
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
--#, python-format
--msgid "Could not check if interface %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1266
--#, python-format
--msgid "Interface %s already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1270
--#, python-format
--msgid "Could not create interface for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1279
--#, python-format
--msgid "Could not set user in interface context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1283
--#, python-format
--msgid "Could not set role in interface context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1287
--#, python-format
--msgid "Could not set type in interface context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1292
--#, python-format
--msgid "Could not set mls fields in interface context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1296
--#, python-format
--msgid "Could not set interface context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1300
--#, python-format
--msgid "Could not set message context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1304
--#, python-format
--msgid "Could not add interface %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
--#, python-format
--msgid "Interface %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1331
--#, python-format
--msgid "Could not query interface %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1342
--#, python-format
--msgid "Could not modify interface %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1367
--#, python-format
--msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:1371
--#, python-format
--msgid "Could not delete interface %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1387
--msgid "Could not list interfaces"
--msgstr ""
--
--#: ../semanage/seobject.py:1397
--msgid "SELinux Interface"
--msgstr ""
--
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
--msgid "Context"
--msgstr ""
--
--#: ../semanage/seobject.py:1421
--#, python-format
--msgid "Could not set user in file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1425
--#, python-format
--msgid "Could not set role in file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
--#, python-format
--msgid "Could not set mls fields in file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1436
--msgid "Invalid file specification"
--msgstr ""
--
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
--#, python-format
--msgid "Could not check if file context for %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1461
--#, python-format
--msgid "File context for %s already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1465
--#, python-format
--msgid "Could not create file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1473
--#, python-format
--msgid "Could not set type in file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
--#, python-format
--msgid "Could not set file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1487
--#, python-format
--msgid "Could not add file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1501
--msgid "Requires setype, serange or seuser"
--msgstr ""
--
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
--#, python-format
--msgid "File context for %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1520
--#, python-format
--msgid "Could not query file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1546
--#, python-format
--msgid "Could not modify file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1560
--msgid "Could not list the file contexts"
--msgstr ""
--
--#: ../semanage/seobject.py:1574
--#, python-format
--msgid "Could not delete the file context %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1592
--#, python-format
--msgid "File context for %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:1598
--#, python-format
--msgid "Could not delete file context for %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1613
--msgid "Could not list file contexts"
--msgstr ""
--
--#: ../semanage/seobject.py:1617
--msgid "Could not list local file contexts"
--msgstr ""
--
--#: ../semanage/seobject.py:1636
--msgid "SELinux fcontext"
--msgstr ""
--
--#: ../semanage/seobject.py:1636
--msgid "type"
--msgstr ""
--
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
--#, python-format
--msgid "Could not check if boolean %s is defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
--#, python-format
--msgid "Boolean %s is not defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1672
--#, python-format
--msgid "Could not query file context %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1677
--#, python-format
--msgid "You must specify one of the following values: %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1681
--#, python-format
--msgid "Could not set active value of boolean %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1684
--#, python-format
--msgid "Could not modify boolean %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1702
--#, python-format
--msgid "Bad format %s: Record %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1725
--#, python-format
--msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr ""
--
--#: ../semanage/seobject.py:1729
--#, python-format
--msgid "Could not delete boolean %s"
--msgstr ""
--
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
--msgid "Could not list booleans"
--msgstr ""
--
--#: ../semanage/seobject.py:1777
--msgid "unknown"
--msgstr ""
--
--#: ../semanage/seobject.py:1780
--msgid "off"
--msgstr ""
--
--#: ../semanage/seobject.py:1780
--msgid "on"
--msgstr ""
--
--#: ../semanage/seobject.py:1789
--msgid "SELinux boolean"
--msgstr ""
--
--#: ../semanage/seobject.py:1789
--msgid "Description"
--msgstr ""
--
--#: ../newrole/newrole.c:198
--#, c-format
--msgid "failed to set PAM_TTY\n"
--msgstr ""
--
--#: ../newrole/newrole.c:287
--#, c-format
--msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
--
--#: ../newrole/newrole.c:297
--#, c-format
--msgid "newrole:  %s:  error on line %lu.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:436
--#, c-format
--msgid "cannot find valid entry in the passwd file.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:447
--#, c-format
--msgid "Out of memory!\n"
--msgstr ""
--
--#: ../newrole/newrole.c:452
--#, c-format
--msgid "Error!  Shell is not valid.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:509
--#, c-format
--msgid "Unable to clear environment\n"
--msgstr ""
--
--#: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, c-format
--msgid "Error initializing capabilities, aborting.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:564 ../newrole/newrole.c:640
--#, c-format
--msgid "Error setting capabilities, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:570
--#, c-format
--msgid "Error setting KEEPCAPS, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:578 ../newrole/newrole.c:652
--#, c-format
--msgid "Error dropping capabilities, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:584 ../newrole/newrole.c:683
--#, c-format
--msgid "Error changing uid, aborting.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
--#, c-format
--msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:597
--#, c-format
--msgid "Error dropping SETUID capability, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:602 ../newrole/newrole.c:657
--#, c-format
--msgid "Error freeing caps\n"
--msgstr ""
--
--#: ../newrole/newrole.c:701
--#, c-format
--msgid "Error connecting to audit system.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:707
--#, c-format
--msgid "Error allocating memory.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:714
--#, c-format
--msgid "Error sending audit message.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
--#, c-format
--msgid "Could not determine enforcing mode.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:765
--#, c-format
--msgid "Error!  Could not open %s.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:771
--#, c-format
--msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:781
--#, c-format
--msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:791
--#, c-format
--msgid "%s!  Could not set new context for %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:838
--#, c-format
--msgid "%s changed labels.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:844
--#, c-format
--msgid "Warning! Could not restore context for %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:901
--#, c-format
--msgid "Error: multiple roles specified\n"
--msgstr ""
--
--#: ../newrole/newrole.c:909
--#, c-format
--msgid "Error: multiple types specified\n"
--msgstr ""
--
--#: ../newrole/newrole.c:916
--#, c-format
--msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:921
--#, c-format
--msgid "Error: multiple levels specified\n"
--msgstr ""
--
--#: ../newrole/newrole.c:931
--#, c-format
--msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr ""
--
--#: ../newrole/newrole.c:957
--#, c-format
--msgid "Couldn't get default type.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:967
--#, c-format
--msgid "failed to get new context.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:974
--#, c-format
--msgid "failed to set new role %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:981
--#, c-format
--msgid "failed to set new type %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:991
--#, c-format
--msgid "failed to build new range with level %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:996
--#, c-format
--msgid "failed to set new range %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1004
--#, c-format
--msgid "failed to convert new context to string\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1009
--#, c-format
--msgid "%s is not a valid context\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1016
--#, c-format
--msgid "Unable to allocate memory for new_context"
--msgstr ""
--
--#: ../newrole/newrole.c:1042
--#, c-format
--msgid "Unable to obtain empty signal set\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1050
--#, c-format
--msgid "Unable to set SIGHUP handler\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1116
--#, c-format
--msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1133
--#, c-format
--msgid "failed to get old_context.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1140
--#, c-format
--msgid "Warning!  Could not retrieve tty information.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1161
--#, c-format
--msgid "error on reading PAM service configuration.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1196
--#, c-format
--msgid "newrole: incorrect password for %s\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1223
--#, c-format
--msgid "newrole: failure forking: %s"
--msgstr ""
--
--#: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
--#, c-format
--msgid "Unable to restore tty label...\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
--#, c-format
--msgid "Failed to close tty properly\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1287
--#, c-format
--msgid "Could not close descriptors.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1314
--#, c-format
--msgid "Error allocating shell's argv0.\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1346
--#, c-format
--msgid "Unable to restore the environment, aborting\n"
--msgstr ""
--
--#: ../newrole/newrole.c:1357
--msgid "failed to exec shell\n"
--msgstr ""
--
--#: ../load_policy/load_policy.c:22
--#, c-format
--msgid "usage:  %s [-qi]\n"
--msgstr ""
--
--#: ../load_policy/load_policy.c:71
--#, c-format
--msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr ""
--
--#: ../load_policy/load_policy.c:80
--#, c-format
--msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr ""
--
--#: ../load_policy/load_policy.c:90
--#, c-format
--msgid "%s:  Can't load policy:  %s\n"
--msgstr ""
--
--#: ../scripts/chcat:92 ../scripts/chcat:169
--msgid "Requires at least one category"
--msgstr ""
--
--#: ../scripts/chcat:106 ../scripts/chcat:183
--#, c-format
--msgid "Can not modify sensitivity levels using '+' on %s"
--msgstr ""
--
--#: ../scripts/chcat:110
--#, c-format
--msgid "%s is already in %s"
--msgstr ""
--
--#: ../scripts/chcat:188 ../scripts/chcat:198
--#, c-format
--msgid "%s is not in %s"
--msgstr ""
--
--#: ../scripts/chcat:267 ../scripts/chcat:272
--msgid "Can not combine +/- with other types of categories"
--msgstr ""
--
--#: ../scripts/chcat:319
--msgid "Can not have multiple sensitivities"
--msgstr ""
--
--#: ../scripts/chcat:325
--#, c-format
--msgid "Usage %s CATEGORY File ..."
--msgstr ""
--
--#: ../scripts/chcat:326
--#, c-format
--msgid "Usage %s -l CATEGORY user ..."
--msgstr ""
--
--#: ../scripts/chcat:327
--#, c-format
--msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
--msgstr ""
--
--#: ../scripts/chcat:328
--#, c-format
--msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
--msgstr ""
--
--#: ../scripts/chcat:329
--#, c-format
--msgid "Usage %s -d File ..."
--msgstr ""
--
--#: ../scripts/chcat:330
--#, c-format
--msgid "Usage %s -l -d user ..."
--msgstr ""
--
--#: ../scripts/chcat:331
--#, c-format
--msgid "Usage %s -L"
--msgstr ""
--
--#: ../scripts/chcat:332
--#, c-format
--msgid "Usage %s -L -l user"
--msgstr ""
--
--#: ../scripts/chcat:333
--msgid "Use -- to end option list.  For example"
--msgstr ""
--
--#: ../scripts/chcat:334
--msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
--msgstr ""
--
--#: ../scripts/chcat:335
--msgid "chcat -l +CompanyConfidential juser"
--msgstr ""
--
--#: ../scripts/chcat:399
--#, c-format
--msgid "Options Error %s "
--msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/nso.po policycoreutils-2.0.85/po/nso.po
---- nsapolicycoreutils/po/nso.po       2011-02-17 15:11:25.375730741 -0500
-+++ policycoreutils-2.0.85/po/nso.po   2011-02-18 16:03:41.436976207 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/or.po policycoreutils-2.0.85/po/or.po
---- nsapolicycoreutils/po/or.po        2011-02-17 15:11:25.251732789 -0500
-+++ policycoreutils-2.0.85/po/or.po    2011-02-18 16:03:41.437976214 -0500
-@@ -1,17 +1,19 @@
--# translation of policycoreutils.HEAD.or.po to Oriya
-+# translation of or.po to Oriya
- # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
- # Subhransu Behera <sbehera@redhat.com>, 2006.
- # Manoj Kumar Giri <giri.manojkr@gmail.com>, 2008.
-+# Manoj Kumar Giri <mgiri@redhat.com>, 2008, 2009, 2010.
- msgid ""
- msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.or\n"
-+"Project-Id-Version: or\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-07-05 14:27+0530\n"
--"Last-Translator: Manoj Kumar Giri <giri.manojkr@gmail.com>\n"
--"Language-Team: Oriya\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-27 15:08+0530\n"
-+"Last-Translator: Manoj Kumar Giri <mgiri@redhat.com>\n"
-+"Language-Team: Oriya <Translation-team-or@lists.sourceforge.net>\n"
-+"Language: or\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-@@ -19,6 +21,25 @@
- "Plural-Forms: nplurals=2; plural=(n!=1);\n"
- "\n"
- "\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux କୁ ଆଲେଖିକ ସଂରଚନାରେ ବିନ୍ୟାସ କରନ୍ତୁ"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux ପରିଚାଳନା"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux ନୀତି ଏକକାଂଶ ସୃଷ୍ଟିକରନ୍ତୁ"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux ନୀତି ସୃଷ୍ଟି ଉପକରଣ"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -109,9 +130,8 @@
- msgstr "semanage ସଂଯୋଗ କୁ ସ୍ଥାପିତ କରି ପାରିଲା ନାହିଁ"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s ପାଇଁ ଏମ୍.ଏଲ.ଏସ୍. ପରିସର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "MLS ସକ୍ରିୟ ସ୍ଥିତିକୁ ପରୀକ୍ଷା କରି ପାରିଲା ନାହିଁ"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -120,20 +140,21 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "%s କୁ ଖୋଲିବା ରେ ଅସଫଳ: non-MLS ଯନ୍ତ୍ର ମାନଙ୍କ ରେ ଅନୁବାଦ ଗୁଡିକ ସହାୟକ ହେଲା ନାହିଁ: %s"
-+msgstr "%s କୁ ଖୋଲିବାରେ ଅସମର୍ଥ: MLS ହୋଇନଥିବା ଯନ୍ତ୍ରଗୁଡ଼ିକରେ ଅନୁବାଦ ସମର୍ଥିତ ନୁହଁ: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "ସ୍ତର"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "ଅନୁବାଦ"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "ଅନୁବାଦ ଗୁଡିକ ଖାଲି ସ୍ଥାନ ଧାରଣ କରି ପାରିବେ ନାହିଁ '%s' "
-+msgstr "ଅନୁବାଦରେ ଖଲିସ୍ଥାନ ରହିପାରିବ ନାହିଁ '%s' "
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -143,12 +164,12 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s ଟି ପୂର୍ବରୁ ଅନୁବାଦ ମାନଙ୍କ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
-+msgstr "%s ଠିକଣାକୁ ପୂର୍ବରୁ ଅନୁବାଦରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s ଟି ଅନୁବାଦ ମାନଙ୍କ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
-+msgstr "%s କୁ ଅନୁବାଦଗୁଡ଼ିକରେ ବ୍ୟାଖ୍ୟା କରାଯାଇନାହିଁ"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
-@@ -156,763 +177,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage ବିନିମୟ ପୂର୍ବରୁ ଚାଲିଅଛି"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage ବିନିମୟ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage ବିନିମୟ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "semanage ଅନୁବାଦକୁ ଦାଖଲ କରିପାରିଲା ନାହିଁ"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage ବିନିମୟ ଚାଲୁନାହିଁ"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux ଚାଳକ କୁ ଗୋଟିଏ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
-+msgstr "SELinux ଏକକାଂଶକୁ ତାଲିକାଭୁକ୍ତ କରିପାରିଲା ନାହିଁ"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
- msgstr "ଅନୁମୋଦନକାରୀ ପ୍ରକାରଗୁଡିକ"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "ଅନୁମତି ପାଇବା ଯୋଗ୍ୟ ପରିସର %s କୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ (ଏକକାଂଶ ସ୍ଥାପନ ବିଫଳ)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "ଅନୁମତି ପାଇବା ଯୋଗ୍ୟ ପରିସର %s କୁ କାଢ଼ିପାରିଲା ନାହିଁ (କାଢ଼ିବା ବିଫଳ)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s ପାଇଁ ଗୋଟିଏ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux ଚାଳକ %s ଅବସ୍ଥିତ ନାହିଁ"
-+msgstr "Linux ଶ୍ରେଣୀ %s ଅବସ୍ଥିତ ନାହିଁ"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux ଚାଳକ %s ଅବସ୍ଥିତ ନାହିଁ"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s ପାଇଁ ନାମ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s ପାଇଁ ଏମ୍.ଏଲ.ଏସ୍. ପରିସର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s ପାଇଁ SELinux ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser କିମ୍ବା serange ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ର ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s ପାଇଁ seuser କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "ଲଗଇନ ନାମ"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux ଚାଳକ"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS ପରିସର"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଅତିକମରେ ଗୋଟିଏ ଭୁମିକା ଯୋଗ କରିବା ଉଚିତ"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "%s SELinux ଚାଳକ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ଚାଳକ %s କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s ପାଇଁ SELinux ଚାଳକ କୁ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s ପାଇଁ %s ଦାୟିତ୍ବ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s ପାଇଁ ଏମ୍.ଏଲ.ଏସ୍. ସ୍ତର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s ପାଇଁ %s ଉପସର୍ଗ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s ପାଇଁ ଚାବି କୁ ନିର୍ଯ୍ଯାସ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ଚାଳକ %s କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "ଉପସର୍ଗ, ଦାୟିତ୍ବ, ସ୍ତର କିମ୍ବା ପରିସର ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "ଉପସର୍ଗ କିମ୍ବା ଦାୟିତ୍ବ ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ଚାଳକ %s କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s ପାଇଁ ଚାଳକ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ଚାଳକ %s କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux ଚାଳକ %s କୁ ନୀତି ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ଚାଳକ %s କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ଚାଳକ କୁ ଗୋଟିଏ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr " %s ଚାଳକ ର ଦାୟିତ୍ବ କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "ନାମପଟିକରଣ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "ଉପସର୍ଗ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS ସ୍ତର"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS ପରିସର"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux ଭୂମିକାଗୁଡିକ"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "ୟୁ.ଡି.ପି. କିମ୍ବା ଟି.ସି.ପି. ପ୍ରୋଟୋକଲ ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "ସଂଯୋଗିକୀ ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s ପାଇଁ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ପ୍ରକାର ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "%s/%s ସଂଯୋଗିକୀ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s ପାଇଁ ପ୍ରସଙ୍ଗ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ପ୍ରସଙ୍ଗ ରେ ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ପ୍ରସଙ୍ଗ ରେ ଦାୟିତ୍ବ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ପ୍ରସଙ୍ଗ ରେ କିଛି ଭିନ୍ନତା କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ପ୍ରସଙ୍ଗ ରେ ଏମ୍.ଏଲ.ଏସ୍. କ୍ଷେତ୍ର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s ପାଇଁ ସଂଯୋଗିକୀ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype କିମ୍ବା serange କୁ ଆବଶ୍ଯକ କରେ"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype କୁ ଆବଶ୍ଯକ କରେ"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "ସଂଯୋଗିକୀ ମାନଙ୍କୁ ତାଲିକାଭୁକ୍ତ କରିପାରିବେ ନାହିଁ"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "%s ସଂଯୋଗିକୀ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "%s/%s ସଂଯୋଗିକୀ ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "ସଂଯୋଗିକୀ ମାନଙ୍କୁ ତାଲିକା ରେ ଲେଖି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux ସଂଯୋଗିକୀ ପ୍ରକାର"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "ପ୍ରଥମ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "ସଂଯୋଗିକୀ ସଂଖ୍ୟା"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "ସଂଯୋଗିକୀ ଆବଶ୍ଯକ"
-+msgstr "ନୋଡ ଠିକଣା ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "ସଂଯୋଗିକୀ ଆବଶ୍ଯକ"
-+msgstr "ନୋଡ ନେଟମାସ୍କ ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "ଅଜଣା କିମ୍ବା ଅନୁପସ୍ଥିତ ପ୍ରୋଟୋକଲ"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux ପ୍ରକାର ଆବଶ୍ଯକ"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s ପାଇଁ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "%s/%s ସଂଯୋଗିକୀ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ଠିକଣା ବ୍ଯାଖ୍ଯା କରାଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
-+msgstr "%s ଠିକଣାକୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s ପାଇଁ ଗୋଟିଏ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ସୃଷ୍ଟି କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s ପାଇଁ ପ୍ରସଙ୍ଗ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s ପାଇଁ ନାମ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ମାସ୍କ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ଚାଳକକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ଦାୟିତ୍ବ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ଭୁମିକାକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ପ୍ରକାର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ପ୍ରକାରକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଏମ୍.ଏଲ.ଏସ୍. କ୍ଷେତ୍ର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ mls କ୍ଷେତ୍ରକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
-+msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
-+msgstr "ଠିକଣା %sକୁ ଯୋଗକରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
-+msgstr "ଠିକଣା %sକୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
-+msgstr "ଠିକଣା %s କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
-+msgstr "ଠିକଣା %s କୁ ପରିବର୍ତ୍ତନ କରିପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "%s/%s ସଂଯୋଗିକୀ ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
-+msgstr "ଠିକଣା %sଟି ନିୟମରେ ବ୍ଯାଖ୍ଯା କରାଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
-+msgstr "ଠିକଣା %sକୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "ସଂଯୋଗିକୀ ମାନଙ୍କୁ ତାଲିକା ରେ ଲେଖି ପାରିବ ନାହିଁ"
-+msgstr "ଠିକଣାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରିପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ ର ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ପ୍ରସଙ୍ଗ ରେ ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ପ୍ରସଙ୍ଗ ରେ ଦାୟିତ୍ବ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ପ୍ରସଙ୍ଗ ରେ ପ୍ରକାର ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ପ୍ରସଙ୍ଗ ରେ ଏମ୍.ଏଲ.ଏସ୍. କ୍ଷେତ୍ର ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s ପାଇଁ ଅନ୍ତରାପ୍ରୁଷ୍ଠ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s ପାଇଁ ସନ୍ଦେଶ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ ର ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "ଅନ୍ତରାପ୍ରୁଷ୍ଠ ମାନଙ୍କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux ଅନ୍ତରାପୃଷ୍ଠ"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "ପ୍ରସଙ୍ଗ"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ଦାୟିତ୍ବ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଏମ୍.ଏଲ.ଏସ୍. କ୍ଷେତ୍ର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "ଅବୈଧ ଫାଇଲ ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ପ୍ରକାର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange କିମ୍ବା seuser କୁ ଆବଶ୍ଯକ କରିଥାଏ"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ତାଲିକାଭୁକ୍ତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "%s ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ଅପସାରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ଟି ନୀତି ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରି ପାରିବ ନାହିଁ"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ଅପସାରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "ସ୍ଥାନୀୟ ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ତାଲିକାରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fପ୍ରସଙ୍ଗ"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ପ୍ରକାର"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "ବୁଲିଆନ %s ଟି ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "ବୁଲିଆନ %s ଟି ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ %s କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "ଆପଣ ଗୋଟିଏ ମୂଲ୍ୟ ନିର୍ଦ୍ଦିଷ୍ଟ କରିବା ଉଚିତ"
-+msgstr "ଆପଣ ନିମ୍ନଲିଖିତ ମୂଲ୍ୟଗୁଡ଼ିକ ମଧ୍ଯରୁ ଗୋଟିଏ ଉଲ୍ଲେଖକରିବା ଉଚିତ: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "ବୁଲିଆନ %s ର ସକ୍ରିୟ ମୁଲ୍ୟ ସ୍ଥିର କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "ବୁଲିଆନ %s କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "ଖରାପ ଶୈଳୀ %s: ଅନୁଲିପି %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "ବୁଲିଆନ %s ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "ବୁଲିଆନ %s କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "ବୁଲିଆନ ମାନଙ୍କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "ଅଜଣା"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "ଅଫ"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ଅନ"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux ବୁଲିଆନ"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "ବର୍ଣ୍ଣନା"
-@@ -952,9 +975,9 @@
- msgstr "ପରିବେଶକୁ ସଫା କରିବାରେ ଅସମର୍ଥ\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "ସାମର୍ଥ୍ଯ ମାନଙ୍କ ର ପ୍ରାରମ୍ଭିକରଣ ସମୟ ରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି \n"
-+msgstr "କ୍ଷମତାଗୁଡ଼ିକୁ ପ୍ରାରମ୍ଭ ସମୟରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି।\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1284,1560 +1307,2202 @@
- msgid "Options Error %s "
- msgstr "ପସନ୍ଦ ତୃଟି %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "non-MLS ଯନ୍ତ୍ର ମାନଙ୍କ ରେ ଅନୁବାଦ ଗୁଡିକ ସହାୟକ ହେଲା ନାହିଁ"
--
--#~ msgid "Boolean"
--#~ msgstr "ବୁଲିଆନ"
--
--#~ msgid "all"
--#~ msgstr "ସମସ୍ତ"
--
--#~ msgid "Customized"
--#~ msgstr "ଇଚ୍ଛାରୂପଣ"
--
--#~ msgid "File Labeling"
--#~ msgstr "ଫାଇଲ ନାମପଟିକରଣ"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ଫାଇଲ\n"
--#~ "ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ଫାଇଲ ପ୍ରକାର"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ଫାଇଲ\n"
--#~ "ପ୍ରକାର"
--
--#~ msgid "User Mapping"
--#~ msgstr "ଚାଳକ ପ୍ରତିଚିତ୍ରଣ"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "ଲଗଇନ\n"
--#~ "ନାମ"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ଚାଳକ"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS ପରିସର"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "ଲଗଇନ '%s' ଟି ଆବଶ୍ୟକ"
--
--#~ msgid "Policy Module"
--#~ msgstr "ନୀତି ଏକକାଂଶ"
--
--#~ msgid "Module Name"
--#~ msgstr "ଏକକାଂଶ ନାମ"
--
--#~ msgid "Version"
--#~ msgstr "ସଂସ୍କରଣ"
--
--#~ msgid "Disable Audit"
--#~ msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Enable Audit"
--#~ msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ସକ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "ନୀତି ଏକକାଂଶ ଧାରଣ କରନ୍ତୁ"
--
--#~ msgid "Polgen"
--#~ msgstr "ପଲଜେନ"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "ମନୋଜ କୁମାର ଗିରି"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux ନୀତି ସୃଷ୍ଟି ଉପକରଣ"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "ପ୍ରୟୋଗଗୁଡିକୁ କିମ୍ବା SELinux ବ୍ୟବହାର କରୁଥିବା ଚାଳକଗୁଡିକୁ ପରିସୀମିତ କରିବାକୁ ଏହି ସାଧନଟି ଗୋଟିଏ ନୀତି "
--#~ "ଢାଞ୍ଚା ସୃଷ୍ଟିକରିବାରେ ବ୍ୟବହାର କରିହେବ।   \n"
--#~ "\n"
--#~ "ଏହି ସାଧନଟି ସୃଷ୍ଟିକରେ:\n"
--#~ "ପ୍ରବର୍ତ୍ତନ ଫାଇଲ ଟାଇପ କରିବାରେ (te)\n"
--#~ "\n"
--#~ "ଅନ୍ତରାପୃଷ୍ଠ ଫାଇଲ (if)\n"
--#~ "ସେଲ ସ୍କ୍ରିପ୍ଟ (sh) - ନୀତି ସଙ୍କଳନ ଏବଂ ସ୍ଥାପନ କରିବାରେ ବ୍ୟବହୃତ ହୋଇଥାଏ।"
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "ପରିସୀମିତ କରିବାକୁ ଥିବା ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାର ପ୍ରକାର ଚୟନ କରନ୍ତୁ"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>ପ୍ରୟୋଗଗୁଡିକ</b>"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "ମାନକ Init ଡେମନ ଗୁଡିକ ହେଲା init ସ୍କ୍ରିପ୍ଟ ଜରୀଆରେ ବୁଟରେ ଆରମ୍ଭ ହେଉଥିବା ଡେମନଗୁଡିକ।  "
--#~ "ସାଧାରଣତଃ /etc/rc.d/init.d ରେ ଗୋଟିଏ ସ୍କ୍ରିପ୍ଟ ଆବଶ୍ୟକ କରେ। "
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "ମାନକ Init ଡେମନ"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ ଗୁଡିକ xinetd ଦ୍ୱାରା ଆରମ୍ଭ କରାଯାଇଥିବା ଡେମନ"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ (inetd)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "ୱେବ ପ୍ରୟୋଗଗୁଡିକ/ସ୍କ୍ରିପ୍ଟ (CGI) ୱେବ ସରର୍ଭର (apache) ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା CGI ସ୍କ୍ରିପ୍ଟ"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "ୱେବ ପ୍ରୟୋଗ/ସ୍କ୍ରିପ୍ଟ (CGI)"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "ଚାଳକ ପ୍ରୟୋଗଗୁଡିକ ହେଉଛି କୌଣସି ପ୍ରୟୋଗ ଯାହାକୁକି ଆପଣ ପରିସୀମିତ କରିବାକୁ ଚାହିଁବେ ଯାହାକି ଚାଳକ "
--#~ "ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥାଏ"
--
--#~ msgid "User Application"
--#~ msgstr "ଚାଳକ ପ୍ରୟୋଗ"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ଲଗଇନ ଚାଳକଗୁଡିକ</b>"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "ଗୋଟିଏ ଅବସ୍ଥିତ ଲଗଇନ ଚାଳକ ଅନୁଲିପିକୁ ରୂପାନ୍ତର କରନ୍ତୁ।"
--
--#~ msgid "Existing User Roles"
--#~ msgstr "ଅବସ୍ଥିତ ଚାଳକ ଭୂମିକା"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "ଏହି ଚାଳକଟି କେବଳ ଗୋଟିଏ ଟର୍ମିନାଲ ମାଧ୍ଯମରେ କିମ୍ବା ସୂଦୁର ଲଗଇନ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ "
--#~ "କରିପାରିବ।  ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, su ନଥିବ, sudo "
--#~ "ନଥିବ।"
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "ନ୍ୟୁନତମ ଟର୍ମିନାଲ ଚାଳକ ଭୂମିକା"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "ଏହି ଚାଳକଟି X କିମ୍ବା ଟର୍ମିନାଲ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିପାରେ।  ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି "
--#~ "ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, sudo ନଥିବ, su ନଥିବ "
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "ନ୍ୟୁନତମ X ୱିଣ୍ଡୋ ଚାଳକ ଭୂମିକା"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, sudo ନାହିଁ, su "
--#~ "ନାହିଁ।"
--
--#~ msgid "User Role"
--#~ msgstr "ଚାଳକ ଭୂମିକା"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, su ନାହିଁ, sudo ରୁ "
--#~ "ମୂଳ ପ୍ରଶାସନ ଭୂମିକାଗୁଡିକୁ"
--
--#~ msgid "Admin User Role"
--#~ msgstr "ପ୍ରଶାସନ ଚାଳକ ନିତୀ"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>ମୂଳ ଚାଳକଗୁଡିକ</b>"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "ମୂଳ ପ୍ରଶାସକ ଚାଳକ ଭୂମିକାକୁ ଚୟନ କରନ୍ତୁ, ଯଦି ଏହି ଚାଳକଟି ମୂଳ ଆକାରରେ ଚାଲୁଥିବା ସମୟରେ ଯନ୍ତ୍ରକୁ "
--#~ "ପ୍ରଶାସନ କରିବାରେ ବ୍ୟବହୃତ ହେବ।  ଏହି ଚାଳକଟି ସିଧାସଳଖ ଭାବରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିବାକୁ ସମର୍ଥ "
--#~ "ହେବ ନାହିଁ।"
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "ମୂଳ ପ୍ରଶାସନ ଚାଳକ ଭୂମିକା"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "ପରିସୀମିତ ହେବାକୁଥିବା ପ୍ରୟୋଗର ନାମ କିମ୍ୱା ଚାଳକ ଭୂମିକାକୁ ଭରଣ କରନ୍ତୁ"
--
--#~ msgid "Name"
--#~ msgstr "ନାମ"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "ନିଷ୍ପାଦ୍ୟକୁ ପରିସୀମିତ କରିବାପାଇଁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ କିମ୍ୱା ଚାଳକ ଭୂମିକା ପାଇଁ ଏକୈକ ନାମ ଭରଣ କରନ୍ତୁ।"
--
--#~ msgid "Executable"
--#~ msgstr "ନିଷ୍ପାଦ୍ୟ"
--
--#~ msgid "Init script"
--#~ msgstr "Init ସ୍କ୍ରିପ୍ଟ"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "ପରିସୀମିତ ପ୍ରୟୋଗକୁ ଆରମ୍ଭ କରିବାପାଇଁ ବ୍ୟବହାର ହେଉଥିବା init ସ୍କ୍ରିପ୍ଟକୁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "ଆପଣ ଇଚ୍ଛାରୂପଣ କରିବାକୁ ଚାହୁଁଥିବା ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ସକର୍ମ କରିବ।"
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ସକର୍ମ କରିବ"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଚାହୁଁଥିବା ଚାଳକ ଭୁମିକାକୁ ସକର୍ମ କରିବ।"
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "ଚାଳକ ଭୂମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପରିସରକୁ ସକର୍ମ କରିବ"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ପ୍ରଶାସନ କରିବ"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ପ୍ରଶାସନ କରିବ।"
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "ଏହି ଚାଳକ ପାଇଁ ଅତିରିକ୍ତ ଭୁମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ମାନୁଥିବା ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP ସଂଯୋଗିକୀ</b>"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "କୌଣସି udp ସଂଯୋଗିକୀକୁ ବାନ୍ଧିବା ପାଇଁ ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "All"
--#~ msgstr "ସମସ୍ତ"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "bindresvport କୁ 0 ସହିତ ଡାକିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ। ସଂଯୋଗିକୀ 600-"
--#~ "1024 କୁ ବାନ୍ଧିକରି"
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
--#~ "ଚାଳକ ଭୂମିକାକୁ ବାନ୍ଧିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "ଅସଂରକ୍ଷିତ ସଂଯୋଗିକୀ  (> 1024)"
--
--#~ msgid "Select Ports"
--#~ msgstr "ସଂଯୋଗିକୀ ଚୟନକରନ୍ତୁ"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr "କୌଣସି udp ସଂଯୋଗିକୀ > 1024 କୁ ବାନ୍ଧିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP ସଂଯୋଗିକୀ</b>"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ସଂଯୁକ୍ତ ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "tcp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
--#~ "ଚାଳକ ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
--#~ "ଚାଳକ ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--
--#~ msgid "Select common application traits"
--#~ msgstr "ସାଧାରଣ ପ୍ରୟୋଗ ବିଶିଷ୍ଟତା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog ସନ୍ଦେଶଗୁଡିକୁ ଲେଖିଥାଏ\t"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp ରେ ଅସ୍ଥାୟୀ ଫାଇଲଗୁଡିକୁ ସୃଷ୍ଟି/ପ୍ରକଳନ କରନ୍ତୁ"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "ବୈଧିକରଣ ପାଇଁ Pam ବ୍ୟବହାର କରେ"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch କିମ୍ୱା getpw* ଡାକରା ବ୍ୟବହାର କରେ"
--
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ବ୍ୟବହାର କରେ"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "ଲେଖା ପରୀକ୍ଷଣ ସନ୍ଦେଶ ପଠାଏ"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ଟର୍ମିନାଲ ସହିତ ପାରସ୍ପର ଉପରେ ପ୍ରଭାବ ପକାଏ"
--
--#~ msgid "Sends email"
--#~ msgstr "ଇମେଲ ପଠାଏ"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "ପ୍ରୟୋଗ ପରିଚାଳନ କରୁଥିବା ଫାଇଲ/ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ଫାଇଲ/ଡିରେକ୍ଟୋରି ଗୁଡିକୁ ସଂଯୋଗକରନ୍ତୁ ଯାହାକି ପ୍ରୟୋଗରେ \"ଲେଖିବା\" କୁ ଆବଶ୍ୟକ କରେ। Pid "
--#~ "ଫାଇଲଗୁଡିକ, Log ଫାଇଲଗୁଡିକ, /var/lib ଫାଇଲଗୁଡିକ ..."
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "ବୁଲିଆନଗୁଡିକୁ ଚୟନକରନ୍ତୁ ଯାହାକୁ ପ୍ରୟୋଗ ବ୍ୟବହାର କରେ"
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "ଏହି ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ପାଇଁ ବୁଲିଆନଗୁଡିକୁ ଯୋଗ/ଅପସାରଣ କରନ୍ତୁ"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "ଭିତର ନୀତି ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid "Policy Directory"
--#~ msgstr "ନୀତି ଡିରେକ୍ଟୋରୀ"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "ସୃଷ୍ଟିହେଇଥିବା ନୀତି ଫାଇଲଗୁଡିକ"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
--#~ "ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
--#~ "ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
--#~ "Linux ଲଗଇନ ଚାଳକକୁ ଚାଳକ ଭୂମିକା ସହିତ ପରିକଳ୍ପନା କରିବାକୁ semanage କିମ୍ବା useradd ବ୍ୟବହାର "
--#~ "କରିଥାଏ।\n"
--#~ "ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
--#~ "ଚାଳକ ଭାବରେ ଲଗଇନ କରିଥାଏ ଏବଂ ଏହି ଚାଳକ ଭୂମିକାକୁ ପରୀକ୍ଷା କରିଥାଏ।\n"
--#~ "te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
--#~ "ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
--#~ "\n"
--#~ "ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
--#~ "ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
--#~ "avc ସନ୍ଦେଶଗୁଡିକୁ ସୃଷ୍ଟି କରବାପାଇଁ ପ୍ରୟୋଗକୁ ଚଲାଇଥାଏ/ପୁନଃଆରମ୍ଭ କରିଥାଏ।\n"
--#~ "te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "ବୁଲିୟାନ ସଂଳାପ ଯୋଗକରନ୍ତୁ"
--
--#~ msgid "Boolean Name"
--#~ msgstr "ବୁଲିଆନ ନାମ"
--
--#~ msgid "Role"
--#~ msgstr "ଭୂମିକା"
--
--#~ msgid "Existing_User"
--#~ msgstr "ଅବସ୍ଥିତ ଚାଳକ (_U)"
--
--#~ msgid "Application"
--#~ msgstr "ପ୍ରୟୋଗ"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ନିଶ୍ଚିତ ରୂପେ ଗୋଟିଏ ଡିରେକ୍ଟରୀ"
--
--#~ msgid "You must select a user"
--#~ msgstr "ଆପଣ ଗୋଟିଏ ଚାଳକ ଚୟନ କରିବା ଉଚିତ"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "ପରିସୀମିତ ରହିବାକୁ ନିଷ୍ପାଦ୍ୟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "ପରିସୀମିତ ରହିବାକୁ init ସ୍କ୍ରିପ୍ଟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ସୃଷ୍ଟି କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଫାଇଲ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ହାସଲ କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଡିରେକ୍ଟୋରୀ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "ଭିତର ନୀତି ଫାଇଲ ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "%s_t ପ୍ରକାରକୁ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ବ୍ୟଖ୍ୟା କରାଯାଇଛି।\n"
--#~ "ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--
--#~ msgid "Verify Name"
--#~ msgstr "ନାମ ଯାଞ୍ଚ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "%s.pp ଏକକାଂଶ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ଧାରଣ କରାଯାଇଛି।\n"
--#~ "ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "ଆପଣ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ଭରଣ କରିବା ଉଚିତ"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux ବିନ୍ୟାସ କରନ୍ତୁ"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "ସଂଯୋଗିକୀଗୁଡିକ ନିଶ୍ଚିତ ରୂପେ ସଂଖ୍ୟା କିମ୍ବା 1 ରୁ %d ପର୍ଯ୍ୟନ୍ତ ସଂଖ୍ୟାର ପରିସର ହୋଇଥିବା ଉଚିତ"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ/ଚାଳକ ପାଇଁ ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "ଚାଳକ ପ୍ରକାର ଗୁଡିକ ଅନୁମତିପ୍ରାପ୍ତ ନିଷ୍ପାଦ୍ୟ ନୁହଁନ୍ତି"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "କେବଳ ଡେମନ apps init ସ୍କ୍ରିପ୍ଟ ବ୍ୟବହାର କରିପାରିବେ"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog ଟି ଗୋଟିଏ ବୁଲିଆନ ମୂଲ୍ୟ ହୋଇଥିବା ଉଚିତ"
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER ପ୍ରକାରଗୁଡିକ ସ୍ୱୟଂଚାଳିତଭାବେ ଗୋଟିଏ tmp ପ୍ରକାର ପାଇଥାଏ"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ ପାଇଁ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ପଥ ଭରଣ କରିବା ଉଚିତ"
--
--#~ msgid "Type Enforcement file"
--#~ msgstr "ପ୍ରବର୍ତ୍ତନ ଫାଇଲକୁ ଟାଇପ କରନ୍ତୁ"
--
--#~ msgid "Interface file"
--#~ msgstr "ଅନ୍ତରାପ୍ରୁଷ୍ଠ ଫାଇଲ"
--
--#~ msgid "File Contexts file"
--#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ ଫାଇଲ"
--
--#~ msgid "Setup Script"
--#~ msgstr "ସ୍କ୍ରିପ୍ଟ ବ୍ୟବସ୍ଥା"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux ସଂଯୋଗିକୀ\n"
--#~ "ପ୍ରକାର"
--
--#~ msgid "Protocol"
--#~ msgstr "ପ୍ରଟୋକଲ"
--
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "ସ୍ତର"
--
--#~ msgid "Port"
--#~ msgstr "ସଂଯୋଗିକୀ"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "ସଂଯୋଗିକୀ ସଂଖ୍ୟା \"%s\" ଟି ବୈଧ ନୁହଁ  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "ତାଲିକା ଦୃଶ୍ୟ"
--
--#~ msgid "Group View"
--#~ msgstr "ସମୁହ ଦୃଶ୍ୟ"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux ଚାଳକ ସୁରକ୍ଷା"
--
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Admin"
--#~ msgstr "ପ୍ରଶାସନ"
--
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "ସର୍ବପ୍ରଧାନ ଫାଇଲଗୁଡିକୁ ଲେଖିବାକୁ ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ /"
--
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅବଣ୍ଟିତ tty ଗୁଡିକୁ ବ୍ୟବହାର କରିବାର କ୍ଷମତା ପ୍ରଦାନ କରନ୍ତୁ"
--
--#~ msgid "User Privs"
--#~ msgstr "ଚାଳକ ଗୋପନୀୟତା"
--
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ଅତିଥି SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid "Memory Protection"
--#~ msgstr "ସ୍ମୃତି ସୁରକ୍ଷା"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "java ନିଷ୍ପାଦ୍ୟ ଥାକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Mount"
--#~ msgstr "ସ୍ଥାପନ"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "ଯେକୌଣସି ଫାଇଲକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "ଯେକୌଣସି ଡିରେକ୍ଟୋରୀକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer ନିଷ୍ପାଦ୍ୟ ଥାକ କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh-keysign କୁ ଚଲାଇବା ପାଇଁ ssh କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "staff SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "unconfined SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ "
--#~ "ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Network Configuration"
--#~ msgstr "ନେଟୱର୍କ ବିନ୍ୟାସ"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "ନାମପଟିକରଣ ହୋଇନଥିବା ପ୍ୟାକେଟଗୁଡିକୁ ନେଟୱର୍କରେ ପ୍ରବାହ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "ଅପରିସୀମିତ dyntrans କୁ ଅପରିସୀମିତ_execmen ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Databases"
--#~ msgstr "ତଥ୍ୟାଧାର"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "mysql ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "postgres ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "XServer"
--#~ msgstr "Xସର୍ଭର"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "X ସହଭାଗୀ ସ୍ମୃତିରେ ଲେଖିବା ପାଇଁ ଗ୍ରାହକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "x ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
--#~ "ଦିଅନ୍ତୁ"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "NIS ସହିତ ଚାଲିବାପାଇଁ ଡେମନକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Web Applications"
--#~ msgstr "ୱେବ ପ୍ରୟୋଗ"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "ସକର୍ମ staff SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "ସକର୍ମ sysadm SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "ସକର୍ମ user SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "ସକର୍ମ xguest SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "ମୂଳ ଡିରେକ୍ଟୋରୀରେ ଲେଖିବା ପାଇଁ staff Web Browsers କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Cluster ସର୍ଭର  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "ବିଭିନ୍ନ ପ୍ରକାର ପ୍ରସଙ୍ଗକୁ ପଢିବାପାଇଁ cdrecordକୁ ଅନୁମତି ଦିଅନ୍ତୁ। nfs, samba, ଅପସାରଣୀୟ "
--#~ "ଯନ୍ତ୍ରଗୁଡିକୁ, ଚାଳକ temp ଏବଂ ଅବିସ୍ଵସ୍ତ ପ୍ରସଙ୍ଗ ଫାଇଲଗୁଡିକ"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Cron"
--#~ msgstr "କ୍ରନ"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Printing"
--#~ msgstr "ମୁଦ୍ରଣ କରୁଅଛି"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd ପଛପାଖ ସର୍ଭର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "ବୁଲିଆନ"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "ସମସ୍ତ"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "ଇଚ୍ଛାରୂପଣ"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "ଫାଇଲ ନାମପଟିକରଣ"
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifdନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "start ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ବିକାସ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Games"
--#~ msgstr "ଖେଳ"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "ଖେଳ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "ୱେବ ବ୍ରାଉଜର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Thunderbird ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Compatibility"
--#~ msgstr "ସୁସଂଗତି"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "ଆମେ ଜାଣିଥିବା ଜିନିଷ ଯାହାକି ଭାଙ୍ଗିବାକୁ ଯାଉଛି କିନ୍ତୁ ଯେଉଁଥିରେ ସୁରକ୍ଷା ବିପତ୍ତି ନାହିଁ ତାକୁ ସମୀକ୍ଷା "
--#~ "କରନ୍ତୁ ନାହିଁ"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "ଆଧାରନାମ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD ସେବା"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inet child ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Kerberos"
--#~ msgstr "କେର୍ବେରୋଶ"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଇଭଲ୍ୟୁସନ ଏବଂ ଥଣ୍ଡରବର୍ଡକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ମଜିଲା ବ୍ରାଉଜରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Name Service"
--#~ msgstr "ନାମ ସେବା"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "ନେଟୱର୍କ ପରିଚାଳକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Samba"
--#~ msgstr "ଶାମ୍ବା"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "ଗୋଟିଏ ସାଧାରଣ ଚାଳକ ପାଇଁ pppd ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"ଫାଇଲ\n"
-+"ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"ଫାଇଲ ପ୍ରକାର"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"ଫାଇଲ\n"
-+"ପ୍ରକାର"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "ଚାଳକ ପ୍ରତିଚିତ୍ରଣ"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"ଲଗଇନ\n"
-+"ନାମ"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"ଚାଳକ"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS ପରିସର"
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "ମାନକ ବିହିନ ସ୍ଥାନମାନଙ୍କରେ (default_t) ଫାଇଲ ପଢିବାପାଇଁ ପ୍ରଗ୍ରାମ ଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "ଲଗଇନ '%s' ଟି ଆବଶ୍ୟକ"
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "ନୀତି ଏକକାଂଶ"
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "ଏକକାଂଶ ନାମ"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "ସଂସ୍କରଣ"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ସକ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "ନୀତି ଏକକାଂଶ ଧାରଣ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "ପଲଜେନ"
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh କୁ ଡେମନ ଆକାରରେ ଚଲାଇବା ବଦଳରେ inetd ରୁ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "ମନୋଜ କୁମାର ଗିରି"
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "nfs ଡିରେକ୍ଟୋରୀଗୁଡିକରେ ଅଂଶଧନ କରିବା ପାଇଁ Sambaକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"ପ୍ରୟୋଗଗୁଡିକୁ କିମ୍ବା SELinux ବ୍ୟବହାର କରୁଥିବା ଚାଳକଗୁଡିକୁ ପରିସୀମିତ କରିବାକୁ ଏହି ସାଧନଟି ଗୋଟିଏ ନୀତି "
-+"ଢାଞ୍ଚା ସୃଷ୍ଟିକରିବାରେ ବ୍ୟବହାର କରିହେବ।   \n"
-+"\n"
-+"ଏହି ସାଧନଟି ସୃଷ୍ଟିକରେ:\n"
-+"ପ୍ରବର୍ତ୍ତନ ଫାଇଲ ଟାଇପ କରିବାରେ (te)\n"
-+"\n"
-+"ଅନ୍ତରାପୃଷ୍ଠ ଫାଇଲ (if)\n"
-+"ସେଲ ସ୍କ୍ରିପ୍ଟ (sh) - ନୀତି ସଙ୍କଳନ ଏବଂ ସ୍ଥାପନ କରିବାରେ ବ୍ୟବହୃତ ହୋଇଥାଏ।"
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL ବୈଧିକରଣ ସର୍ଭର"
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "ପରିସୀମିତ କରିବାକୁ ଥିବା ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାର ପ୍ରକାର ଚୟନ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>ପ୍ରୟୋଗଗୁଡିକ</b>"
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "/etc/shadow କୁ ପଢିବା ପାଇଁ sasl ବୈଧିକରଣ ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"ମାନକ Init ଡେମନ ଗୁଡିକ ହେଲା init ସ୍କ୍ରିପ୍ଟ ଜରୀଆରେ ବୁଟରେ ଆରମ୍ଭ ହେଉଥିବା ଡେମନଗୁଡିକ।  "
-+"ସାଧାରଣତଃ /etc/rc.d/init.d ରେ ଗୋଟିଏ ସ୍କ୍ରିପ୍ଟ ଆବଶ୍ୟକ କରେ। "
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "ଗୋଟିଏ ସ୍ମୃତି ସ୍ଥାନକୁ ଉଭୟ ନିଷ୍ପାଦ୍ୟ ଏବଂ ଲିଖନୀୟ ଆକାରରେ ପ୍ରତିଚିତ୍ରଣ କରିବା ପାଇଁ X-ୱିଣ୍ଡୋ ସର୍ଭରକୁ "
--#~ "ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "ମାନକ Init ଡେମନ"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS ତନ୍ତ୍ର ଡେମନ"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ ଗୁଡିକ xinetd ଦ୍ୱାରା ଆରମ୍ଭ କରାଯାଇଥିବା ଡେମନ"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ (inetd)"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"ୱେବ ପ୍ରୟୋଗଗୁଡିକ/ସ୍କ୍ରିପ୍ଟ (CGI) ୱେବ ସରର୍ଭର (apache) ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା CGI ସ୍କ୍ରିପ୍ଟ"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "ୱେବ ପ୍ରୟୋଗ/ସ୍କ୍ରିପ୍ଟ (CGI)"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo ଏବଂ su ର ଅଭିପ୍ରାୟର ପରିବର୍ତ୍ତନକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"ଚାଳକ ପ୍ରୟୋଗଗୁଡିକ ହେଉଛି କୌଣସି ପ୍ରୟୋଗ ଯାହାକୁକି ଆପଣ ପରିସୀମିତ କରିବାକୁ ଚାହିଁବେ ଯାହାକି ଚାଳକ ଦ୍ୱାରା "
-+"ଆରମ୍ଭ ହୋଇଥାଏ"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ ଏକକାଂଶ ଧାରଣ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "ଚାଳକ ପ୍ରୟୋଗ"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>ଲଗଇନ ଚାଳକଗୁଡିକ</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "ଗୋଟିଏ ଅବସ୍ଥିତ ଲଗଇନ ଚାଳକ ଅନୁଲିପିକୁ ରୂପାନ୍ତର କରନ୍ତୁ।"
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "ଅବସ୍ଥିତ ଚାଳକ ଭୂମିକା"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ SELinux ନୀତି ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"ଏହି ଚାଳକଟି କେବଳ ଗୋଟିଏ ଟର୍ମିନାଲ ମାଧ୍ଯମରେ କିମ୍ବା ସୂଦୁର ଲଗଇନ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିପାରିବ।  "
-+"ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, su ନଥିବ, sudo ନଥିବ।"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "ନ୍ୟୁନତମ ଟର୍ମିନାଲ ଚାଳକ ଭୂମିକା"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"ଏହି ଚାଳକଟି X କିମ୍ବା ଟର୍ମିନାଲ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିପାରେ।  ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି "
-+"ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, sudo ନଥିବ, su ନଥିବ "
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "ନ୍ୟୁନତମ X ୱିଣ୍ଡୋ ଚାଳକ ଭୂମିକା"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, sudo ନାହିଁ, su ନାହିଁ।"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "ଚାଳକ ଭୂମିକା"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, su ନାହିଁ, sudo ରୁ ମୂଳ "
-+"ପ୍ରଶାସନ ଭୂମିକାଗୁଡିକୁ"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "ପ୍ରଶାସନ ଚାଳକ ନିତୀ"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>ମୂଳ ଚାଳକଗୁଡିକ</b>"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"ମୂଳ ପ୍ରଶାସକ ଚାଳକ ଭୂମିକାକୁ ଚୟନ କରନ୍ତୁ, ଯଦି ଏହି ଚାଳକଟି ମୂଳ ଆକାରରେ ଚାଲୁଥିବା ସମୟରେ ଯନ୍ତ୍ରକୁ "
-+"ପ୍ରଶାସନ କରିବାରେ ବ୍ୟବହୃତ ହେବ।  ଏହି ଚାଳକଟି ସିଧାସଳଖ ଭାବରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିବାକୁ ସମର୍ଥ ହେବ "
-+"ନାହିଁ।"
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "ମୂଳ ପ୍ରଶାସନ ଚାଳକ ଭୂମିକା"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "ପରିସୀମିତ ହେବାକୁଥିବା ପ୍ରୟୋଗର ନାମ କିମ୍ୱା ଚାଳକ ଭୂମିକାକୁ ଭରଣ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "ନାମ"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "ନିଷ୍ପାଦ୍ୟକୁ ପରିସୀମିତ କରିବାପାଇଁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ କିମ୍ୱା ଚାଳକ ଭୂମିକା ପାଇଁ ଏକୈକ ନାମ ଭରଣ କରନ୍ତୁ।"
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "ନିଷ୍ପାଦ୍ୟ"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init ସ୍କ୍ରିପ୍ଟ"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"ପରିସୀମିତ ପ୍ରୟୋଗକୁ ଆରମ୍ଭ କରିବାପାଇଁ ବ୍ୟବହାର ହେଉଥିବା init ସ୍କ୍ରିପ୍ଟକୁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "ଆପଣ ଇଚ୍ଛାରୂପଣ କରିବାକୁ ଚାହୁଁଥିବା ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
--#~ msgid "Spam Protection"
--#~ msgstr "ଅବାଞ୍ଛିତ ଡାକ ସୁରକ୍ଷା"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ସକର୍ମ କରିବ।"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ସକର୍ମ କରିବ"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd କୁ ମୂଳ ଡିରେକ୍ଟୋରୀରେ ପ୍ରବେଶାନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଚାହୁଁଥିବା ଚାଳକ ଭୁମିକାକୁ ସକର୍ମ କରିବ।"
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ଚାଳକ ଭୂମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପରିସରକୁ ସକର୍ମ କରିବ"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ପ୍ରଶାସନ କରିବ"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ପ୍ରଶାସନ କରିବ।"
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ଏହି ଚାଳକ ପାଇଁ ଅତିରିକ୍ତ ଭୁମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ମାନୁଥିବା ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP ସଂଯୋଗିକୀ</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "କୌଣସି udp ସଂଯୋଗିକୀକୁ ବାନ୍ଧିବା ପାଇଁ ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "ସମସ୍ତ"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "spamd Assassin ଡେମନକୁ ନେଟୱର୍କ ଅଭିଗମନର ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"bindresvport କୁ 0 ସହିତ ଡାକିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ। ସଂଯୋଗିକୀ 600-1024 "
-+"କୁ ବାନ୍ଧିକରି"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/ଚାଳକ "
-+"ଭୂମିକାକୁ ବାନ୍ଧିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid ଡେମନକୁ ନେଟୱର୍କ ସହିତ ସଂଯୋଗର ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "ଅସଂରକ୍ଷିତ ସଂଯୋଗିକୀ  (> 1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "ସଂଯୋଗିକୀ ଚୟନକରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "କୌଣସି udp ସଂଯୋଗିକୀ > 1024 କୁ ବାନ୍ଧିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP ସଂଯୋଗିକୀ</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ସଂଯୁକ୍ତ ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"tcp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/ଚାଳକ "
-+"ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/ଚାଳକ "
-+"ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "ସାଧାରଣ ପ୍ରୟୋଗ ବିଶିଷ୍ଟତା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog ସନ୍ଦେଶଗୁଡିକୁ ଲେଖିଥାଏ\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp ରେ ଅସ୍ଥାୟୀ ଫାଇଲଗୁଡିକୁ ସୃଷ୍ଟି/ପ୍ରକଳନ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "ବୈଧିକରଣ ପାଇଁ Pam ବ୍ୟବହାର କରେ"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch କିମ୍ୱା getpw* ଡାକରା ବ୍ୟବହାର କରେ"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus ବ୍ୟବହାର କରେ"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "ଲେଖା ପରୀକ୍ଷଣ ସନ୍ଦେଶ ପଠାଏ"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "ଟର୍ମିନାଲ ସହିତ ପାରସ୍ପର ଉପରେ ପ୍ରଭାବ ପକାଏ"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "ଇମେଲ ପଠାଏ"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "ପ୍ରୟୋଗ ପରିଚାଳନ କରୁଥିବା ଫାଇଲ/ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "staff_r ଚାଳକକୁ sysadm ମୂଳ ଡିରେକ୍ଟୋରୀ ଖୋଜିବାପାଇଁ ଏବଂ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ "
--#~ "(ଯେପରି କି ~/.bashrc)"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"ଫାଇଲ/ଡିରେକ୍ଟୋରି ଗୁଡିକୁ ସଂଯୋଗକରନ୍ତୁ ଯାହାକି ପ୍ରୟୋଗରେ \"ଲେଖିବା\" କୁ ଆବଶ୍ୟକ କରେ। Pid ଫାଇଲଗୁଡିକ, "
-+"Log ଫାଇଲଗୁଡିକ, /var/lib ଫାଇଲଗୁଡିକ ..."
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "ସର୍ବବ୍ୟାପୀ SSL ସୁରଙ୍ଗ"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "ବୁଲିଆନଗୁଡିକୁ ଚୟନକରନ୍ତୁ ଯାହାକୁ ପ୍ରୟୋଗ ବ୍ୟବହାର କରେ"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "ଏହି ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ପାଇଁ ବୁଲିଆନଗୁଡିକୁ ଯୋଗ/ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "ଭିତର ନୀତି ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "ନୀତି ଡିରେକ୍ଟୋରୀ"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "ସୃଷ୍ଟିହେଇଥିବା ନୀତି ଫାଇଲଗୁଡିକ"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
-+"ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
-+"ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
-+"Linux ଲଗଇନ ଚାଳକକୁ ଚାଳକ ଭୂମିକା ସହିତ ପରିକଳ୍ପନା କରିବାକୁ semanage କିମ୍ବା useradd ବ୍ୟବହାର "
-+"କରିଥାଏ।\n"
-+"ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
-+"ଚାଳକ ଭାବରେ ଲଗଇନ କରିଥାଏ ଏବଂ ଏହି ଚାଳକ ଭୂମିକାକୁ ପରୀକ୍ଷା କରିଥାଏ।\n"
-+"te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "stunnel ଡେମନକୁ standalone ପରି ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, xinetd ର ବାହାରେ"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
-+"ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
-+"\n"
-+"ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
-+"ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
-+"avc ସନ୍ଦେଶଗୁଡିକୁ ସୃଷ୍ଟି କରବାପାଇଁ ପ୍ରୟୋଗକୁ ଚଲାଇଥାଏ/ପୁନଃଆରମ୍ଭ କରିଥାଏ।\n"
-+"te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "ବୁଲିୟାନ ସଂଳାପ ଯୋଗକରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "ବୁଲିଆନ ନାମ"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "ଭୂମିକା"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "system cron jobs  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "ଅବସ୍ଥିତ ଚାଳକ (_U)"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "ପ୍ରୟୋଗ"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s ନିଶ୍ଚିତ ରୂପେ ଗୋଟିଏ ଡିରେକ୍ଟରୀ"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "ଆପଣ ଗୋଟିଏ ଚାଳକ ଚୟନ କରିବା ଉଚିତ"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "ପରିସୀମିତ ରହିବାକୁ ନିଷ୍ପାଦ୍ୟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "undev ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "ପରିସୀମିତ ରହିବାକୁ init ସ୍କ୍ରିପ୍ଟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ସୃଷ୍ଟି କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଫାଇଲ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "xinetd କୁ ଅପରିସୀମିତ ହୋଇ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, ଏହା ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା ଯେକୌଣସି ସେବାକୁ "
--#~ "ଅନ୍ତର୍ଭୁକ୍ତ କରି ଯାହାରକି ପରିସର ପରିବର୍ତ୍ତନ ସ୍ପଷ୍ଟ ଭାବରେ ବ୍ୟାଖ୍ୟା କରାଯାଇନାହିଁ"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ହାସଲ କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଡିରେକ୍ଟୋରୀ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm କୁ ଅପରିସୀମିତ ଭାବରେ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "ଭିତର ନୀତି ଫାଇଲ ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"%s_t ପ୍ରକାରକୁ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ବ୍ୟଖ୍ୟା କରାଯାଇଛି।\n"
-+"ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "ନାମ ଯାଞ୍ଚ କରନ୍ତୁ"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "ଚାଳକ ମାନଙ୍କୁ mount ନିର୍ଦ୍ଦେଶ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"%s.pp ଏକକାଂଶ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ଧାରଣ କରାଯାଇଛି।\n"
-+"ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "ସାଧାରଣ ଚାଳକ ମାନଙ୍କୁ ସିଧାସଳଖ ମାଉସ ବ୍ୟବହାରର ଅନୁମତି ଦିଅନ୍ତୁ (କେବଳ X ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ)"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "ଚାଳକମାନଙ୍କୁ dmesg ନିର୍ଦ୍ଦେଶ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "ଆପଣ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ଭରଣ କରିବା ଉଚିତ"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "ନେଟୱର୍କ ଅନ୍ତରାପୃଷ୍ଠକୁ ନିୟନ୍ତ୍ରଣ କରିବାପାଇଁ ଚାଳକମାନଙ୍କୁ ଅନୁମତି ଦିଅନ୍ତୁ (ଏହା ବ୍ୟତିତ USERCTL=ସତ "
--#~ "ହୋଇଥିବା ଆବଶ୍ୟକ )"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux ବିନ୍ୟାସ କରନ୍ତୁ"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "ସାଧାରଣ ଚାଳକକୁ ping ନିଷ୍ପାଦନ କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "ସଂଯୋଗିକୀଗୁଡିକ ନିଶ୍ଚିତ ରୂପେ ସଂଖ୍ୟା କିମ୍ବା 1 ରୁ %d ପର୍ଯ୍ୟନ୍ତ ସଂଖ୍ୟାର ପରିସର ହୋଇଥିବା ଉଚିତ"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "ଚାଳକକୁ noextattrଫାଇଲ r/w କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ (FAT, CDROM, FLOPPY)"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ/ଚାଳକ ପାଇଁ ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "ଚାଳକକୁ usb ଉପକରଣଗୁଡିକୁ rw ର ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "ଚାଳକ ପ୍ରକାର ଗୁଡିକ ଅନୁମତିପ୍ରାପ୍ତ ନିଷ୍ପାଦ୍ୟ ନୁହଁନ୍ତି"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ଚାଳକକୁ tty ଫାଇଲଗୁଡିକୁ ଆରମ୍ଭକରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "କେବଳ ଡେମନ apps init ସ୍କ୍ରିପ୍ଟ ବ୍ୟବହାର କରିପାରିବେ"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog ଟି ଗୋଟିଏ ବୁଲିଆନ ମୂଲ୍ୟ ହୋଇଥିବା ଉଚିତ"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER ପ୍ରକାରଗୁଡିକ ସ୍ୱୟଂଚାଳିତଭାବେ ଗୋଟିଏ tmp ପ୍ରକାର ପାଇଥାଏ"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ ପାଇଁ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ପଥ ଭରଣ କରିବା ଉଚିତ"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "ପ୍ରବର୍ତ୍ତନ ଫାଇଲକୁ ଟାଇପ କରନ୍ତୁ"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "ଅନ୍ତରାପ୍ରୁଷ୍ଠ ଫାଇଲ"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ ଫାଇଲ"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "ସ୍କ୍ରିପ୍ଟ ବ୍ୟବସ୍ଥା"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀ"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "ଭୌତିକ ଡିସ୍କ ଉପକରଣଗୁଡିକୁ ପଢିବା/ଲେଖିବା ପାଇଁ xenକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"SELinux ସଂଯୋଗିକୀ\n"
-+"ପ୍ରକାର"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "ପ୍ରଟୋକଲ"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen ନିୟନ୍ତ୍ରଣ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"MLS/MCS\n"
-+"ସ୍ତର"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "ସଂଯୋଗିକୀ"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "ସଂଯୋଗିକୀ ସଂଖ୍ୟା \"%s\" ଟି ବୈଧ ନୁହଁ  0 < PORT_NUMBER < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "ତାଲିକା ଦୃଶ୍ୟ"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "ସମୁହ ଦୃଶ୍ୟ"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux ଚାଳକ ସୁରକ୍ଷା"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "ପ୍ରଶାସନ"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "ସର୍ବପ୍ରଧାନ ଫାଇଲଗୁଡିକୁ ଲେଖିବାକୁ ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅବଣ୍ଟିତ tty ଗୁଡିକୁ ବ୍ୟବହାର କରିବାର କ୍ଷମତା ପ୍ରଦାନ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "ଚାଳକ ଗୋପନୀୟତା"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS ପ୍ରବେଶ ସଂକେତ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"gadmin SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
-+"ଦିଅନ୍ତୁ"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"ଅତିଥି SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS ସ୍ଥାନାନ୍ତରଣ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "ସ୍ମୃତି ସୁରକ୍ଷା"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "java ନିଷ୍ପାଦ୍ୟ ଥାକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "ସ୍ଥାପନ"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "ଯେକୌଣସି ଫାଇଲକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "ଯେକୌଣସି ଡିରେକ୍ଟୋରୀକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "mplayer ନିଷ୍ପାଦ୍ୟ ଥାକ କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh-keysign କୁ ଚଲାଇବା ପାଇଁ ssh କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "ଆପଣ ନିଶ୍ଚିତକି ଆପଣ %s କୁ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି '%s'?"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"staff SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Delete %s"
--#~ msgstr "%s କୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"sysadm SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
-+"ଦିଅନ୍ତୁ"
--#~ msgid "Add %s"
--#~ msgstr "%s କୁ ଯୋଗକରନ୍ତୁ"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"unconfined SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ "
-+"ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Modify %s"
--#~ msgstr "%s କୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "ନେଟୱର୍କ ବିନ୍ୟାସ"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "ନାମପଟିକରଣ ହୋଇନଥିବା ପ୍ୟାକେଟଗୁଡିକୁ ନେଟୱର୍କରେ ପ୍ରବାହ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Permissive"
--#~ msgstr "ଅନୁମୋଦନକାରୀ"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Enforcing"
--#~ msgstr "କାର୍ଯ୍ୟକାରୀ କରୁଅଛି"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "ଅପରିସୀମିତ dyntrans କୁ ଅପରିସୀମିତ_execmen ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "ତଥ୍ୟାଧାର"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "mysql ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "postgres ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "Xସର୍ଭର"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "X ସହଭାଗୀ ସ୍ମୃତିରେ ଲେଖିବା ପାଇଁ ଗ୍ରାହକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Disabled"
--#~ msgstr "ନିଷ୍କ୍ରିୟ"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"x ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
-+"ଦିଅନ୍ତୁ"
--#~ msgid "Status"
--#~ msgstr "ଅବସ୍ଥିତି"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "NIS ସହିତ ଚାଲିବାପାଇଁ ଡେମନକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "ୱେବ ପ୍ରୟୋଗ"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "ସକର୍ମ staff SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "ସକର୍ମ sysadm SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "ସକର୍ମ user SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "ସକର୍ମ xguest SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "ମୂଳ ଡିରେକ୍ଟୋରୀରେ ଲେଖିବା ପାଇଁ staff Web Browsers କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "amanda ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "amavis ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "avahi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster ସର୍ଭର  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"ବିଭିନ୍ନ ପ୍ରକାର ପ୍ରସଙ୍ଗକୁ ପଢିବାପାଇଁ cdrecordକୁ ଅନୁମତି ଦିଅନ୍ତୁ। nfs, samba, ଅପସାରଣୀୟ ଯନ୍ତ୍ରଗୁଡିକୁ, "
-+"ଚାଳକ temp ଏବଂ ଅବିସ୍ଵସ୍ତ ପ୍ରସଙ୍ଗ ଫାଇଲଗୁଡିକ"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "କ୍ରନ"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "ମୁଦ୍ରଣ କରୁଅଛି"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd ପଛପାଖ ସର୍ଭର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "dccd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifdନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "dccm ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "start ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "ବିକାସ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "ଖେଳ"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "ଖେଳ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "ୱେବ ବ୍ରାଉଜର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbird ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "ସୁସଂଗତି"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux ଲଗଇନ ଢାଞ୍ଚାକୁ ଯୋଗକରନ୍ତୁ"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"ଆମେ ଜାଣିଥିବା ଜିନିଷ ଯାହାକି ଭାଙ୍ଗିବାକୁ ଯାଉଛି କିନ୍ତୁ ଯେଉଁଥିରେ ସୁରକ୍ଷା ବିପତ୍ତି ନାହିଁ ତାକୁ ସମୀକ୍ଷା କରନ୍ତୁ "
-+"ନାହିଁ"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "ଆଧାରନାମ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD ସେବା"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inet child ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "କେର୍ବେରୋଶ"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "mailman ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଇଭଲ୍ୟୁସନ ଏବଂ ଥଣ୍ଡରବର୍ଡକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ମଜିଲା ବ୍ରାଉଜରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "ନାମ ସେବା"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "named ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "ନେଟୱର୍କ ପରିଚାଳକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "ଶାମ୍ବା"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "postfix ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "ଗୋଟିଏ ସାଧାରଣ ଚାଳକ ପାଇଁ pppd ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "pptp ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "readahead ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "ମାନକ ବିହିନ ସ୍ଥାନମାନଙ୍କରେ (default_t) ଫାଇଲ ପଢିବାପାଇଁ ପ୍ରଗ୍ରାମ ଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "ricci ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "rshd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh କୁ ଡେମନ ଆକାରରେ ଚଲାଇବା ବଦଳରେ inetd ରୁ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "nfs ଡିରେକ୍ଟୋରୀଗୁଡିକରେ ଅଂଶଧନ କରିବା ପାଇଁ Sambaକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL ବୈଧିକରଣ ସର୍ଭର"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "/etc/shadow କୁ ପଢିବା ପାଇଁ sasl ବୈଧିକରଣ ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux ପ୍ରକାର"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"ଗୋଟିଏ ସ୍ମୃତି ସ୍ଥାନକୁ ଉଭୟ ନିଷ୍ପାଦ୍ୟ ଏବଂ ଲିଖନୀୟ ଆକାରରେ ପ୍ରତିଚିତ୍ରଣ କରିବା ପାଇଁ X-ୱିଣ୍ଡୋ ସର୍ଭରକୁ "
-+"ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo ଏବଂ su ର ଅଭିପ୍ରାୟର ପରିବର୍ତ୍ତନକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ ଏକକାଂଶ ଧାରଣ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ SELinux ନୀତି ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "setrans ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "ଅବାଞ୍ଛିତ ଡାକ ସୁରକ୍ଷା"
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "spamd କୁ ମୂଳ ଡିରେକ୍ଟୋରୀରେ ପ୍ରବେଶାନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "spamd Assassin ଡେମନକୁ ନେଟୱର୍କ ଅଭିଗମନର ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "squid ଡେମନକୁ ନେଟୱର୍କ ସହିତ ସଂଯୋଗର ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "ସ୍ତର"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"staff_r ଚାଳକକୁ sysadm ମୂଳ ଡିରେକ୍ଟୋରୀ ଖୋଜିବାପାଇଁ ଏବଂ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ "
-+"(ଯେପରି କି ~/.bashrc)"
--#~ msgid "File Specification"
--#~ msgstr "ଫାଇଲ ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "ସର୍ବବ୍ୟାପୀ SSL ସୁରଙ୍ଗ"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel ଡେମନକୁ standalone ପରି ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, xinetd ର ବାହାରେ"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "system cron jobs  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "undev ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "File Type"
--#~ msgstr "ଫାଇଲ ପ୍ରକାର"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"xinetd କୁ ଅପରିସୀମିତ ହୋଇ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, ଏହା ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା ଯେକୌଣସି ସେବାକୁ "
-+"ଅନ୍ତର୍ଭୁକ୍ତ କରି ଯାହାରକି ପରିସର ପରିବର୍ତ୍ତନ ସ୍ପଷ୍ଟ ଭାବରେ ବ୍ୟାଖ୍ୟା କରାଯାଇନାହିଁ"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "ସମସ୍ତ ଫାଇଲଗୁଡିକ\n"
--#~ "ନିୟମିତ ଫାଇଲ\n"
--#~ "ଡିରେକ୍ଟୋରୀ\n"
--#~ "ଅକ୍ଷର ଯନ୍ତ୍ର\n"
--#~ "ଅସ୍ଥାୟୀ ଯନ୍ତ୍ର\n"
--#~ "ସକେଟ\n"
--#~ "ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କ\n"
--#~ "ନାମ ବିଶିଷ୍ଟ ପାଇପ\n"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"rc ସ୍କ୍ରିପ୍ଟ ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା ଯେକୌଣସି ଡେମନ ଯେଉଁଥିରେ ପରିସର ସଂକ୍ରମଣ ସ୍ପଷ୍ଟ ଭାବରେ ବ୍ୟାଖ୍ୟା "
-+"କରାଯାଇଛି ତାହାକୁ ଅନ୍ତର୍ଭୁକ୍ତ କରି, rc ସ୍କ୍ରିପ୍ଟଗୁଡ଼ିକୁ ଅସୀମିତ ଧାରାରେ ଚାଲିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "MLS"
--#~ msgstr "MLS"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "rpm କୁ ଅପରିସୀମିତ ଭାବରେ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ଚାଳକ କୁ ଯୋଗ କରନ୍ତୁ"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"ଅଧିକାର ପ୍ରାପ୍ତ ଉପକରଣ ଯେପରିକି hotplug ଏବଂ insmodକୁ ଅସୀମିତ ଭାବରେ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux ପ୍ରଶାସନ"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "Add"
--#~ msgstr "ଯୋଗକରନ୍ତୁ"
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "_Properties"
--#~ msgstr "ଗୁଣ (_P)"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"su, sudo, କିମ୍ବା ଚାଳକ ସାହାଯ୍ୟକାରୀ ମାଧ୍ଯମରେ user_r କୁ sysadm_r ପାଖରେ ପହଞ୍ଚିବା ପାଇଁ "
-+"ଅନୁମତି ଦିଅନ୍ତୁ. ଅନ୍ୟଥା, କେବଳ staff_r ଏହାକୁ କରିପାରିବ"
--#~ msgid "_Delete"
--#~ msgstr "ଅପସାରଣ କରନ୍ତୁ(_D)"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "ଚାଳକ ମାନଙ୍କୁ mount ନିର୍ଦ୍ଦେଶ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Select Management Object"
--#~ msgstr "ପରିଚାଳନା ବସ୍ତୁ ଚୟନକରନ୍ତୁ"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"ସାଧାରଣ ଚାଳକ ମାନଙ୍କୁ ସିଧାସଳଖ ମାଉସ ବ୍ୟବହାରର ଅନୁମତି ଦିଅନ୍ତୁ (କେବଳ X ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ)"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>ଚୟନକରନ୍ତୁ:</b>"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "ଚାଳକମାନଙ୍କୁ dmesg ନିର୍ଦ୍ଦେଶ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତକାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"ନେଟୱର୍କ ଅନ୍ତରାପୃଷ୍ଠକୁ ନିୟନ୍ତ୍ରଣ କରିବାପାଇଁ ଚାଳକମାନଙ୍କୁ ଅନୁମତି ଦିଅନ୍ତୁ (ଏହା ବ୍ୟତିତ USERCTL=ସତ "
-+"ହୋଇଥିବା ଆବଶ୍ୟକ )"
--#~ msgid ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
--#~ msgstr ""
--#~ "ନିଷ୍କ୍ରିୟ\n"
--#~ "ଅନୁମୋଦନକାରୀe\n"
--#~ "କାର୍ଯ୍ୟକାରୀ\n"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "ସାଧାରଣ ଚାଳକକୁ ping ନିଷ୍ପାଦନ କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "ଚାଳକକୁ noextattrଫାଇଲ r/w କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ (FAT, CDROM, FLOPPY)"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "ଚାଳକକୁ usb ଉପକରଣଗୁଡିକୁ rw ର ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"TCP ସର୍ଭରଗୁଡ଼ିକୁ ଚଲାଇବା ପାଇଁ ଚାଳକମାନଙ୍କୁ ଅନୁମତି ଦିଅନ୍ତୁ (ସଂଯୋଗିକୀଗୁଡ଼ିକ ସହିତ ବାନ୍ଧିହୁଅନ୍ତୁ ଏବଂ ସମାନ "
-+"ପରିସର ଏବଂ ବାହ୍ଯ ଚାଳକମାନଙ୍କ ପାଖରୁ ସଂଯୋଗ ଗ୍ରହଣକରନ୍ତୁ)  ଏହି ଶକ୍ତିଗୁଡ଼ିକୁ ନିଷ୍କ୍ରିୟ କରି FTP ନିଷ୍କ୍ରିୟ "
-+"ଅବସ୍ଥା ଏବଂ ଅନ୍ଯାନ୍ୟ ପ୍ରୋଟୋକଲମାନଙ୍କୁ ପରିବର୍ତ୍ତନ କରିପାରେ"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "ଚାଳକକୁ tty ଫାଇଲଗୁଡିକୁ ଆରମ୍ଭକରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "ଭୌତିକ ଡିସ୍କ ଉପକରଣଗୁଡିକୁ ପଢିବା/ଲେଖିବା ପାଇଁ xenକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "xen ନିୟନ୍ତ୍ରଣ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS ପ୍ରବେଶ ସଂକେତ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS ସ୍ଥାନାନ୍ତରଣ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତ ନୀତିର ପ୍ରକାର: "
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"SELinux webadm ଚାଳକକୁ ଅଧିକାରପ୍ରାପ୍ତ ହୋଇନଥିବା ଚାଳକମାନଙ୍କ ମୂଳ ସ୍ଥାନପଞ୍ଜିକାକୁ ପରିଚାଳନା "
-+"କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "ପରବର୍ତ୍ତୀ ପୁନର୍ଚାଳନରେ ପୁନଃଚିହ୍ନଟ କରନ୍ତୁ।"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"SELinux webadm ଚାଳକକୁ ଅଧିକାରପ୍ରାପ୍ତ ହୋଇନଥିବା ଚାଳକମାନଙ୍କ ମୂଳ ସ୍ଥାନପଞ୍ଜିକାକୁ ପଢ଼ିବାକୁ ଅନୁମତି "
-+"ଦିଅନ୍ତୁ"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "ବୁଲିଆନ ବିନ୍ୟାସକୁ ତନ୍ତ୍ରପୂର୍ବନିର୍ଦ୍ଧାରିତରେ ପ୍ରତ୍ୟାବୃତ କରନ୍ତୁ"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "ଆପଣ ନିଶ୍ଚିତକି ଆପଣ %s କୁ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି '%s'?"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ବୁଲିଆନଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s କୁ ଅପସାରଣ କରନ୍ତୁ"
--#~ msgid "Filter"
--#~ msgstr "ଛାଣନ୍ତୁ"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s କୁ ଯୋଗକରନ୍ତୁ"
--#~ msgid "Add File Context"
--#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s କୁ ରୂପାନ୍ତର କରନ୍ତୁ"
--#~ msgid "Modify File Context"
--#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "ଅନୁମୋଦନକାରୀ"
--#~ msgid "Delete File Context"
--#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "କାର୍ଯ୍ୟକାରୀ କରୁଅଛି"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "ସମସ୍ତ ଇଚ୍ଛାରୂପୀ ଫାଇଲ ପ୍ରସଙ୍ଗ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "ନିଷ୍କ୍ରିୟ"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux ଚାଳକ ଢାଞ୍ଚା ଯୋଗକରନ୍ତୁ"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "ଅବସ୍ଥିତି"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"ନୀତି ପ୍ରକାରକୁ ପରିବର୍ତ୍ତନ କରିବା ସମଗ୍ର ଫାଇଲତନ୍ତ୍ରକୁ ପରବର୍ତ୍ତି ବୁଟରେ ପୁନଃ ଚିହ୍ନଟ କରିବ. ଫାଇଲତନ୍ତ୍ରର "
-+"ଆକାର ଉପରେ ନିର୍ଭର କରି ପୁନଃ ଚିହ୍ନଟ ଅଧିକ ସମୟ ନେଇଥାଏ.  ଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"SELinux ନିଷ୍କ୍ରିୟ ଅବସ୍ଥାକୁ ପରିବର୍ତ୍ତନ କରିବାକୁ ହେଲେ ପୁନଃଚାଳନ କରିବା ଆବଶ୍ୟକ.  ଏହା ଅନୁମୋଦିତ ନୁହଁ.  "
-+"ଯଦି ଆପଣ ପରେ SELinux କୁ ପଛକୁ ଆଣିବାକୁ ସିଦ୍ଧାନ୍ତ କରନ୍ତି, ତେବେ ତନ୍ତ୍ରକୁ ପୁନଃ ନାମପଟିକରଣ କରିବା "
-+"ଆବଶ୍ୟକ.  ଯଦି ଆପଣ ଦେଖିବାକୁ ଚାହାନ୍ତି ଯେ SELinux ଆପଣଙ୍କ ତନ୍ତ୍ରରେ ସମସ୍ୟା ସୃଷ୍ଟି କରୁଛି, ଆପଣ "
-+"ଅନୁମୋଦନ ଅବସ୍ଥାକୁ ଯାଇପାରିବେ ଯାହାକି କେବଳ ତ୍ରୁଟି ଦାଖଲକରିଥାଏ ଏବଂ SELinux ନୀତିକୁ ବାଧ୍ଯ "
-+"କରିନଥାଏ.  ଅନୁମୋଦନ ଅବସ୍ଥା ପାଇଁ ପୁନଃଚାଳନ କରିବାକୁ ପଡ଼ିନଥାଏ    ଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
--#~ msgid "Add Translation"
--#~ msgstr "ଅନୁବାଦ ଯୋଗକରନ୍ତୁ"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"SELinux ସକ୍ରିୟ ଅବସ୍ଥାକୁ ପରିବର୍ତ୍ତନ କରିବା ଦ୍ୱାରା ସମଗ୍ର ଫାଇଲତନ୍ତ୍ରକୁ ପରବର୍ତ୍ତି ବୁଟରେ ପୁନଃ "
-+"ନାମପଟିକରଣ କରିବାକୁ ପଡ଼ିବ. ତନ୍ତ୍ରର ଆକାର ଉପରେ ନିର୍ଭର କରି, ପୁନଃ ନାମପଟିକରଣ କରିବାକୁ ବହୁତ ଅଧିକ ସମୟ "
-+"ଲାଗିବ.  ଆପଣ ଆଗେଇବାକୁ ଚାହୁଁଛନ୍ତି କି?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Modify Translation"
--#~ msgstr "ଅନୁବାଦ ରୂପାନ୍ତର କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Delete Translation"
--#~ msgstr "ଅନୁବାଦକୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "SELinux ଲଗଇନ ଢାଞ୍ଚାକୁ ଯୋଗକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux ପ୍ରକାର"
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux ଚାଳକକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"ସ୍ତର"
--#~ msgid "Add Network Port"
--#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "ଫାଇଲ ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "ଫାଇଲ ପ୍ରକାର"
--#~ msgid "Edit Network Port"
--#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ସମ୍ପାଦନ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"ସମସ୍ତ ଫାଇଲଗୁଡିକ\n"
-+"ନିୟମିତ ଫାଇଲ\n"
-+"ଡିରେକ୍ଟୋରୀ\n"
-+"ଅକ୍ଷର ଯନ୍ତ୍ର\n"
-+"ଅସ୍ଥାୟୀ ଯନ୍ତ୍ର\n"
-+"ସକେଟ\n"
-+"ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କ\n"
-+"ନାମ ବିଶିଷ୍ଟ ପାଇପ\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux ଚାଳକ କୁ ଯୋଗ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux ପ୍ରଶାସନ"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "ଯୋଗକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "ଗୁଣ (_P)"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "ଅପସାରଣ କରନ୍ତୁ(_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "ପରିଚାଳନା ବସ୍ତୁ ଚୟନକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>ଚୟନକରନ୍ତୁ:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତକାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
--#~ msgid "Delete Network Port"
--#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"ନିଷ୍କ୍ରିୟ\n"
-+"ଅନୁମୋଦନକାରୀe\n"
-+"କାର୍ଯ୍ୟକାରୀ\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତ ନୀତିର ପ୍ରକାର: "
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ସଂଯୋଗିକୀଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"ସମଗ୍ର ଫାଇଲତନ୍ତ୍ରରେ ପରବର୍ତ୍ତି ପୁନଃ ଚାଳନରେ ଯଦି ପୁନଃ ନାମପଟିକରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି ତେବେ ବାଛନ୍ତୁ.  "
-+"ତନ୍ତ୍ରର ଆକାର ଉପରେ ନିର୍ଭର କରି, ପୁନଃ ନାମପଟିକରଣ କରିବାକୁ ବହୁତ ଅଧିକ ସମୟ ଲାଗିବ.  ଯଦି ଆପଣ ନୀତି "
-+"ପ୍ରକାରଗୁଡ଼ିକ ପରିବର୍ତ୍ତନ କରିବାକୁ ଚାହୁଁଛନ୍ତି କିମ୍ବା ନିଷ୍କ୍ରିୟ ଅବସ୍ଥାରୁ ବଳପୂର୍ବକ ଅବସ୍ଥାକୁ ଯାଉଥାନ୍ତି, ତେବେ "
-+"ପୁନଃ ନାମପଟିକରଣ ଆବଶ୍ୟକ."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "ପରବର୍ତ୍ତୀ ପୁନର୍ଚାଳନରେ ପୁନଃଚିହ୍ନଟ କରନ୍ତୁ।"
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "ସ୍ତର37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "ବୁଲିଆନ ବିନ୍ୟାସକୁ ତନ୍ତ୍ରପୂର୍ବନିର୍ଦ୍ଧାରିତରେ ପ୍ରତ୍ୟାବୃତ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ବୁଲିଆନଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "ବୁଲିଆନ ଲକଡାଉନ ୱିଜାର୍ଡ ଚଲାନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "ଲକଡାଉନ..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "ଛାଣନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "ସ୍ତର50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "ସମସ୍ତ ଇଚ୍ଛାରୂପୀ ଫାଇଲ ପ୍ରସଙ୍ଗ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "ସ୍ତର38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux ଚାଳକ ଢାଞ୍ଚା ଯୋଗକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "ସ୍ତର39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "ଚାଳକକୁ ଯୋଗକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "ଚାଳକକୁ ପରିବର୍ତ୍ତନ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "ଚାଳକକୁ ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "ସ୍ତର41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "ଅନୁବାଦକୁ ଯୋଗକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "ଅନୁବାଦକୁ ପରିବର୍ତ୍ତନ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "ଅନୁବାଦକୁ ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "ସ୍ତର40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ସମ୍ପାଦନ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଅପସାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ସଂଯୋଗିକୀଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "ସ୍ତର42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "ନୂତନ ନୀତି ଏକକାଂଶ ସୃଷ୍ଟିକରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "ନୀତି ଏକକାଂଶକୁ ଧାରଣ କରନ୍ତୁ"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "ଧାରଣ କରିପାରୁଥିବା ନୀତି ଏକକାଂଶକୁ ଅପସାରଣ କରନ୍ତୁ"
--#~ msgid "Generate new policy module"
--#~ msgstr "ନୂତନ ନୀତି ଏକକାଂଶ ସୃଷ୍ଟିକରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"ଅତିରିକ୍ତ ଲେଖା ପରୀକ୍ଷଣ ନୀତିକୁ ସକ୍ରିୟ/ନିଷ୍କ୍ରିୟ କରନ୍ତୁ, ଯାହାକି ସାଧାରଣତଃ ଲଗ ଫାଇଲରେ ଖବର ହେଉନଥିବ। "
--#~ msgid "Load policy module"
--#~ msgstr "ନୀତି ଏକକାଂଶକୁ ଧାରଣ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "ସ୍ତର44"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ଧାରଣ କରିପାରୁଥିବା ନୀତି ଏକକାଂଶକୁ ଅପସାରଣ କରନ୍ତୁ"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "ପ୍ରଗତି ଧାରାକୁ ଅନୁମତି ଧାରାରେ ପରିବର୍ତ୍ତନ କରନ୍ତୁ।"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "ଅତିରିକ୍ତ ଲେଖା ପରୀକ୍ଷଣ ନୀତିକୁ ସକ୍ରିୟ/ନିଷ୍କ୍ରିୟ କରନ୍ତୁ, ଯାହାକି ସାଧାରଣତଃ ଲଗ ଫାଇଲରେ ଖବର "
--#~ "ହେଉନଥିବ। "
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "ପ୍ରଗତି ଧାରାକୁ କ୍ରିୟାତ୍ମକ ଧାରାରେ ପରିବର୍ତ୍ତନ କରନ୍ତୁ"
--#~ msgid "Sensitvity Level"
--#~ msgstr "ସମ୍ୱେଦନଶୀଳତା ସ୍ତର"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "ପଦ୍ଧତି ଡମେନ"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux ଚାଳକ '%s' ଟି ଆବଶ୍ଯକ"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "ସ୍ତର59"
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "seଏକକାଂଶ -i %s\n"
--#~ "\n"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux ଚାଳକ '%s' ଟି ଆବଶ୍ଯକ"
--#~ msgid "Requires value"
--#~ msgstr "ମୂଲ୍ଯ ଆବଶ୍ଯକ"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "ସ୍ପର୍ଶକାତର ସ୍ତର"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/pa.po policycoreutils-2.0.85/po/pa.po
---- nsapolicycoreutils/po/pa.po        2011-02-17 15:11:24.981737250 -0500
-+++ policycoreutils-2.0.85/po/pa.po    2011-02-18 16:03:41.437976214 -0500
-@@ -3,22 +3,40 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
- #
- # A S Alam <apbrar@gmail.com>, 2006.
--# Jaswinder Singh <jsingh@redhat.com>, 2006, 2007, 2008.
-+# Jaswinder Singh <jsingh@redhat.com>, 2006, 2007, 2008, 2009, 2010.
- msgid ""
- msgstr ""
- "Project-Id-Version: pa\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-03-26 16:08+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-27 14:58+0530\n"
- "Last-Translator: Jaswinder Singh <jsingh@redhat.com>\n"
--"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
-+"Language-Team: American English <kde-i18n-doc@kde.org>\n"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
--"X-Generator: KBabel 1.11.4\n"
-+"X-Generator: Lokalize 1.0\n"
- "Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n"
- "\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinux ਨੂੰ ਗਰਾਫੀਕਲ ਸੈਟਿੰਗ ਵਿੱਚ ਸੰਰਚਿਤ ਕਰੋ"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux ਮੈਨੇਜਮੈਂਟ"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਬਣਾਓ"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux ਪਾਲਿਸੀ ਨਿਰਮਾਣ ਜੰਤਰ"
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -108,9 +126,8 @@
- msgstr "semanage ਕੁਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s ਲਈ MLS ਰੇਂਜ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "MLS ਯੋਗ ਹਾਲਤ ਦੀ ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -125,7 +142,8 @@
- msgid "Level"
- msgstr "ਲੈਵਲ"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "ਅਨੁਵਾਦ"
-@@ -155,764 +173,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "semanage ਤਬਦੀਲੀ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਹੀ ਹੈ"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "semanage ਸੰਚਾਰ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਹੈ"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux ਉਪਭੋਗੀਆਂ ਨੂੰ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
-+msgstr "SELinux ਮੈਡਿਊਲਾਂ ਨੂੰ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "ਚੇਤਾਵਨੀ"
-+msgstr "ਚੇਤਾਵਨੀ ਕਿਸਮਾਂ"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "ਚੇਤਾਵਨੀ ਡੋਮੇਨ %s ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਦਾ (ਮੈਡਿਊਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ ਹੋਈ)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "ਚੇਤਾਵਨੀ ਮੈਡਿਊਲ %s ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ (ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s ਲਈ ਕੁੰਜੀ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ %s ਲਈ ਲਾਗਇਨ ਮੈਪ ਪਰਿਭਾਸ਼ਤ ਨਹੀਂ"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪ ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਤ ਹੈ"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "ਲੀਨਕਸ ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
-+msgstr "ਲੀਨਕਸ ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "ਲੀਨਕਸ ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s ਲਈ ਨਾਂ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s ਲਈ MLS ਰੇਂਜ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s ਲਈ SELinux ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮਿਲਾਪ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਸ਼ਾਮਿਲ ਕਰੋ"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser ਜਾਂ serange ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪ ਪਰਿਭਾਸ਼ਤ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "seuser ਨੂੰ %s ਲਈ ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪਿੰਗ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪਿੰਗ, ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਕੀਤੀ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪਿੰਗ ਹਟਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "ਲਾਗਇਨ ਮੈਪਿੰਗ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "ਲਾਗਇਨ ਨਾਂ"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "SELinux ਉਪਭੋਗੀ"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS ਰੇਂਜ"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਘੱਟੋ-ਘੱਟ ਇੱਕ ਰੋਲ ਸ਼ਾਮਿਲ ਕਰਨਾ ਜਰੂਰੀ ਹੈ"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ SELinux ਉਪਭੋਗੀ %s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux ਉਪਭੋਗੀ %s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s ਲਈ SELinux ਉਪਭੋਗੀ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "ਰੋਲ %s ਨੂੰ %s ਲਈ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s ਲਈ MLS ਲੈਵਲ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "ਅਗੇਤਰ %s ਨੂੰ %s ਲਈ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s ਲਈ ਕੁੰਜੀ ਪਤਾ ਨਹੀਂ ਲਗਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux ਉਪਭੋਗੀ %s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "ਅਗੇਤਰ, ਰੋਲ, ਲੈਵਲ ਜਾਂ ਰੇਂਜ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "ਅਗੇਤਰ ਜਾਂ ਰੋਲ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux ਉਪਭੋਗੀ %s ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s ਲਈ ਉਪਭੋਗੀ ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux ਉਪਭੋਗੀ %s ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux ਉਪਭੋਗੀ %s ਨੂੰ ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਕੀਤਾ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux ਉਪਭੋਗੀ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux ਉਪਭੋਗੀਆਂ ਨੂੰ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "ਉਪਭੋਗੀ %s ਲਈ ਰੋਲ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "ਲੇਬਲਿੰਗ"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "ਅਗੇਤਰ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS ਲੈਵਲ"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS ਰੇਂਜ"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux ਰੋਲ"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "ਪਰੋਟੋਕਾਲ udp ਜਾਂ tcp ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s ਲਈ ਕੁੰਜੀ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "ਕਿਸਮ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਪੋਰਟ %s/%s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "ਪੋਰਟ %s/%s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s ਲਈ ਪ੍ਰਸੰਗ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਹੀਂ ਨਿਰਧਾਰਤ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਪ੍ਰਸੰਗ ਵਿੱਚ mls ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s ਲਈ ਪੋਰਟ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "ਪੋਰਟ %s/%s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype ਜਾਂ serange ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype ਲੋੜੀਂਦਾ ਹੈ"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "ਪੋਰਟ %s/%s ਦਿੱਤੀ ਨਹੀਂ ਗਈ"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "ਪੋਰਟ %s/%s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "ਪੋਰਟ %s/%s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "ਪੋਰਟਾਂ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "ਪੋਰਟ %s ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "ਪੋਰਟ %s/%s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "ਪੋਰਟ %s/%s ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "ਪੋਰਟਾਂ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux ਪੋਰਟ ਕਿਸਮ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "ਪਰੋਟੋ"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "ਪੋਰਟ ਨੰਬਰ"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
-+msgstr "ਕਿਸੇ ਐਡਰੈੱਸ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
-+msgstr "ਨੋਡ ਨੈੱਟਮਾਸਕ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "ਅਣਜਾਣਾ ਜਾਂ ਗੈਰ-ਮੌਜੂਦ ਪਰੋਟੋਕਾਲ"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux ਕਿਸਮ ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s ਲਈ ਕੁੰਜੀ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕੀ"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਪੋਰਟ %s/%s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
-+msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਐਡਰੈੱਸ %s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "ਪੋਰਟ %s/%s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
-+msgstr "ਐਡਰੈੱਸ %s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s ਲਈ ਕੁੰਜੀ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s ਲਈ ਪ੍ਰਸੰਗ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s ਲਈ ਨਾਂ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਮਾਸਕ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ mlf ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ mls ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "ਪੋਰਟ %s/%s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "ਐਡਰੈੱਸ %s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "ਪੋਰਟ %s/%s ਦਿੱਤੀ ਨਹੀਂ ਗਈ"
-+msgstr "ਐਡਰੈੱਸ %s ਦਿੱਤੀ ਨਹੀਂ ਗਈ"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "ਪੋਰਟ %s/%s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "ਐਡਰੈੱਸ %s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "ਪੋਰਟ %s/%s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-+msgstr "ਐਡਰੈੱਸ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "ਪੋਰਟ %s/%s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
-+msgstr "ਐਡਰੈੱਸ %s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
-+msgstr "ਐਡਰੈੱਸ %s ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "ਪੋਰਟਾਂ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
-+msgstr "ਐਡਰੈੱਸ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਇੰਟਰਫੇਸ %s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "ਇੰਟਰਫੇਸ %s ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਪ੍ਰਸੰਗ ਵਿੱਚ mls ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s ਲਈ ਇੰਟਰਫੇਸ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s ਲਈ ਸੁਨੇਹਾ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "ਇੰਟਰਫੇਸ %s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "ਇੰਟਰਫੇਸ %s ਦਿੱਤਾ ਨਹੀਂ ਗਿਆ"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "ਇੰਟਰਫੇਸ %s ਨੂੰ ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "ਇੰਟਰਫੇਸ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "ਇੰਟਰਫੇਸ %s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "ਇੰਟਰਫੇਸ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "ਇੰਟਰਫੇਸ ਸੂਚੀ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux ਇੰਟਰਫੇਸ"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "ਪ੍ਰਸੰਗ"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ mlf ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "ਗਲਤ ਫਾਇਲ ਨਿਰਧਾਰਨ"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ %s ਲਈ ਪ੍ਰਸੰਗ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange ਜਾਂ seuser ਦੀ ਲੋੜ ਹੈ"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ %s ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "ਲੋਕਲ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "ਕਿਸਮ"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਬੂਲੀਅਨ %s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "ਬੂਲੀਅਨ %s ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਹੈ"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ %s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਮੁੱਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
-+msgstr "ਤੁਹਾਨੂੰ ਹੇਠਲਿਆਂ ਵਿੱਚੋਂ ਇੱਕ ਮੁੱਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "ਬੂਲੀਅਨ %s ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ"
-+msgstr "ਬੂਲੀਅਨ %s ਦਾ ਯੋਗ ਮੁੱਲ ਨਹੀਂ ਨਿਰਧਾਰਤ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "ਬੂਲੀਅਨ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "ਗਲਤ ਫਾਰਮੈਟ %s: ਰਿਕਾਰਡ %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "ਬੂਲੀਅਨ %s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "ਬੂਲੀਅਨ %s ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "ਬੂਲੀਅਨ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "ਅਣਜਾਣ"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "ਬੰਦ"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "on"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux ਬੂਲੀਅਨ"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "ਵੇਰਵਾ"
-@@ -952,7 +971,7 @@
- msgstr "ਵਾਤਾਵਰਨ ਸਾਫ਼ ਕਰਨ ਲਈ ਅਸਫ਼ਲ\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "ਯੋਗਤਾਵਾਂ ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈ।\n"
-@@ -1284,1615 +1303,2191 @@
- msgid "Options Error %s "
- msgstr "ਚੋਣ ਗਲਤੀ %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "ਅਨੁਵਾਦ ਨੂੰ ਨਾਨ-MLS ਮਸ਼ੀਨਾਂ ਉੱਪਰ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "ਬੂਲੀਅਨ"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "ਸਭ"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "ਸੋਧਿਆ"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "ਫਾਇਲ ਲੇਬਲਿੰਗ"
--#~ msgid "Boolean"
--#~ msgstr "ਬੂਲੀਅਨ"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"ਫਾਇਲ\n"
-+"ਨਿਰਧਾਰਨ"
--#~ msgid "all"
--#~ msgstr "ਸਭ"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"ਫਾਇਲ ਕਿਸਮ"
--#~ msgid "Customized"
--#~ msgstr "ਸੋਧਿਆ"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"ਫਾਇਲ\n"
-+"ਕਿਸਮ"
--#~ msgid "File Labeling"
--#~ msgstr "ਫਾਇਲ ਲੇਬਲਿੰਗ"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "ਉਪਭੋਗੀ ਮੈਪਿੰਗ"
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "ਫਾਇਲ\n"
--#~ "ਨਿਰਧਾਰਨ"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"ਲਾਗਇਨ\n"
-+"ਨਾਂ"
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "ਫਾਇਲ ਕਿਸਮ"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"ਉਪਭੋਗੀ"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "ਫਾਇਲ\n"
--#~ "ਕਿਸਮ"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS ਰੇਂਜ"
--#~ msgid "User Mapping"
--#~ msgstr "ਉਪਭੋਗੀ ਮੈਪਿੰਗ"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "ਲਾਗਇਨ '%s' ਦੀ ਲੋੜ ਹੈ"
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "ਲਾਗਇਨ\n"
--#~ "ਨਾਂ"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "ਉਪਭੋਗੀ"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "ਮੈਡਿਊਲ ਨਾਂ"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS ਰੇਂਜ"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "ਵਰਜਨ"
--#~ msgid "Login '%s' is required"
--#~ msgstr "ਲਾਗਇਨ '%s' ਦੀ ਲੋੜ ਹੈ"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "ਆਡਿਟ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Policy Module"
--#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "ਆਡਿਟ ਯੋਗ ਕਰੋ"
--#~ msgid "Module Name"
--#~ msgstr "ਮੈਡਿਊਲ ਨਾਂ"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
--#~ msgid "Version"
--#~ msgstr "ਵਰਜਨ"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable Audit"
--#~ msgstr "ਆਡਿਟ ਅਯੋਗ ਕਰੋ"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Enable Audit"
--#~ msgstr "ਆਡਿਟ ਯੋਗ ਕਰੋ"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Load Policy Module"
--#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "ਜਸਵਿੰਦਰ ਸਿੰਘ <j.phulewala@gmail.com>"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"ਇਹ ਜੰਤਰ ਪਾਲਿਸੀ ਫਰੇਮਵਰਕ ਬਣਾਉਣ ਲਈ ਕਾਰਜਾਂ ਅਤੇ ਉਪਭੋਗੀਆਂ ਜੋ SELinux ਵਰਤਦੇ ਹਨ, ਬੰਦ ਕਰਨ ਲਈ "
-+"ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ।   \n"
-+"\n"
-+"ਜੰਤਰ ਜੋ ਬਣਾਉਂਦਾ ਹੈ ਇਸ ਤਰਾਂ ਹਨ:\n"
-+"ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ (te)\n"
-+"ਇੰਟਰਫੇਸ ਫਾਇਲ (if)\n"
-+"ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ (fc)\n"
-+"ਸ਼ੈੱਲ ਸਕਰਿਪਟ (sh) - ਪਾਲਿਸੀ ਨੂੰ ਕੰਪਾਈਲ ਅਤੇ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ। "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਦੀ ਕਿਸਮ ਚੁਣੋ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>ਕਾਰਜ</b>"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"ਸਟੈਂਡਰਡ Init ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ ਬੂਟ ਹੋਣ ਤੇ init ਸਕਰਿਪਟਾਂ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ।  ਆਮ ਕਰਕੇ /etc/"
-+"init.d ਵਿੱਚ ਇੱਕ ਸਕਰਿਪਟ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "ਸਟੈਂਡਰਡ Init ਡੈਮਨ"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS ਸਿਸਟਮ ਡੈਮਨ"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ xinetd ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ (inetd)"
--#~ msgid "translator-credits"
--#~ msgstr "ਜਸਵਿੰਦਰ ਸਿੰਘ <j.phulewala@gmail.com>"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI) CGI ਸਕਰਿਪਟਾਂ ਵੈੱਬ ਸਰਵਰ (apache) ਦੁਆਰਾ ਚੱਲਦੀਆਂ ਹਨ"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux ਪਾਲਿਸੀ ਨਿਰਮਾਣ ਜੰਤਰ"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI)"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "ਇਹ ਜੰਤਰ ਪਾਲਿਸੀ ਫਰੇਮਵਰਕ ਬਣਾਉਣ ਲਈ ਕਾਰਜਾਂ ਅਤੇ ਉਪਭੋਗੀਆਂ ਜੋ SELinux ਵਰਤਦੇ ਹਨ, ਬੰਦ ਕਰਨ "
--#~ "ਲਈ ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ।   \n"
--#~ "\n"
--#~ "ਜੰਤਰ ਜੋ ਬਣਾਉਂਦਾ ਹੈ ਇਸ ਤਰਾਂ ਹਨ:\n"
--#~ "ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ (te)\n"
--#~ "ਇੰਟਰਫੇਸ ਫਾਇਲ (if)\n"
--#~ "ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ (fc)\n"
--#~ "ਸ਼ੈੱਲ ਸਕਰਿਪਟ (sh) - ਪਾਲਿਸੀ ਨੂੰ ਕੰਪਾਈਲ ਅਤੇ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ। "
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr "ਉਪਭੋਗੀ ਕਾਰਜ ਉਹ ਕਾਰਜ ਹਨ ਜਿਨਾਂ ਤੇ ਤੁਸੀਂ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ ਤੇ ਜੋ ਉਪਭੋਗੀ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "ਉਪਭੋਗੀ ਕਾਰਜ"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>ਲਾਗਇਨ ਉਪਭੋਗੀ</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "ਇੱਕ ਮੌਜੂਦਾ ਲਾਗਇਨ ਉਪਭੋਗੀ ਰਿਕਾਰਡ"
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ ਰੋਲ"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਦੀ ਕਿਸਮ ਚੁਣੋ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ ਸਿਰਫ ਟਰਮੀਨਲ ਜਾਂ ਰਿਮੋਟ ਲਾਗਇਨ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ ਵਿੱਚ "
-+"ਇਸ ਉਪਭੋਗੀ ਦਾ ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, su, sudo ਨਹੀਂ ਹੈ।"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>ਕਾਰਜ</b>"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "ਘੱਟੋ-ਘੱਟ ਟਰਮੀਨਲ ਉਪਭੋਗੀ ਰੋਲ"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "ਸਟੈਂਡਰਡ Init ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ ਬੂਟ ਹੋਣ ਤੇ init ਸਕਰਿਪਟਾਂ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ।  ਆਮ ਕਰਕੇ /etc/"
--#~ "init.d ਵਿੱਚ ਇੱਕ ਸਕਰਿਪਟ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ X ਜਾਂ ਟਰਮੀਨਲ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ ਵਿੱਚ ਇਸ ਉਪਭੋਗੀ ਦਾ "
-+"ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, sudo, su ਨਹੀਂ ਹੈ।"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "ਸਟੈਂਡਰਡ Init ਡੈਮਨ"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "ਘੱਟੋ-ਘੱਟ X ਵਿੰਡੋ ਉਪਭੋਗੀ ਰੋਲ"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ xinetd ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr "ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਬਿਨਾਂ ਤਬਦੀਲੀ, ਕੋਈ sudo, ਕੋਈ su ਨਹੀਂ।"
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "ਉਪਭੋਗੀ ਰੋਲ"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ (inetd)"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਤਬਦੀਲੀ ਬਿਨਾਂ, ਕੋਈ su, ਰੂਟ ਪਰਬੰਧਿਕ ਰੋਲ ਲਈ "
-+"sudo ਕਰ ਸਕਦਾ ਹੈ"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI) CGI ਸਕਰਿਪਟਾਂ ਵੈੱਬ ਸਰਵਰ (apache) ਦੁਆਰਾ ਚੱਲਦੀਆਂ ਹਨ"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>ਪਰਬੰਧਕ ਉਪਭੋਗੀ</b>"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI)"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"ਰੂਟ ਉਪਭੋਗੀ ਚੁਣੋ, ਜੇ ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਦਾ ਪਰਬੰਧਨ ਕਰੇਗਾ ਜਦੋਂ ਪਰਬੰਧਕ ਤੌਰ ਤੇ ਚੱਲਦੀ ਹੈ।  ਇਹ ਉਪਭੋਗੀ "
-+"ਸਿਸਟਮ ਉੱਪਰ ਸਿੱਧੇ ਤੌਰ ਤੇ ਲਾਗਇਨ ਨਹੀਂ ਕਰ ਸਕਦਾ ਹੈ।"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "ਉਪਭੋਗੀ ਕਾਰਜ ਉਹ ਕਾਰਜ ਹਨ ਜਿਨਾਂ ਤੇ ਤੁਸੀਂ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ ਤੇ ਜੋ ਉਪਭੋਗੀ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "ਰੂਟ ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਦਾ ਨਾਂ ਦਿਓ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "ਨਾਂ"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਲਈ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਲਈ ਵੱਖਰਾ ਨਾਂ ਦਿਓ।"
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "ਐਗਜ਼ੀਕਿਊਟੇਬਲ"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init ਸਕਰਿਪਟ"
--#~ msgid "User Application"
--#~ msgstr "ਉਪਭੋਗੀ ਕਾਰਜ"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr "ਪਾਬੰਦ ਕਾਰਜ ਚਲਾਉਣ ਵਾਲੀ init ਸਕਰਿਪਟ ਦਾ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>ਲਾਗਇਨ ਉਪਭੋਗੀ</b>"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਸੋਧਣਾ ਚਾਹੁੰਦੇ ਹੋ"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਕਾਰਜ ਡੋਮੇਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ।"
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "ਵਾਧੂ ਉਪਭੋਗੀ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਅਨੁਵਾਦ ਕਰੇਗਾ"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "ਇੱਕ ਮੌਜੂਦਾ ਲਾਗਇਨ ਉਪਭੋਗੀ ਰਿਕਾਰਡ"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "ਕਾਰਜ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਤੁਸੀਂ ਇਸ ਉਪਭੋਗੀ ਨੂੰ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ।"
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ਵਾਧੂ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਪਰਬੰਧਨ ਕਰੇਗਾ"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਪਰਬੰਧਨ ਇਸ ਉਪਭੋਗੀ ਤੋਂ ਕਰਾਉਣਾ ਹੈ।"
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ਇਸ ਉਪਭੋਗੀ ਲਈ ਵਾਧੂ ਰੋਲ ਚੁਣੋ"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਸੁਣਦੇ ਹਨ।"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP ਪੋਰਟ</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ ਵੀ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "ਸਭ"
--#~ msgid "Existing User Roles"
--#~ msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ bindresvport ਨੂੰ 0 ਨਾਲ ਕਾਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਪੋਰਟ 600-1024 ਨਾਲ "
-+"ਜੁੜ ਰਿਹਾ ਹੈ"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ ਸਿਰਫ ਟਰਮੀਨਲ ਜਾਂ ਰਿਮੋਟ ਲਾਗਇਨ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ "
--#~ "ਵਿੱਚ ਇਸ ਉਪਭੋਗੀ ਦਾ ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, su, sudo ਨਹੀਂ ਹੈ।"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "ਘੱਟੋ-ਘੱਟ ਟਰਮੀਨਲ ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
-+"612, 650-660"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ X ਜਾਂ ਟਰਮੀਨਲ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ ਵਿੱਚ ਇਸ ਉਪਭੋਗੀ "
--#~ "ਦਾ ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, sudo, su ਨਹੀਂ ਹੈ।"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "ਨਾ-ਰਾਖਵੇਂ ਪੋਰਟ (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "ਪੋਰਟ ਚੁਣੋ"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP ਪੋਰਟ</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ।"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "ਘੱਟੋ-ਘੱਟ X ਵਿੰਡੋ ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
-+"612, 650-660"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਬਿਨਾਂ ਤਬਦੀਲੀ, ਕੋਈ sudo, ਕੋਈ su ਨਹੀਂ।"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
-+"612, 650-660"
--#~ msgid "User Role"
--#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "ਆਮ ਕਾਰਜ ਗੁਣ ਚੁਣੋ"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "syslog ਸੁਨੇਹੇ ਲਿਖਦਾ ਹੈ\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ ਬਣਾਓ/ਸੋਧੋ"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "ਪ੍ਰਮਾਣਿਕਤਾ ਲਈ Pam ਨੂੰ ਵਰਤਦੇ ਹਨ"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch ਜਾਂ getpw* ਕਾਲਾਂ ਵਰਤਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "dbus ਵਰਤਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "ਆਡਿਟ ਸੁਨੇਹੇ ਭੇਜਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "ਟਰਮੀਨਲ ਨਾਲ ਸੰਪਰਕ ਕਰਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "ਈ-ਮੇਲ ਭੇਜਦਾ ਹੈ"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਨਾ ਦਾ ਪਰਬੰਧਨ ਕਾਰਜ ਕਰਦਾ ਹੈ"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਤਬਦੀਲੀ ਬਿਨਾਂ, ਕੋਈ su, ਰੂਟ ਪਰਬੰਧਿਕ ਰੋਲ ਲਈ "
--#~ "sudo ਕਰ ਸਕਦਾ ਹੈ"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀਆਂ ਸ਼ਾਮਿਲ ਕਰੋ ਜਿਨਾਂ ਨੂੰ ਇਹ ਕਾਰਜ \"ਲਿਖੇਗਾ\"। Pid ਫਾਇਲਾਂ, ਲਾਗ ਫਾਇਲਾਂ, /"
-+"var/lib ਫਾਇਲਾਂ ..."
--#~ msgid "Admin User Role"
--#~ msgstr "ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "ਬੂਲੀਅਨ ਚੁਣੋ ਜੋ ਇਹ ਕਾਰਜ ਵਰਤਦੇ ਹਨ"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "ਇਸ ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਲਈ ਵਰਤਿਆ ਜਾਣ ਵਾਲਾ ਬੂਲੀਅਨ ਜੋੜੋ/ਹਟਾਓ"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਬਣਾਉਣੀ ਹੈ"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "ਪਾਲਿਸੀ ਡਾਇਰੈਕਟਰੀ"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "ਬਣਾਈਆਂ ਪਾਲਿਸੀ ਫਾਇਲਾਂ"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>ਪਰਬੰਧਕ ਉਪਭੋਗੀ</b>"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), ਇੰਟਰਫੇਸ"
-+"(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
-+"ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ ਤੁਸੀਂ "
-+"ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
-+"avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
-+"te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "ਰੂਟ ਉਪਭੋਗੀ ਚੁਣੋ, ਜੇ ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਦਾ ਪਰਬੰਧਨ ਕਰੇਗਾ ਜਦੋਂ ਪਰਬੰਧਕ ਤੌਰ ਤੇ ਚੱਲਦੀ ਹੈ।  ਇਹ "
--#~ "ਉਪਭੋਗੀ ਸਿਸਟਮ ਉੱਪਰ ਸਿੱਧੇ ਤੌਰ ਤੇ ਲਾਗਇਨ ਨਹੀਂ ਕਰ ਸਕਦਾ ਹੈ।"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), ਇੰਟਰਫੇਸ"
-+"(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
-+"ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ ਤੁਸੀਂ "
-+"ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
-+"avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
-+"te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "ਬੂਲੀਅਨ ਵਾਰਤਾਲਾਪ ਜੋੜੋ"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "ਬੂਲੀਅਨ ਨਾਂ"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "ਰੋਲ"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ(_U)"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "ਕਾਰਜ"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s ਇੱਕ ਡਾਇਰੈਕਟਰੀ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਉਪਭੋਗੀ ਚੁਣਨਾ ਜਰੂਰੀ ਹੈ"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "ਪਾਬੰਦ ਕਰਨ ਲਈ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਫਾਇਲ ਚੁਣੋ।"
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "ਪਾਬੰਦੀ ਵਾਲੀ init ਸਕਰਿਪਟ ਚੁਣੋ।"
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "ਫਾਇਲਾਂ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਨੇ ਬਣਾਈਆਂ ਜਾਂ ਲਿਖੀਆਂ ਹਨ"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜਾਂ ਦੇ ਅਧੀਨ ਹਨ ਅਤੇ ਲਿਖੀਆਂ ਹਨ"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਫਾਇਲਾਂ ਬਣਾਉਣੀਆਂ ਹਨ"
--#~ msgid "Root Admin User Role"
--#~ msgstr "ਰੂਟ ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"ਕਿਸਮ %s_t ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਕੀਤੀ ਸੀ।\n"
-+"ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੈ?"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਦਾ ਨਾਂ ਦਿਓ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "ਨਾਂ ਦੀ ਜਾਂਚ ਕਰੋ"
--#~ msgid "Name"
--#~ msgstr "ਨਾਂ"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"ਮੈਡਿਊਲ %s.pp ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਲੋਡ ਹੋਈ ਹੈ।\n"
-+"ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਲਈ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਨਾਂ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਲਈ ਵੱਖਰਾ ਨਾਂ ਦਿਓ।"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "SELinux ਸੰਰਚਨਾ"
--#~ msgid "Executable"
--#~ msgstr "ਐਗਜ਼ੀਕਿਊਟੇਬਲ"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "ਪੋਰਟਾਂ ਨੰਬਰ ਜਾਂ 1 ਤੋਂ %d ਤੱਕ ਨੰਬਰਾਂ ਦੀ ਰੇਂਜ ਹੋਣੇ ਜਰੂਰੀ ਹਨ"
--#~ msgid "Init script"
--#~ msgstr "Init ਸਕਰਿਪਟ"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦੀ ਕਾਰਜਾਂ/ਉਪਭੋਗੀਆਂ ਲਈ ਨਾਂ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ ਚਲਾਉਣ ਵਾਲੀ init ਸਕਰਿਪਟ ਦਾ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER ਕਿਸਮਾਂ ਨੂੰ ਐਗਜ਼ੀਕਿਊਟੇਬਲਾਂ ਲਈ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਸੋਧਣਾ ਚਾਹੁੰਦੇ ਹੋ"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "DAEMON ਕਾਰਜ init ਸਕਰਿਪਟ ਨੂੰ ਵਰਤ ਸਕਦੇ ਹਨ"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਕਾਰਜ ਡੋਮੇਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ।"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog ਦਾ ਮੁੱਲ ਬੂਲੀਅਨ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "ਵਾਧੂ ਉਪਭੋਗੀ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਅਨੁਵਾਦ ਕਰੇਗਾ"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER ਕਿਸਮ ਆਟੋਮੈਟਿਕ ਹੀ tmp ਕਿਸਮ ਲੈ ਲੈਂਦੀ ਹੈ"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "ਕਾਰਜ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਤੁਸੀਂ ਇਸ ਉਪਭੋਗੀ ਨੂੰ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ।"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦ ਕਾਰਜ ਲਈ ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਮਾਰਗ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "enforcment ਫਾਇਲ ਟਾਈਪ ਕਰੋ"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "ਵਾਧੂ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਪਰਬੰਧਨ ਕਰੇਗਾ"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "ਇੰਟਰਫੇਸ ਫਾਇਲ"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਪਰਬੰਧਨ ਇਸ ਉਪਭੋਗੀ ਤੋਂ ਕਰਾਉਣਾ ਹੈ।"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "ਇਸ ਉਪਭੋਗੀ ਲਈ ਵਾਧੂ ਰੋਲ ਚੁਣੋ"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "ਸੈੱਟਅੱਪ ਸਕਰਿਪਟ"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਸੁਣਦੇ ਹਨ।"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP ਪੋਰਟ</b>"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"SELinux ਪੋਰਟ\n"
-+"ਕਿਸਮ"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ ਵੀ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "ਪਰੋਟੋਕਾਲ"
--#~ msgid "All"
--#~ msgstr "ਸਭ"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"MLS/MCS\n"
-+"ਲੈਵਲ"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ bindresvport ਨੂੰ 0 ਨਾਲ ਕਾਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਪੋਰਟ 600-1024 "
--#~ "ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "ਪੋਰਟ"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "ਪੋਰਟ ਨੰਬਰ \"%s\" ਠੀਕ ਨਹੀਂ ਹੈ  0 < PORT_NUMBER < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "ਸੂਚੀ ਦਰਿਸ਼"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "ਗਰੁੱਪ ਦਰਿਸ਼"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "SELinux ਸਰਵਿਸ ਸੁਰੱਖਿਆ"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "acct ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "ਪਰਬੰਧ"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "ਸਭ ਡੈਮਨਾਂ ਰਾਹੀਂ ਮੁੱਖ-ਫਾਇਲਾਂ ਨੂੰ / ਤੋ ਲਿਖਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "ਨਾ-ਨਿਰਧਾਰਤ ttys ਵਰਤਣ ਲਈ ਸਭ ਡੈਮਨਾਂ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "ਉਪਭੋਗੀ Privs"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"gadmin SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ home ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
-+"ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
--#~ "612, 650-660"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"ਗਿਸਟ SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "ਨਾ-ਰਾਖਵੇਂ ਪੋਰਟ (>1024)"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "ਮੈਮੋਰੀ ਸੁਰੱਖਿਆ"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "java ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "ਮਾਊਂਟ"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "ਕਿਸੇ ਫਾਇਲ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "ਕਿਸੇ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "mplayer ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh ਨੂੰ ssh-keysign ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Select Ports"
--#~ msgstr "ਪੋਰਟ ਚੁਣੋ"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ "
-+"ਦਿਓ"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ > 1024"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"sysadm SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
-+"ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP ਪੋਰਟ</b>"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"ਨਾ-ਪਾਬੰਦ SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
-+"ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ।"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "ਨੈੱਟਵਰਕ ਸੰਰਚਨਾ"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "ਬਿਨਾਂ-ਲੇਬਲ ਪੈਕਟਾਂ ਨੂੰ ਨੈੱਟਵਰਕ ਤੇ ਜਾਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ। "
--#~ "ਉਦਾਹਰਨ: 612, 650-660"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ "
-+"ਦਿਓ"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
--#~ "612, 650-660"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "unconfined ਨੂੰ unconfined_execmem ਵੱਲ ਆਰਜੀ ਤਬਦੀਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "ਡਾਟਾਬੇਸ"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ mysql ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ postgres ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "XServer"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "ਕਲਾਂਈਟ ਨੂੰ X ਸ਼ੇਅਰ ਮੈਮੋਰੀ ਤੇ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Select common application traits"
--#~ msgstr "ਆਮ ਕਾਰਜ ਗੁਣ ਚੁਣੋ"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"xguest SELinux ਉਪਭੋਗੀ ਖਾਤੇ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
-+"ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "syslog ਸੁਨੇਹੇ ਲਿਖਦਾ ਹੈ\t"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "ਡੈਮਨਾਂ ਨੂੰ NIS ਨਾਲ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "ਵੈੱਬ ਕਾਰਜ"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "sysadm SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "xguest SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "ਸਟਾਫ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਨੂੰ home ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "amanda ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "amavis ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "avahi ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "ਕਲੱਸਟਰ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ ਬਣਾਓ/ਸੋਧੋ"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"cdrecord ਨੂੰ ਵੱਖ-ਵੱਖ ਹਿੱਸੇ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। nfs, samba, ਹਟਾਉਣ-ਯੋਗ ਜੰਤਰ, ਉਪਭੋਗੀ temp "
-+"ਅਤੇ ਨਾ-ਭਰੇਸੋਯੋਗ ਸੰਖੇਪ ਫਾਇਲਾਂ"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "ਪ੍ਰਮਾਣਿਕਤਾ ਲਈ Pam ਨੂੰ ਵਰਤਦੇ ਹਨ"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "ਪ੍ਰਿੰਟਿੰਗ"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd ਬੈਕਐਂਡ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "dccd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "dccm ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t ਨੂੰ ਸਿੱਧਾ ਹੀ ਡੈਮਨ ਚਾਲੂ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "ਏਵੋਲੂਸ਼ਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "ਖੇਡਾਂ"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "ਖੇਡਾਂ ਲਈ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "ਵੈੱਬ ਬਰਾਊਜ਼ਰਾਂ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "ਥੰਡਰਬਰਡ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmail ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "ਅਨੁਕੂਲਤਾ"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch ਜਾਂ getpw* ਕਾਲਾਂ ਵਰਤਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"ਉਹ ਚੀਜਾਂ ਆਡਿਟ ਨਾ ਕਰੋ ਜੋ ਤੁਹਾਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਰੁਕਾਵਟ ਪਾਉਂਦੀਆਂ ਹਨ ਅਤੇ ਸੁਰੱਖਿਆ ਨੂੰ ਕੋਈ ਖਤਰਾ ਨਹੀਂ ਹੈ।"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ਵਰਤਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD ਸਰਵਿਸ"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd ਅਧੀਨ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd ਡੈਮਨ "
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "ਕਰਬੀਰੋਸ"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "mailman ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "ਏਵੋਲੂਸ਼ਨ ਅਤੇ ਥੰਡਰਬਰਡ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "ਮੋਜ਼ੀਲਾ ਬਰਾਊਜ਼ਰ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "ਨਾਂ ਸਰਵਿਸ"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "named ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManager ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "postfix ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd ਨੂੰ ਰੈਗੂਲਰ ਉਪਭੋਗੀ ਲਈ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "pptp ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "readahead ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "ਪਰੋਗਰਾਮਾਂ ਨੂੰ ਬਿਨਾ-ਮਿਆਰ (default_t) ਸਥਿਤੀਆਂ ਤੋਂ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "ricci ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "rshd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh ਨੂੰ ਡੈਮਨ ਦੀ ਬਜਾਇ inetd ਤੋਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Samba ਨੂੰ nfs ਡਾਇਰੈਕਟਰੀ ਸ਼ੇਅਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ ਨੂੰ /etc/shadow ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Sends audit messages"
--#~ msgstr "ਆਡਿਟ ਸੁਨੇਹੇ ਭੇਜਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"X-ਵਿੰਡੋ ਸਰਵਰ ਨੂੰ ਮੈਮੋਰੀ ਮੈਪ ਕਰਨ ਲਈ ਮਨਜੂਰੀ ਦਿਓ ਤਾਂ ਕਿ ਇਹ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਅਤੇ ਲਿਖਣਯੋਗ ਹੋ ਸਕੇ"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "ਟਰਮੀਨਲ ਨਾਲ ਸੰਪਰਕ ਕਰਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Sends email"
--#~ msgstr "ਈ-ਮੇਲ ਭੇਜਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਨਾ ਦਾ ਪਰਬੰਧਨ ਕਾਰਜ ਕਰਦਾ ਹੈ"
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo ਅਤੇ su ਪ੍ਰਭਾਵੀ ਤਬਦੀਲੀ ਮਨਜੂਰ ਨਾ ਕਰੋ"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀਆਂ ਸ਼ਾਮਿਲ ਕਰੋ ਜਿਨਾਂ ਨੂੰ ਇਹ ਕਾਰਜ \"ਲਿਖੇਗਾ\"। Pid ਫਾਇਲਾਂ, ਲਾਗ ਫਾਇਲਾਂ, /"
--#~ "var/lib ਫਾਇਲਾਂ ..."
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "ਕਿਸੇ ਵੀ ਕਾਰਜ ਨੂੰ ਕਰਨਲ ਮੈਡਿਊਲ ਲੋਡ ਨਾ ਕਰਨ ਦਿਓ"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "ਬੂਲੀਅਨ ਚੁਣੋ ਜੋ ਇਹ ਕਾਰਜ ਵਰਤਦੇ ਹਨ"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "ਕਰਨਲ SELinux ਪਾਲਿਸੀ ਨੂੰ ਕਿਸੇ ਵੀ ਕਾਰਜ ਦੁਆਰਾ ਸੋਧਣ ਨਾ ਦਿਓ"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "ਇਸ ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਲਈ ਵਰਤਿਆ ਜਾਣ ਵਾਲਾ ਬੂਲੀਅਨ ਜੋੜੋ/ਹਟਾਓ"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਬਣਾਉਣੀ ਹੈ"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "setrans ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Policy Directory"
--#~ msgstr "ਪਾਲਿਸੀ ਡਾਇਰੈਕਟਰੀ"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Generated Policy Files"
--#~ msgstr "ਬਣਾਈਆਂ ਪਾਲਿਸੀ ਫਾਇਲਾਂ"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), "
--#~ "ਇੰਟਰਫੇਸ(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
--#~ "ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ "
--#~ "ਤੁਸੀਂ ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
--#~ "avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
--#~ "te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), "
--#~ "ਇੰਟਰਫੇਸ(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
--#~ "ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ "
--#~ "ਤੁਸੀਂ ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
--#~ "avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
--#~ "te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "ਬੂਲੀਅਨ ਵਾਰਤਾਲਾਪ ਜੋੜੋ"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Boolean Name"
--#~ msgstr "ਬੂਲੀਅਨ ਨਾਂ"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Role"
--#~ msgstr "ਰੋਲ"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Existing_User"
--#~ msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ(_U)"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Application"
--#~ msgstr "ਕਾਰਜ"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "spam ਸੁਰੱਖਿਆ"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ਇੱਕ ਡਾਇਰੈਕਟਰੀ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "You must select a user"
--#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਉਪਭੋਗੀ ਚੁਣਨਾ ਜਰੂਰੀ ਹੈ"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "spamd ਨੂੰ ਨੈੱਟਵਰਕ ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "ਪਾਬੰਦ ਕਰਨ ਲਈ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਫਾਇਲ ਚੁਣੋ।"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assasin ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਪਹੁੰਚ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੀ init ਸਕਰਿਪਟ ਚੁਣੋ।"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "ਫਾਇਲਾਂ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਨੇ ਬਣਾਈਆਂ ਜਾਂ ਲਿਖੀਆਂ ਹਨ"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜਾਂ ਦੇ ਅਧੀਨ ਹਨ ਅਤੇ ਲਿਖੀਆਂ ਹਨ"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਫਾਇਲਾਂ ਬਣਾਉਣੀਆਂ ਹਨ"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "ਕਿਸਮ %s_t ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਕੀਤੀ ਸੀ।\n"
--#~ "ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੈ?"
--
--#~ msgid "Verify Name"
--#~ msgstr "ਨਾਂ ਦੀ ਜਾਂਚ ਕਰੋ"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "ਮੈਡਿਊਲ %s.pp ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਲੋਡ ਹੋਈ ਹੈ।\n"
--#~ "ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਨਾਂ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux ਸੰਰਚਨਾ"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "ਪੋਰਟਾਂ ਨੰਬਰ ਜਾਂ 1 ਤੋਂ %d ਤੱਕ ਨੰਬਰਾਂ ਦੀ ਰੇਂਜ ਹੋਣੇ ਜਰੂਰੀ ਹਨ"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦੀ ਕਾਰਜਾਂ/ਉਪਭੋਗੀਆਂ ਲਈ ਨਾਂ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER ਕਿਸਮਾਂ ਨੂੰ ਐਗਜ਼ੀਕਿਊਟੇਬਲਾਂ ਲਈ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "DAEMON ਕਾਰਜ init ਸਕਰਿਪਟ ਨੂੰ ਵਰਤ ਸਕਦੇ ਹਨ"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog ਦਾ ਮੁੱਲ ਬੂਲੀਅਨ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER ਕਿਸਮ ਆਟੋਮੈਟਿਕ ਹੀ tmp ਕਿਸਮ ਲੈ ਲੈਂਦੀ ਹੈ"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦ ਕਾਰਜ ਲਈ ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਮਾਰਗ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
--
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "enforcment ਫਾਇਲ ਟਾਈਪ ਕਰੋ"
--
--#~ msgid "Interface file"
--#~ msgstr "ਇੰਟਰਫੇਸ ਫਾਇਲ"
--
--#~ msgid "File Contexts file"
--#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ"
--
--#~ msgid "Setup Script"
--#~ msgstr "ਸੈੱਟਅੱਪ ਸਕਰਿਪਟ"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux ਪੋਰਟ\n"
--#~ "ਕਿਸਮ"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "squid ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Protocol"
--#~ msgstr "ਪਰੋਟੋਕਾਲ"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "ਲੈਵਲ"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Port"
--#~ msgstr "ਪੋਰਟ"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "ਪੋਰਟ ਨੰਬਰ \"%s\" ਠੀਕ ਨਹੀਂ ਹੈ  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "ਸੂਚੀ ਦਰਿਸ਼"
--
--#~ msgid "Group View"
--#~ msgstr "ਗਰੁੱਪ ਦਰਿਸ਼"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"staff_r ਉਪਭੋਗੀਆਂ ਨੂੰ ਪਰਬੰਧਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੈਕਟਰੀ ਖੋਜਣ ਅਤੇ ਫਾਇਲਾਂ (ਜਿਵੇਂ ~/.bashrc) ਪੜਨ ਦੀ "
-+"ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux ਸਰਵਿਸ ਸੁਰੱਖਿਆ"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "ਯੂਨੀਵਰਸਲ SSL tunnel"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel ਡੈਮਨ ਨੂੰ xinetd ਦੇ ਬਾਹਰ, ਸਟੈਂਡਅਲੋਨ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "ਸਿਸਟਮ cron jobs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "acct ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"xinetd ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਸਰਵਿਸਾਂ ਜੋ ਇਹ ਚਲਾਉਂਦਾ ਹੈ ਤੇ ਜਿਸ ਜੀ "
-+"ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
--#~ msgid "Admin"
--#~ msgstr "ਪਰਬੰਧ"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"rc ਸਕਰਿਪਟਾਂ ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਕੋਈ ਵੀ ਡੈਮਨ ਜੋ rc ਸਕਰਿਪਟ ਦੁਆਰਾ "
-+"ਚਲਾਇਆ ਗਿਆ ਹੈ ਤੇ ਜਿਸ ਦੀ ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "ਸਭ ਡੈਮਨਾਂ ਰਾਹੀਂ ਮੁੱਖ-ਫਾਇਲਾਂ ਨੂੰ / ਤੋ ਲਿਖਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "rpm ਨੂੰ unconfined ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "ਪ੍ਰਮਾਣਿਤ ਸਹੂਲਤਾਂ ਜਿਵੇਂ hotplug ਅਤੇ insmod ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "ਨਾ-ਨਿਰਧਾਰਤ ttys ਵਰਤਣ ਲਈ ਸਭ ਡੈਮਨਾਂ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"user_r ਨੂੰ sysadm_r ਤੱਕ su, sudo, ਜਾਂ userhelper ਰਾਹੀਂ ਪਹੁੰਚਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਨਹੀਂ ਤਾਂ, "
-+"ਸਿਰਫ staff_r ਹੀ ਅਜਿਹਾ ਕਰ ਸਕਦਾ ਹੈ"
--#~ msgid "User Privs"
--#~ msgstr "ਉਪਭੋਗੀ Privs"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ mount ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "ਰੈਗੂਲਰ ਉਪਭੋਗੀਆਂ ਨੂੰ ਸਿੱਧੀ ਮਾਊਸ ਵਰਤੋਂ ਲਈ ਮਨਜੂਰੀ ਦਿਓ (ਸਿਰਫ X ਸਰਵਰ ਨੂੰ ਮਨਜੂਰ ਕਰੋ)"
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ dmesg ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ ਨੈੱਟਵਰਕ ਇੰਟਰਫੇਸ ਕੰਟਰੋਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿੰਦਾ ਹੈ (USERCTL=true ਦੀ ਵੀ ਲੋੜ ਹੈ)"
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "ਆਮ ਉਪਭੋਗੀ ਨੂੰ ping ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ r/w noextattrfile (FAT, CDROM, FLOPPY) ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ rw usb ਜੰਤਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ home ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ "
--#~ "ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"ਉਪਭੋਗੀਆਂ ਨੂੰ TCP ਸਰਵਰ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ (ਪੋਰਟਾਂ ਨਾਲ ਜੋੜੋ ਅਤੇ ਉਸੇ ਡੋਮੇਨ ਜਾਂ ਬਾਹਰਲੇ ਉਪਭੋਗੀਆਂ "
-+"ਤੋਂ ਕੁਨੈਕਸ਼ਨ ਸਵੀਕਾਰ ਕਰੋ)  ਇਸ ਨੂੰ ਅਯੋਗ ਕਰਨ ਨਾਲ FTP passive ਮੋਡ ਨੂੰ ਮਜਬੂਰ ਕਰਦਾ ਹੈ ਅਤੇ ਹੋਰ "
-+"ਪਰੋਟੋਕਾਲ ਤਬਦੀਲੀਆਂ ਕਰਦਾ ਹੈ"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "ਉਪਭੋਗੀ ਨੂੰ stat ttyfiles ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen ਨੂੰ ਭੌਤਿਕ ਡਿਸਕ ਜੰਤਰ ਪੜਨ/ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "xen constrol ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS ਪਾਸਵਰਡ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS ਟਰਾਂਸਫਰ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ਗਿਸਟ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ "
--#~ "ਦਿਓ"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਦੇ ਪਰਬੰਧਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Memory Protection"
--#~ msgstr "ਮੈਮੋਰੀ ਸੁਰੱਖਿਆ"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--#~ msgid "Allow java executable stack"
--#~ msgstr "java ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ %s '%s' ਨੂੰ ਹਟਾਉਣਾ ਚੀਹੁੰਦੇ ਹੋ?"
--#~ msgid "Mount"
--#~ msgstr "ਮਾਊਂਟ"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s ਹਟਾਓ"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "ਕਿਸੇ ਫਾਇਲ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s ਸ਼ਾਮਿਲ"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "ਕਿਸੇ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s ਸੋਧ"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "mplayer ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "ਚੇਤਾਵਨੀ"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "ਮਜਬੂਰ"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "ਅਯੋਗ"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "ਹਾਲਤ"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh ਨੂੰ ssh-keysign ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ ਜਾਏਗਾ। "
-+"ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਹੈ?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
--#~ "ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"SELinux ਅਯੋਗ ਕਰਨ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ। ਇਸ ਦੀ ਸਿਫਾਰਸ਼ ਨਹੀਂ ਕੀਤੀ ਜਾਂਦੀ।  ਜੇ ਤੁਸੀਂ ਬਾਅਦ "
-+"ਵਿੱਚ SELinux ਵੱਲ ਪਿੱਛੇ ਜਾਣਾ ਚਾਹੁੰਦੇ ਹੋ, ਤਾਂ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰੇਗਾ।  ਜਿਸ ਤੁਸੀਂ ਇਹ ਵੇਖਣਾ ਚਾਹੁੰਦੇ "
-+"ਹੋ ਜੇ SELinux ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਪਰ ਸਮੱਸਿਆ ਪੈਦਾ ਕਰ ਰਿਹਾ ਹੈ, ਤੁਸੀਂ permissive ਮੋਡ ਵਿੱਚ ਜਾ ਸਕਦੇ "
-+"ਹੋ ਜੋ ਸਿਰਫ ਗਲਤੀਆਂ ਦਾ ਲਾਗ ਰੱਖਦਾ ਹੈ ਅਤੇ enforce SELinux ਪਾਲਿਸੀ ਨਹੀਂ।  Permissive ਮੋਡ "
-+"ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ    ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
--#~ "ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"SELinux ਯੋਗ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ ਜਾਏਗਾ। ਮੁੜ-ਲੇਬਲ "
-+"ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਹੈ?"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "ਨਾ-ਪਾਬੰਦ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ "
--#~ "ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Network Configuration"
--#~ msgstr "ਨੈੱਟਵਰਕ ਸੰਰਚਨਾ"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "ਬਿਨਾਂ-ਲੇਬਲ ਪੈਕਟਾਂ ਨੂੰ ਨੈੱਟਵਰਕ ਤੇ ਜਾਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "SELinux ਲਾਗਿੰਗ ਮੈਪਿੰਗ ਜੋੜੋ"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਜੋੜੋ"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux ਕਿਸਮ"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
--#~ "ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"ਲੈਵਲ"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "unconfined ਨੂੰ unconfined_execmem ਵੱਲ ਆਰਜੀ ਤਬਦੀਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "ਫਾਇਲ ਨਿਰਧਾਰਨ"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "ਫਾਇਲ ਕਿਸਮ"
--#~ msgid "Databases"
--#~ msgstr "ਡਾਟਾਬੇਸ"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"ਸਭ ਫਾਇਲਾਂ\n"
-+"ਰੈਗੂਲਰ ਫਾਇਲ\n"
-+"ਡਾਇਰੈਕਟਰੀ\n"
-+"ਅੱਖਰ ਜੰਤਰ\n"
-+"ਬਲਾਕ ਜੰਤਰ\n"
-+"ਸਾਕਟ\n"
-+"ਚਿੰਨ ਸੰਬੰਧ\n"
-+"named ਪਾਈਪ\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux ਉਪਭੋਗੀ ਸ਼ਾਮਿਲ"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux ਪਰਬੰਧਨ"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "ਸ਼ਾਮਿਲ"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ(_P)"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "ਹਟਾਓ(_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "ਮੈਨੇਜਮੈਂਟ ਆਬਜੈਕਟ ਚੁਣੋ"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>ਚੁਣੋ:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "ਸਿਸਟਮ ਮੂਲ ਮਜਬੂਰ ਮੋਡ"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ mysql ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"ਅਯੋਗ\n"
-+"ਚੇਤਾਵਨੀ\n"
-+"ਮਜਬੂਰ\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "ਵਰਤਮਾਨ ਮਜਬੂਰ ਮੋਡ"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "ਸਿਸਟਮ ਮੂਲ ਪਾਲਿਸੀ ਕਿਸਮ: "
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ postgres ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"ਚੁਣੋ ਜੇ ਤੁਸੀਂ ਅਗਲੀ ਵਾਰ ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰਨਾ ਹੈ।  ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ "
-+"ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕਾਫੀ ਸਮਾਂ ਲੱਗ ਲਕਦਾ ਹੈ। ਜੇ ਤੁਸੀਂ ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰ ਦਿੱਤੀ ਜਾਂ "
-+"ਅਯੋਗ ਤੋਂ ਮਜਬੂਰ ਤਬਦੀਲ ਕਰ ਰਹੇ ਹੋ, ਤਾਂ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।"
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "ਫਿਰ ਚਾਲੂ ਹੋਣ ਤੇ ਮੁੜ-ਲੇਬਲ ਕਰੋ।"
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "ਬੂਲੀਅਨ ਸੈਟਿੰਗ ਨੂੰ ਸਿਸਟਮ ਮੂਲ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਬੂਲੀਅਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "ਬੂਲੀਅਨ ਲਾਕਡਾਊਨ ਵਾਰਤਾਲਾਪ ਚਲਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "ਲਾਕਡਾਊਨ..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "ਫਿਲਟਰ"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸੋਧੋ"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਹਟਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "ਸਭ ਅਤੇ ਸੋਧੇ ਫਾਇਲ ਪ੍ਰਸੰਗ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux ਉਪਭੋਗੀ ਮੈਪਿੰਗ ਜੋੜੋ"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਹਟਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "ਉਪਭੋਗੀ ਸ਼ਾਮਿਲ"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "ਉਪਭੋਗੀ ਸੋਧ"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "ਉਪਭੋਗੀ ਹਟਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "ਅਨੁਵਾਦ ਸ਼ਾਮਿਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "ਅਨੁਵਾਦ ਸੋਧ"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "ਅਨੁਵਾਦ ਹਟਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸ਼ਾਮਿਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸੋਧ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਹਟਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਪੋਰਟਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "ਨਵਾਂ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਬਣਾਓ"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "ਲੋਡ ਹੋਣਯੋਗ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਹਟਾਓ"
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr "ਵਾਧੂ ਆਡਿਟ ਨਿਯਮ ਯੋਗ/ਅਯੋਗ ਕਰੋ, ਜੋ ਆਮ ਤੌਰ ਤੇ ਲਾਗ ਫਾਇਲਾਂ ਵਿੱਚ ਨਹੀਂ ਦਿੱਤੇ ਗਏ ਹਨ।"
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "ਕਾਰਜ ਮੋਡ ਨੂੰ ਮਨਜੂਰ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ।"
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "ਕਾਰਜ ਮੋਡ ਨੂੰ ਮਜਬੂਰ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ।"
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "ਕਾਰਜ ਡੋਮੇਨ"
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "ਕਲਾਂਈਟ ਨੂੰ X ਸ਼ੇਅਰ ਮੈਮੋਰੀ ਤੇ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux ਉਪਭੋਗੀ '%s' ਦੀ ਲੋੜ ਹੈ"
- #, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
--#~ "ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "ਡੈਮਨਾਂ ਨੂੰ NIS ਨਾਲ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Web Applications"
--#~ msgstr "ਵੈੱਬ ਕਾਰਜ"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "sysadm SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "xguest SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "ਸਟਾਫ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਨੂੰ home ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amanda ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavis ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahi ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "ਕਲੱਸਟਰ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "cdrecord ਨੂੰ ਵੱਖ-ਵੱਖ ਹਿੱਸੇ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। nfs, samba, ਹਟਾਉਣ-ਯੋਗ ਜੰਤਰ, ਉਪਭੋਗੀ "
--#~ "temp ਅਤੇ ਨਾ-ਭਰੇਸੋਯੋਗ ਸੰਖੇਪ ਫਾਇਲਾਂ"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Printing"
--#~ msgstr "ਪ੍ਰਿੰਟਿੰਗ"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd ਬੈਕਐਂਡ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccm ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "sysadm_t ਨੂੰ ਸਿੱਧਾ ਹੀ ਡੈਮਨ ਚਾਲੂ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ਏਵੋਲੂਸ਼ਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Games"
--#~ msgstr "ਖੇਡਾਂ"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "ਖੇਡਾਂ ਲਈ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "ਵੈੱਬ ਬਰਾਊਜ਼ਰਾਂ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "ਥੰਡਰਬਰਡ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmail ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Compatibility"
--#~ msgstr "ਅਨੁਕੂਲਤਾ"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "ਉਹ ਚੀਜਾਂ ਆਡਿਟ ਨਾ ਕਰੋ ਜੋ ਤੁਹਾਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਰੁਕਾਵਟ ਪਾਉਂਦੀਆਂ ਹਨ ਅਤੇ ਸੁਰੱਖਿਆ ਨੂੰ ਕੋਈ ਖਤਰਾ "
--#~ "ਨਹੀਂ ਹੈ।"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD ਸਰਵਿਸ"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd ਅਧੀਨ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd ਡੈਮਨ "
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Kerberos"
--#~ msgstr "ਕਰਬੀਰੋਸ"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "ਏਵੋਲੂਸ਼ਨ ਅਤੇ ਥੰਡਰਬਰਡ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "ਮੋਜ਼ੀਲਾ ਬਰਾਊਜ਼ਰ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Name Service"
--#~ msgstr "ਨਾਂ ਸਰਵਿਸ"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManager ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "pppd ਨੂੰ ਰੈਗੂਲਰ ਉਪਭੋਗੀ ਲਈ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "ਪਰੋਗਰਾਮਾਂ ਨੂੰ ਬਿਨਾ-ਮਿਆਰ (default_t) ਸਥਿਤੀਆਂ ਤੋਂ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ssh ਨੂੰ ਡੈਮਨ ਦੀ ਬਜਾਇ inetd ਤੋਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Samba ਨੂੰ nfs ਡਾਇਰੈਕਟਰੀ ਸ਼ੇਅਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ ਨੂੰ /etc/shadow ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "X-ਵਿੰਡੋ ਸਰਵਰ ਨੂੰ ਮੈਮੋਰੀ ਮੈਪ ਕਰਨ ਲਈ ਮਨਜੂਰੀ ਦਿਓ ਤਾਂ ਕਿ ਇਹ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਅਤੇ ਲਿਖਣਯੋਗ ਹੋ ਸਕੇ"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "sysadm_t, sudo ਅਤੇ su ਪ੍ਰਭਾਵੀ ਤਬਦੀਲੀ ਮਨਜੂਰ ਨਾ ਕਰੋ"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "ਕਿਸੇ ਵੀ ਕਾਰਜ ਨੂੰ ਕਰਨਲ ਮੈਡਿਊਲ ਲੋਡ ਨਾ ਕਰਨ ਦਿਓ"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "ਕਰਨਲ SELinux ਪਾਲਿਸੀ ਨੂੰ ਕਿਸੇ ਵੀ ਕਾਰਜ ਦੁਆਰਾ ਸੋਧਣ ਨਾ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroublesoot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Spam Protection"
--#~ msgstr "spam ਸੁਰੱਖਿਆ"
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "spamd ਨੂੰ ਨੈੱਟਵਰਕ ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Spam Assasin ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਪਹੁੰਚ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Squid"
--#~ msgstr "Squid"
--
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "squid ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "staff_r ਉਪਭੋਗੀਆਂ ਨੂੰ ਪਰਬੰਧਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੈਕਟਰੀ ਖੋਜਣ ਅਤੇ ਫਾਇਲਾਂ (ਜਿਵੇਂ ~/.bashrc) ਪੜਨ "
--#~ "ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "ਯੂਨੀਵਰਸਲ SSL tunnel"
--
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "stunnel ਡੈਮਨ ਨੂੰ xinetd ਦੇ ਬਾਹਰ, ਸਟੈਂਡਅਲੋਨ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "ਸਿਸਟਮ cron jobs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "xinetd ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਸਰਵਿਸਾਂ ਜੋ ਇਹ ਚਲਾਉਂਦਾ ਹੈ ਤੇ ਜਿਸ ਜੀ "
--#~ "ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
--
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "rc ਸਕਰਿਪਟਾਂ ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਕੋਈ ਵੀ ਡੈਮਨ ਜੋ rc ਸਕਰਿਪਟ "
--#~ "ਦੁਆਰਾ ਚਲਾਇਆ ਗਿਆ ਹੈ ਤੇ ਜਿਸ ਦੀ ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "rpm ਨੂੰ unconfined ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr "ਪ੍ਰਮਾਣਿਤ ਸਹੂਲਤਾਂ ਜਿਵੇਂ hotplug ਅਤੇ insmod ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r ਨੂੰ sysadm_r ਤੱਕ su, sudo, ਜਾਂ userhelper ਰਾਹੀਂ ਪਹੁੰਚਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਨਹੀਂ "
--#~ "ਤਾਂ, ਸਿਰਫ staff_r ਹੀ ਅਜਿਹਾ ਕਰ ਸਕਦਾ ਹੈ"
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ mount ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "ਰੈਗੂਲਰ ਉਪਭੋਗੀਆਂ ਨੂੰ ਸਿੱਧੀ ਮਾਊਸ ਵਰਤੋਂ ਲਈ ਮਨਜੂਰੀ ਦਿਓ (ਸਿਰਫ X ਸਰਵਰ ਨੂੰ ਮਨਜੂਰ ਕਰੋ)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ dmesg ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "ਉਪਭੋਗੀ ਨੂੰ ਨੈੱਟਵਰਕ ਇੰਟਰਫੇਸ ਕੰਟਰੋਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿੰਦਾ ਹੈ (USERCTL=true ਦੀ ਵੀ ਲੋੜ ਹੈ)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "ਆਮ ਉਪਭੋਗੀ ਨੂੰ ping ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ r/w noextattrfile (FAT, CDROM, FLOPPY) ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ rw usb ਜੰਤਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "ਉਪਭੋਗੀਆਂ ਨੂੰ TCP ਸਰਵਰ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ (ਪੋਰਟਾਂ ਨਾਲ ਜੋੜੋ ਅਤੇ ਉਸੇ ਡੋਮੇਨ ਜਾਂ ਬਾਹਰਲੇ "
--#~ "ਉਪਭੋਗੀਆਂ ਤੋਂ ਕੁਨੈਕਸ਼ਨ ਸਵੀਕਾਰ ਕਰੋ)  ਇਸ ਨੂੰ ਅਯੋਗ ਕਰਨ ਨਾਲ FTP passive ਮੋਡ ਨੂੰ ਮਜਬੂਰ ਕਰਦਾ ਹੈ "
--#~ "ਅਤੇ ਹੋਰ ਪਰੋਟੋਕਾਲ ਤਬਦੀਲੀਆਂ ਕਰਦਾ ਹੈ"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ stat ttyfiles ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "xen ਨੂੰ ਭੌਤਿਕ ਡਿਸਕ ਜੰਤਰ ਪੜਨ/ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen constrol ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS ਪਾਸਵਰਡ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS ਟਰਾਂਸਫਰ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਦੇ ਪਰਬੰਧਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ %s '%s' ਨੂੰ ਹਟਾਉਣਾ ਚੀਹੁੰਦੇ ਹੋ?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s ਹਟਾਓ"
--
--#~ msgid "Add %s"
--#~ msgstr "%s ਸ਼ਾਮਿਲ"
--
--#~ msgid "Modify %s"
--#~ msgstr "%s ਸੋਧ"
--
--#~ msgid "Permissive"
--#~ msgstr "ਚੇਤਾਵਨੀ"
--
--#~ msgid "Enforcing"
--#~ msgstr "ਮਜਬੂਰ"
--
--#~ msgid "Disabled"
--#~ msgstr "ਅਯੋਗ"
--
--#~ msgid "Status"
--#~ msgstr "ਹਾਲਤ"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ "
--#~ "ਜਾਏਗਾ। ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ "
--#~ "ਕਰਨਾ ਹੈ?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux ਅਯੋਗ ਕਰਨ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ। ਇਸ ਦੀ ਸਿਫਾਰਸ਼ ਨਹੀਂ ਕੀਤੀ ਜਾਂਦੀ।  ਜੇ ਤੁਸੀਂ "
--#~ "ਬਾਅਦ ਵਿੱਚ SELinux ਵੱਲ ਪਿੱਛੇ ਜਾਣਾ ਚਾਹੁੰਦੇ ਹੋ, ਤਾਂ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰੇਗਾ।  ਜਿਸ ਤੁਸੀਂ ਇਹ "
--#~ "ਵੇਖਣਾ ਚਾਹੁੰਦੇ ਹੋ ਜੇ SELinux ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਪਰ ਸਮੱਸਿਆ ਪੈਦਾ ਕਰ ਰਿਹਾ ਹੈ, ਤੁਸੀਂ permissive "
--#~ "ਮੋਡ ਵਿੱਚ ਜਾ ਸਕਦੇ ਹੋ ਜੋ ਸਿਰਫ ਗਲਤੀਆਂ ਦਾ ਲਾਗ ਰੱਖਦਾ ਹੈ ਅਤੇ enforce SELinux ਪਾਲਿਸੀ "
--#~ "ਨਹੀਂ।  Permissive ਮੋਡ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ    ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux ਯੋਗ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ ਜਾਏਗਾ। ਮੁੜ-"
--#~ "ਲੇਬਲ ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਹੈ?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux ਲਾਗਿੰਗ ਮੈਪਿੰਗ ਜੋੜੋ"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਜੋੜੋ"
--
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux ਕਿਸਮ"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "ਲੈਵਲ"
--
--#~ msgid "File Specification"
--#~ msgstr "ਫਾਇਲ ਨਿਰਧਾਰਨ"
--
--#~ msgid "File Type"
--#~ msgstr "ਫਾਇਲ ਕਿਸਮ"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "ਸਭ ਫਾਇਲਾਂ\n"
--#~ "ਰੈਗੂਲਰ ਫਾਇਲ\n"
--#~ "ਡਾਇਰੈਕਟਰੀ\n"
--#~ "ਅੱਖਰ ਜੰਤਰ\n"
--#~ "ਬਲਾਕ ਜੰਤਰ\n"
--#~ "ਸਾਕਟ\n"
--#~ "ਚਿੰਨ ਸੰਬੰਧ\n"
--#~ "named ਪਾਈਪ\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux ਉਪਭੋਗੀ ਸ਼ਾਮਿਲ"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux ਪਰਬੰਧਨ"
--
--#~ msgid "Add"
--#~ msgstr "ਸ਼ਾਮਿਲ"
--
--#~ msgid "_Properties"
--#~ msgstr "ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ(_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "ਹਟਾਓ(_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "ਮੈਨੇਜਮੈਂਟ ਆਬਜੈਕਟ ਚੁਣੋ"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>ਚੁਣੋ:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "ਸਿਸਟਮ ਮੂਲ ਮਜਬੂਰ ਮੋਡ"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "ਵਰਤਮਾਨ ਮਜਬੂਰ ਮੋਡ"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "ਸਿਸਟਮ ਮੂਲ ਪਾਲਿਸੀ ਕਿਸਮ: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "ਚੁਣੋ ਜੇ ਤੁਸੀਂ ਅਗਲੀ ਵਾਰ ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰਨਾ ਹੈ।  ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ "
--#~ "ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕਾਫੀ ਸਮਾਂ ਲੱਗ ਲਕਦਾ ਹੈ। ਜੇ ਤੁਸੀਂ ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰ ਦਿੱਤੀ "
--#~ "ਜਾਂ ਅਯੋਗ ਤੋਂ ਮਜਬੂਰ ਤਬਦੀਲ ਕਰ ਰਹੇ ਹੋ, ਤਾਂ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।"
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "ਫਿਰ ਚਾਲੂ ਹੋਣ ਤੇ ਮੁੜ-ਲੇਬਲ ਕਰੋ।"
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "ਬੂਲੀਅਨ ਸੈਟਿੰਗ ਨੂੰ ਸਿਸਟਮ ਮੂਲ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਬੂਲੀਅਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Filter"
--#~ msgstr "ਫਿਲਟਰ"
--
--#~ msgid "Add File Context"
--#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਕਰੋ"
--
--#~ msgid "Modify File Context"
--#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸੋਧੋ"
--
--#~ msgid "Delete File Context"
--#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਹਟਾਓ"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "ਸਭ ਅਤੇ ਸੋਧੇ ਫਾਇਲ ਪ੍ਰਸੰਗ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੈਪਿੰਗ ਜੋੜੋ"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਹਟਾਓ"
--
--#~ msgid "Add Translation"
--#~ msgstr "ਅਨੁਵਾਦ ਸ਼ਾਮਿਲ ਕਰੋ"
--
--#~ msgid "Modify Translation"
--#~ msgstr "ਅਨੁਵਾਦ ਸੋਧ"
--
--#~ msgid "Delete Translation"
--#~ msgstr "ਅਨੁਵਾਦ ਹਟਾਓ"
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "ਸੰਵੇਦਨਸ਼ੀਲਤਾ ਲੈਵਲ"
- #~ msgid "Modify SELinux User"
- #~ msgstr "SELinux ਉਪਭੋਗੀ ਤਬਦੀਲ ਕਰੋ"
--#~ msgid "Add Network Port"
--#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸ਼ਾਮਿਲ ਕਰੋ"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸੋਧ ਕਰੋ"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਹਟਾਓ"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਪੋਰਟਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "ਨਵਾਂ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਬਣਾਓ"
--
--#~ msgid "Load policy module"
--#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ਲੋਡ ਹੋਣਯੋਗ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਹਟਾਓ"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr "ਵਾਧੂ ਆਡਿਟ ਨਿਯਮ ਯੋਗ/ਅਯੋਗ ਕਰੋ, ਜੋ ਆਮ ਤੌਰ ਤੇ ਲਾਗ ਫਾਇਲਾਂ ਵਿੱਚ ਨਹੀਂ ਦਿੱਤੇ ਗਏ ਹਨ।"
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "ਸੰਵੇਦਨਸ਼ੀਲਤਾ ਲੈਵਲ"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux ਉਪਭੋਗੀ '%s' ਦੀ ਲੋੜ ਹੈ"
--
--#~ msgid "Requires value"
--#~ msgstr "ਮੁੱਲ ਲੋੜੀਂਦਾ ਹੈ"
--
- #~ msgid ""
- #~ "\n"
- #~ "\n"
-@@ -2904,36 +3499,12 @@
- #~ "semodule -i %s\n"
- #~ "\n"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "ਗਲਤ ਅਗੇਤਰ %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਨੂੰ ਕਿਸੇ ਵੀ tcp ਪੋਰਟਾਂ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ > 1024"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ ਵੀ tcp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ tcp ਪੋਰਟਾਂ ਜਾਂ ਪੋਰਚਾਂ ਦੀ ਰੇਂਜ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਇਹ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ "
--#~ "ਜੁੜਿਆ ਹੈ। ਉਦਾਹਰਨ: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux ਪਾਲਿਸੀ ਨਿਰਮਾਣ ਡਰਾਊਡ"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "ਨਾ-ਰਾਖਵੇਂ ਪੋਰਟ  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "ਇਹ ਚੋਣਬਟਨ ਵਰਤੋ ਜੇ ਤੁਹਾਡਾ ਕਾਰਜ bindresvport ਨੂੰ 0 ਨਾਲ ਕਾਲ ਕਰਦਾ ਹੈ।"
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "ਅਨੁਵਾਦ ਨੂੰ ਨਾਨ-MLS ਮਸ਼ੀਨਾਂ ਉੱਪਰ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ"
- #~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
-+#~ "tcp\n"
-+#~ "udp"
- #~ msgstr ""
--#~ "ਮਜਬੂਰ\n"
--#~ "ਚੇਤਾਵਨੀ\n"
--#~ "ਅਯੋਗ\n"
-+#~ "tcp\n"
-+#~ "udp"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/pl.po policycoreutils-2.0.85/po/pl.po
---- nsapolicycoreutils/po/pl.po        2011-02-17 15:11:25.342731280 -0500
-+++ policycoreutils-2.0.85/po/pl.po    2011-02-18 16:03:41.438976221 -0500
-@@ -5,28 +5,46 @@
- msgstr ""
- "Project-Id-Version: pl\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-09-10 21:03+0200\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-14 17:38+0200\n"
- "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
--"Language-Team: Polish <pl@li.org>\n"
-+"Language-Team: Polish <trans-pl@lists.fedoraproject.org>\n"
-+"Language: pl\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Konfiguracja SELinuksa w trybie graficznym"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Zarządzanie SELinuksem"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Tworzenie nowych modułów polityki SELinuksa"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Narzędzie tworzenia polityki SELinuksa"
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
- "  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"
-+"UŻYCIE: run_init <skrypt> <parametry...>\n"
- "  gdzie: <skrypt> jest nazwą skryptu init do wykonania,\n"
--"         a <args ...> są argumentami dla tego skryptu."
-+"         a <parametry ...> są parametrami dla tego skryptu."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
- #, c-format
- msgid "failed to initialize PAM\n"
--msgstr "inicjowanie PAM nie powiodło się\n"
-+msgstr "zainicjowanie PAM nie powiodło się\n"
- #: ../run_init/run_init.c:139
- #, c-format
-@@ -40,7 +58,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "Nie można znaleźć wpisu w pliku passwd shadow.\n"
-+msgstr "Nie można odnaleźć wpisu w pliku passwd shadow.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
-@@ -65,13 +83,12 @@
- #: ../run_init/run_init.c:361
- #, 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"
-+msgstr "run_init może zostać uruchomione tylko na jądrze SELinuksa.\n"
- #: ../run_init/run_init.c:380
- #, c-format
- msgid "authentication failed.\n"
--msgstr "uwierzytelnianie nie powiodło się.\n"
-+msgstr "uwierzytelnienie nie powiodło się.\n"
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
-@@ -84,7 +101,7 @@
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr "Aby uaktywnić ten pakiet polityki, wykonaj:"
-+msgstr "Aby aktywować ten pakiet polityki, należy wykonać:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
-@@ -105,9 +122,8 @@
- msgstr "Nie można nawiązać połączenia semanage"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Nie można ustawić zasięgu MLS dla %s"
-+msgstr "Nie można sprawdzić stanu włączenia MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -124,7 +140,8 @@
- msgid "Level"
- msgstr "Poziom"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Tłumaczenie"
-@@ -146,15 +163,15 @@
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s nie został określony w tłumaczeniach"
-+msgstr "%s nie zostało określone w tłumaczeniach"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
--msgstr "Nie zaimplementowane"
-+msgstr "Niezaimplementowane"
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Transakcja semanage jest już wykonywana"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
-@@ -166,7 +183,7 @@
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Transakcja semanage nie jest wykonywana"
- #: ../semanage/seobject.py:325
- msgid "Could not list SELinux modules"
-@@ -176,743 +193,750 @@
- msgid "Permissive Types"
- msgstr "Typy zezwalania"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
- "Nie można ustawić domeny zezwalania %s (instalacja modułu nie powiodła się)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "Nie można usunąć domeny zezwalania %s (usunięcie nie powiodło się)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Nie można utworzyć klucza dla %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
--msgstr "Nie można sprawdzić, jeśli mapowanie loginu dla %s zostało określone"
-+msgstr "Nie można sprawdzić, czy mapowanie loginu dla %s zostało określone"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Mapowanie loginu dla %s zostało już określone"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Grupa linuksowa %s nie istnieje"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Użytkownik linuksowy %s nie istnieje"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Nie można utworzyć mapowania loginu dla %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "Nie można ustawić nazwy %s"
-+msgstr "Nie można ustawić nazwy dla %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Nie można ustawić zasięgu MLS dla %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Nie można ustawić użytkownika SELinuksa dla %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Nie można dodać mapowania loginu do %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "dodaj mapowanie użytkownika SELinuksa"
-+msgstr "dodanie mapowania użytkownika SELinuksa"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Wymagane jest seuser lub serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Mapowanie loginu dla %s nie zostało określone"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Nie można odpytać seuser dla %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Nie można zmodyfikować mapowania loginu dla %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, 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:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Nie można usunąć mapowania loginu dla %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr "Nie można wyświetlić listę mapowań loginów"
-+msgstr "Nie można wyświetlić listy mapowań loginów"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "Login"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "Użytkownik SELinuksa"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "Zakres MLS/MCS"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
--msgstr "Musisz dodać co najmniej jedną rolę dla %s"
-+msgstr "Należy dodać co najmniej jedną rolę dla %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Nie można sprawdzić, czy użytkownik SELinuksa %s został określony"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "Użytkownik SELinuksa %s został już określony"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Nie można utworzyć użytkownika SELinuksa dla %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Nie można dodać roli %s do %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Nie można ustawić poziomu MLS dla %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Nie można dodać przedrostka %s do %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Nie można rozpakować klucza dla %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Nie można dodać użytkownika SELinuksa %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Wymagany jest przedrostek, role, poziom lub zasięg"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Wymagany jest przedrostek lub role"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "Użytkownik SELinuksa %s nie został określony"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Nie można odpytać użytkownika dla %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Nie można zmodyfikować użytkownika SELinuksa %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
- "Użytkownik SELinuksa %s nie został określony w polityce, nie może zostać "
- "usunięty"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Nie można usunąć użytkownika SELinuksa %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Nie można wyświetlić listy użytkowników SELinuksa"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Nie można wyświetlić listy ról dla użytkownika %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Etykiety"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Przedrostek"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "Poziom MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "Zakres MCS"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "Role SELinuksa"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Wymagany jest protokół UDP lub TCP"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Wymagany jest port"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Nie można utworzyć klucza %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Wymagany jest typ"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr "Nie można sprawdzić, jeśli port %s/%s został określony"
-+msgstr "Nie można sprawdzić, czy port %s/%s został określony"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s został już określony"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Nie można utworzyć portu dla %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Nie można utworzyć kontekstu dla %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Nie można ustawić użytkownika w kontekście portu dla %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Nie można ustawić roli w kontekście portu dla %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Nie można ustawić typu w kontekście portu dla %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Nie można ustawić pól MLS w kontekście portu dla %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Nie można ustawić kontekstu portu dla %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Nie można dodać portu %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Wymagane jest setype lub serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Wymagane jest setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s nie został określony"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Nie można odpytać portu %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Nie można zmodyfikować portu %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Nie można wyświetlić listy portów"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "Nie można usunąć portu %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s został określony w polityce, nie może zostać usunięty"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Nie można usunąć portu %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Nie można wyświetlić listy portów"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "Typ portu SELinuksa"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "Protokół"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "Numer portu"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr "Wymagany jest adres węzła"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr "Wymagana jest maska sieciowa węzła"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr "Nieznany lub brakujący protokół"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Wymagany jest typ SELinuksa"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Nie można utworzyć klucza dla %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Nie można sprawdzić, jeśli adres %s został określony"
-+msgstr "Nie można sprawdzić, czy adres %s został określony"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr "Adres %s został już określony"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr "Nie można utworzyć adresu dla %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Nie można utworzyć kontekstu dla %s"
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr "Nie można ustawić maski dla %s"
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr "Nie można ustawić użytkownika w kontekście adresu dla %s"
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr "Nie można ustawić roli w kontekście adresu dla %s"
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr "Nie można ustawić typu w kontekście adresu dla %s"
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr "Nie można ustawić pól MLS w kontekście adresu dla %s"
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr "Nie można ustawić kontekstu adresu dla %s"
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr "Nie można dodać adresu %s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr "Adresu %s nie został określony"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr "Nie można odpytać adresu %s"
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr "Nie można zmodyfikować adresu %s"
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Adres %s został określony w polityce, nie może zostać usunięty"
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr "Nie można usunąć adresu %s"
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr "Nie można wyświetlić listy adresów"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr "Nie można sprawdzić, jeśli interfejs %s został określony"
-+msgstr "Nie można sprawdzić, czy interfejs %s został określony"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Interfejs %s został już określony"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Nie można utworzyć interfejsu dla %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Nie można ustawić użytkownika w kontekście interfejsu dla %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Nie można ustawić roli w kontekście interfejsu dla %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Nie można ustawić typu w kontekście interfejsu dla %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Nie można ustawić pól MLS w kontekście interfejsu dla %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Nie można ustawić kontekstu interfejsu dla %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Nie można ustawić kontekstu komunikatu dla %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Nie można dodać interfejsu %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Interfejs %s nie został określony"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Nie można odpytać interfejsu %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Nie można zmodyfikować interfejsu %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Interfejs %s został określony w polityce, nie może zostać usunięty"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Nie można usunąć interfejsu %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Nie można wyświetlić listy interfejsów"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "Interfejs SELinuksa"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Kontekst"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Nie można ustawić użytkownika w kontekście pliku dla %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Nie można ustawić roli w kontekście pliku dla %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Nie można ustawić pól MLS w kontekście pliku dla %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "Nieprawidłowe określenie pliku"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "Nie można sprawdzić, jeśli kontekst pliku dla %s został określony"
-+msgstr "Nie można sprawdzić, czy kontekst pliku dla %s został określony"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Kontekst pliku dla %s nie został określony"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Nie można utworzyć kontekstu pliki dla %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Nie można ustawić typu w kontekście pliku dla %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Nie można ustawić kontekstu pliku dla %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Nie można dodać kontekstu pliku dla %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Wymagane jest setype, serange lub seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Kontekst pliku dla %s nie został określony"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Nie można odpytać kontekstu pliku dla %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Nie można zmodyfikować kontekstu pliku dla %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "Nie można wyświetlić listy kontekstów plików"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "Nie można usunąć kontekstu pliku %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, 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:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Nie można usunąć kontekstu pliku dla %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Nie można wyświetlić listy kontekstów plików"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Nie można wyświetlić listy lokalnych kontekstów plików"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "fcontext SELinuksa"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "typ"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr "Nie można sprawdzić, jeśli wartość logiczna %s została określona"
-+msgstr "Nie można sprawdzić, czy wartość logiczna %s została określona"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Wartość logiczna %s nie została określona"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Nie można odpytać kontekstu pliku %s"
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Musisz podać jedną z poniższych wartości: %s"
-+msgstr "Należy podać jedną z poniższych wartości: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "Nie można ustawić aktywnej wartości zmiennej logicznej %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Nie można zmodyfikować wartości logicznej %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "Błędny format %s: wpis %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, 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:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Nie można usunąć wartości logicznej %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Nie można wyświetlić listy wartości logicznych"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "nieznane"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "wyłączone"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "włączone"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "Zmienna logiczna SELinuksa"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "Opis"
-@@ -924,7 +948,7 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr "newrole: przekroczenie tablicy hashów konfiguracji nazwy usługi\n"
-+msgstr "newrole: przekroczenie tablicy skrótów konfiguracji nazwy usługi\n"
- #: ../newrole/newrole.c:297
- #, c-format
-@@ -934,17 +958,17 @@
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr "nie można znaleźć prawidłowego wpisu w pliku passwd.\n"
-+msgstr "nie można odnaleźć prawidłowego wpisu w pliku passwd.\n"
- #: ../newrole/newrole.c:447
- #, c-format
- msgid "Out of memory!\n"
--msgstr "Brak pamięci!\n"
-+msgstr "Brak pamięci.\n"
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr "Błąd! Powłoka jest nieprawidłowa.\n"
-+msgstr "Błąd. Powłoka jest nieprawidłowa.\n"
- #: ../newrole/newrole.c:509
- #, c-format
-@@ -952,7 +976,7 @@
- msgstr "Nie można wyczyścić środowiska\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Błąd podczas inicjowania możliwości, przerywanie.\n"
-@@ -979,7 +1003,7 @@
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr "Błąd podczas przywracania KEEPCAPS, przerywanie.\n"
-+msgstr "Błąd podczas przywracania KEEPCAPS, przerywanie\n"
- #: ../newrole/newrole.c:597
- #, c-format
-@@ -994,7 +1018,7 @@
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr "Błąd podczas łączenia się z systemem audytu.\n"
-+msgstr "Błąd podczas łączenia z systemem audytu.\n"
- #: ../newrole/newrole.c:707
- #, c-format
-@@ -1014,36 +1038,36 @@
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr "Błąd! Nie można otworzyć %s.\n"
-+msgstr "Błąd. Nie można otworzyć %s.\n"
- #: ../newrole/newrole.c:771
- #, 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 "
-+"%s. Nie można uzyskać bieżącego kontekstu dla %s, ponowne nadanie etykiety "
- "TTY nie odbędzie się.\n"
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
- msgstr ""
--"%s! Nie można uzyskać nowego kontekstu dla %s, ponowne nadanie etykiety TTY "
-+"%s. Nie można uzyskać nowego kontekstu dla %s, ponowne nadanie etykiety TTY "
- "nie odbędzie się.\n"
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s! Nie można ustawić nowego kontekstu dla %s\n"
-+msgstr "%s.! Nie można ustawić nowego kontekstu dla %s\n"
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr "%s zmienił etykiety.\n"
-+msgstr "%s zmieniło etykiety.\n"
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr "Ostrzeżenie! Nie można przywrócić kontekstu dla %s\n"
-+msgstr "Ostrzeżenie. Nie można przywrócić kontekstu dla %s\n"
- #: ../newrole/newrole.c:901
- #, c-format
-@@ -1058,7 +1082,7 @@
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr "Przepraszamy, -l może zostać użyte z obsługą MLS SELinuksa.\n"
-+msgstr "-l może zostać użyte z obsługą MLS SELinuksa.\n"
- #: ../newrole/newrole.c:921
- #, c-format
-@@ -1068,7 +1092,8 @@
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr "Błąd: nie możesz zmieniać poziomów na niezabezpieczonym terminalu \n"
-+msgstr ""
-+"Błąd: brak zezwolenia na zmianę poziomów na niezabezpieczonym terminalu \n"
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1129,7 +1154,7 @@
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr "Przepraszamy, newrole może zostać użyte tylko na jądrze SELinux.\n"
-+msgstr "newrole może zostać użyte tylko na jądrze SELinux.\n"
- #: ../newrole/newrole.c:1133
- #, c-format
-@@ -1139,7 +1164,7 @@
- #: ../newrole/newrole.c:1140
- #, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Ostrzeżenie! Nie można pobrać informacji o TTY.\n"
-+msgstr "Ostrzeżenie. Nie można pobrać informacji o TTY.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
-@@ -1235,32 +1260,32 @@
- #: ../scripts/chcat:325
- #, c-format
- msgid "Usage %s CATEGORY File ..."
--msgstr "Użycie %s KATEGORIA Plik ..."
-+msgstr "Użycie %s KATEGORIA Plik..."
- #: ../scripts/chcat:326
- #, c-format
- msgid "Usage %s -l CATEGORY user ..."
--msgstr "Użycie %s -l KATEGORIA użytkownik ..."
-+msgstr "Użycie %s -l KATEGORIA użytkownik..."
- #: ../scripts/chcat:327
- #, c-format
- msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
--msgstr "Użycie %s [[+|-]KATEGORIA],...]q Plik ..."
-+msgstr "Użycie %s [[+|-]KATEGORIA],...]q Plik..."
- #: ../scripts/chcat:328
- #, c-format
- msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
--msgstr "Użycie %s -l [[+|-]KATEGORIA],...]q użytkownik ..."
-+msgstr "Użycie %s -l [[+|-]KATEGORIA],...]q użytkownik..."
- #: ../scripts/chcat:329
- #, c-format
- msgid "Usage %s -d File ..."
--msgstr "Użycie %s -d Plik ..."
-+msgstr "Użycie %s -d Plik..."
- #: ../scripts/chcat:330
- #, c-format
- msgid "Usage %s -l -d user ..."
--msgstr "Użycie %s -l -d użytkownik ..."
-+msgstr "Użycie %s -l -d użytkownik..."
- #: ../scripts/chcat:331
- #, c-format
-@@ -1274,11 +1299,11 @@
- #: ../scripts/chcat:333
- msgid "Use -- to end option list.  For example"
--msgstr "Użyj --, aby zakończyć listę opcji. Na przykład"
-+msgstr "Można użyć --, aby zakończyć listę opcji. Na przykład"
- #: ../scripts/chcat:334
- msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
--msgstr "chcat -- -CompanyConfidential /dokumenty/businessplan.odt"
-+msgstr "chcat -- -CompanyConfidential /dokumenty/biznesplan.odt"
- #: ../scripts/chcat:335
- msgid "chcat -l +CompanyConfidential juser"
-@@ -1289,1691 +1314,2246 @@
- msgid "Options Error %s "
- msgstr "Błąd opcji %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "tłumaczenia nie są obsługiwane na komputerach bez MLS"
--
--#~ msgid "Boolean"
--#~ msgstr "Zmienna logiczna"
--
--#~ msgid "all"
--#~ msgstr "wszystko"
--
--#~ msgid "Customized"
--#~ msgstr "Dostosowane"
--
--#~ msgid "File Labeling"
--#~ msgstr "Etykiety plików"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Określenie\n"
--#~ "pliku"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Typ pliku\n"
--#~ "SELinuksa"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Typ\n"
--#~ "pliku"
--
--#~ msgid "User Mapping"
--#~ msgstr "Mapowanie użytkownika"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Login\n"
--#~ " "
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "Użytkownik\n"
--#~ "SELinuksa"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "Zakres MLS/\n"
--#~ "MCS"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "Login \"%s\" jest wymagany"
--
--#~ msgid "Policy Module"
--#~ msgstr "Moduł polityki"
--
--#~ msgid "Module Name"
--#~ msgstr "Nazwa modułu"
--
--#~ msgid "Version"
--#~ msgstr "Wersja"
--
--#~ msgid "Disable Audit"
--#~ msgstr "Wyłącz audytowanie"
--
--#~ msgid "Enable Audit"
--#~ msgstr "Włącz audytowanie"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "Wczytaj moduł polityki"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "Piotr Drąg <piotrdrag@gmail.com>, 2006"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Narzędzie tworzenia polityki SELinuksa"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "To narzędzie może być używane do tworzenia struktury polityki, aby "
--#~ "ograniczyć aplikacje lub użytkowników używając SELinuksa.   \n"
--#~ "\n"
--#~ "Narzędzie tworzy:\n"
--#~ "Pliki typu wymuszania (te)\n"
--#~ "Pliki interfejsu (if)\n"
--#~ "Pliki kontekstu pliku (fc)\n"
--#~ "Skrypty powłoki (sh) - używane kompilowania i instalowania polityk. "
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Wybierz typ roli aplikacji/użytkownika do ograniczenia"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Aplikacje</b>"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "Standardowe demony init to demony startowane podczas uruchamiania przez "
--#~ "skrypty init. Zwykle wymagają skryptu w /etc/rc.d/init.d"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Standardowy demon init"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Demony usług internetowych to demony uruchamiane przez xinetd"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Demon usług internetowych (inetd)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "Skrypty CGI aplikacji/skryptów WWW (CGI) uruchamiane przez serwer WWW "
--#~ "(Apache)"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Aplikacje/skrypty WWW (CGI)"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "Aplikacje użytkownika to wszystkie aplikacje, które chciałbyś ograniczyć "
--#~ "uruchamiane przez użytkowników"
--
--#~ msgid "User Application"
--#~ msgstr "Aplikacja użytkownika"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Logowani użytkownicy</b>"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "Zmodyfikuj istniejący wpis logowania użytkownika."
--
--#~ msgid "Existing User Roles"
--#~ msgstr "Istniejące role użytkowników"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "Ten użytkownik będzie logował się do komputera tylko przez terminal lub "
--#~ "zdalne logowanie. Domyślnie ten użytkownik nie będzie posiadał setuid, "
--#~ "sieci, su ani sudo."
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Minimalna rola użytkownika terminala"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "Ten użytkownik może logować się do komputera przez X Window lub terminal. "
--#~ "Domyślnie ten użytkownik nie będzie posiadał setuid, sieci, sudo ani su"
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Minimalna rola użytkownika X Window"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany, sudo i "
--#~ "su"
--
--#~ msgid "User Role"
--#~ msgstr "Rola użytkownika"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany i su, "
--#~ "może używać sudo dla ról administratorów root"
--
--#~ msgid "Admin User Role"
--#~ msgstr "Rola użytkownika administratora"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Użytkownicy root</b>"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "Wybierz rolę użytkownika administratora root, jeśli ten użytkownik będzie "
--#~ "używany do administrowania komputerem podczas uruchamiania jako root. Ten "
--#~ "użytkownik nie będzie mógł zalogować się bezpośrednio do systemu."
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "Rola użytkownika administratora root"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Podaj nazwę roli aplikacji lub użytkownika do ograniczenia"
--
--#~ msgid "Name"
--#~ msgstr "Nazwa"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Podaj pełną ścieżkę do ograniczanego pliku wykonywalnego."
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Podaj unikalną nazwę dla roli ograniczanego aplikacji lub użytkownika."
--
--#~ msgid "Executable"
--#~ msgstr "Plik wykonywalny"
--
--#~ msgid "Init script"
--#~ msgstr "Skrypt init"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "Podaj pełną ścieżkę do skryptu init używanego do uruchamiania "
--#~ "ograniczanej aplikacji."
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Wybierz role użytkowników, które chcesz dostosować"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "Wybierz role użytkownika, które przemienić do tych domen aplikacji."
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "Wybierz dodatkowe domeny, do których przemienić tą rolę użytkownika"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "Wybierz domeny aplikacji, do których chcesz przemienić tę rolę "
--#~ "użytkownika."
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "Wybierz role użytkownika, które przemienić do tej domeny"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr ""
--#~ "Wybierz dodatkowe domeny, którymi ta rola użytkownika będzie "
--#~ "administrowała"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "Wybierz domeny, które chcesz, aby ten użytkownik administrował."
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Wybierz dodatkowe role dla tego użytkownika"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "Podaj porty sieciowe, które ta rola aplikacji/użytkownika ma nasłuchiwać."
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>Porty TCP</b>"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "Pozwól ograniczanej roli aplikacji/użytkownika dowiązywać do każdego "
--#~ "portu UDP"
--
--#~ msgid "All"
--#~ msgstr "Wszystko"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "Pozwól roli aplikacji/użytkownika wywoływać bindresvport z 0. "
--#~ "Dowiązywanie do portów 600-1024"
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Podaj listę portów lub zakresów portów UDP oddzielaną przecinkami, do "
--#~ "których ta rola aplikacji/użytkownika dowiązuje, na przykład: 612, 650-660"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Niezarezerwowane porty (powyżej 1024)"
--
--#~ msgid "Select Ports"
--#~ msgstr "Wybierz porty"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "Pozwól roli aplikacji/użytkownika dowiązywać do każdego portu UDP powyżej "
--#~ "1024"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>Porty UDP</b>"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "Podaj porty sieciowe, z którymi łączy się ta rola aplikacji/użytkownika"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Podaj listę portów lub zakresów portów TCP oddzielaną przecinkami, z "
--#~ "którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Podaj listę portów lub zakresów portów UDP oddzielaną przecinkami, z "
--#~ "którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
--
--#~ msgid "Select common application traits"
--#~ msgstr "Wspólne wspólne cechy aplikacji"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "Zapisuje komunikaty syslog\t"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "Tworzy/manipuluje plikami tymczasowymi w /tmp"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "Używa PAM do uwierzytelniania"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Używa wywołań nsswitch lub getpw*"
--
--#~ msgid "Uses dbus"
--#~ msgstr "Używa D-Bus"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "Wysyła komunikaty audytu"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "Współpracuje z terminalem"
--
--#~ msgid "Sends email"
--#~ msgstr "Wysyła e-maile"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Wybierz pliki/foldery, którymi zarządza ta aplikacja"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "Dodaj pliki/foldery, do których ta aplikacja będzie musiała \"zapisywać"
--#~ "\". Pliki PID, pliki dziennika, pliki /var/lib..."
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "Wybierz zmienne logiczne, których używa ta aplikacja"
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "Dodaj/usuń zmienne logiczne używane dla tej ograniczanej aplikacji/"
--#~ "użytkownika"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "Wybierz folder, w którym utworzyć politykę"
--
--#~ msgid "Policy Directory"
--#~ msgstr "Folder polityki"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "Utworzone pliki polityki"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "To narzędzie utworzy: \n"
--#~ "typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu "
--#~ "powłoki(sh).\n"
--#~ "Wykonaj skrypt powłoki jako root, aby skompilować/zainstalować oraz nadać "
--#~ "etykiety plikom/folderom.  \n"
--#~ "Użyj semanage lub useradd, aby zmapować logowanych użytkowników Linuksa "
--#~ "do ról użytkowników.\n"
--#~ "Umieść komputer w trybie zezwalania (setenforce 0). \n"
--#~ "Zaloguj się jako użytkownik i przetestuj tę rolę użytkownika.\n"
--#~ "Użyj audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "To narzędzie utworzy: \n"
--#~ "typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu "
--#~ "powłoki(sh).\n"
--#~ "\n"
--#~ "Wykonaj skrypt powłoki jako root, aby skompilować/zainstalować oraz nadać "
--#~ "etykiety plikom/folderom.  \n"
--#~ "Umieść komputer w trybie zezwalania (setenforce 0). \n"
--#~ "Uruchom/uruchom ponownie aplikację, aby utworzyć komunikaty AVC.\n"
--#~ "Użyj audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "Dodaj okno dialogowe zmiennej logicznej"
--
--#~ msgid "Boolean Name"
--#~ msgstr "Nazwa zmiennej logicznej"
--
--#~ msgid "Role"
--#~ msgstr "Rola"
--
--#~ msgid "Existing_User"
--#~ msgstr "Istniejący_użytkownik"
--
--#~ msgid "Application"
--#~ msgstr "Aplikacja"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s musi być folderem"
--
--#~ msgid "You must select a user"
--#~ msgstr "Musisz wybrać użytkownika"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Wybierz ograniczany plik wykonywalny."
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "Wybierz ograniczany plik skryptu init."
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Wybierz pliki, które ograniczana aplikacja tworzy lub zapisuje"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "Wybierz foldery, które ograniczana aplikacja posiada lub do nich zapisuje"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Wybierz folder, w którym utworzyć pliki polityki"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Typ %s_t został już określony w bieżącej polityce.\n"
--#~ "Czy chcesz kontynuować?"
--
--#~ msgid "Verify Name"
--#~ msgstr "Sprawdź nazwę"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Moduł %s.pp został już wczytany w bieżącej polityce.\n"
--#~ "Czy chcesz kontynuować?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "Musisz podać nazwę"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "Musisz podać wykonywalny"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "Skonfiguruj SELinuksa"
--
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "Porty muszą być liczbą lub zakresem liczb od 1 do %d "
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "Musisz podać nazwę dla ograniczanego procesu/użytkownika"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Typy USER nie mają dozwolonych plików wykonywalnych"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "Tylko aplikacje DAEMON mogą używać skryptów init"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog musi być zmienną logiczną "
--
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Typy USER automatycznie uzyskują typ tmp"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "Musisz podać ścieżkę do pliku wykonywalnego dla ograniczanego procesu"
--
--#~ msgid "Type Enforcement file"
--#~ msgstr "Plik typu wymuszania"
--
--#~ msgid "Interface file"
--#~ msgstr "Plik interfejsu"
--
--#~ msgid "File Contexts file"
--#~ msgstr "Plik kontekstów pliku"
--
--#~ msgid "Setup Script"
--#~ msgstr "Ustaw skrypt"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Typ portu\n"
--#~ "SELinuksa"
--
--#~ msgid "Protocol"
--#~ msgstr "Protokół"
--
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Poziom\n"
--#~ "MLS/MCS"
--
--#~ msgid "Port"
--#~ msgstr "Port"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Numer portu \"%s\" jest nieprawidłowy. 0 < NUMER_PORTU < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "Widok listy"
--
--#~ msgid "Group View"
--#~ msgstr "Widok grupy"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Ochrona usługi SELinuksa"
--
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona acct"
--
--#~ msgid "Admin"
--#~ msgstr "Administracja"
--
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Pozwól wszystkim demonom zapisywać pliki core do /"
--
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "Pozwól wszystkim demonom używać nieprzydzielonych TTY"
--
--#~ msgid "User Privs"
--#~ msgstr "Przywileje użytkowników"
--
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa gadmin na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa guest na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid "Memory Protection"
--#~ msgstr "Ochrona pamięci"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "Zezwól stos wykonywalny Javy"
--
--#~ msgid "Mount"
--#~ msgstr "Mount"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Pozwól mount na montowanie wszystkich plików"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Pozwól mount na montowanie wszystkich folderów"
--
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Zezwól stos wykonywalny MPlayera"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Pozwól SSH na uruchamianie ssh-keysign"
--
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa staff na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa sysadm na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "Pozwól nieograniczanym kontom użytkowników SELinuksa na wykonywanie "
--#~ "plików folderze domowym lub /tmp"
--
--#~ msgid "Network Configuration"
--#~ msgstr "Konfiguracja sieci"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Pozwól pakietom bez etykiet na przepływanie przez sieć"
--
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa user na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Pozwól nieograniczanym dyntrans do unconfined_execmem"
--
--#~ msgid "Databases"
--#~ msgstr "Bazy danych"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Pozwól użytkownikowi na łączenie z gniazdem MySQL"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Pozwól użytkownikowi na łączenie z gniazdem PostgreSQL"
--
--#~ msgid "XServer"
--#~ msgstr "Serwer X"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Pozwól klientom na zapisywanie do współdzielonej pamięci X Window"
--
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Pozwól kontom użytkowników SELinuksa xguest na wykonywanie plików w "
--#~ "folderze domowym lub /tmp"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Pozwól demonom na uruchamianie za pomocą NIS"
--
--#~ msgid "Web Applications"
--#~ msgstr "Aplikacje WWW"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Zmienna logiczna"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "wszystko"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Dostosowane"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Etykiety plików"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "Przemień użytkownika SELinuksa staff na domenę przeglądarki WWW"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "Przemień użytkownika SELinuksa sysadm na domenę przeglądarki WWW"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "Przemień użytkownika SELinuksa user na domenę przeglądarki WWW"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "Przemień użytkownika SELinuksa xguest na domenę przeglądarki WWW"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "Pozwól przeglądarkom WWW staff na zapisywanie do folderów domowych"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Wyłącz ochronę SELinuksa dla amandy"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Wyłącz ochronę SELinuksa dla amavis"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona apmd"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona arpwatch"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona auditd"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona automount"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Avahi"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Bluetooth"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona canna"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona cardmgr"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Wyłącz ochronę SELinuksa dla serwera klastra"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "Pozwól cdrecord na odczytywanie różnej zawartości. NFS, Samba, urządzenia "
--#~ "wymienne, pliki tymczasowe użytkownika i potencjalnie niebezpieczne pliki "
--#~ "zawartości"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ciped"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona clamd"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Wyłącz ochronę SELinuksa dla clamscan"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla clvmd"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona comsat"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona courier"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona cpucontrol"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona cpuspeed"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona crond"
--
--#~ msgid "Printing"
--#~ msgstr "Drukowanie"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Wyłącz ochronę SELinuksa dla serwera zaplecza cupsd"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona cupsd"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla cupsd_lpd"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona CVS"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona cyrus"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dbskkd"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dbusd"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla dccd"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla dccifd"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Wyłącz ochronę SELinuksa dla dccm"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ddt"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona devfsd"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dhcpc"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dhcpd"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dictd"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Pozwól sysadm_t na bezpośrednie uruchamianie demonów"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Evolution"
--
--#~ msgid "Games"
--#~ msgstr "Gry"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Wyłącz ochronę SELinuksa dla gier"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Wyłącz ochronę SELinuksa dla przeglądarek WWW"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Thunderbirda"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona distccd"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dmesg"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dnsmasq"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona dovecot"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona entropyd"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Wyłącz ochronę SELinuksa dla fetchmail"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona fingerd"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona freshclam"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona fsdaemon"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona gpm"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona gss"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona HAL"
--
--#~ msgid "Compatibility"
--#~ msgstr "Zgodność"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Nie audytuj rzeczy, o których wiemy, że są zepsute, ale nie niosą za sobą "
--#~ "ryzyka"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona hostname"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona hotplug"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona howl"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona hplip CUPS"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Wyłącz ochronę SELinuksa dla rotatelogs httpd"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "Usługa HTTPD"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Wyłącz ochronę SELinuksa dla suexec HTTP"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona hwclock"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona i18n"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona imazesrv"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demonów potomnych inetd"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona inetd"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona innd"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona iptables"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ircd"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona irqbalance"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona iSCSI"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona jabberd"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona kadmind"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona klogd"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona krb5kdc"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demonów ktalk"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona kudzu"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona locate"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona LPD"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona lrrd"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona LVM"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Mailman"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr ""
--#~ "Pozwól Evolution i Thunderbirdowi na odczytywanie plików użytkownika"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona mdadm"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona monopd"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Pozwól przeglądarce Mozilla na odczytywanie plików użytkownika"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona mrtg"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona mysqld"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nagios"
--
--#~ msgid "Name Service"
--#~ msgstr "Usługa nazw"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona named"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nessusd"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Określenie\n"
-+"pliku"
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Menedżera sieci"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Typ pliku\n"
-+"SELinuksa"
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nfsd"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Typ\n"
-+"pliku"
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mapowanie użytkownika"
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nmbd"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Login\n"
-+" "
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nrpe"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"Użytkownik\n"
-+"SELinuksa"
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nscd"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"Zakres MLS/\n"
-+"MCS"
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona nsd"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Login \"%s\" jest wymagany"
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ntpd"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Moduł polityki"
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Wyłącz ochronę SELinuksa dla oddjob"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Nazwa modułu"
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Wyłącz ochronę SELinuksa dla oddjob_mkhomedir"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Wersja"
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona OpenVPN"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Wyłączenie audytu"
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona PAM"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Włączenie audyt"
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Pegasusa"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Wczytanie modułu polityki"
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona perdition"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona portmap"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona portslave"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Wyłącz ochronę SELinuksa dla Postfiksa"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "Piotr Drąg <piotrdrag@gmail.com>, 2006"
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona PostgreSQL"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"To narzędzie może być używane do tworzenia struktury polityki, aby "
-+"ograniczyć aplikacje lub użytkowników używając SELinuksa.   \n"
-+"\n"
-+"Narzędzie tworzy:\n"
-+"Pliki typu wymuszania (te)\n"
-+"Pliki interfejsu (if)\n"
-+"Pliki kontekstu pliku (fc)\n"
-+"Skrypty powłoki (sh) - używane kompilowania i instalowania polityk. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Proszę wybrać typ roli aplikacji/użytkownika do ograniczenia"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Aplikacje</b>"
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Standardowe demony init to demony startowane podczas uruchamiania przez "
-+"skrypty init. Zwykle wymagają skryptu w /etc/rc.d/init.d"
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Pozwól pppd na uruchamianie przez zwykłych użytkowników"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Standardowy demon init"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Demon systemowy D-Bus"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Demony usług internetowych to demony uruchamiane przez xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Demon usług internetowych (inetd)"
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona pptp"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Skrypty CGI aplikacji/skryptów WWW (CGI) uruchamiane przez serwer WWW "
-+"(Apache)"
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona prelink"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Aplikacje/skrypty WWW (CGI)"
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona privoxy"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Aplikacje użytkownika to wszystkie aplikacje, które należy ograniczyć, a są "
-+"uruchamiane przez użytkowników"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ptal"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Aplikacja użytkownika"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Logowani użytkownicy</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Proszę zmodyfikować istniejący wpis logowania użytkownika."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Istniejące role użytkowników"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona PXE"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Ten użytkownik będzie logował się do komputera tylko przez terminal lub "
-+"zdalne logowanie. Domyślnie ten użytkownik nie będzie posiadał setuid, "
-+"sieci, su ani sudo."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Minimalna rola użytkownika terminala"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Wyłącz ochronę SELinuksa dla pyzord"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Ten użytkownik może logować się do komputera przez X Window lub terminal. "
-+"Domyślnie ten użytkownik nie będzie posiadał setuid, sieci, sudo ani su"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Quoty"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Minimalna rola użytkownika X Window"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona radiusd"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany, sudo i su."
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona radvd"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Rola użytkownika"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Wyłącz ochronę SELinuksa dla rdisc"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany i su, może "
-+"używać sudo dla ról administratorów root"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Wyłącz ochronę SELinuksa dla readahead"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Rola użytkownika administratora"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Użytkownicy root</b>"
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Pozwól programom na odczytywanie plików w niestandardowych położeniach "
--#~ "(default_t)"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Należy wybrać rolę użytkownika administratora root, jeśli ten użytkownik "
-+"będzie używany do administrowania komputerem podczas uruchamiania jako root. "
-+"Ten użytkownik nie będzie mógł zalogować się bezpośrednio do systemu."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Rola użytkownika administratora root"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Proszę podać nazwę roli aplikacji lub użytkownika do ograniczenia"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Nazwa"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Proszę podać pełną ścieżkę do ograniczanego pliku wykonywalnego."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona restorecond"
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+"Proszę podać unikalną nazwę dla roli ograniczanego aplikacji lub użytkownika."
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona RHGB"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Plik wykonywalny"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Wyłącz ochronę SELinuksa dla ricci"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Skrypt init"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla ricci_modclusterd"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Proszę podać pełną ścieżkę do skryptu init używanego do uruchamiania "
-+"ograniczanej aplikacji."
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona rlogind"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Proszę wybrać role użytkowników do dostosowania"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona rpcd"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Proszę wybrać role użytkownika, które przemienić do tych domen aplikacji."
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Wyłącz ochronę SELinuksa dla rshd"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Proszę wybrać dodatkowe domeny, do których przemienić tą rolę użytkownika"
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Proszę wybrać domeny aplikacji, do których przemienić tę rolę użytkownika."
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona rsync"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Proszę wybrać role użytkownika, które przemienić do tej domeny"
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "Pozwól SSH na uruchamianie z inetd zamiast jako demon"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+"Proszę wybrać dodatkowe domeny, którymi ta rola użytkownika będzie "
-+"administrowała"
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Pozwól Sambie na współdzielenie folderów NFS"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Proszę wybrać domeny, które ten użytkownik ma administrować."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Proszę wybrać dodatkowe role dla tego użytkownika"
--#~ msgid "SASL authentication server"
--#~ msgstr "Serwer uwierzytelniania SASL"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Proszę wybrać porty sieciowe, które ta rola aplikacji/użytkownika ma "
-+"nasłuchiwać"
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Pozwól serwerowi uwierzytelniania SASL na odczytywanie /etc/shadow"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Porty TCP</b>"
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Pozwól serwerowi X Window na mapowanie regionów pamięci zarówno jako "
--#~ "wykonywalną, jak i zapisywalną"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Pozwolenie ograniczanej roli aplikacji/użytkownika na dowiązywanie do "
-+"każdego portu UDP"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona saslauthd"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Wszystko"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona scannerdaemon"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Pozwolenie roli aplikacji/użytkownika na wywołanie bindresvport z 0. "
-+"Dowiązywanie do portów 600-1024"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Nie pozwól na przemienienie na sysadm_t, dotyczy sudo i su"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Nie pozwól żadnemu procesowi na wczytywanie modułów jądra"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Proszę podać listę portów lub zakresów portów UDP oddzielaną przecinkami, do "
-+"których ta rola aplikacji/użytkownika dowiązuje, na przykład: 612, 650-660"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Nie pozwól żadnemu procesowi na modyfikowanie polityki jądra SELinuksa"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Niezarezerwowane porty (powyżej 1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Wybór portów"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Sendmail"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Pozwolenie roli aplikacji/użytkownika na dowiązywanie do każdego portu UDP "
-+"powyżej 1024"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Wyłącz ochronę SELinuksa dla setrans"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Porty UDP</b>"
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona SETroubleshoot"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Proszę podać porty sieciowe, z którymi łączy się ta rola aplikacji/"
-+"użytkownika"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona slapd"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Proszę podać listę portów lub zakresów portów TCP oddzielaną przecinkami, z "
-+"którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona slrnpull"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Proszę podać listę portów lub zakresów portów UDP oddzielaną przecinkami, z "
-+"którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona smbd"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Wybór wspólnych cech aplikacji"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Zapisuje komunikaty syslog\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Tworzy/manipuluje plikami tymczasowymi w /tmp"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Używa PAM do uwierzytelniania"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Używa wywołań nsswitch lub getpw*"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Używa D-Bus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Wysyła komunikaty audytu"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Współpracuje z terminalem"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Wysyła wiadomości e-mail"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Wybór plików/katalogów, którymi zarządza ta aplikacja"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona snmpd"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Proszę dodać pliki/katalogi, do których ta aplikacja będzie musiała "
-+"\"zapisywać\". Pliki PID, pliki dziennika, pliki /var/lib..."
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Snort"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Wybór zmiennych logicznych, których używa ta aplikacja"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona soundd"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+"Proszę dodać/usunąć zmienne logiczne używane dla tej ograniczanej aplikacji/"
-+"użytkownika"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona sound"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Wybór katalogu, w którym utworzyć politykę"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Katalog polityki"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Utworzone pliki polityki"
--#~ msgid "Spam Protection"
--#~ msgstr "Ochrona przed niechcianymi wiadomościami"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"To narzędzie utworzy: \n"
-+"typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu powłoki"
-+"(sh).\n"
-+"Należy wykonać skrypt powłoki jako root, aby skompilować/zainstalować oraz "
-+"nadać etykiety plikom/katalogom.  \n"
-+"Należy użyć semanage lub useradd, aby mapować logowanych użytkowników "
-+"Linuksa do ról użytkowników.\n"
-+"Należy umieść komputer w trybie zezwalania (setenforce 0). \n"
-+"Należy zalogować się jako użytkownik i przetestować tę rolę użytkownika.\n"
-+"Należy użyć audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona spamd"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"To narzędzie utworzy: \n"
-+"typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu powłoki"
-+"(sh).\n"
-+"\n"
-+"Należy wykonać skrypt powłoki jako root, aby skompilować/zainstalować oraz "
-+"nadać etykiety plikom/katalogom.  \n"
-+"Należy umieścić komputer w trybie zezwalania (setenforce 0). \n"
-+"Należy uruchomić/uruchomić ponownie aplikację, aby utworzyć komunikaty AVC.\n"
-+"Należy użyć audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Okno dialogowe dodania zmiennej logicznej"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Nazwa zmiennej logicznej"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Rola"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Istniejący_użytkownik"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Aplikacja"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s musi być katalogiem"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Należy wybrać użytkownika"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Wybór ograniczanego pliku wykonywalnego."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Wybór ograniczanego pliku skryptu init."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Wybór plików, które ograniczana aplikacja tworzy lub zapisuje"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Pozwól smapd na dostęp do folderów domowych"
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Wybór katalogów, które ograniczana aplikacja posiada lub do nich zapisuje"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Pozwól demonowi Spam Assassin na dostęp do sieci"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Wybór katalogu, w którym utworzyć pliki polityki"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona speedmgmt"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Typ %s_t został już określony w bieżącej polityce.\n"
-+"Kontynuować?"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Proszę sprawdzić nazwę"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Pozwól demonowi Squid na dostęp do sieci"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Moduł %s.pp został już wczytany w bieżącej polityce.\n"
-+"Kontynuować?"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Squid"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Należy podać nazwę"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona SSH"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Należy podać plik wykonywalny"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Pozwól SSH na logowanie jako sysadm_r:sysadm_t"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Konfiguracja SELinuksa"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Pozwól użytkownikom staff_r na wyszukiwanie w folderze domowym sysadm i "
--#~ "odczytywanie plików (takich jak ~/.bashrc)"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Porty muszą być liczbą lub zakresem liczb od 1 do %d "
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Uniwersalny tunel SSH"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Należy podać nazwę dla ograniczanego procesu/użytkownika"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona stunnel"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Typy USER nie mają dozwolonych plików wykonywalnych"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "Pozwól demonowi stunnel na samodzielne uruchamianie, poza xinetd"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Tylko aplikacje DAEMON mogą używać skryptów init"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona swat"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog musi być zmienną logiczną "
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona sxid"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "Typy USER automatycznie uzyskują typ tmp"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona syslogd"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Należy podać ścieżkę do pliku wykonywalnego dla ograniczanego procesu"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Wyłącz ochronę SELinuksa dla systemowych zadań Crona"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Plik typu wymuszania"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona TCP"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Plik interfejsu"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Telnet"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Plik kontekstów pliku"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona tftpd"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Ustawienia skryptu"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona transproxy"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Port sieciowy"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona udev"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"Typ portu\n"
-+"SELinuksa"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona uml"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protokół"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Pozwól xinetd na uruchamianie nieograniczane, w tym wszystkich usług, "
--#~ "jakie uruchamia, a które nie mają określonych przemian domen"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Poziom\n"
-+"MLS/MCS"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Pozwól skryptom rc na uruchamianie nieograniczane, w tym wszystkie demony "
--#~ "uruchamiane przez skrypty rc, a które nie mają określonych przemian domen"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Port"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Numer portu \"%s\" jest nieprawidłowy. 0 < NUMER_PORTU < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Widok listy"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Widok grupy"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "Ochrona usługi SELinuksa"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Administracja"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Pozwolenie wszystkim demonom na zapisywanie plików core do /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Pozwolenie wszystkim demonom na używanie nieprzydzielonych TTY"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Przywileje użytkowników"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Pozwól RPM na uruchamianie nieograniczane"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa gadmin na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Pozwól uprzywilejowanym narzędziom, takim jak hotplug i insmod na "
--#~ "uruchamianie nieograniczane"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa guest na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona updfstab"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Ochrona pamięci"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Zezwolenie na stos wykonywalny Javy"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Mount"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Pozwolenie mount na montowanie wszystkich plików"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Pozwolenie mount na montowanie wszystkich katalogów"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Zezwolenie na stos wykonywalny MPlayera"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Pozwolenie SSH na uruchamianie ssh-keysign"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona uptimed"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa staff na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Pozwól user_r na osiąganie sysadm_r przez su, sudo lub userhelper. W "
--#~ "innym wypadku tylko staff_r może to zrobić"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa sysadm na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Pozwól użytkownikom na uruchamianie polecenia mount"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Pozwolenie nieograniczanym kontom użytkowników SELinuksa na wykonywanie "
-+"plików w katalogu domowym lub /tmp"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Pozwól zwykłym użytkownikom na bezpośredni dostęp do myszy (pozwól tylko "
--#~ "serwerowi X Window)"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Konfiguracja sieci"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Pozwolenie pakietom bez etykiet na przepływanie przez sieć"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Pozwól użytkownikom na wykonywanie polecenia dmesg"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa user na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Pozwól użytkownikom na kontrolowanie interfejsów sieciowych (wymaga także "
--#~ "USERCTL=true)"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Pozwolenie nieograniczanym dyntrans do unconfined_execmem"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Bazy danych"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Pozwolenie użytkownikowi na łączenie z gniazdem MySQL"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Pozwolenie użytkownikowi na łączenie z gniazdem PostgreSQL"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "Serwer X"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Pozwolenie klientom na zapisywanie do współdzielonej pamięci X"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Pozwól normalnym użytkownikom na wykonywanie ping"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Pozwolenie kontom użytkowników SELinuksa xguest na wykonywanie plików w "
-+"katalogu domowym lub /tmp"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "Pozwól użytkownikom na odczyt/zapis noextattrfile (FAT, CD-ROM, DYSKIETKA)"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Pozwolenie demonom na uruchamianie za pomocą NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Aplikacje WWW"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Przemiana użytkownika SELinuksa staff na domenę przeglądarki WWW"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Przemiana użytkownika SELinuksa sysadm na domenę przeglądarki WWW"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Przemiana użytkownika SELinuksa user na domenę przeglądarki WWW"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Przemiana użytkownika SELinuksa xguest na domenę przeglądarki WWW"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+"Pozwolenie przeglądarkom WWW staff na zapisywanie do katalogów domowych"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Pozwól użytkownikom na odczyt/zapis urządzeń USB"
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Wyłączenie ochrony SELinuksa dla amandy"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Pozwól użytkownikom na uruchamianie serwerów TCP (dowiąż do portów i "
--#~ "akceptuj połączenia z tych samych domen i zewnętrznych użytkowników) "
--#~ "wyłączenie tego wymusza tryb pasywny FTP i może zmienić inne protokoły"
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Wyłączenie ochrony SELinuksa dla amavis"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Pozwól użytkownikom na wykonywanie stat na plikach TTY"
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona apmd"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona uucpd"
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona arpwatch"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona VMWare"
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona auditd"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona watchdog"
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona automount"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona winbind"
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Wyłączenie ochrony SELinuksa dla Avahi"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona XDM"
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Bluetooth"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Pozwól XDM na logowanie jako sysadm_r:sysadm_t"
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona canna"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona Xen"
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona cardmgr"
--#~ msgid "XEN"
--#~ msgstr "Xen"
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Wyłączenie ochrony SELinuksa dla serwera klastra"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr ""
--#~ "Pozwól Xenowi na odczytywanie/zapisywanie fizycznych urządzeń dyskowych"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Pozwolenie cdrecord na odczytywanie różnej zawartości. NFS, Samba, "
-+"urządzenia wymienne, pliki tymczasowe użytkownika i potencjalnie "
-+"niebezpieczne pliki zawartości"
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ciped"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona clamd"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Wyłączenie ochrony SELinuksa dla clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Wyłączenie ochrony SELinuksa dla clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona comsat"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona courier"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona cpucontrol"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona cpuspeed"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona crond"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Drukowanie"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Wyłączenie ochrony SELinuksa dla serwera zaplecza cupsd"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona cupsd"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Wyłączenie ochrony SELinuksa dla cupsd_lpd"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona CVS"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona cyrus"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dbskkd"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dbusd"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Wyłączenie ochrony SELinuksa dla dccd"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Wyłączenie ochrony SELinuksa dla dccifd"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Wyłączenie ochrony SELinuksa dla dccm"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ddt"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona devfsd"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dhcpc"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dhcpd"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dictd"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Pozwolenie sysadm_t na bezpośrednie uruchamianie demonów"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Wyłączenie ochrony SELinuksa dla Evolution"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Gry"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Wyłączenie ochrony SELinuksa dla gier"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Wyłączenie ochrony SELinuksa dla przeglądarek WWW"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Wyłączenie ochrony SELinuksa dla Thunderbirda"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona distccd"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dmesg"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dnsmasq"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona dovecot"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona entropyd"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Wyłączenie ochrony SELinuksa dla fetchmail"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona fingerd"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona freshclam"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona fsdaemon"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona gpm"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona gss"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona HAL"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Zgodność"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona xfs"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"Bez audytu rzeczy, o których wiadomo, że są zepsute, ale nie niosą za sobą "
-+"ryzyka"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Wyłącz ochronę SELinuksa dla kontroli Xena"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona hostname"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona hotplug"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona howl"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona hplip CUPS"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Wyłączenie ochrony SELinuksa dla rotatelogs httpd"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "Usługa HTTPD"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Wyłączenie ochrony SELinuksa dla suexec HTTP"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona hwclock"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona i18n"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona imazesrv"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Wyłączenie ochrony SELinuksa dla demonów potomnych inetd"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona inetd"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona innd"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona iptables"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ircd"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona irqbalance"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona iSCSI"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona jabberd"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona kadmind"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona klogd"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona krb5kdc"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Wyłączenie ochrony SELinuksa dla demonów ktalk"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona kudzu"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona locate"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona LPD"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona lrrd"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona LVM"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Mailman"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ypbind"
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+"Pozwolenie Evolution i Thunderbirdowi na odczytywanie plików użytkownika"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona hasła NIS"
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona mdadm"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona monopd"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Pozwolenie przeglądarce Mozilla na odczytywanie plików użytkownika"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona mrtg"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona mysqld"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nagios"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Usługa nazw"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona named"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nessusd"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Wyłączenie ochrony SELinuksa dla Menedżera sieci"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nfsd"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nmbd"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nrpe"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nscd"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona nsd"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ntpd"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Wyłączenie ochrony SELinuksa dla oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Wyłączenie ochrony SELinuksa dla oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona OpenVPN"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona PAM"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Wyłączenie ochrony SELinuksa dla Pegasusa"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona perdition"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona portmap"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona portslave"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Wyłączenie ochrony SELinuksa dla Postfiksa"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona PostgreSQL"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Pozwolenie pppd na uruchamianie przez zwykłych użytkowników"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona pptp"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona prelink"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona privoxy"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ptal"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona PXE"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Wyłączenie ochrony SELinuksa dla pyzord"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Quoty"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona radiusd"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona radvd"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Wyłączenie ochrony SELinuksa dla rdisc"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Wyłączenie ochrony SELinuksa dla readahead"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona ypserv"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Pozwolenie programom na odczytywanie plików w niestandardowych położeniach "
-+"(default_t)"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Wyłącz ochronę SELinuksa dla demona przesyłania NIS"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona restorecond"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona RHGB"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Wyłączenie ochrony SELinuksa dla ricci"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Wyłączenie ochrony SELinuksa dla ricci_modclusterd"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona rlogind"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona rpcd"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Wyłączenie ochrony SELinuksa dla rshd"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona rsync"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Pozwolenie SSH na uruchamianie z inetd zamiast jako demon"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Pozwolenie Sambie na współdzielenie katalogów NFS"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "Serwer uwierzytelniania SASL"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Pozwolenie serwerowi uwierzytelniania SASL na odczytywanie /etc/shadow"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Pozwól użytkownikowi SELinuksa webadm na zarządzanie folderami domowymi "
--#~ "nieuprzywilejowanych użytkowników"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Pozwolenie serwerowi X Window na mapowanie regionów pamięci zarówno jako "
-+"wykonywalną, jak i zapisywalną"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Pozwól użytkownikowi SELinuksa webadm na odczytywanie folderami domowymi "
--#~ "nieuprzywilejowanych użytkowników"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona saslauthd"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona scannerdaemon"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Bez zezwolenia na przemienienie na sysadm_t, dotyczy sudo i su"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Bez zezwolenia żadnemu procesowi na wczytywanie modułów jądra"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Na pewno chcesz usunąć %s \"%s\"?"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+"Bez zezwolenia żadnemu procesowi na modyfikowanie polityki jądra SELinuksa"
--#~ msgid "Delete %s"
--#~ msgstr "Usuń %s"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Sendmail"
--#~ msgid "Add %s"
--#~ msgstr "Dodaj %s"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Wyłączenie ochrony SELinuksa dla setrans"
--#~ msgid "Modify %s"
--#~ msgstr "Zmodyfikuj %s"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona setroubleshoot"
--#~ msgid "Permissive"
--#~ msgstr "Zezwalanie"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona slapd"
--#~ msgid "Enforcing"
--#~ msgstr "Wymuszanie"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona slrnpull"
--#~ msgid "Disabled"
--#~ msgstr "Wyłączony"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona smbd"
--#~ msgid "Status"
--#~ msgstr "Stan"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona snmpd"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Zmienianie typu polityki spowoduje ponowne nadanie etykiet całemu "
--#~ "systemowy plików podczas następnego uruchamiania. Ponowne nadawanie "
--#~ "etykiet zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Czy "
--#~ "chcesz kontynuować?"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Snort"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "Zmienianie SELinuksa na wyłączony wymaga ponownego uruchomienia. Nie jest "
--#~ "to zalecane. Jeśli później zdecydujesz się ponownie włączyć SELinuksa, "
--#~ "system będzie wymagał ponownego nadania etykiet. Jeśli chcesz tylko "
--#~ "zobaczyć, czy SELinux powoduje problem z systemem, możesz przejść do "
--#~ "trybu zezwalania, który będzie tylko zapisywał błędy do dziennika i nie "
--#~ "wymuszał polityki SELinuksa. Tryb zezwalania nie wymaga ponownego "
--#~ "uruchomienia. Czy chcesz kontynuować?"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona soundd"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Zmienianie SELinuksa na włączony spowoduje ponowne nadanie etykiet całemu "
--#~ "systemowy plików podczas następnego uruchamiania. Ponowne nadawanie "
--#~ "etykiet zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Czy "
--#~ "chcesz kontynuować?"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona sound"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Ochrona przed niechcianymi wiadomościami"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c) 2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona spamd"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Dodaj mapowanie loginu SELinuksa"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Pozwolenie smapd na dostęp do katalogów domowych"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Dodaj porty sieciowe SELinuksa"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Pozwolenie demonowi Spam Assassin na dostęp do sieci"
--#~ msgid "SELinux Type"
--#~ msgstr "Typ SELinuksa"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona speedmgmt"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "TCP\n"
--#~ "UDP"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Poziom MLS/MCS\n"
--#~ "SELinuksa"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Pozwolenie demonowi Squid na dostęp do sieci"
--#~ msgid "File Specification"
--#~ msgstr "Określenie pliku"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Squid"
--#~ msgid "File Type"
--#~ msgstr "Typ pliku"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona SSH"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "wszystkie pliki\n"
--#~ "zwykłe pliki\n"
--#~ "folder\n"
--#~ "urządzenie znakowe\n"
--#~ "urządzenie blokowe\n"
--#~ "gniazdo\n"
--#~ "dowiązanie symboliczne\n"
--#~ "nazwany potok\n"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Pozwolenie SSH na logowanie jako sysadm_r:sysadm_t"
--#~ msgid "MLS"
--#~ msgstr "MLS"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"Pozwolenie użytkownikom staff_r na wyszukiwanie w katalogu domowym sysadm i "
-+"odczytywanie plików (takich jak ~/.bashrc)"
--#~ msgid "Add SELinux User"
--#~ msgstr "Dodaj użytkownika SELinuksa"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Uniwersalny tunel SSL"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona stunnel"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Pozwolenie demonowi stunnel na samodzielne uruchamianie, poza xinetd"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona swat"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona sxid"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona syslogd"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Wyłączenie ochrony SELinuksa dla systemowych zadań Crona"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona TCP"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Telnet"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona tftpd"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona transproxy"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Wyłączenie ochronySELinuksa dla demona udev"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona uml"
--#~ msgid "SELinux Administration"
--#~ msgstr "Administracja SELinuksa"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"Pozwolenie xinetd na uruchamianie nieograniczane, w tym wszystkich usług, "
-+"jakie uruchamia, a które nie mają określonych przemian domen"
--#~ msgid "Add"
--#~ msgstr "Dodaj"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"Pozwolenie skryptom rc na uruchamianie nieograniczane, w tym wszystkie "
-+"demony uruchamiane przez skrypty rc, a które nie mają określonych przemian "
-+"domen"
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Pozwolenie RPM na uruchamianie nieograniczane"
--#~ msgid "_Properties"
--#~ msgstr "_Właściwości"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"Pozwolenie uprzywilejowanym narzędziom, takim jak hotplug i insmod na "
-+"uruchamianie nieograniczane"
--#~ msgid "_Delete"
--#~ msgstr "_Usuń"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona updfstab"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona uptimed"
--#~ msgid "Select Management Object"
--#~ msgstr "Wybierz obiekt zarządzania"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"Pozwolenie user_r na osiąganie sysadm_r przez su, sudo lub userhelper. W "
-+"innym wypadku tylko staff_r może to zrobić"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Wybierz:</b>"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Pozwolenie użytkownikom na uruchamianie polecenia mount"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Domyślny systemowy tryb wymuszania"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"Pozwolenie zwykłym użytkownikom na bezpośredni dostęp do myszy (pozwolenie "
-+"tylko serwerowi X)"
--#~ msgid ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
--#~ msgstr ""
--#~ "Wyłączone\n"
--#~ "Zezwalanie\n"
--#~ "Wymuszanie\n"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Pozwolenie użytkownikom na wykonywanie polecenia dmesg"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Obecny tryb wymuszania"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"Pozwolenie użytkownikom na kontrolowanie interfejsów sieciowych (wymaga "
-+"także USERCTL=true)"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Domyślny systemowy typ polityki: "
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Pozwolenie normalnym użytkownikom na wykonywanie ping"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Wybierz, czy chcesz ponownie nadać etykiety całemu systemowi plików "
--#~ "podczas następnego ponownego uruchomienia. Ponowne nadanie etykiet może "
--#~ "zająć dużo czasu, w zależności od rozmiaru systemu. Jeśli zmieniasz typy "
--#~ "polityki lub przechodzisz z wyłączonego do wymuszania, ponowne nadanie "
--#~ "etykiet jest wymagane."
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+"Pozwolenie użytkownikom na odczyt/zapis noextattrfile (FAT, CD-ROM, "
-+"DYSKIETKA)"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Ponownie nadaj etykiety podczas następnego ponownego uruchomienia."
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Pozwolenie użytkownikom na odczyt/zapis urządzeń USB"
--#~ msgid "label37"
--#~ msgstr "label37"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"Pozwolenie użytkownikom na uruchamianie serwerów TCP (dowiązanie do portów i "
-+"akceptowanie połączenia z tych samych domen i zewnętrznych użytkowników) "
-+"wyłączenie tego wymusza tryb pasywny FTP i może zmienić inne protokoły"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Pozwolenie użytkownikom na wykonywanie stat na plikach TTY"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona uucpd"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona VMWare"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona watchdog"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona winbind"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona XDM"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Pozwolenie XDM na logowanie jako sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona Xen"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "Xen"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Przywróć ustawienia zmiennych logicznych do domyślnych systemu"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+"Pozwolenie Xenowi na odczytywanie/zapisywanie fizycznych urządzeń dyskowych"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Przełącz między dostosowanymi i wszystkimi zmiennymi logicznymi"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona xfs"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Wyłączenie ochrony SELinuksa dla kontroli Xena"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ypbind"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona hasła NIS"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona ypserv"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Wyłączenie ochrony SELinuksa dla demona przesyłania NIS"
--#~ msgid "Run booleans lockdown wizard"
--#~ msgstr "Uruchom kreatora blokowania zmiennych logicznych"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Pozwolenie użytkownikowi SELinuksa webadm na zarządzanie katalogami domowymi "
-+"nieuprzywilejowanych użytkowników"
--#~ msgid "Lockdown..."
--#~ msgstr "Zablokuj..."
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Pozwolenie użytkownikowi SELinuksa webadm na odczytywanie katalogów domowych "
-+"nieuprzywilejowanych użytkowników"
--#~ msgid "Filter"
--#~ msgstr "Filtr"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Na pewno usunąć %s \"%s\"?"
--#~ msgid "label50"
--#~ msgstr "label50"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Usuń %s"
--#~ msgid "Add File Context"
--#~ msgstr "Dodaj kontekst pliku"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Dodaj %s"
--#~ msgid "Modify File Context"
--#~ msgstr "Zmodyfikuj kontekst pliku"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Zmodyfikuj %s"
--#~ msgid "Delete File Context"
--#~ msgstr "Usuń kontekst pliku"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Zezwalanie"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Przełącz między wszystkimi i dostosowanymi kontekstami plików"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Wymuszanie"
--#~ msgid "label38"
--#~ msgstr "label38"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Wyłączony"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Dodaj mapowanie użytkownika SELinuksa"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Stan"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Zmodyfikuj mapowanie użytkownika SELinuksa"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Zmienianie typu polityki spowoduje ponowne nadanie etykiet całemu systemowy "
-+"plików podczas następnego uruchamiania. Ponowne nadawanie etykiet zajmuje "
-+"dużo czasu, w zależności od rozmiaru systemu plików. Kontynuować?"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Usuń mapowanie użytkownika SELinuksa"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"Zmienianie SELinuksa na wyłączony wymaga ponownego uruchomienia. Nie jest to "
-+"zalecane. Jeśli później SELinux zostanie ponownie włączony, system będzie "
-+"wymagał ponownego nadania etykiet. Aby tylko zobaczyć, czy SELinux powoduje "
-+"problem z systemem, można przejść do trybu zezwalania, który będzie tylko "
-+"zapisywał błędy do dziennika i nie wymuszał polityki SELinuksa. Tryb "
-+"zezwalania nie wymaga ponownego uruchomienia. Kontynuować?"
--#~ msgid "label39"
--#~ msgstr "label39"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Zmienianie SELinuksa na włączony spowoduje ponowne nadanie etykiet całemu "
-+"systemowy plików podczas następnego uruchamiania. Ponowne nadawanie etykiet "
-+"zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Kontynuować?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Add Translation"
--#~ msgstr "Dodaj tłumaczenie"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c) 2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Modify Translation"
--#~ msgstr "Zmodyfikuj tłumaczenie"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Dodanie mapowania loginu SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Dodanie portów sieciowe SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "Typ SELinuksa"
--#~ msgid "Delete Translation"
--#~ msgstr "Usuń tłumaczenie"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Poziom MLS/MCS\n"
-+"SELinuksa"
--#~ msgid "label41"
--#~ msgstr "label41"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Określenie pliku"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Typ pliku"
--#~ msgid "Modify SELinux User"
--#~ msgstr "Zmodyfikuj użytkownika SELinuksa"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"wszystkie pliki\n"
-+"zwykłe pliki\n"
-+"katalog\n"
-+"urządzenie znakowe\n"
-+"urządzenie blokowe\n"
-+"gniazdo\n"
-+"dowiązanie symboliczne\n"
-+"nazwany potok\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Dodanie użytkownika SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "Administracja SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Dodaj"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Właściwości"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Usuń"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Wybór obiektu zarządzania"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Proszę wybrać:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Domyślny systemowy tryb wymuszania"
--#~ msgid "label40"
--#~ msgstr "label40"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Wyłączone\n"
-+"Zezwalanie\n"
-+"Wymuszanie\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Obecny tryb wymuszania"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Domyślny systemowy typ polityki: "
--#~ msgid "Add Network Port"
--#~ msgstr "Dodaj port sieciowy"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Proszę wybrać, czy ponownie nadać etykiety całemu systemowi plików podczas "
-+"następnego ponownego uruchomienia. Ponowne nadanie etykiet może zająć dużo "
-+"czasu, w zależności od rozmiaru systemu. Jeśli zmieniasz typy polityki lub "
-+"przechodzisz z wyłączonego do wymuszania, ponowne nadanie etykiet jest "
-+"wymagane."
--#~ msgid "Edit Network Port"
--#~ msgstr "Edytuj port sieciowy"
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+"Podczas następnego ponownego uruchomienia etykiety zostaną ponownie nadane."
--#~ msgid "Delete Network Port"
--#~ msgstr "Usuń port sieciowy"
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Przywrócenie ustawień zmiennych logicznych do domyślnych systemu"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Przełączenie między dostosowanymi i wszystkimi zmiennymi logicznymi"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Uruchomienie kreatora blokowania zmiennych logicznych"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Blokowanie..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filtr"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Dodanie kontekstu pliku"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Zmodyfikowanie kontekstu pliku"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Usunięcie kontekstu pliku"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Przełączenie między wszystkimi i dostosowanymi kontekstami plików"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Dodanie mapowania użytkownika SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Zmodyfikowanie mapowania użytkownika SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Usunięcie mapowania użytkownika SELinuksa"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Dodanie użytkownika"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Zmodyfikowanie użytkownika"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Usunięcie użytkownika"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Dodanie tłumaczenia"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Zmodyfikowanie tłumaczenia"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Usunięcie tłumaczenia"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Dodanie portu sieciowego"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Edycja portu sieciowego"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Usunięcie portu sieciowego"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Przełączenie między dostosowanymi i wszystkimi portami"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Utworzenie nowego modułu polityki"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Wczytanie modułu polityki"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Usunięcie wczytywalnego modułu polityki"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Przełącz między dostosowanymi i wszystkimi portami"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"Włączenie/wyłączenie dodatkowych reguł audytu, które normalnie nie są "
-+"zgłaszane w plikach dziennika."
--#~ msgid "label42"
--#~ msgstr "label42"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
--#~ msgid "Generate new policy module"
--#~ msgstr "Utwórz nowy moduł polityki"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Zmiana trybu procesu na zezwalanie."
--#~ msgid "Load policy module"
--#~ msgstr "Wczytaj moduł polityki"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Zmiana trybu procesu na wymuszanie"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Usuń wczytywalny moduł polityki"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Domena procesu"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "Włącz/wyłącz dodatkowe reguły audytu, które normalnie nie są raportowane "
--#~ "do plików dziennika."
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#~ msgid "label44"
--#~ msgstr "label44"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "Użytkownik SELinuksa \"%s\" jest wymagany"
--#~ msgid "Sensitvity Level"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
- #~ msgstr "Poziom wrażliwości"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Użytkownik SELinuksa \"%s\" jest wymagany"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/policycoreutils.pot policycoreutils-2.0.85/po/policycoreutils.pot
---- nsapolicycoreutils/po/policycoreutils.pot  2011-02-17 15:11:25.050736108 -0500
-+++ policycoreutils-2.0.85/po/policycoreutils.pot      2011-02-17 15:23:38.811766269 -0500
-@@ -8,10 +8,11 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-09-14 16:59-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=CHARSET\n"
- "Content-Transfer-Encoding: 8bit\n"
-@@ -77,829 +78,846 @@
- msgid "Could not set exec context to %s.\n"
- msgstr ""
--#: ../audit2allow/audit2allow:217
-+#: ../audit2allow/audit2allow:230
- msgid "******************** IMPORTANT ***********************\n"
- msgstr ""
--#: ../audit2allow/audit2allow:218
-+#: ../audit2allow/audit2allow:231
- msgid "To make this policy package active, execute:"
- msgstr ""
--#: ../semanage/seobject.py:48
-+#: ../semanage/seobject.py:107 ../semanage/seobject.py:111
-+msgid "global"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:181
- msgid "Could not create semanage handle"
- msgstr ""
--#: ../semanage/seobject.py:55
-+#: ../semanage/seobject.py:189
- msgid "SELinux policy is not managed or store cannot be accessed."
- msgstr ""
--#: ../semanage/seobject.py:60
-+#: ../semanage/seobject.py:194
- msgid "Cannot read policy store."
- msgstr ""
--#: ../semanage/seobject.py:65
-+#: ../semanage/seobject.py:199
- msgid "Could not establish semanage connection"
- msgstr ""
--#: ../semanage/seobject.py:70
-+#: ../semanage/seobject.py:204
- msgid "Could not test MLS enabled status"
- msgstr ""
--#: ../semanage/seobject.py:142 ../semanage/seobject.py:146
--msgid "global"
-+#: ../semanage/seobject.py:210 ../semanage/seobject.py:224
-+msgid "Not yet implemented"
- msgstr ""
--#: ../semanage/seobject.py:206
--#, python-format
--msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
-+#: ../semanage/seobject.py:214
-+msgid "Semanage transaction already in progress"
- msgstr ""
--#: ../semanage/seobject.py:239
--msgid "Level"
-+#: ../semanage/seobject.py:222
-+msgid "Could not start semanage transaction"
- msgstr ""
--#: ../semanage/seobject.py:239
--msgid "Translation"
-+#: ../semanage/seobject.py:231
-+msgid "Could not commit semanage transaction"
- msgstr ""
--#: ../semanage/seobject.py:247 ../semanage/seobject.py:261
--#, python-format
--msgid "Translations can not contain spaces '%s' "
-+#: ../semanage/seobject.py:235
-+msgid "Semanage transaction not in progress"
- msgstr ""
--#: ../semanage/seobject.py:250
--#, python-format
--msgid "Invalid Level '%s' "
-+#: ../semanage/seobject.py:247 ../semanage/seobject.py:329
-+msgid "Could not list SELinux modules"
- msgstr ""
--#: ../semanage/seobject.py:253
--#, python-format
--msgid "%s already defined in translations"
-+#: ../semanage/seobject.py:256
-+msgid "Modules Name"
- msgstr ""
--#: ../semanage/seobject.py:265
--#, python-format
--msgid "%s not defined in translations"
-+#: ../semanage/seobject.py:256 ../gui/modulesPage.py:62
-+msgid "Version"
- msgstr ""
--#: ../semanage/seobject.py:290
--msgid "Not yet implemented"
-+#: ../semanage/seobject.py:259 ../gui/statusPage.py:75
-+msgid "Disabled"
- msgstr ""
--#: ../semanage/seobject.py:294
--msgid "Semanage transaction already in progress"
-+#: ../semanage/seobject.py:274
-+#, python-format
-+msgid "Could not disable module %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:303
--msgid "Could not start semanage transaction"
-+#: ../semanage/seobject.py:285
-+#, python-format
-+msgid "Could not enable module %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:309
--msgid "Could not commit semanage transaction"
-+#: ../semanage/seobject.py:300
-+#, python-format
-+msgid "Could not remove module %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:313
--msgid "Semanage transaction not in progress"
-+#: ../semanage/seobject.py:316
-+msgid "dontaudit requires either 'on' or 'off'"
- msgstr ""
--#: ../semanage/seobject.py:325
--msgid "Could not list SELinux modules"
-+#: ../semanage/seobject.py:344
-+msgid "Builtin Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:336
--msgid "Permissive Types"
-+#: ../semanage/seobject.py:350
-+msgid "Customized Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:391
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:397
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:423 ../semanage/seobject.py:485
-+#: ../semanage/seobject.py:531 ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:700 ../semanage/seobject.py:758
-+#: ../semanage/seobject.py:992 ../semanage/seobject.py:1650
-+#: ../semanage/seobject.py:1714 ../semanage/seobject.py:1733
-+#: ../semanage/seobject.py:1842 ../semanage/seobject.py:1894
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:427 ../semanage/seobject.py:489
-+#: ../semanage/seobject.py:535 ../semanage/seobject.py:541
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
--#, python-format
--msgid "Login mapping for %s is already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:436
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:441
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:445
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:449 ../semanage/seobject.py:647
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:454 ../semanage/seobject.py:657
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:458
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:462
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:474 ../semanage/seobject.py:477
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:481
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:491 ../semanage/seobject.py:537
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:495
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:511
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:543
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:547
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:566 ../semanage/seobject.py:580
-+#: ../semanage/seobject.py:793
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:602 ../semanage/seobject.py:607
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:602 ../semanage/seobject.py:607
-+#: ../semanage/seobject.py:836 ../semanage/seobject.py:841
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:915
-+#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:602 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:943
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:636 ../semanage/seobject.py:704
-+#: ../semanage/seobject.py:762 ../semanage/seobject.py:768
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
--#, python-format
--msgid "SELinux user %s is already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:643
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:652
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:661
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:664
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:667
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:694
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:696
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:706 ../semanage/seobject.py:764
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:710
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:737
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:770
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:774
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:807
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:813
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:835
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:835
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:836
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:836
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:836
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:836 ../semanage/seobject.py:841
-+#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:856
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:858
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:868
-+msgid "Invalid Port"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:872
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:884
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:890 ../semanage/seobject.py:950
-+#: ../semanage/seobject.py:1005 ../semanage/seobject.py:1011
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:892
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:896
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:902
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:906
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:910
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:914
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:919
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:923
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:927
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1397
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:944
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:952 ../semanage/seobject.py:1007
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:956
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:967
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:980
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:996
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:1013
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:1017
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1055
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1088
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1088
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1088 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1106 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1232
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1109 ../semanage/seobject.py:1189
-+#: ../semanage/seobject.py:1235
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1114 ../semanage/seobject.py:1193
-+#: ../semanage/seobject.py:1240
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1123 ../semanage/seobject.py:1335
-+#: ../semanage/seobject.py:1588
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1127 ../semanage/seobject.py:1200
-+#: ../semanage/seobject.py:1244 ../semanage/seobject.py:1339
-+#: ../semanage/seobject.py:1401 ../semanage/seobject.py:1435
-+#: ../semanage/seobject.py:1592
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1129 ../semanage/seobject.py:1204
-+#: ../semanage/seobject.py:1248 ../semanage/seobject.py:1254
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
--#, python-format
--msgid "Addr %s already defined"
--msgstr ""
--
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1138
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1144 ../semanage/seobject.py:1355
-+#: ../semanage/seobject.py:1556
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1148
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1152
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1156
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1160
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1165
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1169
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1173
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1206 ../semanage/seobject.py:1250
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1210
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1220
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1256
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1260
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
--msgid "Could not list addrs"
-+#: ../semanage/seobject.py:1272
-+msgid "Could not deleteall node mappings"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
--#, python-format
--msgid "Could not check if interface %s is defined"
-+#: ../semanage/seobject.py:1286
-+msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1343 ../semanage/seobject.py:1405
-+#: ../semanage/seobject.py:1439 ../semanage/seobject.py:1445
- #, python-format
--msgid "Interface %s already defined"
-+msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1350
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1359
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1372
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1376
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1380
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1384
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1407 ../semanage/seobject.py:1441
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1422
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1447
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1451
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1463
-+msgid "Could not delete all interface  mappings"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1477
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1496
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1496 ../semanage/seobject.py:1800
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1540
-+#, python-format
-+msgid "Equivalence class for %s already exists"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1548
-+#, python-format
-+msgid "Equivalence class for %s does not exists"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1562
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1566
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1571 ../semanage/seobject.py:1622
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1577
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
--#, python-format
--msgid "Could not check if file context for %s is defined"
-+#: ../semanage/seobject.py:1579
-+msgid "File specification can not include spaces"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1596 ../semanage/seobject.py:1601
-+#: ../semanage/seobject.py:1654 ../semanage/seobject.py:1737
-+#: ../semanage/seobject.py:1741
- #, python-format
--msgid "File context for %s already defined"
-+msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1609
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1617
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1625 ../semanage/seobject.py:1682
-+#: ../semanage/seobject.py:1686
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1631
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1645
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1658 ../semanage/seobject.py:1745
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1664
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1690
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1704
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1718
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1743
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1749
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1764
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1768
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1800
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1800
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1811
-+msgid ""
-+"\n"
-+"SELinux fcontext Equivalence \n"
-+msgstr ""
-+
-+#: ../semanage/seobject.py:1845 ../semanage/seobject.py:1897
-+#: ../semanage/seobject.py:1903
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1847 ../semanage/seobject.py:1899
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1851
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1856
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1861
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1864
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1882
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1905
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1909
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1921 ../semanage/seobject.py:1938
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1961
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1974
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1974
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1983
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1983 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:178
- msgid "Description"
- msgstr ""
-@@ -1158,33 +1176,33 @@
- msgid "Error allocating shell's argv0.\n"
- msgstr ""
--#: ../newrole/newrole.c:1346
-+#: ../newrole/newrole.c:1347
- #, c-format
- msgid "Unable to restore the environment, aborting\n"
- msgstr ""
--#: ../newrole/newrole.c:1357
-+#: ../newrole/newrole.c:1358
- msgid "failed to exec shell\n"
- msgstr ""
--#: ../load_policy/load_policy.c:22
-+#: ../load_policy/load_policy.c:24
- #, c-format
- msgid "usage:  %s [-qi]\n"
- msgstr ""
--#: ../load_policy/load_policy.c:71
-+#: ../load_policy/load_policy.c:81
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
- msgstr ""
--#: ../load_policy/load_policy.c:80
-+#: ../load_policy/load_policy.c:91
- #, c-format
--msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
-+msgid "%s:  Can't load policy file %s and enforcing mode requested: %s\n"
- msgstr ""
--#: ../load_policy/load_policy.c:90
-+#: ../load_policy/load_policy.c:103
- #, c-format
--msgid "%s:  Can't load policy:  %s\n"
-+msgid "%s:  Can't load policy file %s:  %s\n"
- msgstr ""
- #: ../scripts/chcat:92 ../scripts/chcat:169
-@@ -1266,7 +1284,2070 @@
- msgid "chcat -l +CompanyConfidential juser"
- msgstr ""
--#: ../scripts/chcat:399
--#, c-format
-+#: ../scripts/chcat:399 ../gui/polgen.py:1290
-+#, c-format, python-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1616
-+#: ../gui/system-config-selinux.glade:1839
-+#: ../gui/system-config-selinux.glade:2456
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:91 ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260 ../gui/polgen.py:149
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280 ../gui/polgen.py:150
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322 ../gui/polgen.py:152
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343 ../gui/polgen.py:153
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474 ../gui/polgen.py:154
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495 ../gui/polgen.py:155
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516 ../gui/polgen.py:156
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537 ../gui/polgen.py:157
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647 ../gui/polgen.py:158
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:176
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:186
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:193
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:205 ../gui/polgengui.py:213 ../gui/polgengui.py:227
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:275
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:335 ../gui/polgengui.py:608
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:463
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:484
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:491
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:551
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:564
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:564 ../gui/polgengui.py:568
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:568
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:620
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:645 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:151
-+msgid "Internet Services Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.py:190
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:309
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:395
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:401
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:419
-+msgid "use_resolve must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:425
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:431
-+msgid "use_kerberos must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:437
-+msgid "manage_krb5_rcache must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:467
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:965
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1124
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1125
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1126
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1127
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1245
-+#, python-format
-+msgid ""
-+"\n"
-+"%s\n"
-+"\n"
-+"polgen [ -m ] [ -t type ] [ executable | Name ]\n"
-+"valid Types:\n"
-+msgstr ""
-+
-+#: ../gui/polgen.py:1293
-+msgid "Executable or Name required"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:678
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:650
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:727
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:773
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:837
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1079
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1122
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1144
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1166
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1257
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1274
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1327
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1355
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1374
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1419
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1464
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1510
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1562
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1599
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1615
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1633
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1634
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1664
-+#: ../gui/system-config-selinux.glade:1869
-+#: ../gui/system-config-selinux.glade:2056
-+#: ../gui/system-config-selinux.glade:2243
-+#: ../gui/system-config-selinux.glade:2486
-+#: ../gui/system-config-selinux.glade:2711
-+#: ../gui/system-config-selinux.glade:2886
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1753
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1790
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1806
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1822
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1838
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1958
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1995
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2011
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2027
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2145
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2182
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2198
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2214
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2332
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2369
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2385
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2401
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2437
-+#: ../gui/system-config-selinux.glade:2455
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2575
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2612
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2628
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2644
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2680
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2800
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2837
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2855
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2947
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2975
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/POTFILES policycoreutils-2.0.85/po/POTFILES
---- nsapolicycoreutils/po/POTFILES     2011-02-17 15:11:26.009720263 -0500
-+++ policycoreutils-2.0.85/po/POTFILES 2011-02-17 15:23:37.438756244 -0500
-@@ -22,5 +22,32 @@
-       ../restorecond/stringslist.h \
-       ../restorecond/restorecond.c \
-       ../restorecond/utmpwatcher.c \
-+      ../gui/booleansPage.py \
-+      ../gui/fcontextPage.py \
-+      ../gui/loginsPage.py \
-+      ../gui/mappingsPage.py \
-+      ../gui/modulesPage.py \
-+      ../gui/polgen.glade \
-+      ../gui/polgengui.py \
-+      ../gui/polgen.py \
-+      ../gui/portsPage.py \
-+      ../gui/selinux.tbl \
-+      ../gui/semanagePage.py \
-+      ../gui/statusPage.py \
-+      ../gui/system-config-selinux.glade \
-+      ../gui/system-config-selinux.py \
-+      ../gui/usersPage.py \
-+      ../gui/templates/executable.py \
-+      ../gui/templates/__init__.py \
-+      ../gui/templates/network.py \
-+      ../gui/templates/rw.py \
-+      ../gui/templates/script.py \
-+      ../gui/templates/semodule.py \
-+      ../gui/templates/tmp.py \
-+      ../gui/templates/user.py \
-+      ../gui/templates/var_lib.py \
-+      ../gui/templates/var_log.py \
-+      ../gui/templates/var_run.py \
-+      ../gui/templates/var_spool.py \
-       ../secon/secon.c \
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/POTFILES.in policycoreutils-2.0.85/po/POTFILES.in
---- nsapolicycoreutils/po/POTFILES.in  2011-02-17 15:11:25.894722166 -0500
-+++ policycoreutils-2.0.85/po/POTFILES.in      2011-02-17 15:23:37.440756258 -0500
-@@ -21,6 +21,7 @@
- restorecond/restorecond.c
- restorecond/utmpwatcher.c
- gui/booleansPage.py
-+gui/domainsPage.py
- gui/fcontextPage.py
- gui/loginsPage.py
- gui/mappingsPage.py
-@@ -34,7 +35,6 @@
- gui/statusPage.py
- gui/system-config-selinux.glade
- gui/system-config-selinux.py
--gui/translationsPage.py
- gui/usersPage.py
- gui/templates/executable.py
- gui/templates/__init__.py
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/pt_BR.po policycoreutils-2.0.85/po/pt_BR.po
---- nsapolicycoreutils/po/pt_BR.po     2011-02-17 15:11:25.358731021 -0500
-+++ policycoreutils-2.0.85/po/pt_BR.po 2011-02-18 16:03:41.438976221 -0500
-@@ -1,26 +1,49 @@
--# Brazilian Portuguese translation of policycoreutils
-+# translation of pt_BR.po to Portuguese
-+# Brazilian Portuguese translation of policycoreutils.
-+# This file is distributed under the same license as the policycoreutils package.
-+#
- # Diego Búrigo Zacarão <diegobz@gmail.com>, 2006.
- # Valnir Ferreira Jr., 2006.
--# Igor Pires Soares <igor@projetofedora.org>, 2006,2007,2008.
-+# Igor Pires Soares <igor@projetofedora.org>, 2006,2007,2008,2009.
- # Frederico Madeira <fred@madeira.eng.br>, 2008.
- # Oliver Silva <oliverpsilva@gmail.com>, 2008.
--#
-+# Taylon Silmer <taylonsilva@gmail.com>, 2008.
-+# Og Maciel <ogmaciel@gnome.org>, 2008.
-+# Glaucia Cintra <gcintra@redhat.com>, 2010.
- msgid ""
- msgstr ""
--"Project-Id-Version: policycoreutils\n"
-+"Project-Id-Version: pt_BR\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-07-22 15:47-0300\n"
--"Last-Translator: Igor Pires Soares <igor@projetofedora.org>\n"
--"Language-Team: Brazilian Portuguese <fedora-trans-pt_br@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 11:06+1000\n"
-+"Last-Translator: Glaucia Cintra <gcintra@redhat.com>\n"
-+"Language-Team: Portuguese <en@li.org>\n"
-+"Language: pt\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.4\n"
- "X-Poedit-Language: Portuguese\n"
- "X-Poedit-Country: BRAZIL\n"
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configure o SELinux em uma configuração gráfica"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Gerenciamento do SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Gerar módulos de política do SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Ferramenta de criação de políticas do SELinux"
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -28,7 +51,7 @@
- "         <args ...> are the arguments to that script."
- msgstr ""
- "USO: run_init <script> <args ...>\n"
--"onde: <script> é o nome do script de inicialização a ser executado,\n"
-+" onde: <script> é o nome do script de inicialização a ser executado,\n"
- "         <args ...> são os argumentos para esse script."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
-@@ -39,7 +62,7 @@
- #: ../run_init/run_init.c:139
- #, c-format
- msgid "failed to get account information\n"
--msgstr "falhou ao obter informação da conta\n"
-+msgstr "falha ao obter informação da conta\n"
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
- msgid "Password:"
-@@ -48,7 +71,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "Impossível achar a sua entrada no arquivo de senha shadow.\n"
-+msgstr "Não foi possível localizar a sua entrada no arquivo de senha shadow.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
-@@ -63,7 +86,7 @@
- #: ../run_init/run_init.c:309
- #, c-format
- msgid "Could not open file %s\n"
--msgstr "Impossível abrir arquivo %s\n"
-+msgstr "Não foi possível abrir o arquivo %s\n"
- #: ../run_init/run_init.c:336
- #, c-format
-@@ -73,17 +96,17 @@
- #: ../run_init/run_init.c:361
- #, c-format
- msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
--msgstr "Desculpe, run_init somente pode ser usado sobre um kernel SELinux.\n"
-+msgstr "Desculpe, run_init pode ser usado somente em um kernel SELinux.\n"
- #: ../run_init/run_init.c:380
- #, c-format
- msgid "authentication failed.\n"
--msgstr "autenticação falhou.\n"
-+msgstr "falha na autenticação.\n"
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr "Impossível definir contexto executável para %s.\n"
-+msgstr "Não foi possível definir um contexto executável para %s.\n"
- #: ../audit2allow/audit2allow:217
- msgid "******************** IMPORTANT ***********************\n"
-@@ -99,20 +122,20 @@
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "Política SELinux não é controlada ou não é possível acessar os dados."
-+msgstr ""
-+"A política SELinux não é gerenciada ou não foi possível acessar os dados."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "Impossível ler dados da política"
-+msgstr "Não foi possível ler os dados da política."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
--msgstr "Impossível estabelecer uma conexão semanage"
-+msgstr "Não foi possível estabelecer uma conexão semanage"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Impossível definir intervalo MLS para %s"
-+msgstr "Não foi possível testar o status habilitado de MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -121,801 +144,814 @@
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
--msgstr "Impossível abrir %s: traduções não suportadas em máquinas não-MLS: %s"
-+msgstr ""
-+"Não foi possível abrir %s: traduções não suportadas nas máquinas não-MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "Nível"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Tradução"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "Traduções não podem conter espaços '%s' "
-+msgstr "Traduções não podem conter espaços '%s'"
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr "Nível Inválido '%s' "
-+msgstr "Nível inválido '%s'"
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s já definido nas traduções"
-+msgstr "%s já está definido em traduções"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s não definido nas traduções"
-+msgstr "%s não está definido nas traduções."
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
--msgstr "Não implementado ainda"
-+msgstr "Ainda não está implementado"
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "A transação do semanage já está em andamento"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
--msgstr "Impossível iniciar transação semanage"
-+msgstr "Não foi possível iniciar a transação semanage"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Impossível iniciar transação semanage"
-+msgstr "Não foi possível enviar a transação semanage"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "A transação do semanage não está em andamento"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "Impossível listar usuários SELinux"
-+msgstr "Não foi possível listar os módulos do SELinux"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
- msgstr "Tipos permissivos"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Não foi possível definir o domínio %s como permissivo (falha na instalação "
-+"do módulo)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Não foi possível remover o domínio permissivo %s (falha na remoção)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
--msgstr "Impossível criar uma chave para %s"
-+msgstr "Não foi possível criar uma chave para %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
--msgstr "Impossível verificar se o mapeamento de login para %s está definido"
-+msgstr ""
-+"Não foi possível verificar se o mapeamento de início de sessão para %s está "
-+"definido"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "Mapeamento de login para %s já está definido"
-+msgstr "O mapeamento de início de sessão para %s já está definido"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Usuário Linux %s não existe"
-+msgstr "O grupo linux %s não existe"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
--msgstr "Usuário Linux %s não existe"
-+msgstr "O usuário linux %s não existe"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr "Não foi possível criar mapeamento de login para %s"
-+msgstr "Não foi possível criar um mapeamento de início de sessão para %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "Impossível definir nome para %s"
-+msgstr "Não foi possível definir o nome para %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "Impossível definir intervalo MLS para %s"
-+msgstr "Não foi possível definir o intervalo MLS para %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
--msgstr "Impossível definir usuário SELinux para %s"
-+msgstr "Não foi possível definir o usuário SELinux para %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "Impossível adicionar mapeamento de login para %s"
-+msgstr "Não foi possível adicionar o mapeamento de início de sessão para %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "adicionar mapeamento de usuário do SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Requer seuser ou serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr "Mapeamento de login para %s não está definido"
-+msgstr "O mapeamento de início de sessão para %s não está definido"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
--msgstr "Impossível consultar seuser para %s"
-+msgstr "Não foi possível consultar o seuser para %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr "Impossível modificar mapeamento de login para %s"
-+msgstr "Não foi possível modificar o mapeamento de início de sessão para %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--"Mapeamento de login para %s está definido na política, não pode ser excluído"
-+"O mapeamento de início de sessão para %s está definido na política, e não "
-+"pode ser excluído"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr "Impossível excluir mapeamento de login para %s"
-+msgstr "Não foi possível excluir o mapeamento de início de sessão para %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr "Impossível listar mapeamentos de logins"
-+msgstr "Não foi possível listar os mapeamentos de início de sessão"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
--msgstr "Nome de Login"
-+msgstr "Nome de usuário"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr "Usuário do SELinux"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "Intervalo MLS/MCS"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Impossível adicionar contexto de arquivo para %s"
-+msgstr "Você deve adicionar pelo menos uma função para %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
--msgstr "Impossível checar se usuário SELinux %s está definido"
-+msgstr "Não foi possível verificar se o usuário SELinux %s está definido"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr "Usuário SELinux %s já está definido"
-+msgstr "O usuário SELinux %s já está definido"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
--msgstr "Impossível criar usuário SELinux for %s"
-+msgstr "Não foi possível criar um usuário SELinux para %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
--msgstr "Impossível adicionar role %s para %s"
-+msgstr "Não foi possível adicionar uma função %s para %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
--msgstr "Impossível definir nível MLS para %s"
-+msgstr "Não foi possível definir um nível MLS para %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr "Impossível adicionar prefixo %s para %s"
-+msgstr "Não foi possível adicionar um prefixo %s para %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
--msgstr "Impossível extrair chave para %s"
-+msgstr "Não foi possível extrair uma chave para %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
--msgstr "Impossível adicionar usuário SELinux %s"
-+msgstr "Não foi possível adicionar o usuário SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
--msgstr "Requer prefixo, roles, nível ou intervalo"
-+msgstr "Requer prefixo, função, nível ou intervalo"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
--msgstr "Requer prefixo ou roles"
-+msgstr "Requer prefixo ou função"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
--msgstr "Usuário SELinux %s não está definido"
-+msgstr "O usuário SELinux %s não está definido"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr "Impossível consultar usuário para %s"
-+msgstr "Não foi possível consultar o usuário por %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
--msgstr "Impossível modificar usuário SELinux %s"
-+msgstr "Não foi possível modificar o usuário SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "Usuário SELinux %s está definido na política, não pode ser excluído"
-+msgstr ""
-+"O usuário SELinux %s está definido na política, e não pode ser excluído"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
--msgstr "Impossível excluir usuário SELinux %s"
-+msgstr "Não foi possível excluir o usuário SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
--msgstr "Impossível listar usuários SELinux"
-+msgstr "Não foi possível listar os usuários SELinux"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
--msgstr "Impossível listar roles para o usuário %s"
-+msgstr "Não foi possível listar as funções do usuário %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr "Etiquetagem"
-+msgstr "Rótulo"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefixo"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "Nível MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "Intervalo MCS"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
--msgstr "Papéis do SELinux"
-+msgstr "Funções do SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
--msgstr "Protocolo udp ou tcp é requerido"
-+msgstr "O protocolo udp ou tcp é requerido"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
--msgstr "Porta é requerida"
-+msgstr "A porta é requerida"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
--msgstr "Impossível criar uma chave para %s/%s"
-+msgstr "Não foi possível criar uma chave para %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
--msgstr "Tipo é requerido"
-+msgstr "O tipo é requerido"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr "Impossível checar se a porta %s/%s está definida"
-+msgstr "Não foi possível verificar se a porta %s/%s está definida"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
--msgstr "Porta %s/%s já está definida"
-+msgstr "A porta %s/%s já está definida"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
--msgstr "Impossível criar porta para %s/%s"
-+msgstr "Não foi possível criar uma porta para %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
--msgstr "Impossível criar contexto para %s/%s"
-+msgstr "Não foi possível criar um contexto para %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr "Impossível definir usuário no contexto da porta para %s/%s"
-+msgstr "Não foi possível definir o usuário no contexto da porta para %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr "Impossível definir role no contexto da porta para %s/%s"
-+msgstr "Não foi possível definir a função no contexto da porta para %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr "Impossível definir tipo no contexto da porta para %s/%s"
-+msgstr "Não foi possível definir o tipo no contexto da porta para %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr "Impossível definir campos mls no contexto da porta para %s/%s"
-+msgstr "Não foi possível definir os campos mls no contexto da porta para %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr "Impossível definir contexto da porta para %s/%s"
-+msgstr "Não foi possível definir o contexto da porta para %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
--msgstr "Impossível adicionar porta %s/%s"
-+msgstr "Não foi possível adicionar a porta %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Requer setype ou serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Requer setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "A porta %s/%s não está definida"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
--msgstr "Impossível consultar porta %s/%s"
-+msgstr "Não foi possível consultar a porta %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
--msgstr "Impossível modificar porta %s/%s"
-+msgstr "Não foi possível modificar a porta %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
--msgstr "Impossível listar as portas"
-+msgstr "Não foi possível listar as portas"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
--msgstr "Impossível excluir a porta %s"
-+msgstr "Não foi possível excluir a porta %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "A porta %s/%s está definida na política, não pode ser excluída"
-+msgstr "A porta %s/%s está definida na política, e não pode ser excluída"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
--msgstr "Impossível excluir porta %s/%s"
-+msgstr "Não foi possível excluir a porta %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
--msgstr "Impossível listar portas"
-+msgstr "Não foi possível listar as portas"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr "Tipo da Porta do SELinux"
-+msgstr "Tipo da porta do SELinux"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
--msgstr "Protocolo"
-+msgstr "Proto"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
--msgstr "Número da Porta"
-+msgstr "Número da porta"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "Porta é requerida"
-+msgstr "O endereço do nó é requerid"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Porta é requerida"
-+msgstr "A mácara de rede do nó é requerida"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "O protocolo está faltando ou é desconhecido"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
--msgstr "Tipo SELinux é requerido"
-+msgstr "O tipo SELinux é requerido"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
--msgstr "Impossível criar chave para %s"
-+msgstr "Não foi possível criar uma chave para %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Impossível checar se a porta %s/%s está definida"
-+msgstr "Não foi possível verificar se o endereço %s está definido"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Porta %s/%s já está definida"
-+msgstr "O endereço %s já está definido"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "Impossível criar uma chave para %s"
-+msgstr "Não foi possível criar um endereço para %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
--msgstr "Impossível criar contexto para %s"
-+msgstr "Não foi possível criar um contexto para %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "Impossível definir nome para %s"
-+msgstr "Não foi possível definir uma máscara de rede para %s"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "Impossível definir usuário no contexto de arquivo para %s"
-+msgstr "Não foi possível definir o usuário no contexto de endereço para %s"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Impossível definir role no contexto de arquivo para %s"
-+msgstr "Não foi possível definir uma função no contexto de endereço para %s"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Impossível definir tipo no contexto de arquivo para %s"
-+msgstr "Não foi possível definir o tipo no contexto de endereço para %s"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "Impossível definir campos mls no contexto de arquivo para %s"
-+msgstr "Não foi possível definir os campos mls no contexto de endereço para %s"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Impossível definir contexto de arquivo para %s"
-+msgstr "Não foi possível definir o contexto de endereço para %s"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "Impossível adicionar porta %s/%s"
-+msgstr "Não foi possível adicionar o endereço %s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "A porta %s/%s não está definida"
-+msgstr "O endereço %s não está definido"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "Impossível consultar porta %s/%s"
-+msgstr "Não foi possível consultar o endereço %s"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "Impossível modificar porta %s/%s"
-+msgstr "Não foi possível modificar o endereço %s"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "A porta %s/%s está definida na política, não pode ser excluída"
-+msgstr "O endereço %s está definido na política, e não pode ser excluído"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "Impossível excluir a %s"
-+msgstr "Não foi possível excluir o endereço %s"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Impossível listar portas"
-+msgstr "Não foi possível listar os endereços"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr "Impossível checar se a interface %s está definida"
-+msgstr "Não foi possível verificar se a interface %s está definida"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr "Interface %s já definida"
-+msgstr "A interface %s já esta definida"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
--msgstr "Impossível criar interface para %s"
-+msgstr "Não foi possível criar uma interface para %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "Impossível definir usuário no contexto da interface para %s"
-+msgstr "Não foi possível definir o usuário no contexto da interface para %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "Impossível definir role no contexto da interface para %s"
-+msgstr "Não foi possível definir a função no contexto da interface para %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "Impossível definir tipo no contexto da interface para %s"
-+msgstr "Não foi possível definir o tipo no contexto da interface para %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "Impossível definir campos mls no contexto da interface para %s"
-+msgstr ""
-+"Não foi possível definir os campos mls no contexto da interface para %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "Impossível definir contexto da interface para %s"
-+msgstr "Não foi possível definir o contexto da interface para %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "Impossível definir contexto da mensagem para %s"
-+msgstr "Não foi possível definir o contexto da mensagem para %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
--msgstr "Impossível adicionar interface %s"
-+msgstr "Não foi possível adicionar a interface %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "A interface %s não está definida"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
--msgstr "Impossível consultar interface %s"
-+msgstr "Não foi possível consultar a interface %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
--msgstr "Impossível modificar interface %s"
-+msgstr "Não foi possível modificar a interface %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "A interface %s está definida na política, não pode ser excluída"
-+msgstr "A interface %s está definida na política, e não pode ser excluída"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
--msgstr "Impossível excluir interface %s"
-+msgstr "Não foi possível excluir a interface %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
--msgstr "Impossível listar interfaces"
-+msgstr "Não foi possível listar as interfaces"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "Interface do SELinux"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Contexto"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "Impossível definir usuário no contexto de arquivo para %s"
-+msgstr "Não foi possível definir o usuário no contexto de arquivo para %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "Impossível definir role no contexto de arquivo para %s"
-+msgstr "Não foi possível definir a função no contexto de arquivo para %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "Impossível definir campos mls no contexto de arquivo para %s"
-+msgstr "Não foi possível definir os campos mls no contexto de arquivo para %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr "Especificação do arquivo inválida"
-+msgstr "Especificação inválida do arquivo"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "Impossível checar se o contexto do arquivo para %s está definido"
-+msgstr ""
-+"Não foi possível verificar se o contexto do arquivo para %s está definido"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "Contexto do arquivo para %s já definido"
-+msgstr "O contexto do arquivo para %s já está definido"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr "Impossível criar contexto de arquivo para %s"
-+msgstr "Não foi possível criar um contexto de arquivo para %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "Impossível definir tipo no contexto de arquivo para %s"
-+msgstr "Não foi possível definir o tipo no contexto de arquivo para %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "Impossível definir contexto de arquivo para %s"
-+msgstr "Não foi possível definir o contexto de arquivo para %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "Impossível adicionar contexto de arquivo para %s"
-+msgstr "Não foi possível adicionar o contexto de arquivo para %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Requer setype, serange ou seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr "Contexto de arquivo para %s não está definido"
-+msgstr "O contexto de arquivo para %s não está definido"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr "Impossível consultar contexto de arquivo para %s"
-+msgstr "Não foi possível consultar o contexto de arquivo para %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr "Impossível modificar contexto de arquivo para %s"
-+msgstr "Não foi possível modificar o contexto de arquivo para %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "Impossível listar contextos de arquivos "
-+msgstr "Não foi possível listar os contextos de arquivos "
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
--msgstr "Impossível excluir contexto de arquivo  %s"
-+msgstr "Não foi possível excluir os contexto do arquivo  %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--"Contexto de arquivo para %s está definido na política, não pode ser excluído"
-+"O contexto de arquivo para %s está definido na política, e não pode ser "
-+"excluído"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr "Impossível excluir contexto de arquivo para %s"
-+msgstr "Não foi possível excluir o contexto de arquivo para %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "Impossível listar contextos de arquivos"
-+msgstr "Não foi possível listar os contextos de arquivos"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "Impossível listar contextos de arquivos locais"
-+msgstr "Não foi possível listar os contextos de arquivos locais"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "fcontext do SELinux"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "tipo"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr "Impossível checar se Booleano %s está definido"
-+msgstr "Não foi possível verificar se o booleano %s está definido"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Booleano %s não está definido"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr "Impossível consultar contexto de arquivo %s"
-+msgstr "Não foi possível consultar o contexto de arquivo %s"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Você deve especificar um valor"
-+msgstr "Você deve especificar um dos seguintes valores: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "Não foi possível definir o valor ativo do booleano %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
--msgstr "Impossível modificar booleano %s"
-+msgstr "Não foi possível modificar o booleano %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "O formato %s é inválido: Registro %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "Booleano %s está definido na política, não pode ser excluído"
-+msgstr "O booleano %s está definido na política, e não pode ser excluído"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
--msgstr "Impossível excluir booleano %s"
-+msgstr "Não foi possível excluir o booleano %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
--msgstr "Impossível listar portas booleanas"
-+msgstr "Não foi possível listar os booleanos"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "desconhecido"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr "desligado"
-+msgstr "desativado"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr "Ativo"
-+msgstr "ativado"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "Booleano do SELinux"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "Descrição"
-@@ -928,7 +964,7 @@
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
- msgstr ""
--"newrole: Estouro de capacidade da tabela hash da configuração do nome do "
-+"newrole: estouro de capacidade da tabela hash de configuração do nome do "
- "serviço\n"
- #: ../newrole/newrole.c:297
-@@ -939,7 +975,7 @@
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr "impossível encontrar entrada válida no arquivo passwd.\n"
-+msgstr "Não foi possível localizar a entrada válida no arquivo passwd.\n"
- #: ../newrole/newrole.c:447
- #, c-format
-@@ -949,27 +985,27 @@
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr "Erro! Shell não é valido.\n"
-+msgstr "Erro!  Shell não é valido.\n"
- #: ../newrole/newrole.c:509
- #, c-format
- msgid "Unable to clear environment\n"
--msgstr "Impossível limpar ambiente\n"
-+msgstr "Não foi possível limpar o ambiente\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Erro ao iniciar potencialidades, abortando.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "Erro ao tentar definir potencialidades, abortando.\n"
-+msgstr "Erro ao definir potencialidades, abortando.\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr "Erro ao tentar definir KEEPCAPS, abortando\n"
-+msgstr "Erro ao definir KEEPCAPS, abortando\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
-@@ -979,17 +1015,17 @@
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
- #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr "Erro ao mudar uid, abortando.\n"
-+msgstr "Erro ao mudar o uid, abortando.\n"
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr "Erro ao restaurar KEEPCAPS, abortando\n"
-+msgstr "Erro ao restaurar o KEEPCAPS, abortando\n"
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "Erro ao remover a potencialidade SETUID, abortando.\n"
-+msgstr "Erro ao remover o SETUID da potencialidade, abortando.\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
-@@ -999,7 +1035,7 @@
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr "Erro ao conectar com sistema audit.\n"
-+msgstr "Erro ao conectar com o sistema auditoria.\n"
- #: ../newrole/newrole.c:707
- #, c-format
-@@ -1009,47 +1045,51 @@
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr "Erro ao enviar mensagem audit.\n"
-+msgstr "Erro ao enviar mensagem de auditoria.\n"
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr "Impossível determinar modo forçado.\n"
-+msgstr "Não foi possível determinar modo forçado.\n"
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr "Erro!  Impossível abrir %s.\n"
-+msgstr "Erro!  Não foi possível abrir %s.\n"
- #: ../newrole/newrole.c:771
- #, c-format
- msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
--msgstr "%s! Impossível obter o atual contexto para %s, não reetiquetar tty.\n"
-+msgstr ""
-+"%s! Não foi possível obter o atual contexto para %s, o rótulo do tty não foi "
-+"modificado.\n"
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
--msgstr "%s! Impossível obter novo contexto para %s, não reetiquetar tty.\n"
-+msgstr ""
-+"%s! Não foi possível obter novo contexto para %s, o rótulo do tty não foi "
-+"modificado.\n"
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s!  Impossível definir novo contexto para %s\n"
-+msgstr "%s!  Não foi possível definir novo contexto para %s\n"
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr "%s etiquetas alteradas.\n"
-+msgstr "%s rótulos alterados.\n"
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr "Atenção! Impossível restaurar contexto para %s\n"
-+msgstr "Atenção! Não foi possível restaurar contexto para %s\n"
- #: ../newrole/newrole.c:901
- #, c-format
- msgid "Error: multiple roles specified\n"
--msgstr "Erro: múltiplas roles especificadas\n"
-+msgstr "Erro: múltiplas funções especificadas\n"
- #: ../newrole/newrole.c:909
- #, c-format
-@@ -1059,7 +1099,7 @@
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr "Desculpe, -l pode ser usado com suporte SELinux MLS.\n"
-+msgstr "Desculpe, -l pode ser usado com suporte ao SELinux MLS.\n"
- #: ../newrole/newrole.c:921
- #, c-format
-@@ -1070,43 +1110,43 @@
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
- msgstr ""
--"Erro: você não está habilitado a alterar os níveis em um terminal não "
-+"Erro: você não tem permissão para alterar os níveis em um terminal não "
- "seguro \n"
- #: ../newrole/newrole.c:957
- #, c-format
- msgid "Couldn't get default type.\n"
--msgstr "Impossível obter o tipo padrão.\n"
-+msgstr "Não foi possível obter o tipo padrão.\n"
- #: ../newrole/newrole.c:967
- #, c-format
- msgid "failed to get new context.\n"
--msgstr "falhou ao obter novo contexto.\n"
-+msgstr "falha ao obter novo contexto.\n"
- #: ../newrole/newrole.c:974
- #, c-format
- msgid "failed to set new role %s\n"
--msgstr "falhou ao definir nova role %s\n"
-+msgstr "falha ao definir nova função %s\n"
- #: ../newrole/newrole.c:981
- #, c-format
- msgid "failed to set new type %s\n"
--msgstr "falhou ao definir novo tipo %s\n"
-+msgstr "falha ao definir novo tipo %s\n"
- #: ../newrole/newrole.c:991
- #, c-format
- msgid "failed to build new range with level %s\n"
--msgstr "falhou ao construir novo intervalo com níveis %s\n"
-+msgstr "falha ao construir novo intervalo com nível %s\n"
- #: ../newrole/newrole.c:996
- #, c-format
- msgid "failed to set new range %s\n"
--msgstr "falhou ao definir novo intervalo %s\n"
-+msgstr "falha ao definir o novo intervalo %s\n"
- #: ../newrole/newrole.c:1004
- #, c-format
- msgid "failed to convert new context to string\n"
--msgstr "falhou ao converter novo contexto para uma seqüência de caracteres\n"
-+msgstr "falha ao converter novo contexto para um string\n"
- #: ../newrole/newrole.c:1009
- #, c-format
-@@ -1116,32 +1156,32 @@
- #: ../newrole/newrole.c:1016
- #, c-format
- msgid "Unable to allocate memory for new_context"
--msgstr "Impossível alocar memória para new_context"
-+msgstr "Não foi possível alocar memória para nobo_contexto"
- #: ../newrole/newrole.c:1042
- #, c-format
- msgid "Unable to obtain empty signal set\n"
--msgstr "Impossível obter signal set vazio\n"
-+msgstr "Não foi possível obter um conjunto de sinal vazio\n"
- #: ../newrole/newrole.c:1050
- #, c-format
- msgid "Unable to set SIGHUP handler\n"
--msgstr "Impossível configurar tratador de SIGHUP\n"
-+msgstr "Não foi possível configurar o manipulador de SIGHUP\n"
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr "Desculpe, newrole pode ser usado somente sobre um kernel SELinux.\n"
-+msgstr "Desculpe, nova função pode ser usado somente em um kernel SELinux.\n"
- #: ../newrole/newrole.c:1133
- #, c-format
- msgid "failed to get old_context.\n"
--msgstr "falhou ao obter contexto antigo.\n"
-+msgstr "falha ao obter o _contexto antigo.\n"
- #: ../newrole/newrole.c:1140
- #, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Erro!  Impossível recuperar informações do tty.\n"
-+msgstr "Atenção!  Não foi possível recuperar informações do tty.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
-@@ -1151,17 +1191,17 @@
- #: ../newrole/newrole.c:1196
- #, c-format
- msgid "newrole: incorrect password for %s\n"
--msgstr "newrole: senha incorreta para %s\n"
-+msgstr "nova função: senha incorreta para %s\n"
- #: ../newrole/newrole.c:1223
- #, c-format
- msgid "newrole: failure forking: %s"
--msgstr "newrole: falha de bifurcação: %s"
-+msgstr "nova função: falha de bifurcação: %s"
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
- #, c-format
- msgid "Unable to restore tty label...\n"
--msgstr "Impossível restaurar etiqueta tty...\n"
-+msgstr "Não foi possível restaurar o rótulo do tty...\n"
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
- #, c-format
-@@ -1171,7 +1211,7 @@
- #: ../newrole/newrole.c:1287
- #, c-format
- msgid "Could not close descriptors.\n"
--msgstr "Impossível fechar descritores.\n"
-+msgstr "Não foi possível fechar os descritores.\n"
- #: ../newrole/newrole.c:1314
- #, c-format
-@@ -1181,7 +1221,7 @@
- #: ../newrole/newrole.c:1346
- #, c-format
- msgid "Unable to restore the environment, aborting\n"
--msgstr "Impossível restaurar o ambiente, abortando\n"
-+msgstr "Não foi possível restaurar o ambiente, abortando\n"
- #: ../newrole/newrole.c:1357
- msgid "failed to exec shell\n"
-@@ -1200,12 +1240,13 @@
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:  Impossível carregar política e aplicar o modo requisitado:  %s\n"
-+msgstr ""
-+"%s:  Não foi possível carregar a política e o modo forçado solicitado:  %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s:  Impossível carregar política:  %s\n"
-+msgstr "%s:  Não foi possível carregar a política:  %s\n"
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
-@@ -1214,7 +1255,7 @@
- #: ../scripts/chcat:106 ../scripts/chcat:183
- #, c-format
- msgid "Can not modify sensitivity levels using '+' on %s"
--msgstr "Não se pode modificar os níveis de sensibilidade usando '+' em %s"
-+msgstr "Não se pode modificar os níveis de sensibilidade usando \"+\" em %s"
- #: ../scripts/chcat:110
- #, c-format
-@@ -1237,27 +1278,27 @@
- #: ../scripts/chcat:325
- #, c-format
- msgid "Usage %s CATEGORY File ..."
--msgstr "Uso %s CATEGORY Arquivo ..."
-+msgstr "Uso %s CATEGORIA arquivo ..."
- #: ../scripts/chcat:326
- #, c-format
- msgid "Usage %s -l CATEGORY user ..."
--msgstr "Uso %s -l CATEGORY usuário ..."
-+msgstr "Uso %s -l CATEGORIA usuário ..."
- #: ../scripts/chcat:327
- #, c-format
- msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
--msgstr "Uso %s [[+|-]CATEGORY],...]q Arquivo ..."
-+msgstr "Uso %s [[+|-]CATEGORIA],...]q arquivo ..."
- #: ../scripts/chcat:328
- #, c-format
- msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
--msgstr "Uso %s -l [[+|-]CATEGORY],...]q usuário ..."
-+msgstr "Uso %s -l [[+|-]CATEGORIA],...]q usuário ..."
- #: ../scripts/chcat:329
- #, c-format
- msgid "Usage %s -d File ..."
--msgstr "Uso %s -d Arquivo ..."
-+msgstr "Uso %s -d arquivo ..."
- #: ../scripts/chcat:330
- #, c-format
-@@ -1289,2194 +1330,2255 @@
- #: ../scripts/chcat:399
- #, c-format
- msgid "Options Error %s "
--msgstr "Erro de Opções %s "
--
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "traduções não suportadas em maquinas não-MLS"
--
--#~ msgid "Boolean"
--#~ msgstr "Booleano"
--
--#~ msgid "all"
--#~ msgstr "Todas "
--
--#~ msgid "Customized"
--#~ msgstr "Personalizado"
--
--#~ msgid "File Labeling"
--#~ msgstr "Etiquetagem dos Arquivos"
-+msgstr "Erro nas opções %s "
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Especificação do\n"
--#~ "Arquivo"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Booleano"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "todos"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Personalizado"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Rótulo dos arquivos"
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "Tipo do Arquivo"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Tipo do\n"
--#~ "Arquivo"
--
--#~ msgid "User Mapping"
--#~ msgstr "Mapeamento de Usuários"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Nome de\n"
--#~ "Usuário"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "Usuário do\n"
--#~ "SELinux"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "Intervalo\n"
--#~ "MLS/MCS"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "O login \"%s\" é requerido"
--
--#~ msgid "Policy Module"
--#~ msgstr "Módulo da Política"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Especificação do\n"
-+"arquivo"
--#~ msgid "Module Name"
--#~ msgstr "Nome do Módulo"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"Tipo do arquivo"
--#~ msgid "Version"
--#~ msgstr "Versão"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Tipo do\n"
-+"arquivo"
--#~ msgid "Disable Audit"
--#~ msgstr "Desabilitar o Audit"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mapeamento de usuários"
--#~ msgid "Enable Audit"
--#~ msgstr "Habilitar o Audit"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Nome de\n"
-+"usuário"
--#~ msgid "Load Policy Module"
--#~ msgstr "Carregar Módulo de Política"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"Usuário do\n"
-+"SELinux"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"Intervalo\n"
-+"MLS/MCS"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "O nome de usuário \"%s\" é requerido"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Módulo da política"
--#~ msgid "translator-credits"
--#~ msgstr ""
--#~ "Diego Búrigo Zacarão <diegobz@projetofedora.org>\n"
--#~ "Valnir Ferreira Jr <vferreir@redhat.com>\n"
--#~ "Igor Pires Soares <igor@projetofedora.org>\n"
--#~ "Oliver Silva <oliverpsilva@gmail.com>"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Nome do módulo"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Ferramenta de Criação de Políticas do SELinux"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versão"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "Esta ferramenta pode ser utilizada para gerar um framework de políticas, "
--#~ "para restringir aplicações ou usuários usando o SELinux.\n"
--#~ "\n"
--#~ "Esta ferramenta gera:\n"
--#~ "Arquivo do tipo de execução (te)\n"
--#~ "Arquivo de Interface (if)\n"
--#~ "Arquivo do arquivo de contexto (fc)\n"
--#~ "Shell script (sh) - usado para compilar e instalar a política."
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Desabilitar a auditoria"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Selecione um papel do tipo aplicação/usuário para ser confinada"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Habilitar a auditoria"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Aplicações</b>"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Carregar o módulo de política"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "Standard Init Daemon são daemons iniciados na inicialização através de "
--#~ "scripts de inicialização. Normalmente necessitam de um script em /etc/"
--#~ "init.d."
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Daemons de Inicialização Padrão"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Internet Services Daemon são daemons iniciados pelo xinetd"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Internet Services Daemon (inetd)"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"Diego Búrigo Zacarão <diegobz@projetofedora.org>\n"
-+"Valnir Ferreira Jr <vferreir@redhat.com>\n"
-+"Igor Pires Soares <igor@projetofedora.org>\n"
-+"Oliver Silva <oliverpsilva@gmail.com>\n"
-+"Taylon Silmer <taylonsilva@gmail.com>\n"
-+"Og Maciel <ogmaciel@gnome.org>"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "Aplicações/Scripts (CGI) Web - Scripts CGI iniciados pelo servidor web "
--#~ "(apache)"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Esta ferramenta pode ser utilizada para gerar um framework de políticas, "
-+"para restringir aplicações ou usuários usando o SELinux.\n"
-+"\n"
-+"Esta ferramenta gera:\n"
-+"Tipo de execução do arquivo (te)\n"
-+"Arquivo de interface (if)\n"
-+"Arquivo do arquivo de contexto (fc)\n"
-+"Shell script (sh) - usado para compilar e instalar a política."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Selecione o tipo de aplicação/usuário para ser restringido"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Aplicativos</b>"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Aplicações/Scripts (CGI) Web"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Standard Init Daemon são daemons iniciados na inicialização através de "
-+"scripts de inicialização. Normalmente é necessário um script em /etc/init.d"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "Aplicações do Usuário são quaisquer aplicações iniciadas por eles que "
--#~ "você gostaria de restringir"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Standard Init Daemon"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Daemon de sistema DBUS"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internet Services Daemon são daemons iniciados pelo xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
--#~ msgid "User Application"
--#~ msgstr "Aplicações do Usuário"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Aplicativos/scripts web (CGI) - Scripts CGI iniciados pelo servidor web "
-+"(apache)"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Usuários de Login</b>"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Aplicativos/scripts web (CGI)"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "Modifique um registro existente de login de usuário."
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Aplicativos do usuário são qualquer aplicativos iniciados por eles que você "
-+"gostaria de restringir"
--#~ msgid "Existing User Roles"
--#~ msgstr "Regras para Usuários Existentes"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Aplicativos do usuário"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Nome de usuários</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modificar um registro de início de sessão de usuário."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Funções para usuários existentes"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "Este usuário poderia fazer login nesta maquina via X ou Terminal. Por "
--#~ "padrão este usuário não tem setuid, sem rede, sem sudo ou su"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Este usuário poderá iniciar uma sessão nesta máquina somente via terminal ou "
-+"acesso remoto. Por padrão este usuário não terá setuid, rede, su ou sudo."
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Regra Mínima para Usuários de Terminal"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Função mínima para usuários de terminal"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "Este usuário pode fazer login nesta maquina via X ou Terminal. Por padrão "
--#~ "este usuário não tem setuid, sem rede, sem sudo ou su"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Este usuário pode iniciar uma sessão nesta máquina via X ou terminal. Por "
-+"padrão este usuário não terá setuid, rede, sudo ou su"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Regra de usuário Mínima para X Windows"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Função mínima para usuários do X Windows"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "usuário com acesso total a rede, sem setuid se acesso a plicações, sem "
--#~ "sudo ou su"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Usuário com acesso total a rede, sem setuid de aplicativos sem transição, "
-+"sem sudo ou su."
--#~ msgid "User Role"
--#~ msgstr "Regra de Usuário"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Função de usuário"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "Usuário pode ter com acesso total a rede, sem setuid e sem acesso as "
--#~ "aplicações, sem su, ou pode usar sudo para Administração das regras de "
--#~ "Root"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Usuário com acesso total a rede, sem setuid de aplicativos sem transição, "
-+"sem su, pode usar o sudo para tarefas administrativas"
--#~ msgid "Admin User Role"
--#~ msgstr "Regras de Usuários Admin"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Função para o usuário administrador"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Usuários root</b>"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Usuários Root</b>"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Selecione o usuário root se o mesmo for utilizado para administrar a máquina "
-+"enquanto estiver conectado como root. Este usuário não será capaz de iniciar "
-+"uma sessão no sistema diretamente."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Função do usuário root"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Digite o nome do aplicativo ou a função de usuário a ser restringida"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Nome"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Digite o caminho completo para o executável a ser restringido."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Digite um nome único para o aplicativo restrito ou função de usuário."
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Executável"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Script de inicialização"
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "Selecione o Usuário Root, se este usuário for utilizado para administrar "
--#~ "a máquina ao executar como root. Este usuário estará habilitado a "
--#~ "autenticar no sistema diretamente."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Digite o caminho completo para o script de inicialização usado para iniciar "
-+"o aplicativo restrito."
--#~ msgid "Root Admin User Role"
--#~ msgstr "Regra de Usuário Admin Root"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Selecione as funções de usuário que você deseja personalizar"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Selecione um regra de usuário ou aplicação a ser confinada."
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Selecione as regras do usuário que serão convertidos para os domínios deste "
-+"aplicativo."
--#~ msgid "Name"
--#~ msgstr "Nome"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Selecione domínios adicionais aos quais esta função de usuário será "
-+"convertida"
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Insira o caminho completo para o executável a ser restrito."
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Selecione os domínios de aplicativos para os quais você gostaria de "
-+"converter esta função de usuário."
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+"Selecione as funções de usuário que serão convertidas para este domínio"
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "Insira um nome único para o papel de aplicação ou usuário."
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+"Selecione os domínios adicionais que serão administradas por esta função de "
-+"usuário"
--#~ msgid "Executable"
--#~ msgstr "Executável"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+"Selecione os domínios que você gostaria que este usuário administrasse."
--#~ msgid "Init script"
--#~ msgstr "Script de inicialização"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Selecione funções adicionais para esse usuário"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "Insira o caminho completo para script de inicialização usado para iniciar "
--#~ "a aplicação restrita."
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Digite portas de rede que a função de usuário/o aplicativo está escutando"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Selecione os papéis de usuários que você deseja customizar"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Portas TCP</b>"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "Selecione os papéis do usuário que irá acessar os domínios de aplicações"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Permite que aplicativos/função de usuário restritos sejam vinculados a "
-+"qualquer porta udp"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "Selecione o(s) domínio(s) de usuário adicionais para a transição"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Todas"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "Selecione os domínios de aplicações para os quais você gostaria que este "
--#~ "papel de usuário transitasse."
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Permitir aplicativos/função de usuário chamar o bindresvport com 0. "
-+"Vinculando às portas 600-1024"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "Selecione os papéis de usuário de acesso ao domínio"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "Selecione o(s) domínio(s) que este papel de usuário administrará"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista de portas udp, separadas por vírgulas, ou intervalos de "
-+"portas às quais este aplicativo/função de usuário está vinculado. Exemplo: "
-+"612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Portas não reservadas (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Selecione as portas"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr ""
--#~ "Selecione os domínios que você gostaria que este usuário administrasse."
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Permite que aplicativos/funções de usuários sejam vinculados a qualquer "
-+"porta udp > 1024"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Selecione papéis adicionais para esse usuário"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Portas UDP</b>"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "Insira portas de rede que o papel de usuário/aplicação está escutando"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Digite portas de rede as quais esta função de usuário/aplicativo está "
-+"conectada"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>Portas TCP</b>"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista de portas tcp, separadas por vírgulas, ou intervalos de "
-+"portas às quais este aplicativo/função de usuário está conectado. Exemplo: "
-+"612, 650-660"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "Permite que regras de aplicações/usuários restritas sejam vinculados a "
--#~ "uma porta udp qualquer"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista de portas udp, separadas por vírgulas, ou intervalos de "
-+"portas às quais este aplicativo/função de usuário está conectado. Exemplo: "
-+"612, 650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Selecione as características comuns do aplicativo"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Escreve mensages no syslog\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "O aplicativo utiliza o /tmp para criar/manipular arquivos temporários "
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Utiliza o PAM para autenticação"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Utiliza o nsswitch ou chamadas getpw*"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Utiliza o dbus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Envia mensages de auditoria"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Interage com o terminal"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "Envia e-mail"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Selecione os arquivos/diretórios que o aplicativo gerencia"
--#~ msgid "All"
--#~ msgstr "Todas"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Adicione arquivos/diretórios que o aplicativo precisa \"Gravar\". Arquivos "
-+"pid, arquivos de log, arquivos em /var/lib..."
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "Permite que aplicações/usuários chamem o bindresvport com 0. Vinculando "
--#~ "às portas 600-1024 "
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Selecione os booleanos que o aplicativo usa"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "Adiciona/Remove booleanos usados para este aplicativo/usuário restrito"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Selecione o diretório para a criação da política"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Diretório da política"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Arquivos de política gerados"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta ferramenta criará o seguinte: \n"
-+"Tipo de Execução (te), arquivo de contexto (fc), interface (if) e shell "
-+"script (sh).\n"
-+"Execute o shell script pra compilar/instalar e rotular arquivos/diretórios.\n"
-+"Use o semanage ou o useradd para mapear o nome de usuários do Linux com as "
-+"funções  de usuário.\n"
-+"Ponha a máquina no modo permissivo (setenforce 0). \n"
-+"Autentique-se como o usuário e teste esta função de usuário.\n"
-+"Use audit2allow -R para gerar funçõess adicionais para o arquivo te.\n"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Insira uma lista de portas udp, separadas por vírgulas, ou intervalos de "
--#~ "portas às quais esta aplicação/papel de usuário está vinculada. Exemplo: "
--#~ "612, 650-660"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta ferramenta criará o seguinte: \n"
-+"Tipo de execução (te), arquivo de contexto (fc), interface (if) e shell "
-+"script (sh).\n"
-+"Execute o shell script pra compilar/instalar e oitular arquivos/diretórios.\n"
-+"Ponha a máquina no modo permissivo (setenforce 0). \n"
-+"Execute/reinicie o aplicativo para gerar mensagens avc.\n"
-+"Use audit2allow -R para gerar funções adicionais para o arquivo te.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Adiciona diálogos boleanos"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Nome booleano"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Função"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Usuário_Existente"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Aplicativo"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s deve ser um diretório"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Você deve selecionar um usuário"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Selecione o arquivo executável a ser restrito."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Selecione o arquivo do script de inicialização a ser restrito."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Selecione o(s) arquivo(s) que o aplicativo restrito cria ou grava"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "Selecione o(s) diretório(s) que o aplicativo restrito controla e grava"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Selecione o diretório para a criação dos arquivos da política"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Portas não reservadas (>1024)"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"O tipo %s_t já está definido para politica em uso.\n"
-+"Você deseja continuar?"
--#~ msgid "Select Ports"
--#~ msgstr "Selecione as Portas"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Verifique o nome"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "Permite que aplicações/usuários sejam vinculados a qualquer porta udp > "
--#~ "1024"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"O módulo %s.pp já está carregado na plitica atual.\n"
-+"Você deseja continuar?"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>Portas UDP</b>"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Você deve digitar um nome"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "Insira portas de rede as quais este papel de usuário/aplicação está "
--#~ "conectado"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Você deve digitar um executável"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Insira uma lista de portas tcp, separadas por vírgulas, ou intervalos de "
--#~ "portas às quais esta aplicação/papel de usuário está conectada. Exemplo: "
--#~ "612, 650-660"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Configure o SELinux"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Insira uma lista de portas udp, separadas por vírgulas, ou intervalos de "
--#~ "portas às quais esta aplicação/papel de usuário está conectada. Exemplo: "
--#~ "612, 650-660"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "As portas devem ser números ou intervalos de números de 1 a %d "
--#~ msgid "Select common application traits"
--#~ msgstr "Selecione as características comuns da aplicação"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Você deve digitar um nome para o seu processo/usuário restrito"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "Escreve mensages no syslog\t"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Tipos USER não são executáveis permitidos"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr ""
--#~ "A aplicação utiliza o /tmp para criar/manipular arquivos temporários "
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+"Somente DAEMONS de aplicativos podem utilizar um script de inicialização"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "Utiliza o PAM para autenticação"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog deve ser um valor booleano "
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Ustilizar nsswitch ou chamadas getpw*"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "Tipos USER obtém um tipo tmp automaticamente"
--#~ msgid "Uses dbus"
--#~ msgstr "Utilize dbus"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Você deve digitar o caminho do executável para o seu processo restrito"
--#~ msgid "Sends audit messages"
--#~ msgstr "Envia mensages de auditoria"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Arquivo do tipo de restrição"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "Interaja com o terminal"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Arquivo de interface"
--#~ msgid "Sends email"
--#~ msgstr "Envia email"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Arquivo do arquivo de contextos"
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Selecione o(s) arquivo(s)/diretório(s) que a aplicação gerencia"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Script de configuração"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "Adicione arquivos/diretórios que a aplicação necessitará para gravação. "
--#~ "Arquivos Pid, Arquivos de log, Arquivos em /var/lib..."
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Porta de rede"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "Selecione os booleanos que a aplicação usa"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"Tipo de Porta\n"
-+"do SELinux"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "Adiciona/Remove booleanos usados para esta aplicação/usuário confinado"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protocolo"
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "Selecione o diretório para a criação dos arquivos da política "
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Nível\n"
-+"MLS/MCS"
--#~ msgid "Policy Directory"
--#~ msgstr "Diretório da Política"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Porta"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "O número da porta \"%s\" não é válido. 0 < NÚMERO_DA_PORTA < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Visualização em lista"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Visualização em grupo"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "Proteção do Serviço do SELinux"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Desabilitar a proteção do SELinux para o daemon acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Admin"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Permitir que todos os daemons gravem corefiles em /"
--#~ msgid "Generated Policy Files"
--#~ msgstr "Arquivos de Política Gerados"
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+"Permitir que todos os daemons tenham a habilidade de usar ttys não reservados"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Esta ferramenta gerará o seguinte:\n"
--#~ "Tipo de Execução (te), Arquivo de Contexto (fc), Interface (if) e Shell "
--#~ "script (sh).\n"
--#~ "Execute o shell script pra compilar/instalar e reetiquetar arquivos/"
--#~ "diretórios.\n"
--#~ "Use o semanage ou o useradd para mapear o login de usuários do Linux para "
--#~ "os papéis de usuário.\n"
--#~ "Agora você pode deixar a máquina no modo permissivo (setenforce 0). \n"
--#~ "Autentique com o usuário e teste este papel de usuário.\n"
--#~ "Use audit2allow -R para gerar regras adicionais para o arquivo te.\n"
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Privilégios do usuário"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Esta ferramenta gerará o seguinte:\n"
--#~ "Tipo de Execução (te), Arquivo de Contexto (fc), Interface (if) e Shell "
--#~ "script (sh).\n"
--#~ "Execute o shell script pra compilar/instalar e reetiquetar arquivos/"
--#~ "diretórios.\n"
--#~ "Agora você pode deixar a máquina no modo permissivo (setenforce 0). \n"
--#~ "Execute/reinicie a aplicação para gerar mensagens avc.\n"
--#~ "Use audit2allow -R para gerar regras adicionais para o arquivo te.\n"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários gadmin do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "Adiciona Diálogos Boleanos"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários convidados do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Boolean Name"
--#~ msgstr "Nome Booleano"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Proteção de memória"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Permitir pilha de execução do java"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Montagem"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Permitir que o mount monte qualquer arquivo"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Permitir que o mount monte qualquer diretório"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Permitir pilha de execução do mplayer"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Permitir que o ssh execute o ssh-keysign"
--#~ msgid "Role"
--#~ msgstr "Regra"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários \"staff\" do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Existing_User"
--#~ msgstr "Usuário_Existente"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários \"sysadm\" do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Application"
--#~ msgstr "Aplicação"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Permitir que contas de usuários não restritas do SELinux executem arquivos "
-+"no diretório pessoal ou no /tmp"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s deve ser um diretório"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Configuração de rede"
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permitir que pacotes não rotulados transitem pela rede"
--#~ msgid "You must select a user"
--#~ msgstr "Você deve selecionar um usuário"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários \"user\" do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Selecione o arquivo executável a ser restrito."
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Permitir que não restritos executem dyntrans para unconfined_execmem"
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Bancos de dados"
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Permitir que usuários conectem ao socket do mysql"
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Permitir que usuários conectem ao socket do postgres"
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "XServer"
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Permitir que clientes gravem na memória compartilhada do X"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "Selecione o arquivo do script de inicialização a ser restrito."
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que contas de usuários \"xguest\" do SELinux executem arquivos no "
-+"diretório pessoal ou no /tmp"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Selecione o(s) arquivo(s) que a aplicação restrita cria ou escreve"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Permitir que daemons executem com o NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Aplicativos web"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Mover usuário \"staff\" do SELinux para o Domínio do Navegador Web"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Mover usuário \"sysadm\" do SELinux para o Domínio do Navegador Web"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Mover usuário \"user\" do SELinux para o Domínio do Navegador Web"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Mover usuário \"xguest\" do SELinux para o Domínio do Navegador Web"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Permitir que Navegadores Web \"staff\" gravem nos diretórios pessoais"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Desabilitar proteção do SELinux para o amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Desabilitar proteção do SELinux para o amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon apmd"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon arpwatch"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon auditd"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon automount"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Desabilitar proteção do SELinux para o avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon bluetooth"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon canna"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cardmgr"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Desabilitar proteção do SELinux para o Cluster Server"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "Selecione o(s) diretório(s) que a aplicação restrita é proprietária e que "
--#~ "precisam de direito de escrita "
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Permitir que o cdrecord leia vários conteúdos: nfs, samba, dispositivos "
-+"removíveis, arquivos temporários e não confiáveis de usuários"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Selecione o diretório para a criação dos arquivos da política"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ciped"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon clamd"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Desabilitar proteção do SELinux para o clamscan"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Desabilitar proteção do SELinux para o clvmd"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon comsat"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon courier"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cpucontrol"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cpuspeed"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon crond"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Impressão"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Desabilitar proteção do SELinux para o servidor cupsd"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cupsd"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Desabilitar proteção do SELinux para o cupsd_lpd"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cvs"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cyrus"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dbskkd"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dbusd"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Desabilitar proteção do SELinux para o dccd"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Desabilitar proteção do SELinux para o dccifd"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Desabilitar proteção do SELinux para o dccm"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ddt"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon devfsd"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dhcpc"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dhcpd"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dictd"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Permitir que o sysadm_t inicie daemons diretamente"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Desabilitar proteção do SELinux para o Evolution"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Jogos"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Desabilitar proteção do SELinux para jogos"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Desabilitar proteção do SELinux para os navegadores web"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Desabilitar proteção do SELinux para o Thunderbird"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon distccd"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dmesg"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dnsmasq"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon dovecot"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon entropyd"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Desabilitar proteção do SELinux para o fetchmail"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon fingerd"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon freshclam"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon fsdaemon"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon gpm"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon gss"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon hal"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Compatibilidade"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Use %s_t já definido para politica em uso. \n"
--#~ "Você deseja continuar"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"Não auditar coisas que nós sabemos que estão violadas mas que não são riscos "
-+"de segurança"
--#~ msgid "Verify Name"
--#~ msgstr "Verifique o Nome"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon hostname"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon hotplug"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon howl"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon cups hplip"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Desabilitar proteção do SELinux para o httpd rotatelogs"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "Serviço HTTPD"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Desabilitar proteção do SELinux para o http suexec"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon hwclock"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon i18n"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon imazesrv"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Desabilitar proteção do SELinux para os daemons filhos do inetd"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon inetd"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon innd"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon iptables"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ircd"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon irqbalance"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon iscsi"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon jabberd"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon kadmind"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon klogd"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon krb5kdc"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Desabilitar proteção do SELinux para os daemons ktalk"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon kudzu"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon locate"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon lpd"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon lrrd"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon lvm"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Desabilitar proteção do SELinux para o daemon mailman"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Modulo %s.pp carregado na plitica atual.\n"
--#~ "Você deseja continuar ?"
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+"Permitir que o evolution e o thunderbird leiam os arquivos dos usuários"
--#~ msgid "You must enter a name"
--#~ msgstr "Você deve inserir um nome"
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon mdadm"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon monopd"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Permitir que o navegador mozilla leia os arquivos dos usuários"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon mrtg"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon mysqld"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nagios"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Serviço de nomes"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon named"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nessusd"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Desabilitar proteção do SELinux para o NetworkManager"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nfsd "
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nmbd"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nrpe"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nscd"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon nsd"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ntpd"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Desabilitar proteção do SELinux para o oddjob"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Desabilitar proteção do SELinux para o oddjob_mkhomedir"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon openvpn"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon pam"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Desabilitar proteção do SELinux para o pegasus"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon perdition"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon portmap"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon portslave"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Desabilitar proteção do SELinux para o postfix"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon postgresql"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Permitir que o pppd seja executado para um usuário regular"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Desabilitar proteção do SELinux para o pptp"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon prelink"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon privoxy"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ptal"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon pxe"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Desabilitar proteção do SELinux para o pyzord"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon quota"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon radiusd"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon radvd"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Desabilitar proteção do SELinux para o rdisc"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Desabilitar proteção do SELinux para o readahead"
--#~ msgid "You must enter a executable"
--#~ msgstr "Você deve inserir um executável"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Permitir que programas leiam arquivos em localizações não padrões (default_t)"
--#~ msgid "Configue SELinux"
--#~ msgstr "Configure o SELinux"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Desabilitar proteção do SELinux para o restorecond"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon rhgb"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Desabilitar proteção do SELinux para o ricci"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Desabilitar proteção do SELinux para o ricci_modclusterd"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon rlogind"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon rpcd"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Desabilitar proteção do SELinux para o rshd"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon rsync"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "As portas devem ser números ou intervalos de números de 1 a %d"
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+"Permitir que o ssh seja executado a partir do inetd ao invés de ser "
-+"executado como um daemon"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "Você deve inserir um nome para o seu processo restrito"
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Permitir que o Samba compartilhe diretórios nfs"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "Servidor de autenticação SASL"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Permitir que o servidor de autenticação sasl leia o /etc/shadow"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Tipos USER não são executáveis permitidos"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Permitir que o servidor X-Windows mapeie uma região de memória como "
-+"executável e gravável"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr ""
--#~ "Somente DAEMONS de aplicações podem utilizar um script de inicialização"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon saslauthd"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon scannerdaemon"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Não permitir que a transição para sysadm_t, sudo e su tenha efeito"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Não permitir que qualquer processo carregue módulos do kernel"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog deve ser um valor booleano"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+"Não permitir que qualquer processo modifique a política do SELinux para o "
-+"kernel"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Tipos USER obtém um tipo tmp automaticamente"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon sendmail"
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Desabilitar proteção do SELinux para o setrans"
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon setroublesoot"
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon slapd"
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon slrnpull"
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon smbd"
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon snmpd"
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon snort"
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon soundd"
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon sound"
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Proteção contra spam "
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon spamd"
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Permitir que o spamd acesse os diretórios pessoais"
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Permitir que o daemon do Spam Assasin tenha acesso a rede"
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon speedmgmt"
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Permitir que o daemon do squid se conecte a rede"
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon squid"
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ssh"
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Permitir logins do ssh como sysadm_r:sysadm_t"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "Você deve inserir o caminho do executável para o seu processo restrito"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"Permitir que usuários staff_r pesquisem o diretório pessoal do sysadm e "
-+"leiam os arquivos (como o ~/.bashrc)"
--#~ msgid "Type Enforcement file"
--#~ msgstr "Arquivo do tipo de reforço"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Túnel SSL Universal"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon stunnel"
--#~ msgid "Interface file"
--#~ msgstr "Arquivo de interface"
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+"Permitir que o daemon stunnel seja executado como autônomo, fora do xinetd"
--#~ msgid "File Contexts file"
--#~ msgstr "Arquivo do Arquivo de Contextos"
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon swat"
--#~ msgid "Setup Script"
--#~ msgstr "Configurar Script"
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon sxid"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Tipo de Porta\n"
--#~ "do SELinux"
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon syslogd"
--#~ msgid "Protocol"
--#~ msgstr "Protocolo"
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Desabilitar proteção do SELinux para os trabalhos cron do sistema"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Nível\n"
--#~ "MLS/MCS"
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon tcp"
--#~ msgid "Port"
--#~ msgstr "Porta"
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon telnet"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "O número da porta \"%s\" não é válido. 0 < NÚMERO_DA_PORTA < 65536 "
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon tftpd"
--#~ msgid "List View"
--#~ msgstr "Visualização em Lista"
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon transproxy"
--#~ msgid "Group View"
--#~ msgstr "Visualização de Grupo"
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon udev"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Proteção do Serviço do SELinux"
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon uml"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon acct"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"Permitir que o xinetd seja executado de forma não restrita, incluindo "
-+"qualquer serviços que ele inicie que não tenham uma transição de domínio "
-+"explicitamente definida"
--#~ msgid "Admin"
--#~ msgstr "Admin"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"Permitir que scripts rc sejam executados de forma não restrita, incluindo "
-+"qualquer daemons iniciados por um script rc que não tenham uma transição de "
-+"domínio explicitamente definida"
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Permitir que o rpm seja executado de forma não restrita"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Permitir que todos os daemons gravem corefiles em /"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"Permitir que utilitários privilegiados como o hotplug e o insmod sejam "
-+"executados de maneira não restrita"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr ""
--#~ "Permitir que todos os daemons tenham a habilidade de usar ttys não "
--#~ "alocados"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon updfstab"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon uptimed"
--#~ msgid "User Privs"
--#~ msgstr "Privilégios do Usuário"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"Permitir que o user_r acesse o sysadm_r via su, sudo ou userhelper. Caso "
-+"contrário, somente o staff_r poderá fazer isso"
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários gadmin do SELinux executem arquivos no "
--#~ "diretório pessoal ou no /tmp"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Permitir que os usuários executem o comando mount"
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários convidados do SELinux executem arquivos "
--#~ "no diretório pessoal ou no /tmp"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"Permitir que usuários regulares tenham acesso direto ao mouse (somente "
-+"permite o servidor X)"
--#~ msgid "Memory Protection"
--#~ msgstr "Proteção de Memória"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Permitir que usuários executem o comando dmesg"
--#~ msgid "Allow java executable stack"
--#~ msgstr "Permitir pilha de execução do java"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"Permitir que os usuários controlem as interfaces de rede (também necessita o "
-+"USERCTL=true)"
--#~ msgid "Mount"
--#~ msgstr "Montagem"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Permitir que os usuários normais executem o ping"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Permitir que o mount monte qualquer arquivo"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+"Permitir que os usuários leiam/gravem noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Permitir que o mount monte qualquer diretório"
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Permitir que os usuários leiam e gravem em dispositivos usb"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Permitir pilha de execução do mplayer"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"Permitir que os usuários executem servidores TCP (vinculem portas e aceitem "
-+"conexões do mesmo domínio e de usuários externos). Desabilitar esta opção "
-+"força o modo passivo do FTP e pode modificar outros protocolos"
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Permitir que os usuários vejam as estatísticas de ttyfiles"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon uucpd"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon vmware"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon watchdog"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon winbind"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon xdm"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Permitir que o xdm inicie sessões como sysadm_r:sysadm_t"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon xen"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "Permitir que o xen leia/grave em dispositivos de discos físicos"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon xfs"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Desabilitar proteção do SELinux para o xen control"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ypbind"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Desabilitar proteção do SELinux para o NIS Password Daemon"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Desabilitar proteção do SELinux para o daemon ypserv"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Desabilitar proteção do SELinux para o NIS Transfer Daemon"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Permitir que o usuário webadm do SELinux gerencie diretórios pessoais de "
-+"usuários sem privilégios"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Permitir que o ssh execute o ssh-keysign"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Permitir que o usuário webadm do SELinux leia diretórios pessoais de "
-+"usuários sem privilégios"
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários \"staff\" do SELinux executem arquivos no "
--#~ "diretório pessoal ou no /tmp"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Você está seguro de que deseja excluir %s \"%s\"?"
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários \"sysadm\" do SELinux executem arquivos "
--#~ "no diretório pessoal ou no /tmp"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Excluir %s"
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários não restritas do SELinux executem "
--#~ "arquivos no diretório pessoal ou no /tmp"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Adicionar %s"
--#~ msgid "Network Configuration"
--#~ msgstr "Configuração de Rede"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Modificar %s"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Permitir que pacotes não etiquetados transitem pela rede"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Permissivo"
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários \"user\" do SELinux executem arquivos no "
--#~ "diretório pessoal ou no /tmp"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Reforçado"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr ""
--#~ "Permitir que não restritos executem dyntrans para unconfined_execmem"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Desabilitado"
--#~ msgid "Databases"
--#~ msgstr "Bancos de Dados"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Status"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Permitir que usuários conectem ao soquete do mysql"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"A mudança de política fará com que todo o sistema de arquivos seja rotulado "
-+"na próxima inicialização. Isto pode levar muito tempo dependendo do tamanho "
-+"do sistema de arquivos. Você deseja continuar?"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Permitir que usuários conectem ao soquete do postgres"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"Desabilitar o SELinux requer a reinicialização do sistema. Isso não é "
-+"recomendado. Se depois você optar por habilitar o SELinux novamente, o "
-+"sistema necessitará de ser rotulado. Se você somente deseja ver se o SELinux "
-+"está causando algum problema no seu sistema, altere-o para o modo "
-+"permissivo, o qual somente irá registrar erros e não forçará a política do "
-+"SELinux. O modo permissivo não requer a reinicialização do sistema. Você "
-+"deseja continuar?"
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Habilitar o SELinux fará com que todo o sistema de arquivos seja rotulado na "
-+"próxima inicialização. Isto pode levar muito tempo dependendo do tamanho do "
-+"sistema de arquivos. Você deseja continuar?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Permitir que clientes escrevam na memória compartilhada do X"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c) 2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir que contas de usuários \"xguest\" do SELinux executem arquivos "
--#~ "no diretório pessoal ou no /tmp"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Adicionar mapeamento de sessões do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Adicionar portas de rede do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "Tipo SELinux"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"Nível"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Permitir que daemons executem com o NIS"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Especificação do arquivo"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Tipo do arquivo"
--#~ msgid "Web Applications"
--#~ msgstr "Aplicações Web"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"todos os arquivos\n"
-+"arquivos regulares\n"
-+"diretórios\n"
-+"dispositivos de caractere\n"
-+"dispositivos de bloco\n"
-+"socket\n"
-+"link simbólico\n"
-+"pipe com nome\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Adicionar usuário do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "Administração do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Adicionar"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Propriedades"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Excluir"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Selecionar objeto de gerenciamento"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Selecione:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Modo reforçado padrão do sistema"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "Mover usuário \"staff\" do SELinux para o Domínio do Navegador Web"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Desabilitado\n"
-+"Permissivo\n"
-+"Reforçado\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Modo reforçado atual"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Tipo de política padrão do sistema: "
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "Mover usuário \"sysadm\" do SELinux para o Domínio do Navegador Web"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Selecione se você quiser rotular todo o sistema de arquivos na próxima "
-+"inicialização. O processo de rotular pode levar bastante tempo, dependendo "
-+"do tamanho do seu sistema de arquivos. Se você estiver mudando os tipos das "
-+"políticas ou alterando de desabilitado para reforçado, a rotulação é "
-+"requerida."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Rotular na próxima inicialização."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "rótulo37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Reverter a configuração booleana para o valor padrão do sistema"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Alternar entre Personalizado e Tudo booleano"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Executar assistente para bloquei booleano"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Bloqueio..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filtro"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "rótulo50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Adicionar contexto do arquivo"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Modificar contexto do arquivo"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Excluir contexto do arquivo"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Alternar entre todos e contexto de arquivo personalizado"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "rótulo38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Adicionar mapeamento de usuário do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Modificar mapeamento do usuário do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Excluir mapeamento do usuário do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "rótulo39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Adicionar usuário"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Modificar usuário"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Excluir usuário"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "rótulo41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Adicionar Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modificar Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Remover Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "rótulo40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Adicionar porta de rede"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Editar porta de rede"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Excluir porta de rede"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Alternar entre Personalizado e Todas as portas"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "rótulo42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Gerar novo módulo de política"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Carregar módulo de política"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Remover módulo carregável de política"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "Mover usuário \"user\" do SELinux para o Domínio do Navegador Web"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"Habilita/Desabilita regras adicionais de auditoria, que normalmente não são "
-+"relatadas nos arquivos de log."
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "Mover usuário \"xguest\" do SELinux para o Domínio do Navegador Web"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "rótulo44"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "Permitir que Navegadores Web \"staff\" escrevam nos diretórios pessoais"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Alterar o modo do processo para permissivo."
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Desabilitar proteção do SELinux para o amanda"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Alterar o modo do processo para reforçado"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Desabilitar proteção do SELinux para o amavis"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Domínio do processo"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon apmd"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon arpwatch"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon auditd"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon automount"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Desabilitar proteção do SELinux para o avahi"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon bluetooth"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon canna"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cardmgr"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Desabilitar proteção do SELinux para o Cluster Server"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "Permitir que o cdrecord leia vários conteúdos: nfs, samba, dispositivos "
--#~ "removíveis, arquivos temporários e não confiáveis dos usuários"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ciped"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon clamd"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Desabilitar proteção do SELinux para o clamscan"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Desabilitar proteção do SELinux para o clvmd"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon comsat"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon courier"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cpucontrol"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cpuspeed"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon crond"
--
--#~ msgid "Printing"
--#~ msgstr "Impressão"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Desabilitar proteção do SELinux para o servidor cupsd"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cupsd"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Desabilitar proteção do SELinux para o cupsd_lpd"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cvs"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cyrus"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dbskkd"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dbusd"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Desabilitar proteção do SELinux para o dccd"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Desabilitar proteção do SELinux para o dccifd"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Desabilitar proteção do SELinux para o dccm"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ddt"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon devfsd"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dhcpc"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dhcpd"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dictd"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Permitir que o sysadm_t inicie daemons diretamente"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Desabilitar proteção do SELinux para o Evolution"
--
--#~ msgid "Games"
--#~ msgstr "Jogos"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Desabilitar proteção do SELinux para jogos"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Desabilitar proteção do SELinux para os navegadores web"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Desabilitar proteção do SELinux para o Thunderbird"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon distccd"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dmesg"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dnsmasq"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon dovecot"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon entropyd"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Desabilitar proteção do SELinux para o fetchmail"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon fingerd"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon freshclam"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon fsdaemon"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon gpm"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon gss"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon hal"
--
--#~ msgid "Compatibility"
--#~ msgstr "Compatibilidade"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Não auditar coisas que nós sabemos que estão violadas mas que não são "
--#~ "riscos de segurança"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon hostname"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon hotplug"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon howl"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon cups hplip"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Desabilitar proteção do SELinux para o httpd rotatelogs"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "Serviço HTTPD"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Desabilitar proteção do SELinux para o http suexec"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon hwclock"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon i18n"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon imazesrv"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Desabilitar proteção do SELinux para os daemons filhos do inetd"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon inetd"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon innd"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon iptables"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ircd"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon irqbalance"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon iscsi"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon jabberd"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon kadmind"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon klogd"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon krb5kdc"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Desabilitar proteção do SELinux para os daemons ktalk"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon kudzu"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon locate"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon lpd"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon lrrd"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon lvm"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon mailman"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr ""
--#~ "Permitir que o evolution e o thunderbird leiam os arquivos dos usuários"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon mdadm"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon monopd"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Permitir que o navegador mozilla leia os arquivos dos usuários"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon mrtg"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon mysqld"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nagios"
--
--#~ msgid "Name Service"
--#~ msgstr "Serviço de Nomes"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon named"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nessusd"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Desabilitar proteção do SELinux para o NetworkManager"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nfsd "
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nmbd"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nrpe"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nscd"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon nsd"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ntpd"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Desabilitar proteção do SELinux para o oddjob"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Desabilitar proteção do SELinux para o oddjob_mkhomedir"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon openvpn"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon pam"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Desabilitar proteção do SELinux para o pegasus"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon perdition"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon portmap"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon portslave"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Desabilitar proteção do SELinux para o postfix"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon postgresql"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Permitir que o pppd seja executado para um usuário regular"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Desabilitar proteção do SELinux para o pptp"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon prelink"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon privoxy"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ptal"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon pxe"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Desabilitar proteção do SELinux para o pyzord"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon quota"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon radiusd"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon radvd"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Desabilitar proteção do SELinux para o rdisc"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Desabilitar proteção do SELinux para o readahead"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Permitir que programas leiam arquivos em localizações não padrões "
--#~ "(default_t)"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Desabilitar proteção do SELinux para o restorecond"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon rhgb"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Desabilitar proteção do SELinux para o ricci"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Desabilitar proteção do SELinux para o ricci_modclusterd"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon rlogind"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon rpcd"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Desabilitar proteção do SELinux para o rshd"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon rsync"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr ""
--#~ "Permitir que o ssh seja executado a partir do inetd ao invés de ser "
--#~ "executado como um daemon"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Permitir que o Samba compartilhe diretórios nfs"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "Servidor de autenticação SASL"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Permitir que o servidor de autenticação sasl leia o /etc/shadow"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Permitir que o servidor X-Windows mapeie uma região de memória como "
--#~ "executável e gravável"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon saslauthd"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon scannerdaemon"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Não permitir que a transição para sysadm_t, sudo e su tenha efeito"
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Não permitir que qualquer processo carregue módulos do kernel"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Não permitir que qualquer processo modifique a política do SELinux para o "
--#~ "kernel"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon sendmail"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Desabilitar proteção do SELinux para o setrans"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon setroublesoot"
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon slapd"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon slrnpull"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon smbd"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon snmpd"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon snort"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon soundd"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon sound"
--
--#~ msgid "Spam Protection"
--#~ msgstr "Proteção contra spam "
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon spamd"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Permitir que o spamd acesse os diretórios pessoais"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Permitir que o daemon do Spam Assasin tenha acesso a  rede"
--
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon speedmgmt"
--
--#~ msgid "Squid"
--#~ msgstr "Squid"
--
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Permitir que o daemon do squid se conecte a rede"
--
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon squid"
--
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ssh"
--
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Permitir logins do ssh como sysadm_r:sysadm_t"
--
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Permitir que usuários staff_r pesquisem o diretório pessoal do sysadm e "
--#~ "leiam os arquivos (como o ~/.bashrc)"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Túnel SSL Universal"
--
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon stunnel"
--
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Permitir que o daemon stunnel seja executado como autônomo, fora do xinetd"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon swat"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon sxid"
--
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon syslogd"
--
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Desabilitar proteção do SELinux para os trabalhos cron do sistema"
--
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon tcp"
--
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon telnet"
--
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon tftpd"
--
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon transproxy"
--
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon udev"
--
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon uml"
--
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Permitir que o xinetd seja executado de forma não restrita, incluindo "
--#~ "quaisquer serviços que ele inicie que não tenham uma transição de domínio "
--#~ "explicitamente definida"
--
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Permitir que scripts rc sejam executados de forma não restrita, incluindo "
--#~ "quaisquer daemons iniciados por um script rc que não tenham uma transição "
--#~ "de domínio explicitamente definida"
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Permitir que o rpm seja executado de forma não restrita"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Permitir que utilitários privilegiados como o hotplug e o insmod sejam "
--#~ "executados de maneira não restrita"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon updfstab"
--
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon uptimed"
--
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Permitir que o user_r alcance o sysadm_r via su, sudo ou userhelper. Caso "
--#~ "contrário, somente o staff_r poderá fazer isso"
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Permitir que os usuários executem o comando mount"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Permitir que usuários regulares tenham acesso direto ao mouse (somente "
--#~ "permite o servidor X)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Permitir que usuários executem o comando dmesg"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Permitir que os usuários controlem as interfaces de rede (também "
--#~ "necessita do USERCTL=true)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Permitir que os usuários normais executem o ping"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "Permitir que os usuários leiam/escrevam noextattrfile (FAT, CDROM, FLOPPY)"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Permitir que os usuários leiam e escrevam em dispositivos usb"
--
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Permitir que os usuários executem servidores TCP (vinculem portas e "
--#~ "aceitem conexões do mesmo domínio e de usuários externos). Desabilitar "
--#~ "esta opção força o modo passivo do FTP e pode modificar outros protocolos"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Permitir que os usuários vejam as estatísticas de ttyfiles"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon uucpd"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon vmware"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon watchdog"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon winbind"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon xdm"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Permitir que o xdm realize logins como sysadm_r:sysadm_t"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon xen"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Permitir que o xen leia/escreva em dispositivos de discos físicos"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon xfs"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Desabilitar proteção do SELinux para o xen control"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ypbind"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o NIS Password Daemon"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ypserv"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o NIS Transfer Daemon"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Permitir que o usuário webadm do SELinux gerencie diretórios pessoais de "
--#~ "usuários sem privilégios"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Permitir que o usuário webadm do SELinux leia diretórios pessoais de "
--#~ "usuários sem privilégios"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Você está certo de que deseja remover %s \"%s\"?"
--
--#~ msgid "Delete %s"
--#~ msgstr "Remover %s"
--
--#~ msgid "Add %s"
--#~ msgstr "Adicionar %s"
--
--#~ msgid "Modify %s"
--#~ msgstr "Modificar %s"
--
--#~ msgid "Permissive"
--#~ msgstr "Permissivo"
--
--#~ msgid "Enforcing"
--#~ msgstr "Reforçado"
--
--#~ msgid "Disabled"
--#~ msgstr "Desabilitado"
--
--#~ msgid "Status"
--#~ msgstr "Status"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "A mudança de política fará com que todo o sistema de arquivos seja "
--#~ "reetiquetado na próxima inicialização. Isto pode levar muito tempo "
--#~ "dependendo do tamanho do sistema de arquivos. Você deseja continuar?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "Desabilitar o SELinux requer a reinicialização do sistema. Isso não é "
--#~ "recomendado. Se depois você optar por habilitar o SELinux novamente, o "
--#~ "sistema necessitará de ser reetiquetado. Se você somente deseja ver se o "
--#~ "SELinux está causando algum problema para o seu sistema, altere-o para o "
--#~ "modo permissivo, o qual somente irá registrar erros e não forçará a "
--#~ "política do SELinux. O modo permissivo não requer a reinicialização do "
--#~ "sistema. Você deseja continuar?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Habilitar o SELinux fará com que todo o sistema de arquivos seja "
--#~ "reetiquetado na próxima inicialização. Isto pode levar muito tempo "
--#~ "dependendo do tamanho do sistema de arquivos. Você deseja continuar?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c) 2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Adicionar Mapeamento de Login do SELinux"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Adicionar Portas de Rede do SELinux"
--
--#~ msgid "SELinux Type"
--#~ msgstr "Tipo SELinux"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Nível MLS/MCS\n"
--#~ "do SELinux"
--
--#~ msgid "File Specification"
--#~ msgstr "Especificação do Arquivo"
--
--#~ msgid "File Type"
--#~ msgstr "Tipo do Arquivo"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "todos os arquivos\n"
--#~ "arquivos regulares\n"
--#~ "diretórios\n"
--#~ "dispositivos de caractere\n"
--#~ "dispositivos de bloco\n"
--#~ "soquetes\n"
--#~ "ligações simbólicas\n"
--#~ "pipe do named\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "Adicionar Usuário do SELinux"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "Administração do SELinux"
--
--#~ msgid "Add"
--#~ msgstr "Adicionar"
--
--#~ msgid "_Properties"
--#~ msgstr "_Propriedades"
--
--#~ msgid "_Delete"
--#~ msgstr "_Remover"
--
--#~ msgid "Select Management Object"
--#~ msgstr "Selecionar Objeto de Gerenciamento"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Selecione:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Modo Reforçado Padrão do Sistema"
--
--#~ msgid ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
--#~ msgstr ""
--#~ "Desabilitado\n"
--#~ "Permissivo\n"
--#~ "Reforçado\n"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Modo Reforçado Atual"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Tipo de Política Padrão do Sistema:"
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Selecione se você quiser reetiquetar todo o sistema de arquivos na "
--#~ "próxima inicialização. A reetiquetagem pode levar bastante tempo, "
--#~ "dependendo do tamanho do seu sistema de arquivos. Se você estiver mudando "
--#~ "os tipos das políticas ou alterando de desabilitado para reforçado, a "
--#~ "reetiquetagem é requerida."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Reetiquetar na próxima inicialização."
--
--#~ msgid "label37"
--#~ msgstr "label37"
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Reverter as configurações boleanas para o valor padrão do sistema"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Alternar entre as customizações e todas as Boleanas "
--
--#~ msgid "Filter"
--#~ msgstr "Filtro"
--
--#~ msgid "label50"
--#~ msgstr "label50"
--
--#~ msgid "Add File Context"
--#~ msgstr "Adicionar Contexto do Arquivo"
--
--#~ msgid "Modify File Context"
--#~ msgstr "Modificar Contexto do Arquivo"
--
--#~ msgid "Delete File Context"
--#~ msgstr "Remover Contexto do Arquivo"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Alternar entre todas as customizações do contexto do arquivo"
--
--#~ msgid "label38"
--#~ msgstr "label38"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Adicionar Mapeamento de Usuário do SELinux"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Modificar Mapeamento do Usuário do SELinux"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Remover Mapeamento do Usuário do SELinux"
--
--#~ msgid "label39"
--#~ msgstr "label39"
--
--#~ msgid "Add Translation"
--#~ msgstr "Adicionar Tradução"
--
--#~ msgid "Modify Translation"
--#~ msgstr "Modificar Tradução"
--
--#~ msgid "Delete Translation"
--#~ msgstr "Remover Tradução"
--
--#~ msgid "label41"
--#~ msgstr "label41"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "Modificar Usuário do SELinux"
--
--#~ msgid "label40"
--#~ msgstr "label40"
--
--#~ msgid "Add Network Port"
--#~ msgstr "Adicionar Porta de Rede"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "Editar Porta de Rede"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "Remover Porta de Rede"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Alternar entre as customizações de todas as Portas "
--
--#~ msgid "label42"
--#~ msgstr "label42"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "Gerar novo módulo de política"
--
--#~ msgid "Load policy module"
--#~ msgstr "Carregar módulo de política"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Remover módulo carregável de política"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "Habilita/Desabilita regras adicionais do audit, que normalmente não são "
--#~ "reportadas nos arquivos de log."
--
--#~ msgid "label44"
--#~ msgstr "label44"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "O usuário \"%s\" do SELinux é requerido"
- #~ msgid "Sensitvity Level"
--#~ msgstr "Nível de Sensibilidade"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "O usuário \"%s\" do SELinux é requerido"
--
--#~ msgid "Requires value"
--#~ msgstr "Requer valor"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Prefixo inválido %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "Permite que aplicações/usuários sejam vinculados a qualquer porta tcp > "
--#~ "1024 "
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "Permite que regras de aplicações/usuários restritas sejam vinculados a "
--#~ "uma porta tcp qualquer"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Insira uma lista de portas tcp, separadas por vírgulas ou especifique um "
--#~ "intervalo, nas quais a regra de aplicação/usuário está vinculada. "
--#~ "Examplo: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "Assistente de Criação de Políticas do SELinux"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Portas não reservadas (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "Use este botão de seleção se a sua aplicação chama o bindresvport com 0."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Reforçado\n"
--#~ "Permissivo\n"
--#~ "Desabilitado\n"
--
--#~ msgid "label25"
--#~ msgstr "label25"
--
--#~ msgid "label26"
--#~ msgstr "label26"
--
--#~ msgid "label28"
--#~ msgstr "label28"
--
--#~ msgid "label30"
--#~ msgstr "label30"
--
--#~ msgid "label31"
--#~ msgstr "label31"
--
--#~ msgid "label32"
--#~ msgstr "label32"
--
--#~ msgid "label33"
--#~ msgstr "label33"
--
--#~ msgid "label34"
--#~ msgstr "label34"
--
--#~ msgid "label35"
--#~ msgstr "label35"
--
--#, fuzzy
--#~ msgid "label51"
--#~ msgstr "label25"
--
--#~ msgid "value"
--#~ msgstr "valor"
--
--#~ msgid "You must be root to run %s."
--#~ msgstr "Você deve ser root para executar %s."
--
--#~ msgid "Other"
--#~ msgstr "Outros"
--
--#~ msgid ""
--#~ "Select XWindows login user, if this is a user who will login to a machine "
--#~ "via X"
--#~ msgstr ""
--#~ "Selecione o usuário para login no XWindows, se este é um usuário que irá "
--#~ "autenticar em uma máquina via X"
--
--#~ msgid "XWindows Login User"
--#~ msgstr "Usuário para Login do XWindows"
--
--#~ msgid ""
--#~ "Select Terminal Login User, if this user will login to a machine only via "
--#~ "a terminal or remote login"
--#~ msgstr ""
--#~ "Selecione o Usuário para Login no Terminal, se este usuário irá "
--#~ "autenticar em um máquina apenas via terminal ou login remoto"
--
--#~ msgid "Terminal Login User"
--#~ msgstr "Usuário para Login no Terminal"
--
--#~ msgid "Name of application to be confined"
--#~ msgstr "Nome da aplicação a ser restrita"
--
--#~ msgid "Incoming Network Port Connections"
--#~ msgstr "Conexões de Portas de Entrada da Rede"
--
--#~ msgid "Outgoing Network Port Connections"
--#~ msgstr "Conexões de Portas de Saída da Rede"
--
--#~ msgid ""
--#~ "Application uses nsswitch or translates UID's (daemons that run as non "
--#~ "root)"
--#~ msgstr ""
--#~ "A aplicação utiliza o nsswitch ou traduz UID's (daemons que não são "
--#~ "executados como root)"
--
--#~ msgid "Files and Directories"
--#~ msgstr "Arquivos e Diretórios"
--
--#~ msgid "Generate policy in this directory"
--#~ msgstr "Gerar política neste diretório"
--
--#~ msgid "Login"
--#~ msgstr "Login"
--
--#~ msgid "Allow direct login to the console device. Requiered for System 390"
--#~ msgstr ""
--#~ "Permitir login direto ao dispositivo do console. Necessário para o System "
--#~ "390"
--
--#~ msgid "Allow cvs daemon to read shadow"
--#~ msgstr "Permitir que o daemon do cvs leia shadow"
--
--#~ msgid ""
--#~ "Allow unconfined executables to make their heap memory executable.  Doing "
--#~ "this is a really bad idea. Probably indicates a badly coded executable, "
--#~ "but could indicate an attack. This executable should be reported in "
--#~ "bugzilla"
--#~ msgstr ""
--#~ "Permitir que executáveis não restritos possam fazer com que a sua memória "
--#~ "heap seja executável. Fazer isso é uma má idéia. Provavelmente indica um "
--#~ "código ruim executável, mas pode indicar um ataque. Este executável deve "
--#~ "ser reportado ao bugzilla"
--
--#~ msgid ""
--#~ "Allow unconfined executables to map a memory region as both executable "
--#~ "and writable, this is dangerous and the executable should be reported in "
--#~ "bugzilla"
--#~ msgstr ""
--#~ "Permitir que executáveis não restritos mapeiem uma região da memória como "
--#~ "executável e gravável, isto é perigoso e o executável deve ser reportado "
--#~ "ao bugzilla"
--
--#~ msgid ""
--#~ "Allow all unconfined executables to use libraries requiring text "
--#~ "relocation that are not labeled textrel_shlib_t"
--#~ msgstr ""
--#~ "Permitir que executáveis não restritos possam utilizar bibliotecas que "
--#~ "requerem realocação de texto que não estão etiquetadas como "
--#~ "textrel_shlib_t"
--
--#~ msgid ""
--#~ "Allow unconfined executables to make their stack executable.  This should "
--#~ "never, ever be neessary. Probably indicates a badly coded executable, but "
--#~ "could indicate an attack. This executable should be reported in bugzilla"
--#~ msgstr ""
--#~ "Permitir que executáveis não restritos tornem a sua pilha executável. "
--#~ "Isso nunca deveria ser necessário. Provavelmente indica um código ruim "
--#~ "executável, mas pode indicar um ataque. Este executável deve ser "
--#~ "reportado ao bugzilla"
--
--#~ msgid "FTP"
--#~ msgstr "FTP"
--
--#~ msgid "Allow ftpd to full access to the system"
--#~ msgstr "Permitir que o ftpd tenha acesso completo ao sistema"
--
--#~ msgid ""
--#~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
--#~ msgstr ""
--#~ "Permitir que ftpd faça o upload de arquivos para diretórios etiquetados "
--#~ "como public_content_rw_t"
--
--#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
--#~ msgstr ""
--#~ "Permitir que servidores ftp utilizem o cifs usado por serviços de "
--#~ "transferência de arquivos públicos"
--
--#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
--#~ msgstr ""
--#~ "Permitir que servidores ftp utilizem o nfs usado por serviços de "
--#~ "transferência de arquivos públicos"
--
--#~ msgid "Allow gpg executable stack"
--#~ msgstr "Permitir pilha de execução do gpg"
--
--#~ msgid "Allow gssd to read temp directory"
--#~ msgstr "Permitir que o gssd leia o diretório temporário"
--
--#~ msgid ""
--#~ "Allow httpd daemon to write files in directories labeled "
--#~ "public_content_rw_t"
--#~ msgstr ""
--#~ "Permitir que o daemon httpd grave arquivos nos diretórios etiquetados "
--#~ "como public_content_rw_t"
--
--#~ msgid "Allow Apache to communicate with avahi service"
--#~ msgstr "Permitir que o Apache comunique com o serviço do avahi"
--
--#~ msgid "Allow Apache to use mod_auth_pam"
--#~ msgstr "Permitir que o Apache use o mod_auth_pam"
--
--#~ msgid ""
--#~ "Allow httpd scripts to write files in directories labeled "
--#~ "public_content_rw_t"
--#~ msgstr ""
--#~ "Permitir que os scripts do httpd gravem arquivos nos diretórios "
--#~ "etiquetados como public_content_rw_t"
--
--#~ msgid "Allow daemons to use kerberos files"
--#~ msgstr "Permitir que os daemons utilizem arquivos do kerberos"
--
--#~ msgid ""
--#~ "Allow nfs servers to modify public files used for public file transfer "
--#~ "services"
--#~ msgstr ""
--#~ "Permitir que servidores nfs modifiquem arquivos públicos utilizados por "
--#~ "serviços de transferência de arquivos públicos"
--
--#~ msgid "Polyinstatiation"
--#~ msgstr "Poli-instanciação"
--
--#~ msgid "Enable polyinstantiated directory support"
--#~ msgstr "Habilitar suporte a diretórios poli-instanciados"
--
--#~ msgid "Allow sysadm_t to debug or ptrace applications"
--#~ msgstr "Permitir que o sysadm_t faça a depuração ou ptrace de aplicações"
--
--#~ msgid ""
--#~ "Allow rsync to write files in directories labeled public_content_rw_t"
--#~ msgstr ""
--#~ "Permitir que o rsync grave arquivos nos diretórios etiquetados como "
--#~ "public_content_rw_t"
--
--#~ msgid ""
--#~ "Allow Samba to write files in directories labeled public_content_rw_t"
--#~ msgstr ""
--#~ "Permitir que o Samba grave arquivos nos diretórios etiquetados como "
--#~ "public_content_rw_t"
--
--#~ msgid "Zebra"
--#~ msgstr "Zebra"
--
--#~ msgid "Allow zebra daemon to write it configuration files"
--#~ msgstr "Permitir que o daemon zebra grave arquivos de configuração"
--
--#~ msgid ""
--#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
--#~ msgstr ""
--#~ "Permitir que trabalhos de sistema do cron reetiquetem os sistemas de "
--#~ "arquivos para restaurar contextos de arquivos"
--
--#~ msgid "Enable extra rules in the cron domain to support fcron"
--#~ msgstr "Habilitar regras extras no domínio do cron para suportar o fcron"
--
--#~ msgid "Disable SELinux protection for ftpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon ftpd"
--
--#~ msgid "Allow ftpd to run directly without inetd"
--#~ msgstr "Permitir que o ftpd seja executado diretamente sem o inetd"
--
--#~ msgid "Allow ftp to read/write files in the user home directories"
--#~ msgstr ""
--#~ "Permitir que o ftp leia/grave arquivos no diretório pessoal dos usuários"
--
--#~ msgid ""
--#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
--#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
--#~ "urandom"
--#~ msgstr ""
--#~ "Isto deve ser habilitado quando todos os programas são compilados com a "
--#~ "proteção de quebra de pilha ProPolice/SSP. Todos os domínios estarão "
--#~ "aptos a ler de /dev/urandom"
--
--#~ msgid "Allow HTTPD to support built-in scripting"
--#~ msgstr "Permitir que o HTTPD suporte scripts embutidos"
--
--#~ msgid "Allow HTTPD to send mail"
--#~ msgstr "Permitir que o HTTPD envie e-mail"
--
--#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
--#~ msgstr ""
--#~ "Permitir que scripts e módulos do HTTPD conectem a bancos de dados "
--#~ "através da rede"
--
--#~ msgid "Allow HTTPD scripts and modules to connect to the network"
--#~ msgstr "Permitir que scripts e módulos do HTTPD conectem a rede"
--
--#~ msgid "Allow httpd to act as a relay"
--#~ msgstr "Permitir que o HTTPD atue como relay"
--
--#~ msgid "Disable SELinux protection for httpd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon httpd"
--
--#~ msgid "Allow HTTPD cgi support"
--#~ msgstr "Permitir que o HTTPD suporte cgi"
--
--#~ msgid "Allow HTTPD to run as a ftp server"
--#~ msgstr "Permitir que o HTTPD seja executado como um servidor ftp"
--
--#~ msgid "Allow HTTPD to read home directories"
--#~ msgstr "Permitir que o HTTPD leia diretórios pessoais"
--
--#~ msgid ""
--#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
--#~ "scripts"
--#~ msgstr ""
--#~ "Permitir que o HTTPD execute executáveis SSI no mesmo domínio que os "
--#~ "scripts CGI do sistema"
--
--#~ msgid ""
--#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
--#~ "certificates"
--#~ msgstr ""
--#~ "Unificar o HTTPD para comunicar com o terminal. Necessário para lidar com "
--#~ "certificados"
--
--#~ msgid "Unify HTTPD handling of all content files"
--#~ msgstr "Unificar o tratamento do HTTPD para todos os arquivos do conteúdo"
--
--#~ msgid "Allow named to overwrite master zone files"
--#~ msgstr "Permitir que o named sobrescreva arquivos da zona mestre"
--
--#~ msgid "Allow NFS to share any file/directory read only"
--#~ msgstr ""
--#~ "Permitir que o NFS compartilhe qualquer arquivo/diretório somente leitura"
--
--#~ msgid "Allow NFS to share any file/directory read/write"
--#~ msgstr ""
--#~ "Permitir que o NFS compartilhe qualquer arquivo/diretório com direitos de "
--#~ "leitura/escrita"
--
--#~ msgid "Allow openvpn service access to users home directories"
--#~ msgstr ""
--#~ "Permitir que o serviço openvpn acesse o diretório pessoal dos usuários"
--
--#~ msgid "Allow pppd daemon to insert modules into the kernel"
--#~ msgstr "Permitir que o daemon pppd insira módulos no kernel"
--
--#~ msgid "Disable SELinux protection for pppd daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon pppd"
--
--#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon mozilla ppp"
--
--#~ msgid "Allow programs to read untrusted content without relabel"
--#~ msgstr ""
--#~ "Permitir que programas leiam conteúdos não confiáveis sem reetiquetar"
--
--#~ msgid "Allow Samba to share users home directories"
--#~ msgstr "Permitir que o Samba compartilhe diretórios pessoais dos usuários"
--
--#~ msgid "Spam Assassin"
--#~ msgstr "Spam Assassin"
--
--#~ msgid "Allow spammassasin to access the network"
--#~ msgstr "Permitir que o spammassasin acesse a rede"
--
--#~ msgid "Use lpd server instead of cups"
--#~ msgstr "Usar o servidor lpd ao invés do cups"
--
--#~ msgid "Support NFS home directories"
--#~ msgstr "Suporte aos diretórios pessoais do NFS"
--
--#~ msgid "Allow users to login with CIFS home directories"
--#~ msgstr "Permitir que os usuários façam o login com diretórios pessoais CIFS"
--
--#~ msgid ""
--#~ "Allow web applications to write untrusted content to disk (implies read)"
--#~ msgstr ""
--#~ "Permitir que aplicações web gravem conteúdo não confiável no disco "
--#~ "(implica em direito de leitura)"
--
--#~ msgid "Disable SELinux protection for zebra daemon"
--#~ msgstr "Desabilitar proteção do SELinux para o daemon zebra"
--
--#~ msgid "Allow httpd to access samba/cifs file systems"
--#~ msgstr "Permitir que o httpd acesse sistemas de arquivos samba/cifs"
--
--#~ msgid "Allow httpd to access nfs file systems"
--#~ msgstr "Permitir que o httpd acesse sistemas de arquivos nfs"
--
--#~ msgid ""
--#~ "Allow samba to act as the domain controller, add users, groups and change "
--#~ "passwords"
--#~ msgstr ""
--#~ "Permitir que o samba atue como controlador de domínio, adicione usuários, "
--#~ "grupos e altere senhas"
--
--#~ msgid "Allow Samba to share any file/directory read only"
--#~ msgstr ""
--#~ "Permitir que o Samba compartilhe qualquer arquivo/diretório somente "
--#~ "leitura"
--
--#~ msgid "Allow Samba to share any file/directory read/write"
--#~ msgstr ""
--#~ "Permitir que o Samba compartilhe qualquer arquivo/diretório com direitos "
--#~ "de leitura/escrita"
--
--#~ msgid ""
--#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
--#~ msgstr ""
--#~ "Permitir que o Samba execute scripts não restritos no diretório /var/lib/"
--#~ "samba/scripts"
--
--#~ msgid "Label Prefix"
--#~ msgstr "Prefixo da Etiqueta"
--
--#~ msgid "MLS/MCS Level"
--#~ msgstr "Nível MLS/MCS"
--
--#~ msgid "Group/ungroup network ports by SELinux type."
--#~ msgstr "Agrupar/desagrupar portas de rede pelo tipo do SELinux."
--
--#~ msgid ""
--#~ "Enable additional audit rules, that are normally not reported in the log "
--#~ "files."
--#~ msgstr ""
--#~ "Habilitar regras adicionais do audit, que normalmente não são reportadas "
--#~ "nos arquivos de log."
--
--#~ msgid ""
--#~ "Labeling\n"
--#~ "Prefix"
--#~ msgstr ""
--#~ "Prefixo de\n"
--#~ "Etiquetagem"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
--#~ msgstr ""
--#~ "Nível\n"
--#~ "MLS/MCS"
--
--#~ msgid "Requires 2 or more arguments"
--#~ msgstr "Requer 2 ou mais argumentos"
--
--#~ msgid "%s not defined"
--#~ msgstr "%s não definido"
--
--#~ msgid "%s not valid for %s objects\n"
--#~ msgstr "%s não é válido para objetos %s\n"
--
--#~ msgid "range not supported on Non MLS machines"
--#~ msgstr "intervalo não suportado em máquinas não-MLS"
--
--#~ msgid "Invalid value %s"
--#~ msgstr "Valor inválido %s"
--
--#~ msgid ""
--#~ "In order to load this newly created policy package into the kernel,\n"
--#~ "you are required to execute \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
--#~ msgstr ""
--#~ "Para carregar este pacote de políticas criado recentemente no kernel\n"
--#~ "é necessário que você execute \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
--
--#~ msgid "Options Error: %s "
--#~ msgstr "Erro de Opções: %s "
-+#~ msgstr "Nível de sensibilidade"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/pt.po policycoreutils-2.0.85/po/pt.po
---- nsapolicycoreutils/po/pt.po        2011-02-17 15:11:25.640726363 -0500
-+++ policycoreutils-2.0.85/po/pt.po    2011-02-18 16:03:41.441976242 -0500
-@@ -1,22 +1,38 @@
-+# Rui Gouveia <rui.gouveia@gmail.com>, 2010.
-+# Sérgio Mesquita <smesquita@gmail.com>, 2010.
- msgid ""
- msgstr ""
- "Project-Id-Version: policycoreutils\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-10-02 12:37+0100\n"
--"Last-Translator: José Nuno Coelho Pires <jncp@netcabo.pt>\n"
--"Language-Team: pt <kde-i18n-pt@kde.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-09 11:11+0100\n"
-+"Last-Translator: Sérgio Mesquita <smesquita@gmail.com>\n"
-+"Language-Team: trans-pt@fedoraproject.org\n"
-+"Language: pt\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=utf-8\n"
- "Content-Transfer-Encoding: 8bit\n"
--"X-POFile-SpellExtra: SETUID tty ze odt tcp ConfidencialEmpresa getpass PAM\n"
--"X-POFile-SpellExtra: TTY serange PAMTTY SELinux semodule chcat init\n"
--"X-POFile-SpellExtra: newrole setype udp runinit passwd pp semanage\n"
--"X-POFile-SpellExtra: KEEPCAPS bq shadow UID MLS seuser dev SIGHUP\n"
--"X-POFile-SpellExtra: novocontexto argv Polgen UIDs nsswitch Init Hat Red\n"
--"X-POFile-SpellExtra: if tmp lib label lu var avc inetd fc xinetd usesyslog\n"
--"X-POFile-SpellExtra: Fich audit syslog bindresvport XWindows setenforce sh\n"
--"X-POFile-SpellExtra: allow MCS carregável\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Virtaal 0.5.2\n"
-+"X-Poedit-Language: Portuguese\n"
-+"X-Poedit-Country: PORTUGAL\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Configurar o SELinux num ambiente gráfico"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Gestão de SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Gerar módulos de políticas SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Ferramenta de Geração de Políticas SELinux"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -45,7 +61,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "O seu item não foi encontrado no ficheiro de senhas 'shadow'.\n"
-+msgstr "Os seus dados não foram encontrados no ficheiro de senhas 'shadow'.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
-@@ -60,18 +76,18 @@
- #: ../run_init/run_init.c:309
- #, c-format
- msgid "Could not open file %s\n"
--msgstr "Não foi possível aceder ao ficheiro %s\n"
-+msgstr "Não foi possível abrir o ficheiro %s\n"
- #: ../run_init/run_init.c:336
- #, c-format
- msgid "No context in file %s\n"
--msgstr "Não existe qualquer contexto no ficheiro %s\n"
-+msgstr "Não existe contexto no ficheiro %s\n"
- #: ../run_init/run_init.c:361
- #, c-format
- msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
- msgstr ""
--"Desculpe, mas o 'run_init' só poderá ser usado num 'kernel' com SELinux.\n"
-+"Desculpe, o 'run_init' só poderá ser utilizado num kernel com SELinux.\n"
- #: ../run_init/run_init.c:380
- #, c-format
-@@ -81,7 +97,7 @@
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr "Não foi possível mudar o contexto de execução para %s.\n"
-+msgstr "Não foi possível definir o contexto de execução para %s.\n"
- #: ../audit2allow/audit2allow:217
- msgid "******************** IMPORTANT ***********************\n"
-@@ -93,851 +109,857 @@
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
--msgstr "Não foi possível iniciar o descritor do 'semanage'"
-+msgstr "Não foi possível iniciar o descritor do SELinux (\"semanage\")"
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr ""
--"A política do SELinux não é gerida ou não é possível aceder ao armazém."
-+msgstr "A política do SELinux não é gerida ou não é possível aceder aos dados."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "Não é possível ler o armazém de políticas."
-+msgstr "Não é possível ler os dados de políticas."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
--msgstr "Não é possível estabelecer uma ligação ao 'semanage'"
-+msgstr ""
-+"Não é possível estabelecer uma ligação ao gestor do SELinux (\"semanage\")"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Não foi possível definir o intervalo do MLS do %s"
-+msgstr "Não foi testar o estado de activação do MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "global"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Não é possível aceder ao %s: as traduções não são suportadas nas máquinas "
--"não-MLS"
-+"Não foi possível abrir %s: as traduções não são suportadas nas máquinas não-"
-+"MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "Nível"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Tradução"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "As traduções não poderão conter espaços '%s' "
-+msgstr "As traduções não podem conter espaços '%s' "
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr "Nível '%s' Inválido "
-+msgstr "Nível '%s' é Inválido "
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "O %s já está definido nas traduções"
-+msgstr "%s já está definido nas traduções"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "O %s não está definido nas traduções"
-+msgstr "%s não está definido nas traduções"
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
--msgstr ""
-+msgstr "Ainda não está implementado"
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Transacção Semanage já está em curso"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
--msgstr "Não foi possível iniciar a transacção do 'semanage'"
-+msgstr ""
-+"Não foi possível iniciar uma transacção do gestor do SELinux (\"semanage\")"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Não foi possível iniciar a transacção do 'semanage'"
-+msgstr "Não foi possível finalizar a transacção semanage"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Transacção Semanage não está em curso"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "Não foi possível listar os utilizadores do SELinux"
-+msgstr "Não foi possível listar os módulos SELinux"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "Permissivo"
-+msgstr "Tipos Permissivos"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Não foi possível definir o domínio permissivo %s (instalação do módulo "
-+"falhou)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Não foi possível remover o domínio permissivo %s (remoção falhou)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
--msgstr "Não é possível criar uma chave para o %s"
-+msgstr "Não foi possível criar uma chave para o %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--"Não foi possível ver se o mapeamento de autenticação do %s está definido"
-+"Não foi possível verificar se o mapeamento de autenticação para %s está "
-+"definido"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "O mapeamento de autenticação do %s já está definido"
-+msgstr "O mapeamento de autenticação para %s já está definido"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "O utilizador de Linux %s não existe"
-+msgstr "O Grupo Linux %s não existe"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "O utilizador de Linux %s não existe"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr "Não foi possível criar o mapeamento de autenticação do %s"
-+msgstr "Não foi possível criar o mapeamento de autenticação para %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "Não foi possível definir o nome do %s"
-+msgstr "Não foi possível definir o nome para %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "Não foi possível definir o intervalo do MLS do %s"
-+msgstr "Não foi possível definir o intervalo MLS para %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
--msgstr "Não foi possível definir o utilizador do SELinux para o %s"
-+msgstr "Não foi possível definir o utilizador SELinux para %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "Não foi possível adicionar o mapeamento de autenticação do %s"
-+msgstr "Não foi possível adicionar o mapeamento de autenticação para %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "adicionar o mapeamento do utilizador do SELinux"
-+msgstr "adicionar o mapeamento do utilizador SELinux"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
--msgstr "Necessita do 'seuser' ou do 'serange'"
-+msgstr ""
-+"Requer utilizador SELinux (\"seuser\") ou intervalo SELinux (\"serange\")"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr "O mapeamento de autenticação do %s não está definido"
-+msgstr "O mapeamento de autenticação para %s não está definido"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
--msgstr "Não foi possível pesquisar o 'seuser' por %s"
-+msgstr "Não foi possível encontrar o utilizador SELinux (\"seuser\") para %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr "Não foi possível modificar o mapeamento de autenticação do %s"
-+msgstr "Não foi possível modificar o mapeamento de autenticação para %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--"O mapeamento de autenticação do %s está definido na política e não pode ser "
-+"O mapeamento de autenticação para %s está definido na política, não pode ser "
- "removido"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr "Não foi possível remover o mapeamento de autenticação do %s"
-+msgstr "Não foi possível remover o mapeamento de autenticação para %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Não foi possível listar os mapeamentos de autenticação"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "Nome da Conta"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
--msgstr "Utilizador do SELinux"
-+msgstr "Utilizador SELinux"
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
--msgstr "Intervalo do MLS/MCS"
-+msgstr "Intervalo MLS/MCS"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Não foi possível adicionar o contexto do ficheiro %s"
-+msgstr "Precisa de adicionar pelo menos um perfil para %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
--msgstr "Não foi possível verificar se o utilizador %s do SELinux está definido"
-+msgstr "Não foi possível verificar se o utilizador SELinux %s está definido"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr "O utilizador %s do SELinux já está definido"
-+msgstr "O utilizador SELinux %s já está definido"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
--msgstr "Não foi possível criar o utilizador do SELinux do %s"
-+msgstr "Não foi possível criar o utilizador SELinux para %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
--msgstr "Não foi possível adicionar o papel %s para o %s"
-+msgstr "Não foi possível adicionar o perfil %s para %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
--msgstr "Não foi possível definir o nível do MLS do %s"
-+msgstr "Não foi possível definir o nível MLS para %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr "Não foi possível adicionar o prefixo %s do %s"
-+msgstr "Não foi possível adicionar o prefixo %s para %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
--msgstr "Não foi possível extrair a chave do %s"
-+msgstr "Não foi possível extrair a chave para %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
--msgstr "Não foi possível adicionar o utilizador do SELinux %s"
-+msgstr "Não foi possível adicionar o utilizador SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
--msgstr "É necessário um prefixo, papéis, um nível ou um intervalo"
-+msgstr "Requer prefixo, perfil, nível ou intervalo"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
--msgstr "É necessário um prefixo ou papéis"
-+msgstr "Requer prefixo ou perfil"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
--msgstr "O utilizador do SELinux %s não está definido"
-+msgstr "O utilizador SELinux %s não está definido"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Não foi possível pesquisar o utilizador %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
--msgstr "Não foi possível modificar o utilizador do SELinux %s"
-+msgstr "Não foi possível modificar o utilizador SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--"O utilizador do SELinux %s está definido na política, não pode ser removido"
-+"O utilizador SELinux %s está definido na política, não pode ser removido"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
--msgstr "Não foi possível remover o utilizador do SELinux %s"
-+msgstr "Não foi possível remover o utilizador SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
--msgstr "Não foi possível listar os utilizadores do SELinux"
-+msgstr "Não foi possível listar os utilizadores SELinux"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
--msgstr "Não foi possível listar os papéis do utilizador %s"
-+msgstr "Não foi possível listar os perfis para o utilizador %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr "Legendagem"
-+msgstr "Etiquetas"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefixo"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
--msgstr "Nível do MCS"
-+msgstr "Nível MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
--msgstr "Intervalo do MCS"
-+msgstr "Intervalo MCS"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
--msgstr "Papéis do SELinux"
-+msgstr "Perfis SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
--msgstr "É obrigatório o protocolo 'udp' ou 'tcp'"
-+msgstr "É obrigatório o protocolo udp ou tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "O porto é obrigatório"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Não foi possível criar uma chave para o %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "O tipo é obrigatório"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Não foi possível verificar se o porto %s/%s está definido"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "O porto %s/%s já está definido"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
--msgstr "Não foi possível criar o porto %s/%s"
-+msgstr "Não foi possível criar o porto para %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
--msgstr "Não foi possível criar o contexto do %s/%s"
-+msgstr "Não foi possível criar o contexto para %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr "Não foi possível definir o utilizador no contexto do porto %s/%s"
-+msgstr "Não foi possível definir o utilizador no contexto do porto para %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr "Não foi possível definir o papel no contexto do porto %s/%s"
-+msgstr "Não foi possível definir o perfil no contexto do porto para %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr "Não foi possível definir o tipo no contexto do porto %s/%s"
-+msgstr "Não foi possível definir o tipo no contexto do porto para %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr "Não foi possível definir os campos de MLS no contexto do porto %s/%s"
-+msgstr "Não foi possível definir os campos mls no contexto do porto para %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr "Não foi possível definir o contexto do porto %s/%s"
-+msgstr "Não foi possível definir o contexto do porto para %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Não foi possível adicionar o porto %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
--msgstr "Necessita de um 'setype' ou 'serange'"
-+msgstr "Requer tipo SELinux (\"setype\") ou intervalo SELinux (\"serange\")"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
--msgstr "Necessita de um 'setype'"
-+msgstr "Requer tipo SELinux (\"setype\")"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "O porto %s/%s não está definido"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Não foi possível pesquisar o porto %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Não foi possível modificar o porto %s/%s"
--#: ../semanage/seobject.py:921
--#, fuzzy
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "Não foi possível listar os portos"
--#: ../semanage/seobject.py:937
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
-+#, python-format
- msgid "Could not delete the port %s"
--msgstr "Não foi possível remover o porto %s/%s"
-+msgstr "Não foi possível remover o porto %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "O porto %s/%s está definido na política, não pode ser removido"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Não foi possível remover o porto %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Não foi possível listar os portos"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr "Tipo de Porto do SELinux"
-+msgstr "Tipo de Porto SELinux"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "Protocolo"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "Número de Porto"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "O porto é obrigatório"
-+msgstr "É obrigatório o Endereço do Nó"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "O porto é obrigatório"
-+msgstr "É obrigatório a Máscara de Nó"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "Protocolo desconhecido ou em falta"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
--msgstr "O Tipo do SELinux é obrigatório"
-+msgstr "O Tipo SELinux é obrigatório"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
--msgstr "Não foi possível criar a chave do %s"
-+msgstr "Não foi possível criar a chave para %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Não foi possível verificar se o porto %s/%s está definido"
-+msgstr "Não foi possível verificar se o endereço %s está definido"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "O porto %s/%s já está definido"
-+msgstr "O endereço %s já está definido"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "Não é possível criar uma chave para o %s"
-+msgstr "Não foi possível criar um endereço para %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
--msgstr "Não foi possível criar o contexto de %s"
-+msgstr "Não foi possível criar o contexto para %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "Não foi possível definir o nome do %s"
-+msgstr "Não foi possível definir uma máscara para %s"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "Não foi possível definir o utilizador no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o utilizador no contexto do endereço para %s"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Não foi possível definir o papel no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o perfil no contexto do endereço para %s"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Não foi possível definir o tipo no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o tipo no contexto do endereço para %s"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "Não foi possível definir os campos do MLS no contexto do ficheiro %s"
-+msgstr "Não foi possível definir os campos mls no contexto do endereço para %s"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Não foi possível definir o contexto do ficheiro %s"
-+msgstr "Não foi possível definir o contexto do endereço para %s"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "Não foi possível adicionar o porto %s/%s"
-+msgstr "Não foi possível adicionar o endereço %s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "O porto %s/%s não está definido"
-+msgstr "O endereço %s não está definido"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "Não foi possível pesquisar o porto %s/%s"
-+msgstr "Não foi possível pesquisar o endereço %s"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "Não foi possível modificar o porto %s/%s"
-+msgstr "Não foi possível modificar o endereço %s"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "O porto %s/%s está definido na política, não pode ser removido"
-+msgstr "O endereço %s está definido na política, não pode ser removido"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "Não foi possível remover a interface %s"
-+msgstr "Não foi possível remover o endereço %s"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Não foi possível listar os portos"
-+msgstr "Não foi possível listar os endereços"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Não foi possível verificar se a interface %s está definida"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "A interface %s já está definida"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
--msgstr "Não foi possível criar a interface %s"
-+msgstr "Não foi possível criar a interface para %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "Não foi possível definir o utilizador no contexto da interface %s"
-+msgstr "Não foi possível definir o utilizador no contexto da interface para %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "Não foi possível definir o papel no contexto da interface %s"
-+msgstr "Não foi possível definir o perfil no contexto da interface para %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "Não foi possível definir o tipo no contexto da interface %s"
-+msgstr "Não foi possível definir o tipo no contexto da interface para %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "Não foi possível definir os campos de MLS no contexto da interface %s"
-+msgstr ""
-+"Não foi possível definir os campos mls no contexto da interface para %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "Não foi possível definir o contexto da interface %s"
-+msgstr "Não foi possível definir o contexto da interface para %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "Não foi possível definir o contexto da mensagem %s"
-+msgstr "Não foi possível definir o contexto da mensagem para %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Não foi possível adicionar a interface %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "A interface %s não está definida"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Não foi possível pesquisar a interface %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Não foi possível modificar a interface %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "A interface %s está definida na política, não pode ser removida"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Não foi possível remover a interface %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Não foi possível listar as interfaces"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
--msgstr "Interface do SELinux"
-+msgstr "Interface SELinux"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Contexto"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "Não foi possível definir o utilizador no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o utilizador no contexto do ficheiro para %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "Não foi possível definir o papel no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o perfil no contexto do ficheiro para %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "Não foi possível definir os campos do MLS no contexto do ficheiro %s"
-+msgstr "Não foi possível definir os campos mls no contexto do ficheiro para %s"
--#: ../semanage/seobject.py:1436
--#, fuzzy
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr "Especificação do Ficheiro"
-+msgstr "Especificação de ficheiro inválida"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "Não foi possível verificar se o contexto do ficheiro %s está definido"
-+msgstr ""
-+"Não foi possível verificar se o contexto de ficheiro para %s está definido"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "O contexto do ficheiro %s já está definido"
-+msgstr "O contexto de ficheiro para %s já está definido"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr "Não foi possível criar o contexto do ficheiro %s"
-+msgstr "Não foi possível criar o contexto de ficheiro %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "Não foi possível definir o tipo no contexto do ficheiro %s"
-+msgstr "Não foi possível definir o tipo no contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "Não foi possível definir o contexto do ficheiro %s"
-+msgstr "Não foi possível definir o contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "Não foi possível adicionar o contexto do ficheiro %s"
-+msgstr "Não foi possível adicionar o contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
--msgstr "Necessita de um 'setype', 'serange' ou 'seuser'"
-+msgstr ""
-+"Requer tipo SELinux (\"setype\"), intervalo SELinux (\"serange\") ou "
-+"utilizador SELinux (\"seuser\")"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr "O contexto do ficheiro %s não está definido"
-+msgstr "O contexto de ficheiro para %s não está definido"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr "Não foi possível pesquisar o contexto do ficheiro %s"
-+msgstr "Não foi possível pesquisar o contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr "Não foi possível modificar o contexto do ficheiro %s"
-+msgstr "Não foi possível modificar o contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1560
--#, fuzzy
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "Não foi possível listar os contextos do ficheiro"
-+msgstr "Não foi possível listar os contextos de ficheiros"
--#: ../semanage/seobject.py:1574
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
-+#, python-format
- msgid "Could not delete the file context %s"
--msgstr "Não foi possível remover o contexto do ficheiro %s"
-+msgstr "Não foi possível remover o contexto de ficheiro %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--"O contexto do ficheiro %s está definido na política, não pode ser removido"
-+"O contexto de ficheiro %s está definido na política, não pode ser removido"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr "Não foi possível remover o contexto do ficheiro %s"
-+msgstr "Não foi possível remover o contexto de ficheiro para %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "Não foi possível listar os contextos do ficheiro"
-+msgstr "Não foi possível listar os contextos de ficheiro"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "Não foi possível listar os contextos do ficheiro local"
-+msgstr "Não foi possível listar os contextos de ficheiro locais"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
--msgstr "Contexto Fich. do SELinux"
-+msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "tipo"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr "Não foi possível verificar se o booleano %s está definido"
-+msgstr "Não foi possível verificar se o tipo booleano %s está definido"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
--msgstr "O booleano %s não está definido"
-+msgstr "O tipo booleano %s não está definido"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr "Não foi possível pesquisar o contexto do ficheiro %s"
-+msgstr "Não foi possível pesquisar o contexto de ficheiro %s"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Precisa de indicar um prefixo"
-+msgstr "Precisa de indicar um dos seguintes valores: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Não foi possível remover o booleano %s"
-+msgstr "Não foi possível definir o valor activo do booleano %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
--msgstr "Não foi possível modificar o booleano %s"
-+msgstr "Não foi possível modificar o tipo booleano %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Formato inválido %s: Registo %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "O booleano %s está definido na política, não pode ser removido"
-+msgstr "O tipo booleano %s está definido na política, não pode ser removido"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
--msgstr "Não foi possível remover o booleano %s"
-+msgstr "Não foi possível remover o tipo booleano %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
--msgstr "Não foi possível listar os booleanos"
-+msgstr "Não foi possível listar os tipos booleanos"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
--msgstr ""
-+msgstr "desconhecido"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr ""
-+msgstr "desligado"
--#: ../semanage/seobject.py:1780
--#, fuzzy
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr "CRON"
-+msgstr "ligado"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
--msgstr "Booleano do SELinux"
-+msgstr "SELinux boolean"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
--msgstr ""
-+msgstr "Descrição"
- #: ../newrole/newrole.c:198
- #, c-format
- msgid "failed to set PAM_TTY\n"
--msgstr "não foi possível definir o PAM_TTY\n"
-+msgstr "não foi possível definir PAM_TTY\n"
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
- msgstr ""
--"newrole: esgotamento da lista de configurações dos nomes dos serviços\n"
-+"newrole: a tabela de hash da configuração dos nomes dos serviços esgotou-se\n"
- #: ../newrole/newrole.c:297
- #, c-format
-@@ -947,7 +969,7 @@
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr "não foi possível encontrar um item válido no ficheiro 'passwd'.\n"
-+msgstr "não foi possível encontrar uma entrada válida no ficheiro de senhas.\n"
- #: ../newrole/newrole.c:447
- #, c-format
-@@ -957,7 +979,7 @@
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr "Erro! A linha de comandos não é válida.\n"
-+msgstr "Erro!  A consola não é válida.\n"
- #: ../newrole/newrole.c:509
- #, c-format
-@@ -965,29 +987,29 @@
- msgstr "Não foi possível limpar o ambiente\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Erro ao iniciar as capacidades, a interromper.\n"
-+msgstr "Erro ao iniciar capacidades, a interromper.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "Erro ao atribuir as capacidades, a interromper\n"
-+msgstr "Erro ao atribuir capacidades, a interromper\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr "Erro ao atribuir o KEEPCAPS, a interromper\n"
-+msgstr "Erro ao definir o KEEPCAPS, a interromper\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr "Erro ao remover as capacidades, a interromper\n"
-+msgstr "Erro ao retirar capacidades, a interromper\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
- #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr "Erro ao mudar de UID, a interromper.\n"
-+msgstr "Erro ao mudar o uid, a interromper.\n"
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
-@@ -997,128 +1019,127 @@
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "Erro ao remover a capacidade de SETUID, a interromper\n"
-+msgstr "Erro ao retirar a capacidade de SETUID, a interromper\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
- msgid "Error freeing caps\n"
--msgstr "Erro ao libertar as capacidades\n"
-+msgstr "Erro ao libertar capacidades\n"
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr "Erro ao ligar-se ao sistema de auditoria.\n"
-+msgstr "Erro ao conectar ao sistema de auditoria.\n"
- #: ../newrole/newrole.c:707
- #, c-format
- msgid "Error allocating memory.\n"
--msgstr "Erro ao reservar memória.\n"
-+msgstr "Erro ao alocar memória.\n"
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr "Erro ao enviar a mensagem de auditoria.\n"
-+msgstr "Erro ao enviar mensagem de auditoria.\n"
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr "Não é possível determinar o modo de aplicação do SELinux.\n"
-+msgstr "Não é possível determinar o modo de actuação forçada do SELinux.\n"
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr "Erro! Não foi possível aceder ao %s.\n"
-+msgstr "Erro! Não foi possível abrir %s.\n"
- #: ../newrole/newrole.c:771
- #, c-format
- msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
- msgstr ""
--"%s!  Não foi possível obter o contexto actual do %s; o TTY não mudará de "
--"etiqueta.\n"
-+"%s!  Não foi possível obter o contexto actual para %s, etiqueta do tty "
-+"inalterada.\n"
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
- msgstr ""
--"%s!  Não foi possível obter o novo contexto do %s; o TTY não mudará de "
--"etiqueta.\n"
-+"%s!  Não foi possível obter um novo contexto para %s, etiqueta do tty "
-+"inalterada.\n"
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s!  Não foi possível definir o novo contexto do %s\n"
-+msgstr "%s!  Não foi possível definir um novo contexto para %s\n"
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr "O %s mudou de etiquetas.\n"
-+msgstr "%s alterou etiquetas.\n"
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr "Atenção!  Não foi possível repor o contexto do %s\n"
-+msgstr "Atenção!  Não foi possível repor o contexto para %s\n"
- #: ../newrole/newrole.c:901
- #, c-format
- msgid "Error: multiple roles specified\n"
--msgstr "Erro: foram definidos vários papéis\n"
-+msgstr "Erro: foram especificados vários perfis\n"
- #: ../newrole/newrole.c:909
- #, c-format
- msgid "Error: multiple types specified\n"
--msgstr "Erro : foram definidos vários tipos\n"
-+msgstr "Erro : foram especificados vários tipos\n"
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr ""
--"Desculpe, mas o -l só pode ser usado com o suporte para MLS do SELinux.\n"
-+msgstr "Desculpe, o -l pode ser utilizado com o suporte MLS do SELinux.\n"
- #: ../newrole/newrole.c:921
- #, c-format
- msgid "Error: multiple levels specified\n"
--msgstr "Erro: foram definidos vários níveis\n"
-+msgstr "Erro: foram especificados vários níveis\n"
- #: ../newrole/newrole.c:931
--#, fuzzy, c-format
-+#, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
- msgstr ""
--"Erro: não tem permissões para alterar os níveis num terminal não-seguro\n"
-+"Erro: não tem permissões para alterar os níveis num terminal inseguro \n"
- #: ../newrole/newrole.c:957
- #, c-format
- msgid "Couldn't get default type.\n"
--msgstr "Não foi possível obter o tipo predefinido.\n"
-+msgstr "Não foi possível obter o tipo por omissão.\n"
- #: ../newrole/newrole.c:967
- #, c-format
- msgid "failed to get new context.\n"
--msgstr "não foi possível obter o novo contexto.\n"
-+msgstr "não foi possível obter um novo contexto.\n"
- #: ../newrole/newrole.c:974
- #, c-format
- msgid "failed to set new role %s\n"
--msgstr "não foi possível definir o novo papel %s\n"
-+msgstr "não foi possível definir um novo perfil %s\n"
- #: ../newrole/newrole.c:981
- #, c-format
- msgid "failed to set new type %s\n"
--msgstr "não foi possível definir o novo tipo %s\n"
-+msgstr "não foi possível definir um novo tipo %s\n"
- #: ../newrole/newrole.c:991
- #, c-format
- msgid "failed to build new range with level %s\n"
--msgstr "não foi possível criar um novo intervalo com o nível %s\n"
-+msgstr "não foi possível construir um novo intervalo com o nível %s\n"
- #: ../newrole/newrole.c:996
- #, c-format
- msgid "failed to set new range %s\n"
--msgstr "não foi possível definir o novo intervalo %s\n"
-+msgstr "não foi possível definir um novo intervalo %s\n"
- #: ../newrole/newrole.c:1004
- #, c-format
- msgid "failed to convert new context to string\n"
--msgstr "não foi possível converter o novo contexto para texto\n"
-+msgstr "não foi possível converter o novo contexto para string\n"
- #: ../newrole/newrole.c:1009
- #, c-format
-@@ -1128,7 +1149,7 @@
- #: ../newrole/newrole.c:1016
- #, c-format
- msgid "Unable to allocate memory for new_context"
--msgstr "Não é possível reservar memória para o novo_contexto"
-+msgstr "Não é possível alocar memória para \"new_context\""
- #: ../newrole/newrole.c:1042
- #, c-format
-@@ -1138,48 +1159,47 @@
- #: ../newrole/newrole.c:1050
- #, c-format
- msgid "Unable to set SIGHUP handler\n"
--msgstr "Não é possível atribuir a rotina do SIGHUP\n"
-+msgstr "Não é possível definir o descritor da rotina SIGHUP\n"
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr ""
--"Desculpe, mas o 'newrole' só pode ser usado num 'kernel' com SELinux.\n"
-+msgstr "Desculpe, mas o 'newrole' só pode ser utilizado num kernel SELinux.\n"
- #: ../newrole/newrole.c:1133
- #, c-format
- msgid "failed to get old_context.\n"
--msgstr "não foi possível obter o contexto antigo.\n"
-+msgstr "não foi possível obter o contexto antigo (\"old_context\").\n"
- #: ../newrole/newrole.c:1140
--#, fuzzy, c-format
-+#, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Erro! Não foi possível obter a informação do TTY.\n"
-+msgstr "Erro! Não foi possível obter informação do tty.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr "erro ao ler a configuração de serviços do PAM.\n"
-+msgstr "erro ao ler a configuração do serviço PAM.\n"
- #: ../newrole/newrole.c:1196
- #, c-format
- msgid "newrole: incorrect password for %s\n"
--msgstr "newrole: a senha do %s é incorrecta\n"
-+msgstr "newrole: senha incorrecta para %s\n"
- #: ../newrole/newrole.c:1223
- #, c-format
- msgid "newrole: failure forking: %s"
--msgstr "newrole: não foi possível criar um sub-processo: %s"
-+msgstr "newrole: não foi possível criar um novo processo (\"fork\"): %s"
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
- #, c-format
- msgid "Unable to restore tty label...\n"
--msgstr "Não foi possível repor a legenda do TTY...\n"
-+msgstr "Não foi possível repor a legenda do tty...\n"
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
- #, c-format
- msgid "Failed to close tty properly\n"
--msgstr "não foi possível fechar devidamente o TTY\n"
-+msgstr "não foi possível fechar o tty adequadamente\n"
- #: ../newrole/newrole.c:1287
- #, c-format
-@@ -1189,31 +1209,35 @@
- #: ../newrole/newrole.c:1314
- #, c-format
- msgid "Error allocating shell's argv0.\n"
--msgstr "Erro ao reservar o argv0 da linha de comandos.\n"
-+msgstr "Erro ao alocar o argumento argv0 da consola.\n"
- #: ../newrole/newrole.c:1346
- #, c-format
- msgid "Unable to restore the environment, aborting\n"
--msgstr "Não foi possível repor o ambiente, a interromper\n"
-+msgstr "Não foi possível restaurar o ambiente, a interromper\n"
- #: ../newrole/newrole.c:1357
- msgid "failed to exec shell\n"
--msgstr "não foi possível executar a linha de comandos\n"
-+msgstr "não foi possível executar a consola\n"
- #: ../load_policy/load_policy.c:22
--#, fuzzy, c-format
-+#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "utilização:  %s [-q]\n"
-+msgstr "utilização:  %s [-qi]\n"
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
- msgstr ""
-+"%s:  Esta política já foi carregada e o carregamento inicial já foi "
-+"requisitado.\n"
- #: ../load_policy/load_policy.c:80
--#, fuzzy, c-format
-+#, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:  Não é possível carregar a política:  %s\n"
-+msgstr ""
-+"%s:  Não é possível carregar a política e foi requerido o modo de execução "
-+"forçada:  %s\n"
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1222,7 +1246,7 @@
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
--msgstr "É necessária pelo menos uma categoria"
-+msgstr "Requer pelo menos uma categoria"
- #: ../scripts/chcat:106 ../scripts/chcat:183
- #, c-format
-@@ -1232,12 +1256,12 @@
- #: ../scripts/chcat:110
- #, c-format
- msgid "%s is already in %s"
--msgstr "O %s já está em %s"
-+msgstr "%s já está em %s"
- #: ../scripts/chcat:188 ../scripts/chcat:198
- #, c-format
- msgid "%s is not in %s"
--msgstr "O %s não está em %s"
-+msgstr "%s não está em %s"
- #: ../scripts/chcat:267 ../scripts/chcat:272
- msgid "Can not combine +/- with other types of categories"
-@@ -1289,7 +1313,7 @@
- #: ../scripts/chcat:333
- msgid "Use -- to end option list.  For example"
--msgstr "Use o -- para terminar a lista de opções. Por exemplo"
-+msgstr "Utilize -- para terminar a lista de opções. Por exemplo"
- #: ../scripts/chcat:334
- msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-@@ -1297,1478 +1321,2268 @@
- #: ../scripts/chcat:335
- msgid "chcat -l +CompanyConfidential juser"
--msgstr "chcat -l +ConfidencialEmpresa ze"
-+msgstr "chcat -l +ConfidencialEmpresa jose"
- #: ../scripts/chcat:399
- #, c-format
- msgid "Options Error %s "
- msgstr "Erro nas Opções %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "as traduções não são suportadas em máquinas não-MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Booleano"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "tudo"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Personalizado"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Etiquetagem de Ficheiros"
--#~ msgid "Boolean"
--#~ msgstr "Booleano"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Especificação\n"
-+"do Ficheiro"
--#, fuzzy
--#~ msgid "all"
--#~ msgstr "Tudo"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Tipo de Ficheiro\n"
-+"SELinux"
--#~ msgid "File Labeling"
--#~ msgstr "Legendagem de Ficheiros"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Tipo de\n"
-+"Ficheiro"
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Especificação\n"
--#~ "do Ficheiro"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mapeamento de Utilizadores"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Contexto\n"
--#~ "do SELinux"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Nome da\n"
-+"Conta"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Tipo de\n"
--#~ "Ficheiro"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"Utilizador\n"
-+"SELinux"
--#~ msgid "User Mapping"
--#~ msgstr "Mapeamento de Utilizadores"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"Intervalo\n"
-+"MLS/MCS"
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Nome da\n"
--#~ "Conta"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "A conta '%s' é obrigatória"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "Utilizador\n"
--#~ "do SELinux"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Módulo da Política"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "Intervalo\n"
--#~ "do MLS/MCS"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Nome do Módulo"
--#~ msgid "Login '%s' is required"
--#~ msgstr "A conta '%s' é obrigatória"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Versão"
--#~ msgid "Policy Module"
--#~ msgstr "Módulo da Política"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Desactivar a Auditoria"
--#~ msgid "Module Name"
--#~ msgstr "Nome do Módulo"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Activar a Auditoria"
--#~ msgid "Version"
--#~ msgstr "Versão"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Carregar o Módulo da Política"
--#~ msgid "Disable Audit"
--#~ msgstr "Desactivar a Auditoria"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Enable Audit"
--#~ msgstr "Activar a Auditoria"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Load Policy Module"
--#~ msgstr "Carregar o Módulo da Política"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"José Nuno Pires <jncp@netcabo.pt>, 2006.\n"
-+"Rui Gouveia <rui.gouveia@globaltek.pt>, 2009."
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Esta ferramenta pode ser utilizada para gerar uma plataforma de políticas, "
-+"para confinar as aplicações ou os utilizadores utilizando SELinux.   \n"
-+"\n"
-+"A ferramenta gera:\n"
-+"Ficheiro de execução de tipos (te)\n"
-+"Ficheiro de interface (if)\n"
-+"Ficheiro de contextos de ficheiros (fc)\n"
-+"Scripts de Consola (sh) - utilizado para compilar e instalar a política. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Seleccione o tipo de perfil da aplicação/utilizador a confinar."
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Aplicações</b>"
--#~ msgid "GPL"
--#~ msgstr "GPL"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+"Os Serviços Init standard são serviços que são iniciados no arranque através "
-+"de scripts init.  Normalmente é necessário um script em /etc/init.d"
--#~ msgid "translator-credits"
--#~ msgstr "José Nuno Pires <jncp@netcabo.pt>, 2006."
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Serviço Init Standard"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Ferramenta de Geração de Políticas do SELinux"
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Serviço DBUS do sistema"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "Esta ferramenta pode ser usada para gerar uma plataforma de políticas, "
--#~ "para confinar as aplicações ou os utilizadores no SELinux.   \n"
--#~ "A ferramenta gera:\n"
--#~ "Ficheiro de aplicação de tipos (te)\n"
--#~ "Ficheiro da interface (if)\n"
--#~ "Ficheiro de contextos dos ficheiros (fc)\n"
--#~ "Programa (sh) - usado para compilar e instalar a política. "
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Os Serviços de Internet são serviços iniciados pelo xinetd"
--#, fuzzy
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Seleccionar o perfil da aplicação ou utilizador a confinar."
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Serviços de Internet (inetd)"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Aplicações</b>"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+"Aplicações/Scripts Web (CGI) são scripts iniciados pelo servidor web (apache)"
--#, fuzzy
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "Os Servidores-Padrão do Init são serviços que só iniciados no arranque "
--#~ "através dos programas do 'init'. Normalmente é necessário um programa no "
--#~ "'/etc/init.d'"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Aplicação/Script Web (CGI)"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Servidor do Init Normal"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+"Aplicações do Utilizador são quaisquer aplicações que deseje confinar e que "
-+"sejam iniciadas por um utilizador"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Os Serviços de Internet são servidores iniciados pelo 'xinetd'"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Aplicação do Utilizador"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Serviços de Internet (inetd)"
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Utilizadores</b>"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "As Aplicações/Programas Web (CGI) são programas iniciados pelo servidor "
--#~ "Web (Apache)"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modificar o registo de um utilizador existente."
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Aplicação/Programa Web (CGI)"
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Perfis de Utilizador Existentes"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "Uma Aplicação do Utilizador é qualquer aplicação que deseje confinar e "
--#~ "que seja iniciada por um utilizador"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+"Este utilizador irá iniciar sessão numa máquina apenas por via de um "
-+"terminal ou sessão remota.  Por omissão, este utilizador não terá setuid, "
-+"rede, sudo ou su."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Perfil Minimal de Utilizador de Terminal "
--#~ msgid "User Application"
--#~ msgstr "Aplicação do Utilizador"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+"Este utilizador pode iniciar sessão via X ou terminal.  Por omissão, este "
-+"utilizador não terá setuid, rede, sudo ou su."
--#, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Utilizadores</b>"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Perfil Minimal de Utilizador de X Windows"
--#, fuzzy
--#~ msgid "User Role"
--#~ msgstr "Papel"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+"Utilizador com acesso total à rede, sem aplicações setuid sem transição, sem "
-+"sudo nem su."
--#, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Utilizadores</b>"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Perfil de Utilizador"
--#, fuzzy
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "Seleccione Administrador, se este utilizador será usado para administrar "
--#~ "a máquina enquanto estiver a correr como 'root'. Este utilizador não se "
--#~ "poderá ligar directamente ao sistema."
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+"Utilizador com acesso total à rede, sem aplicações setuid sem transição, sem "
-+"su, mas pode utilizar sudo para tarefas de administração"
--#, fuzzy
--#~ msgid "Root Admin User Role"
--#~ msgstr "Administrador"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Perfil de Utilizador Administrador"
--#, fuzzy
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Seleccionar o perfil da aplicação ou utilizador a confinar."
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Utilizadores Root</b>"
--#~ msgid "Name"
--#~ msgstr "Nome"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+"Seleccione o Perfil de Utilizador Administrador Root, se este utilizador "
-+"será utilizado para administrar a máquina enquanto estiver a correr como "
-+"root. Este utilizador não conseguirá iniciar uma sessão directamente no "
-+"sistema."
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Indique a localização completa do executável a confinar."
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Perfil de Utilizador Administrador Root"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Insira o nome da aplicação ou perfil de utilizador a confinar"
--#, fuzzy
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Indique um nome único para o tipo do utilizador ou aplicação confinado."
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Nome"
--#~ msgid "Executable"
--#~ msgstr "Executável"
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Indique o caminho completo do executável a confinar."
--#~ msgid "Init script"
--#~ msgstr "Programa do Init"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "Indique a localização completa do programa do 'init' usada para iniciar a "
--#~ "aplicação confinada."
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+"Insira um nome único para a aplicação ou perfil de utilizador confinados."
--#, fuzzy
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr ""
--#~ "Seleccione os papéis ou perfis para os quais este utilizador poderá mudar"
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Executável"
--#, fuzzy
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "Seleccione os domínios do utilizador adicionais para a transição"
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "script Init"
--#, fuzzy
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "Seleccione os domínios de aplicações para onde deseja que este utilizador "
--#~ "transite."
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+"Indique o caminho completo do script init utilizado para iniciar a aplicação "
-+"confinada."
--#, fuzzy
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "Seleccione os domínios que este utilizador irá administrar"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Seleccione os perfis de utilizador que pretende personalizar"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr ""
--#~ "Seleccione os domínios que gostaria que este utilizador administrasse."
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+"Selecione os perfis de utilizador que irão transitar para os domínios desta "
-+"aplicação."
--#, fuzzy
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Seleccione os domínios do utilizador adicionais para a transição"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+"Seleccione domínios adicionais para os quais este perfil de utilizador "
-+"poderá transitar"
--#, fuzzy
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
--#~ "aplicação se liga."
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+"Seleccione os domínios de aplicações para onde gostaria que este perfil de "
-+"utilizador possa transitar."
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>Portos de TCP</b>"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+"Seleccione os perfis de utilizador que irão transitar para este domínio"
--#, fuzzy
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "Permitir a um utilizador/aplicação confinado associar-se a qualquer porto "
--#~ "de UDP"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+"Seleccione domínios adicionais que este perfil de utilizador irá administrar"
--#~ msgid "All"
--#~ msgstr "Tudo"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "Seleccione os domínios que gostaria que este utilizador administrasse."
--#, fuzzy
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "Permitir a um utilizador/aplicação invocar o 'bindresvport' com 0, para "
--#~ "se associar aos portos 600-1024"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Seleccione perfis adicionais para este utilizador"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+"Digite os portos de rede onde o perfil desta aplicação/utilizador ficam à "
-+"escuta"
--#, fuzzy
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
--#~ "aplicação se liga."
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>Portos TCP</b>"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Portos Não-Reservados (> 1024)"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+"Permitir que o perfil de aplicação/utilizador confinado se possa associar a "
-+"qualquer porto udp"
--#~ msgid "Select Ports"
--#~ msgstr "Seleccionar os Portos"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "Tudo"
--#, fuzzy
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "Permitir a um utilizador/aplicação associar-se a qualquer porto de UDP > "
--#~ "1024"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+"Permitir que o perfil de aplicação/utilizador possa invocar o bindresvport "
-+"com valor 0, para se associar a portos entre 600-1024"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>Portos de UDP</b>"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
--#, fuzzy
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
--#~ "aplicação se liga."
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista separada por vírgulas de portos udp ou intervalos de portos "
-+"que o perfil de aplicação/utilizador se possa associar. Exemplo: 612, 650-660"
--#, fuzzy
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
--#~ "aplicação se liga."
--
--#, fuzzy
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
--#~ "aplicação se liga."
--
--#, fuzzy
--#~ msgid "Select common application traits"
--#~ msgstr "Registos Comuns da Aplicação"
--
--#, fuzzy
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "A aplicação usa o 'syslog' para registar mensagens      "
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "Portos Não-Reservados (> 1024)"
--#, fuzzy
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "A aplicação usa o '/tmp' para criar/manipular ficheiros temporários"
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "Seleccione os Portos"
--#, fuzzy
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "A aplicação usa o PAM para se autenticar"
--
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Erro ao enviar a mensagem de auditoria.\n"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+"Permitir que o perfil de aplicação/utilizador se possa associar a qualquer "
-+"porto udp > 1024"
--#, fuzzy
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr ""
--#~ "Seleccione as pastas que pertencem à aplicação confinada ou onde esta "
--#~ "grava"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>Portos UDP</b>"
--#, fuzzy
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "Adicione os Ficheiros/Pastas onde esta aplicação terá necessidade de "
--#~ "\"Gravar\": ficheiros do PID, Ficheiros de Registo, Ficheiros do /var/"
--#~ "lib..."
--
--#, fuzzy
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "Seleccione os ficheiros que a aplicação confinada cria ou grava"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+"Digite os portos de rede onde o perfil desta aplicação/utilizador se pode "
-+"conectar"
--#, fuzzy
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "Indique a localização completa do programa do 'init' usada para iniciar a "
--#~ "aplicação confinada."
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista separada por vírgulas de portos tcp ou intervalos de portos "
-+"que o perfil de aplicação/utilizador se possa conectar. Exemplo: 612, 650-660"
--#, fuzzy
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "Seleccione a pasta onde gerar os ficheiros de políticas"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+"Digite uma lista separada por vírgulas de portos udp ou intervalos de portos "
-+"que o perfil de aplicação/utilizador se possa conectar. Exemplo: 612, 650-660"
--#~ msgid "Policy Directory"
--#~ msgstr "Pasta da Política"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Seleccione traços comuns nas aplicações"
--#~ msgid "Generated Policy Files"
--#~ msgstr "Ficheiros da Política Gerados"
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "Escreve mensagens no syslog\t"
--#, fuzzy
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Esta ferramenta irá gerar o seguinte: Aplicação do Tipo (te), Contexto "
--#~ "dos Ficheiros(fc), Interface(if), Programa(sh).\n"
--#~ "Execute o programa para compilar/instalar e legendar de novo os ficheiros/"
--#~ "pastas. Depois, poderá colocar a máquina no modo permissivo (setenforce "
--#~ "0). \n"
--#~ "Execute/reinicie a aplicação para gerar as mensagens do 'avc'.\n"
--#~ "Use o 'audit2allow -R' para gerar regras adicionais para o ficheiro TE.\n"
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Cria/Manipula ficheiros temporários em /tmp"
--#, fuzzy
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Esta ferramenta irá gerar o seguinte: Aplicação do Tipo (te), Contexto "
--#~ "dos Ficheiros(fc), Interface(if), Programa(sh).\n"
--#~ "Execute o programa para compilar/instalar e legendar de novo os ficheiros/"
--#~ "pastas. Depois, poderá colocar a máquina no modo permissivo (setenforce "
--#~ "0). \n"
--#~ "Execute/reinicie a aplicação para gerar as mensagens do 'avc'.\n"
--#~ "Use o 'audit2allow -R' para gerar regras adicionais para o ficheiro TE.\n"
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "Utiliza PAM para a autenticação"
--#, fuzzy
--#~ msgid "Boolean Name"
--#~ msgstr "Booleano"
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "Utiliza nsswitch ou chamadas de sistema getpw*"
--#~ msgid "Role"
--#~ msgstr "Papel"
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "Uitiliza dbus"
--#~ msgid "Application"
--#~ msgstr "Aplicação"
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "Envia as mensagem de auditoria"
--#, fuzzy
--#~ msgid "%s must be a directory"
--#~ msgstr "Permitir ao 'mount' montar qualquer pasta"
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "Interage com o terminal"
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Tem de indicar um nome"
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "envia email"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Seleccione o ficheiro executável a confinar."
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Seleccione os ficheiros/directórios que a aplicação gere"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "Seleccione o ficheiro do programa do 'init' a confinar."
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+"Adicione os Ficheiros/Directórios onde a aplicação terá necessidade de "
-+"\"Gravar\": Ficheiros PID, Ficheiros de Registo, Ficheiros em /var/lib ..."
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Seleccione os ficheiros que a aplicação confinada cria ou grava"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Seleccione os booleanos que a aplicação utiliza"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr ""
--#~ "Seleccione as pastas que pertencem à aplicação confinada ou onde esta "
--#~ "grava"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+"Adicione/Remova booleanos utilizados por esta aplicação/utilizador confinada/"
-+"o"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Seleccione a pasta onde gerar os ficheiros de políticas"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Seleccione o directório onde gerar os ficheiros de políticas"
--#~ msgid "You must enter a name"
--#~ msgstr "Tem de indicar um nome"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Pasta das Políticas"
--#~ msgid "You must enter a executable"
--#~ msgstr "Tem de indicar um executável"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Ficheiros de Políticas Gerados"
--#~ msgid "Configue SELinux"
--#~ msgstr "Configurar o SELinux"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta ferramenta irá gerar o seguinte: \n"
-+"Execução Forçada de Tipos(te), Contexto de Ficheiros(fc), Interface(if), "
-+"Scripts(sh).\n"
-+"Execute o script como root para compilar/instalar e etiquetar novamente os "
-+"ficheiros/directórios. \n"
-+"Utilize o semanage ou o useradd para mapear utilizadores Linux a perfis de "
-+"utilizadores.\n"
-+"Coloque a máquina no modo permissivo (setenforce 0). \n"
-+"Inicie uma sessão como esse utilizador e teste o perfil do mesmo.\n"
-+"Utilize o 'audit2allow -R' para gerar regras adicionais para o ficheiro te.\n"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "Os portos deverão ser números de 1 a %d "
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Esta ferramenta irá gerar o seguinte: \n"
-+"Execução Forçada de Tipos(te), Contexto de Ficheiros(fc), Interface(if), "
-+"Scripts(sh).\n"
-+"\n"
-+"Execute o script como root para compilar/instalar e etiquetar novamente os "
-+"ficheiros/directórios. \n"
-+"Coloque a máquina no modo permissivo (setenforce 0). \n"
-+"Execute/reinicie a aplicação para gerar as mensagens 'avc'.\n"
-+"Utilize o 'audit2allow -R' para gerar regras adicionais para o ficheiro te.\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "Adicionar Diálogo de Booleanos"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "Nome do Booleano"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "Perfil"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Utilizador_Existente"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "Aplicação"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s precisa de ser uma directória"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "Tem de seleccionar um utilizador"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "Seleccione o ficheiro executável a confinar."
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "Seleccione o ficheiro do script init a confinar."
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "Seleccione os ficheiros que a aplicação confinada cria ou grava"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+"Seleccione os directórios que pertencem à aplicação confinada, onde esta "
-+"pode gravar"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "Seleccione o directório onde se pode gerar os ficheiros de políticas"
--#, fuzzy
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "Tem de indicar um nome para o seu processo confinado"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Tipo %s_t já está definido na política actual.\n"
-+"Deseja continuar?"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Os tipos do UTILIZADOR não permitem executáveis"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "Verificar nome"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "Só as aplicações de SERVIDORES poderão usar um programa do 'init'"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"Módulo %s.pp já está carregado na política actual.\n"
-+"Deseja continuar?"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "O 'use_syslog' deverá ser um valor booleano "
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Tem de inserir um nome"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Os Tipos do UTILIZADOR obtém automaticamente um tipo 'tmp'"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "Tem de inserir um executável"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr ""
--#~ "Tem de indicar a localização do executável para o seu processo confinado"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "Configurar o SELinux"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Ficheiro de Aplicação do Tipo"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Os portos têm de ser números ou intervalos de números de 1 a %d "
--#~ msgid "Interface file"
--#~ msgstr "Ficheiro de interface"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "Tem de inserir um nome para o seu processo/utilizador confinado"
--#~ msgid "File Contexts file"
--#~ msgstr "Ficheiro de contexto dos ficheiros"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Os tipos de UTILIZADOR não permitem executáveis"
--#~ msgid "Setup Script"
--#~ msgstr "Programa de Configuração"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Só as aplicações de SERVIÇOS podem utilizar um script init"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Tipo do Porto\n"
--#~ "de SELinux"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "'use_syslog' deverá ser um valor booleano "
--#~ msgid "Protocol"
--#~ msgstr "Protocolo"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "Os Tipos UTILIZADOR obtém automaticamente o tipo 'tmp'"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Nível do\n"
--#~ "MLS/MCS"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "Tem de inserir o caminho do executável para o seu processo confinado"
--#~ msgid "Port"
--#~ msgstr "Porto"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "Ficheiro de Execução Forçada de Tipos"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "O número de porto \"%s\" não é válido. 0 < NÚMERO PORTO < 65536 "
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "Ficheiro de interface"
--#~ msgid "Group View"
--#~ msgstr "Vista de Grupo"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "Ficheiro de contextos de ficheiros"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Protecção de Serviços do SELinux"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "Script de Configuração"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o servidor 'acct'"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr "Porto de Rede"
--#~ msgid "Admin"
--#~ msgstr "Administração"
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+"Tipo do Porto\n"
-+"SELinux"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "Permitir a todos os servidores criarem ficheiros 'core' no /"
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr "Protocolo"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "Permitir a todos os servidores usarem TTYs não reservados"
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Nível\n"
-+"MLS/MCS"
--#~ msgid "User Privs"
--#~ msgstr "Privilégios do Utilizador"
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr "Porto"
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "O número de porto \"%s\" não é válido. 0 < NÚMERO_PORTO < 65536 "
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr "Vista em Lista"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr "Vista de Grupo"
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr "Protecção de Serviços SELinux"
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço acct"
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr "Administração"
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr "Permitir que todos os serviços criem ficheiros core em /"
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Permitir que todos os serviços possam utilizar ttys não alocados"
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr "Privilégios do Utilizador"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir às contas de utilizadores 'gadmin' do SELinux executarem "
--#~ "ficheiros na sua pasta pessoal ou na /tmp"
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux gadmin possa executar ficheiros "
-+"na sua área pessoal ou em /tmp"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir às contas convidadas do SELinux executarem ficheiros nas suas "
--#~ "pastas pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux guest possa executar ficheiros na "
-+"sua área pessoal ou em /tmp"
--#~ msgid "Memory Protection"
--#~ msgstr "Protecção de Memória"
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr "Protecção de Memória"
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr "Permitir a pilha de execução do Java"
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr "Montar"
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr "Permitir que o mount possa montar qualquer ficheiro"
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr "Permitir que o mount possa montar qualquer directório"
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr "Permitir a pilha de execução do mplayer"
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr "SSH"
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr "Permitir que o SSH possa executar o ssh-keysign"
--#~ msgid "Allow java executable stack"
--#~ msgstr "Permitir a pilha executável do Java"
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux staff possa executar ficheiros na "
-+"sua área pessoal ou em /tmp"
--#~ msgid "Mount"
--#~ msgstr "Montar"
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux sysadm possa executar ficheiros "
-+"na sua área pessoal ou em /tmp"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Permitir ao 'mount' montar qualquer ficheiro"
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+"Permitir que as conta de utilizador SELinux não confinadas possam executar "
-+"ficheiros na sua área pessoal ou em /tmp"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Permitir ao 'mount' montar qualquer pasta"
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr "Configuração da Rede"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Permitir a pilha executável do MPlayer"
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Permitir o tráfego na rede de pacotes sem etiqueta"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux user possa executar ficheiros na "
-+"sua área pessoal ou em /tmp"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Permitir ao SSH executar o 'ssh-keysign'"
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Permitir não confinados para dyntrans para unconfined_execmem"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir às contas 'staff' do SELinux executarem ficheiros nas suas "
--#~ "pastas pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr "Bases de Dados"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir às contas 'sysadm' do SELinux executarem ficheiros nas suas "
--#~ "pastas pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr "Permitir ao utilizador ligar-se ao socket mysql"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "Permitir às contas não-confinadas do SELinux executarem ficheiros nas "
--#~ "suas pastas pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr "Permitir ao utilizador ligar-se ao socket postgres"
--#~ msgid "Network Configuration"
--#~ msgstr "Configuração da Rede"
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr "Servidor X"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Permitir o fluxo de pacotes não-legendados pela rede"
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr "Permitir aos clientes escreverem para a memória partilhada do X"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "Permitir às contas 'user' do SELinux executarem ficheiros nas suas pastas "
--#~ "pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+"Permitir que a conta de utilizador SELinux xguest possa executar ficheiros "
-+"na sua área pessoal ou em /tmp"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Permitir a não-confinação do 'dyntrans' para o 'unconfined_execmem'"
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr "NIS"
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr "Permitir que os serviços se executem com NIS"
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr "Aplicações Web"
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Transitar o utilizador SELinux staff para o Domínio de Navegação Web"
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transitar o utilizador SELinux sysadm para o Domínio de Navegação Web"
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transitar o utilizador SELinux user para o Domínio de Navegação Web"
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transitar o utilizador SELinux xguest para o Domínio de Navegação Web"
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+"Permitir aos Navegadores Web do utilizador staff escrever nos directórios "
-+"pessoais"
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr "Desactivar a protecção SELinux para o amanda"
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr "Desactivar a protecção SELinux para amavis"
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço apmd"
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço arpwatch"
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço auditd"
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço automount"
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr "Desactivar a protecção SELinux para o avahi"
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço bluetooth"
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço canna"
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cardmgr"
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Desactivar a protecção SELinux para o Servidor Cluster"
--#~ msgid "Databases"
--#~ msgstr "Bases de Dados"
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+"Permitir ao cdrecord ler conteúdos diversos. nfs, samba, dispositivos "
-+"removíveis, ficheiros temporários e ficheiros de conteúdo não-confiável"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Permitir ao utilizador ligar-se ao porto do MySQL"
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ciped"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Permitir ao utilizador ligar-se ao porto do PostgreSQL"
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço clamd"
--#~ msgid "XServer"
--#~ msgstr "Servidor X"
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "Desactivar a protecção SELinux para o serviço clamscan"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Permitir aos clientes escreverem na memória partilhada do X"
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "Desactivar a protecção SELinux para o serviço clvmd"
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Permitir às contas 'xguest' do SELinux executarem ficheiros nas suas "
--#~ "pastas pessoais ou na /tmp"
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço comsat"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço courier"
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Permitir aos servidores executarem com o NIS"
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cpucontrol"
--#~ msgid "Web Applications"
--#~ msgstr "Aplicações Web"
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cpuspeed"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transitar o utilizador 'staff' do SELinux para o Domínio de Navegação Web"
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transitar o utilizador 'sysadm' do SELinux para o Domínio de Navegação Web"
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço crond"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transitar o utilizador 'user' do SELinux para o Domínio de Navegação Web"
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "Impressão"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr ""
--#~ "Transitar o utilizador 'xguest' do SELinux para o Domínio de Navegação Web"
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+"Desactivar a protecção SELinux para o serviço de infra-estrutura do cupsd"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr ""
--#~ "Permitir aos Navegadores Web do 'staff' escrever nas pastas pessoais"
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cupsd"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Desactivar a protecção do SELinux para o Amanda"
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Desactivar a protecção SELinux para o serviço cupsd_lpd"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Desactivar a protecção do SELinux para o Amavis"
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'apmd'"
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cvs"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'arpwatch'"
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço cyrus"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'auditd'"
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dbskkd"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'automount'"
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dbusd"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Desactivar a protecção do SELinux para o Avahi"
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "Desactivar a protecção SELinux para o serviço dccd"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'bluetooth'"
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "Desactivar a protecção SELinux para o serviço dccifd"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'canna'"
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "Desactivar a protecção SELinux para o serviço dccm"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cardmgr'"
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ddt"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Desactivar a protecção do SELinux para o Servidor de 'Clusters'"
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço devfsd"
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "Permitir ao 'cdrecord' ler conteúdo diverso: ficheiros de conteúdo não-"
--#~ "fiável e temporário, NFS, Samba, dispositivos removíveis, etc"
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dhcpc"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ciped'"
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dhcpd"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clamd'"
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dictd"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clamscan'"
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Permitir ao 'sysadm_t' iniciar serviços directamente"
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clvmd'"
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "Desactivar a protecção SELinux para o Evolution"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'comsat'"
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "Jogos"
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'courier'"
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "Desactivar a protecção SELinux para os jogos"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cpucontrol'"
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "Desactivar a protecção SELinux para os navegadores Web"
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cpuspeed'"
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Desactivar a protecção SELinux para o Thunderbird"
--#~ msgid "Cron"
--#~ msgstr "CRON"
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço distccd"
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'crond'"
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dmesg"
--#~ msgid "Printing"
--#~ msgstr "Impressão"
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dnsmasq"
--#, fuzzy
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr ""
--#~ "Desactivar a protecção do SELinux para o serviço de infra-estrutura do "
--#~ "'cupsd'"
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço dovecot"
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cupsd'"
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço entropyd"
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cupsd_lpd'"
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "Desactivar a protecção SELinux para o fetchmail"
--#~ msgid "CVS"
--#~ msgstr "CVS"
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço fingerd"
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cvs'"
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço freshclam"
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cyrus'"
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço fsdaemon"
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dbskkd'"
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço gpm"
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dbusd'"
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccd'"
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço gss"
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccifd'"
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço Hal"
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccm'"
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Compatibilidade"
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ddt'"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+"Não auditar coisas que se sabem problemáticas mas que não são problemas de "
-+"segurança"
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'devfsd'"
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço hostname"
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dhcpc'"
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço hotplug"
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dhcpd'"
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço howl"
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dictd'"
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço hplip (do cups)"
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Permitir ao 'sysadm_t' iniciar directamente os serviços"
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Desactivar a protecção SELinux para o serviço rotatelogs (do httpd)"
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Desactivar a protecção do SELinux para o Evolution"
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "Serviço HTTPD"
--#~ msgid "Games"
--#~ msgstr "Jogos"
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "Desactivar a protecção SELinux para o serviço suexec (do httpd)"
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Desactivar a protecção do SELinux para os jogos"
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço hwclock"
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Desactivar a protecção do SELinux para os navegadores Web"
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço i18n"
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Desactivar a protecção do SELinux para o Thunderbird"
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço imazesrv"
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'distccd'"
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Desactivar a protecção SELinux para os serviços lançados pelo inetd"
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dmesg'"
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço inetd"
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dnsmasq'"
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço innd"
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dovecot'"
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço iptables"
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'entropyd'"
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ircd"
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Desactivar a protecção do SELinux para o 'fetchmail'"
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço irqbalance"
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'fingerd'"
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço iscsi"
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'freshclam'"
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço jabberd"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'fsdaemon'"
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'gpm'"
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço kadmin"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço klog"
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'gss'"
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço krb5kdc"
--#, fuzzy
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hal'"
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Desactivar a protecção SELinux para os serviços do ktalk"
--#~ msgid "Compatibility"
--#~ msgstr "Compatibilidade"
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço kudzu"
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Não auditar as coisas marcadas como problemáticas mas que não são "
--#~ "problemas de segurança"
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço locate"
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hostname'"
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço lpd"
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hotplug'"
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço lrrd"
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'howl'"
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço lvm"
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hplip' do CUPS"
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "Desactivar a protecção SELinux para o mailman"
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr ""
--#~ "Desactivar a protecção do SELinux para o serviço 'rotatelogs' do HTTPD"
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Permitir ao Evolution e Thunderbird lerem ficheiros do utilizador"
--#~ msgid "HTTPD Service"
--#~ msgstr "Serviço do HTTPD"
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço mdadm"
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'suexec' do HTTPD"
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço monopd"
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hwclock'"
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "Permitir ao navegador Mozilla ler os ficheiros do utilizador"
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'i18n'"
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço mrtg"
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'imazesrv'"
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço mysqld"
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr ""
--#~ "Desactivar a protecção do SELinux para os serviços-filhos do 'inetd'"
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nagios"
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'inetd'"
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "Serviço de Nomes"
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'innd'"
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço named"
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'iptables'"
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nessusd"
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ircd'"
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Desactivar a protecção SELinux para o NetworkManager"
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'irqbalance'"
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nfsd"
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'iscsi'"
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'jabberd'"
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nmbd"
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nrpe"
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'kadmin'"
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nscd"
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'klog'"
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço nsd"
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'krb5kdc'"
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ntpd"
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Desactivar a protecção do SELinux para os serviços do 'ktalk'"
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "Desactivar a protecção SELinux para o Oddjob"
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'kudzu'"
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Desactivar a protecção SELinux para o oddjob_mkhomedir"
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'locate'"
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço openvpn"
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lpd'"
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço pam"
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lrrd'"
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "Desactivar a protecção SELinux para o serviço pegasus"
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lvm'"
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço perdition"
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Desactivar a protecção do SELinux para o 'mailman'"
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço portmap"
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Permitir ao Evolution e Thunderbird lerem ficheiros do utilizador"
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço portslave"
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mdadm'"
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "Desactivar a protecção SELinux para o postfix"
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'monopd'"
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço postgresql"
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Permitir ao navegador Mozilla ler os ficheiros do utilizador"
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mrtg'"
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "Permitir ao pppd ser executado por um utilizador regular"
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mysqld'"
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "Desactivar a protecção SELinux para o pptp"
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nagios'"
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço prelink"
--#~ msgid "Name Service"
--#~ msgstr "Serviço de Nomes"
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço privoxy"
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'named'"
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ptal"
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nessusd'"
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço pxe"
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Desactivar a protecção do SELinux para o NetworkManager"
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "Desactivar a protecção SELinux para o pyzord"
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nfsd'"
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço quota"
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço radiusd"
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nmbd'"
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço radvd"
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nrpe'"
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "Desactivar a protecção SELinux para o serviço rdisc"
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nscd'"
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "Desactivar a protecção SELinux para o serviço readahead"
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nsd'"
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+"Permitir aos programas lerem ficheiros em locais não usuais (default_t)"
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ntpd'"
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "Desactivar a protecção SELinux para o restorecond"
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Desactivar a protecção do SELinux para o Oddjob"
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço rhgb"
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Desactivar a protecção do SELinux para o 'oddjob_mkhomedir'"
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "Desactivar a protecção SELinux para o ricci"
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'openvpn'"
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Desactivar a protecção SELinux para o ricci_modclusterd"
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pam'"
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço rlogind"
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pegasus'"
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço rpcd"
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'perdition'"
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "Desactivar a protecção SELinux para o rshd"
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'portmap'"
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'portslave'"
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço rsync"
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Desactivar a protecção do SELinux para o 'postfix'"
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+"Permitir ao SSH ser executado a partir do inetd em vez de ser como um serviço"
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'postgresql'"
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "Permitir ao Samba partilhar directórios nfs"
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "Servidor de autenticação SASL"
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Permitir ao 'pppd' ser executado por um utilizador normal"
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Permitir ao servidor de autenticação SASL ler o '/etc/shadow'"
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Desactivar a protecção do SELinux para o 'pptp'"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"Permitir ao Servidor X mapear uma região de memória como executável e para "
-+"escrita em simultâneo"
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'prelink'"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço saslauthd"
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'privoxy'"
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço scannerdaemon"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ptal'"
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Não permitir a transição para 'sysadm_t', o sudo e o su são afectados"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pxe'"
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "Não permitir a nenhum processo carregar módulos do kernel"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Desactivar a protecção do SELinux para o 'pyzord'"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Não permitir a nenhum processo modificar a política SELinux do kernel"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'quota'"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço sendmail"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'radiusd'"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "Desactivar a protecção SELinux para o serviço setrans"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'radvd'"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço setroubleshoot"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rdisc'"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço slapd"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'readahead'"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço slrnpull"
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Permitir aos programas lerem ficheiros em pastas fora do normal "
--#~ "(default_t)"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço smbd"
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Desactivar a protecção do SELinux para o 'restorecond'"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço snmpd"
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rhgb'"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço snort"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Desactivar a protecção do SELinux para o 'ricci'"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço soundd"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Desactivar a protecção do SELinux para o 'ricci_modclusterd'"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço sound"
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rlogind'"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "Protecção contra Spam"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rpcd'"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço spamd"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Desactivar a protecção do SELinux para o 'rshd'"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "Permitir ao spamd aceder aos directórios pessoais"
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "Permitir o acesso à rede ao serviço Spam Assassin"
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rsync'"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço speedmgmt"
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr ""
--#~ "Permitir ao SSH correr a partir do 'inetd' em vez de ser um servidor"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Permitir ao Samba partilhar as pastas do NFS"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "Permitir ao servidor squid aceder à rede"
--#~ msgid "SASL authentication server"
--#~ msgstr "Servidor de autenticação do SASL"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço squid"
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Permitir ao servidor de autenticação do SASL ler o '/etc/shadow'"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ssh"
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Permitir ao servidor do X mapear uma região de memória como executável e "
--#~ "para escrita"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Permitir inícios de sessão SSH como 'sysadm_r:sysadm_t'"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'saslauthd'"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"Permitir aos utilizadores 'staff_r' pesquisarem a pasta pessoal do 'sysadm' "
-+"e lerem ficheiros (como o ~/.bashrc)"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'scannerdaemon'"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "Túnel de SSL universal"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr ""
--#~ "Não permitir a transição para o 'sysadm_t'; o 'sudo' e o 'su' são "
--#~ "afectados"
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço stunnel"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Não permitir a nenhum processo carregar módulos do 'kernel'"
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Permitir ao serviço stunnel executar-se autonomamente, fora do xinetd"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr ""
--#~ "Não permitir a nenhum processo modificar a política do SELinux no 'kernel'"
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço swat"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sendmail'"
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço sxid"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'setrans'"
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço syslogd"
--#, fuzzy
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'setroubleshoot'"
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Desactivar a protecção SELinux para as tarefas cron do sistema"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'slapd'"
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço tcp"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'slrnpull'"
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço telnet"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'smbd'"
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço tftpd"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'snmpd'"
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço transproxy"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'snort'"
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço udev"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'soundd'"
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço uml"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sound'"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"Permitir ao xinetd executar-se não-confinado, incluindo os serviços que "
-+"inicia que não têm uma transição de domínio definida explicitamente"
--#, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "Protecção contra Spam"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"Permitir aos scripts 'rc' executarem-se não-confinados, incluindo os "
-+"serviços iniciados por um script 'rc' que não tenha uma transição de domínio "
-+"definida explicitamente"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'spamd'"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "Permitir ao rpm ser executado não-confinado"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Permitir ao 'spamd' aceder às pastas pessoais"
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+"Permitir a execução não-confinada dos utilitários privilegiados como o "
-+"hotplug e o insmod"
--#, fuzzy
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Permitir ao servidor do Spam Assassin aceder à rede"
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço updfstab"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'speedmgmt'"
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço uptimed"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"Permitir ao 'user_r' aceder ao 'sysadm_r' com o su, sudo ou o userhelper. "
-+"Caso contrário, só o 'staff_r' o poderá fazer"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Permitir ao servidor Squid aceder à rede"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "Permitir aos utilizadores executarem o comando mount"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'squid'"
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+"Permitir aos utilizadores regulares acederem ao rato directamente (só "
-+"permite o servidor X)"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ssh'"
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "Permitir aos utilizadores executarem o comando dmesg"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Permitir as autenticações de SSH como 'sysadm_r:sysadm_t'"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"Permitir aos utilizadores controlarem as interfaces de rede (também precisa "
-+"do USERCTL=true)"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Permitir aos utilizadores 'staff_r' pesquisarem a pasta pessoal do "
--#~ "'sysadm' e ler os ficheiros (como o ~/.bashrc)"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "Permitir a um utilizador normal executar o ping"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Túnel de SSL universal"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+"Permitir a um utilizador ler e escrever (r/w) num 'noextattrfile' (FAT, "
-+"CDROM, FLOPPY)"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'stunnel'"
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "Permitir aos utilizadores lerem e escreverem em dispositivos usb"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Permitir ao serviço 'stunnel' executar-se autonomamente, fora do 'xinetd'"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"Permitir aos utilizadores executarem servidores TCP (associar a portos e "
-+"aceitar ligações do mesmo domínio e de utilizadores exteriores); desactivar "
-+"isto força o modo passivo do FTP e poderá alterar outros protocolos"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'swat'"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "Permitir ao utilizador executar o stat em ficheiros tty"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sxid'"
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço uucpd"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'syslogd'"
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço vmware"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr ""
--#~ "Desactivar a protecção do SELinux para as tarefas do CRON do sistema"
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço watchdog"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'tcp'"
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço winbind"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'telnet'"
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço xdm"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'tftpd'"
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Permitir inícios de sessão xdm como 'sysadm_r:sysadm_t'"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'transproxy'"
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço xen"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'udev'"
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uml'"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "Permitir ao xen ler/escrever em dispositivos de disco físicos"
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Permitir ao 'xinetd' correr como não-confinado, incluindo os serviços que "
--#~ "inicia e que não têm uma transição de domínio definida explicitamente"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço xfs"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Permitir aos programas 'rc' correrem como não-confinados, incluindo os "
--#~ "serviços iniciados por um programa 'rc' que não tenha uma transição de "
--#~ "domínio definida explicitamente"
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "Desactivar a protecção SELinux para o gestor do xen"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Permitir ao RPM ser executado como não-confinado"
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ypbind"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Permitir a execução não-confinada dos utilitários privilegiados como o "
--#~ "'hotplug' e o 'insmod'"
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Desactivar a protecção SELinux para o Serviço de Senhas do NIS"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'updfstab'"
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Desactivar a protecção SELinux para o serviço ypserv"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uptimed'"
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Desactivar a protecção SELinux para o Serviço de Transferências do NIS"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Permitir ao 'user_r' aceder ao 'sysadm_r' com o 'su', 'sudo' ou o "
--#~ "'userhelper'. Caso contrário, só o 'staff_r' o poderá fazer"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"Permitir que o utilizador SELinux webadm possa gerir as áreas pessoais dos "
-+"utilizadores não-privilegiados"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Permitir aos utilizadores executarem o comando 'mount'"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"Permitir que o utilizador SELinux webadm possa ler as áreas pessoais dos "
-+"utilizadores não-privilegiados"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Permitir aos utilizadores normais acederem ao rato (só permitir o "
--#~ "servidor X)"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Tem a certeza que deseja remover o %s '%s'?"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Permitir aos utilizadores executarem o comando 'dmesg'"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Apagar o %s"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Permitir aos utilizadores controlarem as interfaces de rede (também "
--#~ "precisa do USERCTL=true)"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Adicionar o %s"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Permitir a um utilizador normal executar o 'ping'"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Modificar o %s"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr ""
--#~ "Permitir a um utilizador escrever num 'noextattrfile' (FAT, CDROM, FLOPPY)"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Permissivo"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Permitir aos utilizadores gravarem em dispositivos USB"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Execução forçada"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Desactivado"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Estado"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Permitir aos utilizadores executarem servidores do TCP (associar a portos "
--#~ "e aceitar ligações do mesmo domínio e de utilizadores exteriores); se "
--#~ "desactivar isto irá forçar o modo passivo do FTP e poderá alterar outros "
--#~ "protocolos"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"A mudança do tipo de política obriga a voltar a etiquetar todo o sistema de "
-+"ficheiros no próximo arranque. Esta operação demora bastante tempo, "
-+"dependendo do tamanho do sistema de ficheiros.  Deseja continuar?"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Permitir ao utilizador fazer um 'stat' em ficheiros de TTY"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"A mudança para a desactivação do SELinux necessita de um reinício do "
-+"sistema. Isto não é recomendado. Se optar por activar de novo o SELinux, o "
-+"sistema terá de ser etiquetado novamente. Se apenas pretender verificar se o "
-+"SELinux está a provocar algum problema no seu sistema, poderá mudar para o "
-+"modo permissivo, que só irá registar os erros e não irá forçar a política do "
-+"SELinux. O modo permissivo não necessita de reiniciar o sistema. Deseja "
-+"continuar?"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uucpd'"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Activar o SELinux obriga a voltar a etiquetar todo o sistema de ficheiros no "
-+"próximo arranque. Esta operação demora bastante tempo, dependendo do tamanho "
-+"do sistema de ficheiros.  Deseja continuar?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'vmware'"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'watchdog'"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Adicionar um Mapeamento de Contas SELinux"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Adicionar Portos de Rede SELinux"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "Tipo SELinux"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'winbind'"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"Nível MLS/MCS\n"
-+"do SELinux"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xdm'"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Especificação do Ficheiro"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Permitir as autenticações no 'xdm' como 'sysadm_r:sysadm_t'"
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Tipo de Ficheiro"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xen'"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"todos os ficheiros\n"
-+"ficheiro regular\n"
-+"directório\n"
-+"dispositivo de carácteres\n"
-+"dispositivo de blocos\n"
-+"socket\n"
-+"ligação simbólica\n"
-+"'pipe' com nome\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Adicionar um Utilizador SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "Administração do SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Adicionar"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Propriedades"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "Apa_gar"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Seleccionar Objecto de Gestão"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Seleccionar:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Modo de Execução Forçada Por Omissão do Sistema"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Desactivado\n"
-+"Permissivo\n"
-+"Execução Forçada\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Modo de Execução Forçada Actual"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Tipo de Política Por Omissão do Sistema: "
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Permitir ao Xen ler/escrever em dispositivos físicos do disco"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Seleccione se deseja etiquetar de novo todo o sistema de ficheiros no "
-+"próximo arranque. Esta nova etiquetagem poderá levar bastante tempo, "
-+"dependendo do tamanho do sistema. Se estiver a alterar os tipos de políticas "
-+"ou a mudar do modo desactivado para a execução forçada, a etiquetagem é "
-+"obrigatória."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Etiquetar no próximo arranque."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Reverter definição booleana para o valor por omissão do sistema"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Alternar entre os booleanos personalizados e todos os booleanos"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Executar o assistente de bloqueador de booleanos"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Bloquear..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Filtro"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Adicionar um Contexto de Ficheiro"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Modificar o Contexto de Ficheiro"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Apagar o Contexto de Ficheiro"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+"Alternar entre todos os contextos de ficheiro ou apenas os personalizados"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Adicionar um Mapeamento de Utilizador SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Modificar o Mapeamento de Utilizador SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Apagar o Mapeamento de Utilizador SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Adicionar Utilizador"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Modificar Utilizador"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Apagar Utilizador"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Adicionar Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modificar Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Apagar Tradução"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Adicionar um Porto de Rede"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Editar um Porto de Rede"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Apagar um Porto de Rede"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Alternar entre Personalizados e Todos os Portos"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Gerar um novo módulo de políticas"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Carregar módulo de políticas"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Remover módulo de política carregável"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xfs'"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+"Activar/Desactivar as regras de auditoria adicionais, que não são "
-+"normalmente reportadas nos ficheiros de registo."
--#, fuzzy
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Desactivar a protecção do SELinux para o 'constrol' do Xen"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ypbind'"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Alterar o modo de processo para permissivo."
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o Servidor de Senhas do NIS"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Modificar modo do processo para execução forçada"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ypserv'"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Domínio do processo"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr ""
--#~ "Desactivar a protecção do SELinux para o Servidor de Transferências do NIS"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Permitir ao utilizador 'webadm' do SELinux gerir as pastas pessoais dos "
--#~ "utilizadores não-privilegiados"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "O utilizador SELinux '%s' é obrigatório"
- #, fuzzy
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Permitir ao utilizador 'webadm' do SELinux ler as pastas pessoais dos "
--#~ "utilizadores não-privilegiados"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Tem a certeza que deseja remover o %s '%s'?"
--
--#~ msgid "Delete %s"
--#~ msgstr "Apagar o %s"
--
--#~ msgid "Add %s"
--#~ msgstr "Adicionar o %s"
--
--#~ msgid "Modify %s"
--#~ msgstr "Modificar o %s"
--
--#~ msgid "Permissive"
--#~ msgstr "Permissivo"
--
--#~ msgid "Enforcing"
--#~ msgstr "Obrigatório"
--
--#~ msgid "Disabled"
--#~ msgstr "Inactivo"
--
--#~ msgid "Status"
--#~ msgstr "Estado"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "A mudança do tipo de política obriga a voltar a etiquetar todo o sistema "
--#~ "de ficheiros no próximo arranque. Esta operação demora bastante tempo, "
--#~ "dependendo do tamanho do sistema de ficheiros.  Deseja continuar?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "A mudança para a desactivação do SELinux necessita de um reinício do "
--#~ "sistema. Isto não é recomendado. Se optar por activar de novo o SELinux, "
--#~ "o sistema terá de ser legendado de novo. Se apenas quiser ver se o "
--#~ "SELinux está a provocar algum problema no seu sistema, poderá mudar para "
--#~ "o modo permissivo, que só irá registar os erros e não irá aplicar a "
--#~ "política do SELinux. O modo permissivo não necessita de reiniciar o "
--#~ "sistema. Deseja continuar?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Activar o SELinux obriga a voltar a etiquetar todo o sistema de ficheiros "
--#~ "no próximo arranque. Esta operação demora bastante tempo, dependendo do "
--#~ "tamanho do sistema de ficheiros.  Deseja continuar?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Adicionar um Mapeamento de Contas do SELinux"
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Nível de Sensibilidade"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Adicionar Portos de Rede ao SELinux"
-+#~ msgid "Modify SELinux User"
-+#~ msgstr "Modificar o Utilizador do SELinux"
--#~ msgid "SELinux Type"
--#~ msgstr "Tipo do SELinux"
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "as traduções não são suportadas em máquinas não-MLS"
- #~ msgid ""
- #~ "tcp\n"
-@@ -2777,175 +3591,6 @@
- #~ "TCP\n"
- #~ "UDP"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "Nível MLS/MCS\n"
--#~ "do SELinux"
--
--#~ msgid "File Specification"
--#~ msgstr "Especificação do Ficheiro"
--
--#~ msgid "File Type"
--#~ msgstr "Tipo de Ficheiro"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "todos os ficheiros\n"
--#~ "ficheiro normal\n"
--#~ "pasta\n"
--#~ "dispositivo de carácter\n"
--#~ "dispositivo de bloco\n"
--#~ "'socket'\n"
--#~ "ligação simbólica\n"
--#~ "'pipe' com nome\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "Adicionar o Utilizador do SELinux"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "Administração do SELinux"
--
--#~ msgid "Add"
--#~ msgstr "Adicionar"
--
--#~ msgid "_Properties"
--#~ msgstr "_Propriedades"
--
--#~ msgid "_Delete"
--#~ msgstr "Apa_gar"
--
--#~ msgid "Select Management Object"
--#~ msgstr "Seleccionar o Objecto da Gestão"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Seleccionar:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Modo de Aplicação Predefinido do Sistema"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Modo de Aplicação Actual"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Tipo de Política Predefinida do Sistema: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Seleccione se quiser legendar ou etiquetar de novo todo o sistema de "
--#~ "ficheiros no próximo arranque. Esta nova legendagem poderá levar bastante "
--#~ "tempo, dependendo do tamanho do sistema. Se estiver a alterar os tipos de "
--#~ "políticas ou mudar do modo desactivado para o obrigatório, é necessária "
--#~ "uma nova legendagem."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Legendar no próximo arranque."
--
--#~ msgid "label37"
--#~ msgstr "label37"
--
--#~ msgid "Filter"
--#~ msgstr "Filtro"
--
--#~ msgid "label50"
--#~ msgstr "label50"
--
--#~ msgid "Add File Context"
--#~ msgstr "Adicionar um Contexto de Ficheiros"
--
--#~ msgid "Modify File Context"
--#~ msgstr "Modificar o Contexto de Ficheiros"
--
--#~ msgid "Delete File Context"
--#~ msgstr "Apagar o Contexto de Ficheiros"
--
--#~ msgid "label38"
--#~ msgstr "label38"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Adicionar um Mapeamento de Utilizadores do SELinux"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Modificar o Mapeamento de Utilizadores do SELinux"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Apagar o Mapeamento de Utilizadores do SELinux"
--
--#~ msgid "label39"
--#~ msgstr "label39"
--
--#~ msgid "Add Translation"
--#~ msgstr "Adicionar uma Tradução"
--
--#~ msgid "Modify Translation"
--#~ msgstr "Modificar a Tradução"
--
--#~ msgid "Delete Translation"
--#~ msgstr "Apagar a Tradução"
--
--#~ msgid "label41"
--#~ msgstr "label41"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "Modificar o Utilizador do SELinux"
--
--#~ msgid "label40"
--#~ msgstr "label40"
--
--#~ msgid "Add Network Port"
--#~ msgstr "Adicionar um Porto de Rede"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "Editar o Porto de Rede"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "Apagar o Porto de Rede"
--
--#~ msgid "label42"
--#~ msgstr "label42"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "Gerar um novo módulo de política"
--
--#~ msgid "Load policy module"
--#~ msgstr "Carregar o módulo de políticas"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Remover o módulo de política carregável"
--
--#, fuzzy
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "Desactivar as regras de auditoria adicionais, que não são normalmente "
--#~ "comunicadas nos ficheiros de registo."
--
--#~ msgid "label44"
--#~ msgstr "label44"
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "Nível de Sensibilidade"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "O utilizador do SELinux '%s' é obrigatório"
--
- #~ msgid "Requires value"
- #~ msgstr "É necessário um valor"
-@@ -3025,7 +3670,7 @@
- #~ msgstr "valor"
- #~ msgid "You must be root to run %s."
--#~ msgstr "Deverá ser o 'root' para executar o %s."
-+#~ msgstr "Deverá ser o root' para executar o %s."
- #~ msgid "Other"
- #~ msgstr "Outro"
-@@ -3063,8 +3708,8 @@
- #~ "Application uses nsswitch or translates UID's (daemons that run as non "
- #~ "root)"
- #~ msgstr ""
--#~ "A aplicação usa o 'nsswitch' ou traduz os UIDs (servidores que se "
--#~ "executam como não-root)"
-+#~ "A aplicação usa o nsswitch' ou traduz os UIDs (servidores que se executam "
-+#~ "como não-root)"
- #~ msgid "Files and Directories"
- #~ msgstr "Ficheiros e Pastas"
-@@ -3125,12 +3770,12 @@
- #~ msgstr "FTP"
- #~ msgid "Allow ftpd to full access to the system"
--#~ msgstr "Permitir ao 'ftpd' ter acesso completo ao sistema"
-+#~ msgstr "Permitir ao ftpd' ter acesso completo ao sistema"
- #~ msgid ""
- #~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
- #~ msgstr ""
--#~ "Permitir ao 'ftpd' enviar ficheiros para pastas marcadas como "
-+#~ "Permitir ao ftpd' enviar ficheiros para pastas marcadas como "
- #~ "'public_content_rw_t'"
- #~ msgid "Allow ftp servers to use cifs used for public file transfer services"
-@@ -3144,29 +3789,29 @@
- #~ "públicas de ficheiros"
- #~ msgid "Allow gpg executable stack"
--#~ msgstr "Permitir a pilha executável do 'gpg'"
-+#~ msgstr "Permitir a pilha executável do gpg"
- #~ msgid "Allow gssd to read temp directory"
--#~ msgstr "Permitir ao 'gssd' ler a pasta de temporários"
-+#~ msgstr "Permitir ao gssd' ler a pasta de temporários"
- #~ msgid ""
- #~ "Allow httpd daemon to write files in directories labeled "
- #~ "public_content_rw_t"
- #~ msgstr ""
--#~ "Permitir ao servidor 'httpd' gravar ficheiros nas pastas chamadas "
-+#~ "Permitir ao servidor httpd' gravar ficheiros nas pastas chamadas "
- #~ "'public_content_rw_t'"
- #~ msgid "Allow Apache to communicate with avahi service"
- #~ msgstr "Permitir ao Apache comunicar com o serviço Avahi"
- #~ msgid "Allow Apache to use mod_auth_pam"
--#~ msgstr "Permitir ao Apache usar o 'mod_auth_pam'"
-+#~ msgstr "Permitir ao Apache usar o mod_auth_pam"
- #~ msgid ""
- #~ "Allow httpd scripts to write files in directories labeled "
- #~ "public_content_rw_t"
- #~ msgstr ""
--#~ "Permitir aos programas do 'httpd' criarem ficheiros nas pastas chamadas "
-+#~ "Permitir aos programas do httpd' criarem ficheiros nas pastas chamadas "
- #~ "'public_content_rw_t'"
- #~ msgid "Allow daemons to use kerberos files"
-@@ -3186,13 +3831,12 @@
- #~ msgstr "Activar o suporte de pastas poli-instanciadas"
- #~ msgid "Allow sysadm_t to debug or ptrace applications"
--#~ msgstr ""
--#~ "Permitir ao 'sysadm_t' depurar ou executar o 'ptrace' nas aplicações"
-+#~ msgstr "Permitir ao 'sysadm_t' depurar ou executar o ptrace' nas aplicações"
- #~ msgid ""
- #~ "Allow rsync to write files in directories labeled public_content_rw_t"
- #~ msgstr ""
--#~ "Permitir ao 'rsync' gravar ficheiros em pastas marcadas como "
-+#~ "Permitir ao rsync' gravar ficheiros em pastas marcadas como "
- #~ "'public_content_rw_t'"
- #~ msgid ""
-@@ -3215,13 +3859,13 @@
- #~ "ficheiros para repor os contextos dos ficheiros"
- #~ msgid "Enable extra rules in the cron domain to support fcron"
--#~ msgstr "Activar as regras-extra no domínio do CRON para suportar o 'fcron'"
-+#~ msgstr "Activar as regras-extra no domínio do CRON para suportar o fcron"
- #~ msgid "Disable SELinux protection for ftpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ftpd'"
-+#~ msgstr "Desactivar a protecção SELinux para o serviço ftpd"
- #~ msgid "Allow ftpd to run directly without inetd"
--#~ msgstr "Permitir ao 'ftpd' executar directamente sem o 'inetd'"
-+#~ msgstr "Permitir ao ftpd' executar directamente sem o inetd"
- #~ msgid "Allow ftp to read/write files in the user home directories"
- #~ msgstr ""
-@@ -3254,7 +3898,7 @@
- #~ msgstr "Permitir ao HTTPD actuar como um encaminhador"
- #~ msgid "Disable SELinux protection for httpd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'httpd'"
-+#~ msgstr "Desactivar a protecção SELinux para o serviço httpd"
- #~ msgid "Allow HTTPD cgi support"
- #~ msgstr "Permitir o suporte de CGI's do HTTPD"
-@@ -3283,7 +3927,7 @@
- #~ msgstr "Unificar o tratamento do HTTPD para todos os ficheiros de conteúdos"
- #~ msgid "Allow named to overwrite master zone files"
--#~ msgstr "Permitir ao 'named' sobrepor os ficheiros da zona-mestra"
-+#~ msgstr "Permitir ao named' sobrepor os ficheiros da zona-mestra"
- #~ msgid "Allow NFS to share any file/directory read only"
- #~ msgstr ""
-@@ -3295,16 +3939,16 @@
- #~ msgid "Allow openvpn service access to users home directories"
- #~ msgstr ""
--#~ "Permitir ao serviço 'openvpn' aceder às pastas pessoais dos utilizadores"
-+#~ "Permitir ao serviço openvpn' aceder às pastas pessoais dos utilizadores"
- #~ msgid "Allow pppd daemon to insert modules into the kernel"
--#~ msgstr "Permitir ao serviço 'pppd' inserir módulos no 'kernel'"
-+#~ msgstr "Permitir ao serviço pppd' inserir módulos no kernel"
- #~ msgid "Disable SELinux protection for pppd daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pppd'"
-+#~ msgstr "Desactivar a protecção SELinux para o serviço pppd"
- #~ msgid "Disable SELinux protection for the mozilla ppp daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ppp' do Mozilla"
-+#~ msgstr "Desactivar a protecção SELinux para o serviço ppp' do Mozilla"
- #~ msgid "Allow programs to read untrusted content without relabel"
- #~ msgstr ""
-@@ -3317,10 +3961,10 @@
- #~ msgstr "Spam Assassin"
- #~ msgid "Allow spammassasin to access the network"
--#~ msgstr "Permitir ao 'spamassassin' aceder à rede"
-+#~ msgstr "Permitir ao spamassassin' aceder à rede"
- #~ msgid "Use lpd server instead of cups"
--#~ msgstr "Usar o servidor 'lpd' em vez do 'cups'"
-+#~ msgstr "Usar o servidor lpd' em vez do cups"
- #~ msgid "Support NFS home directories"
- #~ msgstr "Suportar as pastas pessoais por NFS"
-@@ -3336,7 +3980,7 @@
- #~ "leitura)"
- #~ msgid "Disable SELinux protection for zebra daemon"
--#~ msgstr "Desactivar a protecção do SELinux para o serviço 'zebra'"
-+#~ msgstr "Desactivar a protecção SELinux para o serviço zebra"
- #~ msgid "Allow httpd to access samba/cifs file systems"
- #~ msgstr "Permitir ao HTTPD aceder a sistemas de ficheiros Samba/CIFS"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ro.po policycoreutils-2.0.85/po/ro.po
---- nsapolicycoreutils/po/ro.po        2011-02-17 15:11:25.881722382 -0500
-+++ policycoreutils-2.0.85/po/ro.po    2011-02-18 16:03:41.441976242 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
-@@ -1270,3 +1296,2064 @@
- #, c-format
- msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr ""
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr ""
-+
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr ""
-+
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr ""
-+
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
-+msgid "Network Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:85
-+msgid ""
-+"SELinux Port\n"
-+"Type"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
-+msgid "Protocol"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
-+msgid ""
-+"MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:101
-+msgid "Port"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:207
-+#, python-format
-+msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
-+
-+#: ../gui/portsPage.py:252
-+msgid "List View"
-+msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
-+msgid "Group View"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
-+#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
-+#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
-+#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
-+#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
-+#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
-+#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
-+#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
-+#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
-+#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
-+#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
-+#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
-+#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
-+#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
-+#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
-+#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
-+#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
-+#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
-+#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
-+#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
-+#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
-+#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
-+#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
-+#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
-+#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
-+#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
-+#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
-+#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
-+#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
-+#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
-+#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
-+#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
-+#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
-+#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
-+#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
-+#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
-+#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
-+#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
-+#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
-+#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
-+#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
-+#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
-+#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
-+#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+msgid "SELinux Service Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:1
-+msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
-+#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
-+#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
-+#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
-+msgid "Admin"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:2
-+msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:3
-+msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
-+#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
-+#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
-+#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
-+#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
-+#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
-+msgid "User Privs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:4
-+msgid ""
-+"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:5
-+msgid ""
-+"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
-+msgid "Memory Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:6
-+msgid "Allow java executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
-+#: ../gui/selinux.tbl:209
-+msgid "Mount"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:7
-+msgid "Allow mount to mount any file"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:8
-+msgid "Allow mount to mount any directory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:9
-+msgid "Allow mplayer executable stack"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
-+#: ../gui/selinux.tbl:188
-+msgid "SSH"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:10
-+msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:11
-+msgid ""
-+"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:12
-+msgid ""
-+"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:13
-+msgid ""
-+"Allow unconfined SELinux user account to execute files in home directory or /"
-+"tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Network Configuration"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:14
-+msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:15
-+msgid ""
-+"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:16
-+msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
-+#: ../gui/selinux.tbl:140
-+msgid "Databases"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:17
-+msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:18
-+msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
-+msgid "XServer"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:19
-+msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:20
-+msgid ""
-+"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
-+#: ../gui/selinux.tbl:231
-+msgid "NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:21
-+msgid "Allow daemons to run with NIS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
-+#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
-+#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
-+#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
-+#: ../gui/selinux.tbl:118
-+msgid "Web Applications"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:22
-+msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:23
-+msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:24
-+msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:25
-+msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
-+#: ../gui/selinux.tbl:29
-+msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:30
-+msgid "Disable SELinux protection for amanda"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:31
-+msgid "Disable SELinux protection for amavis"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:32
-+msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:33
-+msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:34
-+msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:35
-+msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:36
-+msgid "Disable SELinux protection for avahi"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:37
-+msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:38
-+msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:39
-+msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:40
-+msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:41
-+msgid ""
-+"Allow cdrecord to read various content. nfs, samba, removable devices, user "
-+"temp and untrusted content files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:42
-+msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr ""
-+
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr ""
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils-2.0.85/po/ru.po
---- nsapolicycoreutils/po/ru.po        2011-02-17 15:11:25.611726842 -0500
-+++ policycoreutils-2.0.85/po/ru.po    2011-02-18 16:03:41.442976249 -0500
-@@ -1,21 +1,42 @@
-+# translation of ru.po to Russian
-+# translation of ru.po to
- # translation of policycoreutils.HEAD.ru.po to
+diff --git a/policycoreutils/po/nn.po b/policycoreutils/po/nn.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/nn.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/no.po b/policycoreutils/po/no.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/no.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/nso.po b/policycoreutils/po/nso.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/nso.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/or.po b/policycoreutils/po/or.po
+index 08561b8..c35c371 100644
+--- a/policycoreutils/po/or.po
++++ b/policycoreutils/po/or.po
+@@ -1,25 +1,25 @@
+-# translation of policycoreutils.HEAD.or.po to Oriya
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
  #
- # Andrew Martynov <andrewm@inventa.ru>, 2006, 2007.
--# Yulia Poyarkova <ypoyarko@redhat.com>, 2006.
-+# Yulia <ypoyarko@redhat.com>, 2006, 2010.
- # Anatoliy Guskov <anatoliy.guskov@gmail.com>, 2008.
--# Yulia Poyarkova <yulia.poyarkova@redhat.com>, 2008.
+-# Subhransu Behera <sbehera@redhat.com>, 2006.
++# Translators:
+ # Manoj Kumar Giri <giri.manojkr@gmail.com>, 2008.
++# Manoj Kumar Giri <mgiri@redhat.com>, 2008, 2009, 2010.
++# Subhransu Behera <sbehera@redhat.com>, 2006.
  msgid ""
  msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.ru\n"
-+"Project-Id-Version: ru\n"
+-"Project-Id-Version: policycoreutils.HEAD.or\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-09-10 17:53+1000\n"
--"Last-Translator: Yulia Poyarkova <yulia.poyarkova@redhat.com>\n"
--"Language-Team: \n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 10:34\n"
-+"Last-Translator: Yulia <ypoyarko@redhat.com>\n"
-+"Language-Team: Russian\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-07-05 14:27+0530\n"
+-"Last-Translator: Manoj Kumar Giri <giri.manojkr@gmail.com>\n"
+-"Language-Team: Oriya\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Oriya (http://www.transifex.net/projects/p/fedora/language/"
++"or/)\n"
++"Language: or\n"
  "MIME-Version: 1.0\n"
--"Content-Type: text/plain; charset=KOI8-R\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Настройка SELinux в графическом режиме"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Управление SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Генерация модулей политики SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Средство создания политики SELinux"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -23,1251 +44,1257 @@
- "  where: <script> is the name of the init script to run,\n"
- "         <args ...> are the arguments to that script."
- msgstr ""
--"éÓÐÏÌØÚÏ×ÁÎÉÅ: run_init <ÓÃÅÎÁÒÉÊ> <ÁÒÇÕÍÅÎÔÙ ...>\n"
--"  ÇÄÅ: <ÓÃÅÎÁÒÉÊ> - ÜÔÏ ÉÍÑ ÚÁÐÕÓËÁÅÍÏÇÏ ÓÃÅÎÁÒÉÑ ÉÎÉÃÉÁÌÉÚÁÃÉÉ,\n"
--"       <ÁÒÇÕÍÅÎÔÙ ...>  - ÐÅÒÅÄÁ×ÁÅÍÙÅ ÓÃÅÎÁÒÉÀ ÁÒÇÕÍÅÎÔÙ."
-+"Использование: run_init <сценарий> <аргументы ...>\n"
-+"  где <сценарий> &mdash; имя запускаемого сценария инициализации,\n"
-+"       <аргументы ...>  &mdash; передаваемые сценарию аргументы."
- #: ../run_init/run_init.c:126 ../newrole/newrole.c:1187
- #, c-format
- msgid "failed to initialize PAM\n"
--msgstr "ÓÂÏÊ ÉÎÉÃÉÁÌÉÚÁÃÉÉ PAM\n"
-+msgstr "сбой инициализации PAM\n"
- #: ../run_init/run_init.c:139
- #, c-format
- msgid "failed to get account information\n"
--msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ Ó×ÅÄÅÎÉÊ ÕÞÅÔÎÏÊ ÚÁÐÉÓÉ\n"
-+msgstr "не удалось получить сведения учётной записи\n"
- #: ../run_init/run_init.c:162 ../newrole/newrole.c:338
- msgid "Password:"
--msgstr "ðÁÒÏÌØ:"
-+msgstr "Пароль:"
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ×ÁÛÕ ÚÁÐÉÓØ × ÔÅÎÅ×ÏÍ ÆÁÊÌÅ ÐÁÒÏÌÅÊ.\n"
-+msgstr "Не удалось найти вашу запись в теневом файле паролей.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
- msgid "getpass cannot open /dev/tty\n"
--msgstr "getpass ÎÅ ÍÏÖÅÔ ÏÔËÒÙÔØ /dev/tty\n"
-+msgstr "getpass не может открыть /dev/tty\n"
- #: ../run_init/run_init.c:275
- #, c-format
- msgid "run_init: incorrect password for %s\n"
--msgstr "run_init: ÎÅ×ÅÒÎÙÊ ÐÁÒÏÌØ ÄÌÑ %s\n"
-+msgstr "run_init: неверный пароль для %s\n"
- #: ../run_init/run_init.c:309
- #, c-format
- msgid "Could not open file %s\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s\n"
-+msgstr "Невозможно открыть файл %s\n"
- #: ../run_init/run_init.c:336
- #, c-format
- msgid "No context in file %s\n"
--msgstr "îÅÔ ËÏÎÔÅËÓÔÁ × ÆÁÊÌÅ %s\n"
-+msgstr "Нет контекста в файле %s\n"
- #: ../run_init/run_init.c:361
- #, c-format
- msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
- msgstr ""
--"éÚ×ÉÎÉÔÅ, run_init ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÏ ÔÏÌØËÏ ÄÌÑ ÑÄÒÁ Ó SELinux.\n"
-+"Извините, run_init может быть использовано только для ядра с SELinux.\n"
- #: ../run_init/run_init.c:380
- #, c-format
- msgid "authentication failed.\n"
--msgstr "ÓÂÏÊ ÐÒÏ×ÅÒËÉ ÐÏÄÌÉÎÎÏÓÔÉ.\n"
-+msgstr "сбой проверки подлинности.\n"
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÉÓÐÏÌÎÅÎÉÑ ÄÌÑ %s.\n"
-+msgstr "Невозможно задать контекст исполнения для %s.\n"
- #: ../audit2allow/audit2allow:217
- msgid "******************** IMPORTANT ***********************\n"
--msgstr "********************* ÷áöîï ************************\n"
-+msgstr "********************* ВАЖНО ************************\n"
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr "äÌÑ ÁËÔÉ×ÁÃÉÉ ÐÁËÅÔÁ ÐÏÌÉÔÉËÉ ×ÙÐÏÌÎÉÔÅ:"
-+msgstr "Для активации пакета политики выполните:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
--msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÕÐÒÁ×ÌÅÎÉÅ semanage"
-+msgstr "Не удалось создать дескриптор semanage"
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "ðÏÌÉÔÉËÁ SELinux ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔ ÕÐÒÁ×ÌÅÎÉÅ ÉÌÉ ÈÒÁÎÉÌÉÝÅ ÎÅÄÏÓÔÕÐÎÏ."
-+msgstr "Политика SELinux не поддерживает управление или хранилище недоступно."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÈÒÁÎÉÌÉÝÅ ÐÏÌÉÔÉËÉ."
-+msgstr "Невозможно прочитать хранилище политики."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ semanage ÓÏÅÄÉÎÅÎÉÅ"
-+msgstr "Невозможно установить соединение semanage"
+@@ -114,9 +114,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage ସଂଯୋଗ କୁ ସ୍ଥାପିତ କରି ପାରିଲା ନାହିଁ"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÄÉÁÐÁÚÏΠMLS ÄÌÑ %s"
-+msgstr "Не удалось проверить активный статус MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "глобальное"
- #: ../semanage/seobject.py:206
- #, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"îÅ ÕÄÁÅÔÓÑ ÏÔËÒÙÔØ %s: ÐÅÒÅ×ÏÄÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÎÁ ÍÁÛÉÎÁÈ ÂÅÚ MLS: %s"
-+"Невозможно открыть %s: категории не поддерживаются компьютерами без MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr "õÒÏ×ÅÎØ"
-+msgstr "Уровень"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr "ðÅÒÅ×ÏÄ"
-+msgstr "Категория"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "ðÅÒÅ×ÏÄÙ ÎÅ ÍÏÇÕÔ ×ËÌÀÞÁÔØ ÐÒÏÂÅÌÙ '%s' "
-+msgstr "Категории не могут содержать пробелы «%s» "
- #: ../semanage/seobject.py:250
- #, python-format
- msgid "Invalid Level '%s' "
--msgstr "îÅÄÏÐÕÓÔÉÍÙÊ ÕÒÏ×ÅÎØ '%s' "
-+msgstr "Недопустимый уровень «%s»"
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s ÕÖÅ ÏÐÒÅÄÅÌÅΠנÐÅÒÅ×ÏÄÅ"
-+msgstr "%s уже определен(о) в категориях"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s ÎÅ ÏÐÒÅÄÅÌÅÎÏ × ÐÅÒÅ×ÏÄÅ"
-+msgstr "%s не определен(о) в категориях"
+-msgstr "%s ପାଇଁ ଏମ୍.ଏଲ.ଏସ୍. ପରିସର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "MLS ସକ୍ରିୟ ସ୍ଥିତିକୁ ପରୀକ୍ଷା କରି ପାରିଲା ନାହିଁ"
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
--msgstr "æÕÎËÃÉÏÎÁÌØÎÏÓÔØ ÅÝÅ ÎÅ ÒÅÁÌÉÚÏ×ÁÎÁ"
-+msgstr "Функциональность еще не реализована"
+@@ -124,36 +123,33 @@ msgstr "ଏପର୍ଯ୍ୟନ୍ତ କାର୍ଯ୍ୟକାରୀ ହୋ
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Транзакция semanage уже выполняется"
++msgstr "Semanage ବିନିମୟ ପୂର୍ବରୁ ଚାଲିଅଛି"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÞÁÔØ semanage ÔÒÁÎÚÁËÃÉÀ"
-+msgstr "Невозможно начать semanage транзакцию"
+ msgstr "semanage ବିନିମୟ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
+-#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÏÔÐÒÁ×ÉÔØ ÔÒÁÎÚÁËÃÉÀ semanage"
-+msgstr "Не удалось отправить транзакцию semanage"
+-msgstr "semanage ବିନିମୟ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "semanage ଅନୁବାଦକୁ ଦାଖଲ କରିପାରିଲା ନାହିଁ"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Транзакция semanage не выполняется"
++msgstr "Semanage ବିନିମୟ ଚାଲୁନାହିଁ"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ÍÏÄÕÌÅÊ SELinux"
-+msgstr "Не удалось получить список модулей SELinux"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
--msgstr ""
-+msgstr "Разрешающие типы"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr "îÅ ÕÄÁÌÏÓØ ÚÁÄÁÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÓÔÁÎÏ×ËÉ ÍÏÄÕÌÑ)"
-+msgstr "Не удалось задать разрешающий домен %s (ошибка установки модуля)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ)"
-+msgstr "Не удалось удалить разрешающий домен %s (ошибка удаления)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s"
-+msgstr "Невозможно создать ключ для %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅÎÏ ÌÉ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
-+msgstr "Невозможно проверить, определено ли сопоставление входа для %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎÏ"
-+msgstr "Сопоставление входа для %s уже определено"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linux-ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
-+msgstr "Linux-группа %s не существует"
+-msgstr "SELinux ଚାଳକ କୁ ଗୋଟିଏ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
++msgstr "SELinux ଏକକାଂଶକୁ ତାଲିକାଭୁକ୍ତ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
--msgstr "Linux-ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
-+msgstr "Linux-пользователь %s не существует"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "ଏକକାଂଶ ନାମ"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
-+msgstr "Невозможно создать сопоставление входа для %s"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "ସଂସ୍କରଣ"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÉÍÑ ÄÌÑ %s"
-+msgstr "Невозможно задать имя для %s"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "ନିଷ୍କ୍ରିୟ"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÄÉÁÐÁÚÏΠMLS ÄÌÑ %s"
-+msgstr "Невозможно задать диапазон MLS для %s"
+@@ -163,9 +159,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux ÄÌÑ %s"
-+msgstr "Невозможно задать пользователя SELinux для %s"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s ପାଇଁ %s ଦାୟିତ୍ବ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
-+msgstr "Невозможно добавить сопоставление входа для %s"
+@@ -177,24 +173,22 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "ÄÏÂÁ×ÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux"
-+msgstr "добавить сопоставление пользователя SELinux"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "ଅନୁମୋଦନକାରୀ ପ୍ରକାରଗୁଡିକ"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
--msgstr "îÅÏÂÈÏÄÉÍ seuser ÉÌÉ serange"
-+msgstr "Необходим seuser или serange"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "ଅନୁମୋଦନକାରୀ ପ୍ରକାରଗୁଡିକ"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎÏ"
-+msgstr "Сопоставление входа для %s не определено"
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "ଅନୁମତି ପାଇବା ଯୋଗ୍ୟ ପରିସର %s କୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ (ଏକକାଂଶ ସ୍ଥାପନ ବିଫଳ)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ seuser ÄÌÑ %s"
-+msgstr "Невозможно запросить seuser для %s"
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "ଅନୁମତି ପାଇବା ଯୋଗ୍ୟ ପରିସର %s କୁ କାଢ଼ିପାରିଲା ନାହିଁ (କାଢ଼ିବା ବିଫଳ)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
-+msgstr "Невозможно изменить сопоставление входа для %s"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -214,9 +208,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
--"óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÏÐÒÅÄÅÌÅÎÏ × ÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎÏ"
-+"Сопоставление входа для %s определено в политике и не может быть удалено"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux ଚାଳକ %s ଅବସ୍ଥିତ ନାହିଁ"
++msgstr "Linux ଶ୍ରେଣୀ %s ଅବସ୍ଥିତ ନାହିଁ"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
-+msgstr "Невозможно удалить сопоставление входа для %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÓÏÐÏÓÔÁ×ÌÅÎÉÊ ×ÈÏÄÁ"
-+msgstr "Невозможно выполнить перечисление сопоставлений входа"
+@@ -283,15 +277,20 @@ msgid "Could not list login mappings"
+ msgstr "ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ତାଲିକା ରେ ଲେଖି ପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
--msgstr "éÍÑ ×ÈÏÄÁ"
-+msgstr "Имя входа"
+ msgstr "ଲଗଇନ ନାମ"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
--msgstr "ðÏÌØÚÏ×ÔÅÌØ SELinux"
-+msgstr "Пользователь SELinux"
+ msgstr "SELinux ଚାଳକ"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
--msgstr "äÉÁÐÁÚÏΠMLS/MCS"
-+msgstr "Диапазон MLS/MCS"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
--msgstr "îÅÏÂÈÏÄÉÍÏ ÄÏÂÁ×ÉÔØ ËÁË ÍÉÎÉÍÕÍ ÏÄÎÕ ÒÏÌØ ÄÌÑ %s"
-+msgstr "Необходимо добавить как минимум одну роль для %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
--msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÏÌØÚÏ×ÁÔÅÌØ SELinux %s"
-+msgstr "Не удалось проверить, определен ли пользователь SELinux %s"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
--msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "SELinux пользователь %s уже определен"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux ÄÌÑ %s"
-+msgstr "Невозможно создать пользователя SELinux для %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÒÏÌØ %s ÄÌÑ %s"
-+msgstr "Невозможно добавить роль %s для %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÕÒÏ×ÅÎØ MLS ÄÌÑ %s"
-+msgstr "Невозможно задать уровень MLS для %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÅÆÉËÓ %s ÄÌÑ %s"
-+msgstr "Невозможно добавить префикс %s для %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚ×ÌÅÞØ ËÌÀÞ ÄÌÑ %s"
-+msgstr "Невозможно извлечь ключ для %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
-+msgstr "Невозможно добавить пользователя SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
--msgstr "îÅÏÂÈÏÄÉÍ ÐÒÅÆÉËÓ, ÒÏÌØ, ÕÒÏ×ÅÎØ ÉÌÉ ÄÉÁÐÁÚÏÎ"
-+msgstr "Необходим префикс, роль, уровень или диапазон"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
--msgstr "îÅÏÂÈÏÄÉÍ ÐÒÅÆÉËÓ ÉÌÉ ÒÏÌØ"
-+msgstr "Необходим префикс или роль"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
--msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "SELinux пользователь %s не определен"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
-+msgstr "Невозможно запросить пользователя %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
-+msgstr "Невозможно изменить SELinux пользователя %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "SELinux пользователь %s определен в политике и не может быть удален"
+ msgstr "MLS/MCS ପରିସର"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
-+msgstr "Невозможно удалить пользователя SELinux %s"
+@@ -309,9 +308,9 @@ msgid "Could not query user for %s"
+ msgstr "%s ପାଇଁ ଚାଳକ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିବ ନାହିଁ"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÅÊ SELinux"
-+msgstr "Невозможно выполнить перечисление пользователей SELinux"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଅତିକମରେ ଗୋଟିଏ ଭୁମିକା ଯୋଗ କରିବା ଉଚିତ"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÒÏÌÅÊ ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
-+msgstr "Невозможно выполнить перечисление ролей пользователя %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr ""
-+msgstr "Разметка"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
--msgstr "ðÒÅÆÉËÓ"
-+msgstr "Префикс"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
--msgstr "MCS õÒÏ×ÅÎØ"
-+msgstr "MCS Уровень"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
--msgstr "MCS äÉÁÐÁÚÏÎ"
-+msgstr "MCS Диапазон"
+@@ -401,6 +400,7 @@ msgid "MCS Range"
+ msgstr "MCS ପରିସର"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
--msgstr "òÏÌÉ SELinux"
-+msgstr "Роли SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
--msgstr "îÅÏÂÈÏÄÉÍÏ ÚÁÄÁÎÉÅ tcp ÉÌÉ udp ÐÒÏÔÏËÏÌÁ"
-+msgstr "Необходимо задание tcp или udp протокола"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
--msgstr "îÅÏÂÈÏÄÉÍÏ ÚÎÁÞÅÎÉÅ ÐÏÒÔÁ"
-+msgstr "Необходимо значение порта"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s/%s"
-+msgstr "Невозможно создать ключ для %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
--msgstr "ôÒÅÂÕÅÔÓÑ ÚÁÄÁÎÉÅ ÔÉÐÁ"
-+msgstr "Требуется задание типа"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÏÒÔ %s/%s"
-+msgstr "Невозможно проверить, определен ли порт %s/%s"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
--msgstr "ðÏÒÔ %s/%s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Порт %s/%s уже определен"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÐÏÒÔ ÄÌÑ %s/%s"
-+msgstr "Невозможно создать порт для %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ %s/%s"
-+msgstr "Невозможно создать контекст %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
-+msgstr "Невозможно задать пользователя в контексте порта для %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
-+msgstr "Невозможно задать роль в контексте порта для %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
-+msgstr "Невозможно задать тип в контексте порта для %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
-+msgstr "Невозможно задать поля mls в контексте порта для %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÐÏÒÔÁ ÄÌÑ %s/%s"
-+msgstr "Невозможно задать контекст порта для %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÏÒÔ %s/%s"
-+msgstr "Невозможно добавить порт %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
--msgstr "îÅÏÂÈÏÄÉÍ setype ÉÌÉ serange"
-+msgstr "Необходим setype или serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
--msgstr "îÅÏÂÈÏÄÉÍ setype"
-+msgstr "Необходим setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
--msgstr "ðÏÒÔ %s/%s ÎÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Порт %s/%s не определен"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÐÏÒÔ %s/%s"
-+msgstr "Невозможно запросить порт %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÏÒÔ %s/%s"
-+msgstr "Невозможно изменить порт %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
--msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ÐÏÒÔÏ×"
-+msgstr "Не удалось получить список портов"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÒÔ %s"
-+msgstr "Невозможно удалить порт %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "ðÏÒÔ %s/%s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "Порт %s/%s определен в политике и не может быть удален"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÒÔ %s/%s"
-+msgstr "Невозможно удалить порт %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÏÒÔÏ×"
-+msgstr "Невозможно выполнить перечисление портов"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr "ôÉРÐÏÒÔÁ SELinux"
-+msgstr "Тип порта SELinux"
+ msgstr "SELinux ଭୂମିକାଗୁଡିକ"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -531,18 +531,17 @@ msgstr "SELinux ସଂଯୋଗିକୀ ପ୍ରକାର"
  msgid "Proto"
--msgstr ""
-+msgstr "Протокол"
+ msgstr "ପ୍ରଥମ"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
--msgstr "îÏÍÅÒ ðÏÒÔÁ"
-+msgstr "Номер Порта"
+ msgstr "ସଂଯୋଗିକୀ ସଂଖ୍ୟା"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
--msgstr "ôÒÅÂÕÅÔÓÑ ÁÄÒÅÓ ÕÚÌÁ"
-+msgstr "Требуется адрес узла"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "îÅÏÂÈÏÄÉÍÏ ÚÎÁÞÅÎÉÅ ÐÏÒÔÁ"
-+msgstr "Необходимо значение порта"
+-msgstr "ସଂଯୋଗିକୀ ଆବଶ୍ଯକ"
++msgstr "ନୋଡ ଠିକଣା ଆବଶ୍ଯକ"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
--msgstr "ðÒÏÔÏËÏÌ ÏÔÓÕÔÓÔ×ÕÅÔ ÉÌÉ ÎÅÉÚ×ÅÓÔÅÎ"
-+msgstr "Протокол отсутствует или неизвестен"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
--msgstr "ôÒÅÂÕÅÔÓÑ SELinux Type"
-+msgstr "Требуется SELinux Type"
+-msgstr ""
++msgstr "ଅଜଣା କିମ୍ବା ଅନୁପସ୍ଥିତ ପ୍ରୋଟୋକଲ"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s"
-+msgstr "Невозможно создать ключ для %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -559,14 +558,14 @@ msgstr "%s ପାଇଁ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପା
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÁÄÒÅÓ %s"
-+msgstr "Не удалось проверить, определен ли адрес %s"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
--msgstr "áÄÒÅÓ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Адрес %s уже определен"
+-msgstr "%s/%s ସଂଯୋଗିକୀ ର ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ଠିକଣା ବ୍ଯାଖ୍ଯା କରାଯାଇଛି କି ନାହିଁ ତାହା ଯାଞ୍ଚ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
--msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÁÄÒÅÓ ÄÌÑ %s"
-+msgstr "Не удалось создать адрес для %s"
+-msgstr "%s ପାଇଁ ଗୋଟିଏ ଚାବି ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ସୃଷ୍ଟି କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ ÄÌÑ %s"
-+msgstr "Невозможно создать контекст для %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -575,74 +574,72 @@ msgid "Could not create context for %s"
+ msgstr "%s ପାଇଁ ପ୍ରସଙ୍ଗ ସ୍ରୁଷ୍ଟି କରି ପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÍÁÓËÕ %s"
-+msgstr "Не удалось задать маску %s"
+-msgstr "%s ପାଇଁ ନାମ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ମାସ୍କ ସେଟ କରି ପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать пользователя в контексте адреса для %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଚାଳକ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ଚାଳକକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать роль в контексте адреса для %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ଦାୟିତ୍ବ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ଭୁମିକାକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать тип в контексте адреса для %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ର ପ୍ରକାର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ ପ୍ରକାରକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать поля mls в контексте адреса для %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ ରେ ଏମ୍.ଏଲ.ଏସ୍. କ୍ଷେତ୍ର କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗରେ mls କ୍ଷେତ୍ରକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ addr ÄÌÑ %s"
-+msgstr "Не удалось задать контекст addr для %s"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ"
++msgstr "%s ପାଇଁ ଠିକଣା ପ୍ରସଙ୍ଗକୁ ବିନ୍ୟାସ କରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÄÏÂÁ×ÉÔØ addr %s"
-+msgstr "Не удалось добавить addr %s"
+-msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
++msgstr "ଠିକଣା %sକୁ ଯୋଗକରିପାରିଲା ନାହିଁ"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
--msgstr "Addr %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Addr %s не определен"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÐÒÏÓÉÔØ addr %s"
-+msgstr "Не удалось запросить addr %s"
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÉÚÍÅÎÉÔØ addr %s"
-+msgstr "Не удалось изменить addr %s"
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Addr %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "Addr %s определен в политике и не может быть удален"
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÕÄÁÌÉÔØ addr %s"
-+msgstr "Не удалось удалить addr %s"
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË addr"
-+msgstr "Не удалось получить список addr"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÉÎÔÅÒÆÅÊÓ %s"
-+msgstr "Невозможно проверить, определен ли интерфейс %s"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
--msgstr "éÎÔÅÒÆÅÊÓ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Интерфейс %s уже определён"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÎÔÅÒÆÅÓ ÄÌÑ %s"
-+msgstr "Не удалось создать интерфейс для %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать пользователя в контексте интерфейса для %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать роль в контексте интерфейса для %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s."
-+msgstr "Не удалось задать тип в контексте интерфейса для %s."
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
-+msgstr "Не удалось задать поля mls в контексте интерфейса для %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
-+msgstr "Невозможно задать контекст интерфейса для %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÓÏÏÂÝÅÎÉÑ ÄÌÑ %s"
-+msgstr "Невозможно задать контекст сообщения для %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
-+msgstr "Невозможно добавить интерфейс %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
--msgstr "éÎÔÅÒÆÅÊÓ %s yt ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Интерфейс %s yt определен"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
-+msgstr "Невозможно запросить интерфейс %s"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
-+msgstr "Невозможно изменить интерфейс %s"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "éÎÔÅÒÆÅÊÓ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "Интерфейс %s определен в политике и не может быть удален"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
-+msgstr "Невозможно удалить интерфейс %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÉÎÔÅÒÆÅÊÓÏ×"
-+msgstr "Невозможно выполнить перечисление интерфейсов"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
--msgstr "éÎÔÅÒÆÅÊÓ SELinux"
-+msgstr "Интерфейс SELinux"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
--msgstr "ëÏÎÔÅËÓÔ"
-+msgstr "Контекст"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно задать пользователя в контексте файла для %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно задать роль в контексте файла для %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ msl × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно задать поля msl в контексте файла для %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÆÁÊÌÁ"
-+msgstr "Неверная спецификация файла"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно проверить, определен ли контекст файла для %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Контекст файла для %s уже определен"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно создать контекст файла для %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно задать тип в контексте файла для %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно задать контекст файла для %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно добавить контекст файла для %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
--msgstr "îÅÏÂÈÏÄÉÍ setyp, serange ÉÌÉ seuser"
-+msgstr "Необходим setyp, serange или seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Контекст файла для %s не определен"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно запросить контекст файла для %s"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно изменить контекст файла для %s"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ËÏÎÔÅËÓÔÏ× ÆÁÊÌÏ×"
-+msgstr "Не удалось получить список контекстов файлов"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
--msgstr "îÅ ÕÄÁÌÅÔÓÑ ÕÄÁÌÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Не удаётся удалить контекст файла для %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
--msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "Контекст файла для %s определен в политике и не может быть удален"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
-+msgstr "Невозможно удалить контекст файла для %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ËÏÎÔÅËÓÔÏ× ÆÁÊÌÏ×"
-+msgstr "Невозможно выполнить перечисление контекстов файлов"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔÏÂÒÁÚÉÔØ ËÏÎÔÅËÓÔ ÌÏËÁÌØÎÙÈ ÆÁÊÌÏ×"
-+msgstr "Невозможно отобразить контекст локальных файлов"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
--msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ SELinux"
-+msgstr "Контекст файла SELinux"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
--msgstr "ÔÉÐ"
-+msgstr "тип"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
-+msgstr "Невозможно проверить, определен ли переключатель %s"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
--msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
-+msgstr "Переключатель %s не определен"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ %s"
-+msgstr "Невозможно запросить контекст файла %s"
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÚÎÁÞÅÎÉÅ: %s"
-+msgstr "Необходимо указать значение: %s"
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÁËÔÉ×ÎÏÅ ÚÎÁÞÅÎÉÅ ÐÅÒÅËÌÀÞÁÔÅÌÑ %s"
-+msgstr "Не удалось задать активное значение переключателя %s"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
-+msgstr "Невозможно изменить переключатель %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr "îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ %s: úÁÐÉÓØ %s"
-+msgstr "Неверный формат %s: Запись %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
-+msgstr "Переключатель %s не определен в политике и не может быть удален"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
-+msgstr "Невозможно удалить переключатель %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÅÒÅËÌÀÞÁÔÅÌÅÊ"
-+msgstr "Невозможно выполнить перечисление переключателей"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
--msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ"
-+msgstr "неизвестный"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr "×ÙËÌ."
-+msgstr "выкл."
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr "×ËÌ."
-+msgstr "вкл."
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
--msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ SELinux"
-+msgstr "Переключатель SELinux"
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
--msgstr "ïÐÉÓÁÎÉÅ"
-+msgstr "Описание"
- #: ../newrole/newrole.c:198
- #, c-format
- msgid "failed to set PAM_TTY\n"
--msgstr "ÓÂÏÊ ÕÓÔÁÎÏ×ËÉ PAM_TTY\n"
-+msgstr "сбой установки PAM_TTY\n"
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
-+msgstr "newrole: переполнение хеш-таблицы настроек имен служб\n"
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
--msgstr "newrole:  %s:  ÏÛÉÂËÁ × ÓÔÒÏËÅ %lu.\n"
-+msgstr "newrole:  %s:  ошибка в строке %lu.\n"
- #: ../newrole/newrole.c:436
- #, c-format
- msgid "cannot find valid entry in the passwd file.\n"
--msgstr "ÎÅ ÕÄÁÅÔÓÑ ÎÁÊÔÉ ËÏÒÒÅËÔÎÕÀ ÚÁÐÉÓØ × ÆÁÊÌÅ passwd.\n"
-+msgstr "не удается найти корректную запись в файле passwd.\n"
- #: ../newrole/newrole.c:447
- #, c-format
- msgid "Out of memory!\n"
--msgstr "îÅÄÏÓÔÁÔÏÞÎÏ ÐÁÍÑÔÉ!\n"
-+msgstr "Недостаточно памяти!\n"
- #: ../newrole/newrole.c:452
- #, c-format
- msgid "Error!  Shell is not valid.\n"
--msgstr "ïÛÉÂËÁ!  ïÂÏÌÏÞËÁ ÎÅ ×ÅÒÎÁ.\n"
-+msgstr "Ошибка!  Оболочка не верна.\n"
- #: ../newrole/newrole.c:509
- #, c-format
- msgid "Unable to clear environment\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÞÉÓÔÉÔØ ÏËÒÕÖÅÎÉÅ\n"
-+msgstr "Невозможно очистить окружение\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "ïÛÉÂËÁ ÉÎÉÃÉÁÌÉÚÁÃÉÉ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка инициализации, аварийное завершение.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
- msgid "Error setting capabilities, aborting\n"
--msgstr "ïÛÉÂËÁ ÎÁÓÔÒÏÊËÉ ×ÏÚÍÏÖÎÏÓÔÅÊ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ\n"
-+msgstr "Ошибка настройки возможностей, аварийное завершение\n"
- #: ../newrole/newrole.c:570
- #, c-format
- msgid "Error setting KEEPCAPS, aborting\n"
--msgstr "ïÛÉÂËÁ ÕÓÔÁÎÏ×ËÉ KEEPCAPS, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка установки KEEPCAPS, аварийное завершение.\n"
- #: ../newrole/newrole.c:578 ../newrole/newrole.c:652
- #, c-format
- msgid "Error dropping capabilities, aborting\n"
--msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ ×ÏÚÍÏÖÎÏÓÔÅÊ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка сброса возможностей, аварийное завершение.\n"
- #: ../newrole/newrole.c:584 ../newrole/newrole.c:683
- #, c-format
- msgid "Error changing uid, aborting.\n"
--msgstr "ïÛÉÂËÁ ÓÍÅÎÙ uid, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка смены uid, аварийное завершение.\n"
- #: ../newrole/newrole.c:590 ../newrole/newrole.c:646 ../newrole/newrole.c:678
- #, c-format
- msgid "Error resetting KEEPCAPS, aborting\n"
--msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ KEEPCAPS, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка сброса KEEPCAPS, аварийное завершение.\n"
- #: ../newrole/newrole.c:597
- #, c-format
- msgid "Error dropping SETUID capability, aborting\n"
--msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ ×ÏÚÍÏÖÎÏÓÔÉ SETUID, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
-+msgstr "Ошибка сброса возможности SETUID, аварийное завершение.\n"
- #: ../newrole/newrole.c:602 ../newrole/newrole.c:657
- #, c-format
- msgid "Error freeing caps\n"
--msgstr "ïÛÉÂËÁ ÏÓ×ÏÂÏÖÄÅÎÉÑ ×ÏÚÍÏÖÎÏÓÔÅÊ\n"
-+msgstr "Ошибка освобождения возможностей\n"
- #: ../newrole/newrole.c:701
- #, c-format
- msgid "Error connecting to audit system.\n"
--msgstr "ïÛÉÂËÁ ÓÏÅÄÉÎÅÎÉÑ Ó ÓÉÓÔÅÍÏÊ ÁÕÄÉÔÁ.\n"
-+msgstr "Ошибка соединения с системой аудита.\n"
- #: ../newrole/newrole.c:707
- #, c-format
- msgid "Error allocating memory.\n"
--msgstr "ïÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ ÐÁÍÑÔÉ.\n"
-+msgstr "Ошибка выделения памяти.\n"
- #: ../newrole/newrole.c:714
- #, c-format
- msgid "Error sending audit message.\n"
--msgstr "ïÛÉÂËÁ ÏÔÐÒÁ×ËÉ ÓÏÏÂÝÅÎÉÑ ÁÕÄÉÔÁ.\n"
-+msgstr "Ошибка отправки сообщения аудита.\n"
- #: ../newrole/newrole.c:758 ../newrole/newrole.c:1122
- #, c-format
- msgid "Could not determine enforcing mode.\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÒÅÖÉÍ ÂÌÏËÉÒÏ×ÏË (enforcing).\n"
-+msgstr "Не удалось определить строгий режим.\n"
- #: ../newrole/newrole.c:765
- #, c-format
- msgid "Error!  Could not open %s.\n"
--msgstr "ïÛÉÂËÁ!  îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s.\n"
-+msgstr "Ошибка!  Невозможно открыть %s.\n"
- #: ../newrole/newrole.c:771
- #, c-format
- msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
- msgstr ""
--"%s!  îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÔÅËÕÝÉÊ ËÏÎÔÅËÓÔ ÄÌÑ %s, ÍÅÔËÁ tty ÎÅ ÉÚÍÅÎÑÅÔÓÑ.\n"
-+"%s!  Невозможно получить текущий контекст для %s, метка tty не изменяется.\n"
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
- msgstr ""
--"%s!  îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÎÏ×ÙÊ ËÏÎÔÅËÓÔ ÄÌÑ %s, ÍÅÔËÁ tty ÎÅ ÉÚÍÅÎÑÅÔÓÑ.\n"
-+"%s!  Невозможно получить новый контекст для %s, метка tty не изменяется.\n"
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s!  îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÎÏ×ÙÊ ËÏÎÔÅËÓÔ ÄÌÑ %s\n"
-+msgstr "%s!  Невозможно задать новый контекст для %s\n"
- #: ../newrole/newrole.c:838
- #, c-format
- msgid "%s changed labels.\n"
--msgstr "%s ÉÚÍÅÎÉÌÏ ÍÅÔËÉ.\n"
-+msgstr "%s изменило метки.\n"
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr "÷ÎÉÍÁÎÉÅ! îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ËÏÎÔÅËÓÔ ÄÌÑ %s\n"
-+msgstr "Внимание! Невозможно восстановить контекст для %s\n"
- #: ../newrole/newrole.c:901
- #, c-format
- msgid "Error: multiple roles specified\n"
--msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÒÏÌÅÊ\n"
-+msgstr "Ошибка: указано несколько ролей\n"
- #: ../newrole/newrole.c:909
- #, c-format
- msgid "Error: multiple types specified\n"
--msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÔÉÐÏ×\n"
-+msgstr "Ошибка: указано несколько типов\n"
- #: ../newrole/newrole.c:916
- #, c-format
- msgid "Sorry, -l may be used with SELinux MLS support.\n"
--msgstr "éÚ×ÉÎÉÔÅ, -l ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ Ó ÐÏÄÄÅÒÖËÏÊ SELinux MLS.\n"
-+msgstr "Извините, -l может быть использована с поддержкой SELinux MLS.\n"
- #: ../newrole/newrole.c:921
- #, c-format
- msgid "Error: multiple levels specified\n"
--msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÕÒÏ×ÎÅÊ\n"
-+msgstr "Ошибка: указано несколько уровней\n"
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr "ïÛÉÂËÁ: ÷Ù ÎÅ ÍÏÖÅÔÅ ÉÚÍÅÎÑÔØ ÕÒÏ×ÅÎØ × ÎÅÂÅÚÏÐÁÓÎÏÍ ÔÅÒÍÉÎÁÌÅ\n"
-+msgstr "Ошибка: Вы не можете изменять уровень в небезопасном терминале\n"
- #: ../newrole/newrole.c:957
- #, c-format
- msgid "Couldn't get default type.\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÔÉРÐÏ ÕÍÏÌÞÁÎÉÀ.\n"
-+msgstr "Невозможно получить тип по умолчанию.\n"
+-msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
++msgstr "ଠିକଣା %sକୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
  
- #: ../newrole/newrole.c:967
- #, c-format
- msgid "failed to get new context.\n"
--msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ ÎÏ×ÏÇÏ ËÏÎÔÅËÓÔÁ.\n"
-+msgstr "сбой получения нового контекста.\n"
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not query addr %s"
+-msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
++msgstr "ଠିକଣା %s କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
  
- #: ../newrole/newrole.c:974
- #, c-format
- msgid "failed to set new role %s\n"
--msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÊ ÒÏÌÉ %s\n"
-+msgstr "сбой задания новой роли %s\n"
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not modify addr %s"
+-msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ରୂପାନ୍ତରିତ କରି ପାରିଲା ନାହିଁ"
++msgstr "ଠିକଣା %s କୁ ପରିବର୍ତ୍ତନ କରିପାରିଲା ନାହିଁ"
  
- #: ../newrole/newrole.c:981
- #, c-format
- msgid "failed to set new type %s\n"
--msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÇÏ ÔÉÐÁ %s\n"
-+msgstr "сбой задания нового типа %s\n"
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "%s/%s ସଂଯୋଗିକୀ ଟି ନିୟମ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
++msgstr "ଠିକଣା %sଟି ନିୟମରେ ବ୍ଯାଖ୍ଯା କରାଯାଇଛି, ଏହାକୁ ଅପସାରଣ କରିହେବ ନାହିଁ"
  
- #: ../newrole/newrole.c:991
- #, c-format
- msgid "failed to build new range with level %s\n"
--msgstr "ÓÂÏÊ ÐÏÓÔÒÏÅÎÉÑ ÎÏ×ÏÇÏ ÄÉÁÐÁÚÏÎÁ Ó ÕÒÏ×ÎÅÍ %s\n"
-+msgstr "сбой построения нового диапазона с уровнем %s\n"
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete addr %s"
+-msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
++msgstr "ଠିକଣା %sକୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
  
- #: ../newrole/newrole.c:996
- #, c-format
- msgid "failed to set new range %s\n"
--msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÇÏ ÄÉÁÐÁÚÏÎÁ %s\n"
-+msgstr "сбой задания нового диапазона %s\n"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
++msgstr ""
  
- #: ../newrole/newrole.c:1004
- #, c-format
- msgid "failed to convert new context to string\n"
--msgstr "ÓÂÏÊ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ ÎÏ×ÏÇÏ ËÏÎÔÅËÓÔÁ × ÓÔÒÏËÕ\n"
-+msgstr "сбой преобразования нового контекста в строку\n"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "ସଂଯୋଗିକୀ ମାନଙ୍କୁ ତାଲିକା ରେ ଲେଖି ପାରିବ ନାହିଁ"
++msgstr "ଠିକଣାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରିପାରିବ ନାହିଁ"
  
- #: ../newrole/newrole.c:1009
- #, c-format
- msgid "%s is not a valid context\n"
--msgstr "%s ÎÅ Ñ×ÌÑÅÔÓÑ ×ÅÒÎÙÍ ËÏÎÔÅËÓÔÏÍ\n"
-+msgstr "%s не является верным контекстом\n"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -716,9 +713,8 @@ msgid "Could not delete interface %s"
+ msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
  
- #: ../newrole/newrole.c:1016
- #, c-format
- msgid "Unable to allocate memory for new_context"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÄÅÌÉÔØ ÐÁÍÑÔØ ÄÌÑ new_context"
-+msgstr "Невозможно выделить память для new_context"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ କୁ ଅପସାରଣ କରି ପାରିଲା ନାହିଁ"
++msgstr ""
  
- #: ../newrole/newrole.c:1042
- #, c-format
- msgid "Unable to obtain empty signal set\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÎÁÂÏÒ ÐÕÓÔÙÈ ÓÉÇÎÁÌÏ×\n"
-+msgstr "Невозможно получить набор пустых сигналов\n"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -733,9 +729,9 @@ msgid "Context"
+ msgstr "ପ୍ରସଙ୍ଗ"
  
- #: ../newrole/newrole.c:1050
- #, c-format
- msgid "Unable to set SIGHUP handler\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÏÂÒÁÂÏÔÞÉË SIGHUP\n"
-+msgstr "Невозможно получить обработчик SIGHUP\n"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s ପାଇଁ ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++msgstr ""
  
- #: ../newrole/newrole.c:1116
- #, c-format
- msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
--msgstr "éÚ×ÉÎÉÔÅ. newrole ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÄÌÑ ÑÄÒÁ Ó SELinux.\n"
-+msgstr "Извините. newrole может быть использована только для ядра с SELinux.\n"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -743,9 +739,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
- #: ../newrole/newrole.c:1133
- #, c-format
- msgid "failed to get old_context.\n"
--msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ ÓÔÁÒÏÇÏ_ËÏÎÔÅËÓÔÁ.\n"
-+msgstr "сбой получения старого_контекста.\n"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux ଚାଳକ %s ଅବସ୍ଥିତ ନାହିଁ"
++msgstr ""
  
- #: ../newrole/newrole.c:1140
- #, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "÷ÎÉÍÁÎÉÅ!  îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï tty.\n"
-+msgstr "Внимание!  Не удалось получить информацию о tty.\n"
+ #: ../semanage/seobject.py:1692
+ #, python-format
+@@ -865,11 +861,10 @@ msgid ""
+ msgstr ""
  
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ ÓÌÕÖÂÙ PAM.\n"
-+msgstr "ошибка чтения конфигурации службы PAM.\n"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fପ୍ରସଙ୍ଗ"
++msgstr ""
  
- #: ../newrole/newrole.c:1196
- #, c-format
- msgid "newrole: incorrect password for %s\n"
--msgstr "newrole: ÎÅ×ÅÒÎÙÊ ÐÁÒÏÌØ %s\n"
-+msgstr "newrole: неверный пароль %s\n"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -888,9 +883,9 @@ msgid "Could not query file context %s"
+ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ କୁ %s କୁ ପ୍ରଶ୍ନ ପଚାରି ପାରିଲା ନାହିଁ"
  
- #: ../newrole/newrole.c:1223
- #, c-format
- msgid "newrole: failure forking: %s"
--msgstr "newrole: ÓÂÏÊ ×ÙÐÏÌÎÅÎÉÑ fork: %s"
-+msgstr "newrole: сбой выполнения fork: %s"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "ଆପଣ ଗୋଟିଏ ମୂଲ୍ୟ ନିର୍ଦ୍ଦିଷ୍ଟ କରିବା ଉଚିତ"
++msgstr "ଆପଣ ନିମ୍ନଲିଖିତ ମୂଲ୍ୟଗୁଡ଼ିକ ମଧ୍ଯରୁ ଗୋଟିଏ ଉଲ୍ଲେଖକରିବା ଉଚିତ: %s"
  
- #: ../newrole/newrole.c:1226 ../newrole/newrole.c:1249
- #, c-format
- msgid "Unable to restore tty label...\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ÍÅÔËÕ tty...\n"
-+msgstr "Невозможно восстановить метку tty...\n"
+ #: ../semanage/seobject.py:2004
+ #, python-format
+@@ -905,7 +900,7 @@ msgstr "ବୁଲିଆନ %s କୁ ରୂପାନ୍ତରିତ କରି 
+ #: ../semanage/seobject.py:2025
+ #, python-format
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "ଖରାପ ଶୈଳୀ %s: ଅନୁଲିପି %s"
  
- #: ../newrole/newrole.c:1228 ../newrole/newrole.c:1255
- #, c-format
- msgid "Failed to close tty properly\n"
--msgstr "ïÛÉÂËÁ ËÏÒÒÅËÔÎÏÇÏ ÚÁËÒÙÔÉÑ tty\n"
-+msgstr "Ошибка корректного закрытия tty\n"
+ #: ../semanage/seobject.py:2048
+ #, python-format
+@@ -938,15 +933,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux ବୁଲିଆନ"
  
- #: ../newrole/newrole.c:1287
- #, c-format
- msgid "Could not close descriptors.\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁËÒÙÔØ ÄÅÓËÒÉÐÔÏÒÙ.\n"
-+msgstr "Невозможно закрыть дескрипторы.\n"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "ଅବସ୍ଥିତି"
++msgstr ""
  
- #: ../newrole/newrole.c:1314
- #, c-format
- msgid "Error allocating shell's argv0.\n"
--msgstr "ïÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ argv0 ÏÂÏÌÏÞËÉ.\n"
-+msgstr "Ошибка выделения argv0 оболочки.\n"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
- #: ../newrole/newrole.c:1346
- #, c-format
- msgid "Unable to restore the environment, aborting\n"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ÏËÒÕÖÅÎÉÅ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ\n"
-+msgstr "Невозможно восстановить окружение, аварийное завершение\n"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "ବର୍ଣ୍ଣନା"
  
- #: ../newrole/newrole.c:1357
- msgid "failed to exec shell\n"
--msgstr "ÓÂÏÊ ÚÁÐÕÓËÁ ÏÂÏÌÏÞËÉ\n"
-+msgstr "сбой запуска оболочки\n"
+@@ -1283,1615 +1278,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
- #: ../load_policy/load_policy.c:22
- #, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "ÉÓÐÏÌØÚÏ×ÁÎÉÅ:  %s [-qi]\n"
-+msgstr "использование:  %s [-qi]\n"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "ପସନ୍ଦ ତୃଟି %s "
  
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr "%s:  ðÏÌÉÔÉËÁ ÕÖÅ ÚÁÇÒÕÖÅÎÁ, ÉÓÈÏÄÎÁÑ ÚÁÇÒÕÚËÁ ÚÁÐÒÏÛÅÎÁ\n"
-+msgstr "%s:  Политика уже загружена, исходная загрузка запрошена\n"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "%s କୁ ଖୋଲିବା ରେ ଅସଫଳ: non-MLS ଯନ୍ତ୍ର ମାନଙ୍କ ରେ ଅନୁବାଦ ଗୁଡିକ ସହାୟକ ହେଲା ନାହିଁ: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
  
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr ""
--"%s:  îÅ ÕÄÁÅÔÓÑ ÚÁÇÒÕÚÉÔØ ÚÁÐÒÏÛÅÎÎÕÀ ÐÏÌÉÔÉËÕ É ÒÅÖÉÍ ÐÒÉÎÕÖÄÅÎÉÑ:  %s\n"
-+msgstr "%s:  не удалось загрузить запрошенную политику и строгий режим:  %s\n"
+-#~ msgid "Level"
+-#~ msgstr "ସ୍ତର"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
  
- #: ../load_policy/load_policy.c:90
- #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s:  îÅ×ÏÚÍÏÖÎÏ ÚÁÇÒÕÚÉÔØ ÐÏÌÉÔÉËÕ:  %s\n"
-+msgstr "%s:  Невозможно загрузить политику:  %s\n"
+-#~ msgid "Translation"
+-#~ msgstr "ଅନୁବାଦ"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
  
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
--msgstr "ôÒÅÂÕÅÔÓÑ ËÁË ÍÉÎÉÍÕÍ ÏÄÎÁ ËÁÔÅÇÏÒÉÑ"
-+msgstr "Требуется как минимум одна категория"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "ଅନୁବାଦ ଗୁଡିକ ଖାଲି ସ୍ଥାନ ଧାରଣ କରି ପାରିବେ ନାହିଁ '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
  
- #: ../scripts/chcat:106 ../scripts/chcat:183
- #, c-format
- msgid "Can not modify sensitivity levels using '+' on %s"
--msgstr "îÅÌØÚÑ ÉÚÍÅÎÉÔØ ÕÒÏ×ÅÎØ ÞÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ ÉÓÐÏÌØÚÕÑ  '+' ÎÁ %s"
-+msgstr "Нельзя изменить уровень чувствительности используя  '+' на %s"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "ଅବୈଧ ସ୍ତର '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
  
- #: ../scripts/chcat:110
- #, c-format
- msgid "%s is already in %s"
--msgstr "%s ÕÖÅ × %s"
-+msgstr "%s уже в %s"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ଟି ପୂର୍ବରୁ ଅନୁବାଦ ମାନଙ୍କ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
  
- #: ../scripts/chcat:188 ../scripts/chcat:198
- #, c-format
- msgid "%s is not in %s"
--msgstr "%s ÎÅ × %s"
-+msgstr "%s не в %s"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s ଟି ଅନୁବାଦ ମାନଙ୍କ ରେ ବ୍ଯାଖ୍ଯା କରା ଯାଇ ନାହିଁ"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
  
- #: ../scripts/chcat:267 ../scripts/chcat:272
- msgid "Can not combine +/- with other types of categories"
--msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÂßÅÄÉÎÉÔØ +/- Ó ÄÒÕÇÉÍÉ ÔÉÐÁÍÉ ËÁÔÅÇÏÒÉÊ"
-+msgstr "Невозможно объединить +/- с другими типами категорий"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s ପାଇଁ ଲଗଇନ୍ ପ୍ରତିଚିତ୍ରଣ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
  
- #: ../scripts/chcat:319
- msgid "Can not have multiple sensitivities"
--msgstr "îÅÌØÚÑ ÉÍÅÔØ ÎÅÓËÏÌØËÏ ÕÒÏ×ÎÅÊ ÞÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ"
-+msgstr "Нельзя иметь несколько уровней чувствительности"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ଯୋଗ କରି ପାରିଲା ନାହିଁ"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
  
- #: ../scripts/chcat:325
- #, c-format
- msgid "Usage %s CATEGORY File ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s ëáôåçïòéñ æÁÊÌ ..."
-+msgstr "Использование %s КАТЕГОРИЯ Файл ..."
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ଚାଳକ %s କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
  
- #: ../scripts/chcat:326
- #, c-format
- msgid "Usage %s -l CATEGORY user ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l ëáôåçïòéñ ÐÏÌØÚÏ×ÁÔÅÌØ ..."
-+msgstr "Использование %s -l КАТЕГОРИЯ пользователь ..."
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "ସଂଯୋଗିକୀ ଆବଶ୍ଯକ"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
  
- #: ../scripts/chcat:327
- #, c-format
- msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s [[+|-]ëáôåçïòéñ],...]q æÁÊÌ ..."
-+msgstr "Использование %s [[+|-]КАТЕГОРИЯ],...]q Файл ..."
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "%s/%s ସଂଯୋଗିକୀ କୁ ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
  
- #: ../scripts/chcat:328
- #, c-format
- msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l [[+|-]ëáôåçïòéñ],...]q ÐÏÌØÚÏ×ÁÔÅÌØ ..."
-+msgstr "Использование %s -l [[+|-]КАТЕГОРИЯ],...]q пользователь ..."
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "%s ଅନ୍ତରାପ୍ରୁଷ୍ଠ ର ପୂର୍ବରୁ ବ୍ଯାଖ୍ଯା କରା ଯାଇଛି"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
  
- #: ../scripts/chcat:329
- #, c-format
- msgid "Usage %s -d File ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -d æÁÊÌ ..."
-+msgstr "Использование %s -d Файл ..."
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ସାମର୍ଥ୍ଯ ମାନଙ୍କ ର ପ୍ରାରମ୍ଭିକରଣ ସମୟ ରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି \n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
  
- #: ../scripts/chcat:330
- #, c-format
- msgid "Usage %s -l -d user ..."
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l -d ÐÏÌØÚÏ×ÁÔÅÌØ ..."
-+msgstr "Использование %s -l -d пользователь ..."
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ସାମର୍ଥ୍ଯ ମାନଙ୍କୁ ବିନ୍ଯାସ କରିବା ସମୟ ରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
  
- #: ../scripts/chcat:331
- #, c-format
- msgid "Usage %s -L"
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -L"
-+msgstr "Использование %s -L"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS କୁ ବିନ୍ଯାସ କରିବା ସମୟରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
  
- #: ../scripts/chcat:332
- #, c-format
- msgid "Usage %s -L -l user"
--msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -L -l ÐÏÌØÚÏ×ÁÔÅÌØ"
-+msgstr "Использование %s -L -l пользователь"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ସାମର୍ଥ୍ଯ ମାନଙ୍କୁ ତ୍ଯାଗ କରିବା ସମୟ ରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି \n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
  
- #: ../scripts/chcat:333
- msgid "Use -- to end option list.  For example"
--msgstr "éÓÐÏÌØÚÕÊÔÅ -- ÞÔÏÂÙ ÕËÁÚÁÔØ ÚÁ×ÅÒÛÅÎÉÅ ÓÐÉÓËÁ ÐÁÒÁÍÅÔÒÏ×. îÁ ÐÒÉÍÅÒ"
-+msgstr "Используйте -- чтобы указать завершение списка параметров. На пример"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID ସାମର୍ଥ୍ଯ କୁ ତ୍ଯାଗ କରିବା ସମୟ ରେ ତୃଟି, ପରିତ୍ଯାଗ କରୁଅଛି \n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps କୁ ମୁକ୍ତ କରିବା ସମୟରେ ତୃଟି\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
  
- #: ../scripts/chcat:334
- msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
-@@ -1280,1096 +1307,2245 @@
- #: ../scripts/chcat:399
- #, c-format
- msgid "Options Error %s "
--msgstr "ïÛÉÂËÁ ÐÁÒÁÍÅÔÒÏ× %s "
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
 -#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "ÐÅÒÅ×ÏÄÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÍÁÛÉΠÂÅÚ MLS"
--
+-#~ msgstr "non-MLS ଯନ୍ତ୍ର ମାନଙ୍କ ରେ ଅନୁବାଦ ଗୁଡିକ ସହାୟକ ହେଲା ନାହିଁ"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 -#~ msgid "Boolean"
--#~ msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ"
--
+-#~ msgstr "ବୁଲିଆନ"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
 -#~ msgid "all"
--#~ msgstr "×ÓÅ"
--
+-#~ msgstr "ସମସ୍ତ"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 -#~ msgid "Customized"
--#~ msgstr "ðÒÏÉÚ×ÏÌØÎÙÊ"
--
+-#~ msgstr "ଇଚ୍ଛାରୂପଣ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "ଫାଇଲ ନାମପଟିକରଣ"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
 -#~ msgstr ""
--#~ "ïÐÒÅÄÅÌÅÎÉÅ\n"
--#~ "ÆÁÊÌÏ×"
--
+-#~ "ଫାଇଲ\n"
+-#~ "ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr ""
--#~ "SELinux\n"
--#~ "ôÉРæÁÊÌÁ"
--
+-#~ "Selinux\n"
+-#~ "ଫାଇଲ ପ୍ରକାର"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Type"
 -#~ msgstr ""
--#~ "æÁÉÌ\n"
--#~ "ôÉÐ"
--
+-#~ "ଫାଇଲ\n"
+-#~ "ପ୍ରକାର"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
 -#~ msgid "User Mapping"
--#~ msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÅÊ"
+-#~ msgstr "ଚାଳକ ପ୍ରତିଚିତ୍ରଣ"
 -
 -#~ msgid ""
 -#~ "Login\n"
 -#~ "Name"
 -#~ msgstr ""
--#~ "ìÏÇÉÎ\n"
--#~ "éÍÑ"
+-#~ "ଲଗଇନ\n"
+-#~ "ନାମ"
 -
 -#~ msgid ""
 -#~ "SELinux\n"
 -#~ "User"
 -#~ msgstr ""
 -#~ "SELinux\n"
--#~ "ðÏÌØÚÏ×ÁÔÅÌØ"
+-#~ "ଚାଳକ"
 -
 -#~ msgid ""
 -#~ "MLS/\n"
 -#~ "MCS Range"
 -#~ msgstr ""
--#~ "äÉÁÐÁÚÏÎ\n"
--#~ "MLS/MCS"
+-#~ "MLS/\n"
+-#~ "MCS ପରିସର"
 -
 -#~ msgid "Login '%s' is required"
--#~ msgstr "ôÒÅÂÕÅÔÓÑ Á×ÔÏÒÉÚÁÃÉÑ '%s'"
+-#~ msgstr "ଲଗଇନ '%s' ଟି ଆବଶ୍ୟକ"
 -
 -#~ msgid "Policy Module"
--#~ msgstr "íÏÄÕÌØ ÐÏÌÉÔÉËÉ"
--
--#~ msgid "Module Name"
--#~ msgstr "éÍÑ ÍÏÄÕÌÑ"
--
--#~ msgid "Version"
--#~ msgstr "÷ÅÒÓÉÑ"
+-#~ msgstr "ନୀତି ଏକକାଂଶ"
 -
 -#~ msgid "Disable Audit"
--#~ msgstr "÷ÙËÌÀÞÉÔØ ÁÕÄÉÔ"
+-#~ msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 -
 -#~ msgid "Enable Audit"
--#~ msgstr "÷ËÌÀÞÉÔØ ÁÕÄÉÔ"
+-#~ msgstr "ଲେଖା ପରୀକ୍ଷଣକୁ ସକ୍ରିୟ କରନ୍ତୁ"
 -
 -#~ msgid "Load Policy Module"
--#~ msgstr "úÁÇÒÕÚÉÔØ ÍÏÄÕÌØ ÐÏÌÉÔÉËÉ"
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>ðÒÉÌÏÖÅÎÉÑ</b>"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>ðÏÌØÚÏ×ÁÔÅÌÉ root</b>"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP ðÏÒÔÙ</b>"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP ðÏÒÔÙ</b>"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "äÏÂÁ×ÉÔØ ÄÉÁÌÏÇ ÄÌÑ ÐÅÒÅËÌÀÞÁÔÅÌÅÊ"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "äÏÂÁ×ÉÔØ ÆÁÊÌÙ É ËÁÔÁÌÏÇÉ, × ËÏÔÏÒÙÅ ÐÒÉÌÏÖÅÎÉÅ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØ "
--#~ "ÚÁÐÉÓØ. æÁÊÌÙ PID, ÖÕÒÎÁÌÙ, /var/lib"
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr ""
--#~ "äÏÂÁ×ÉÔØ/ ÕÄÁÌÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌÉ, ÉÓÐÏÌØÚÕÅÍÙÅ ÄÌÑ ÜÔÏÇÏ ÐÒÉÌÏÖÅÎÉÑ/ "
--#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ"
--
--#~ msgid "Admin User Role"
--#~ msgstr "òÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ"
--
--#~ msgid "All"
--#~ msgstr "÷ÓÅ"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "òÁÚÒÅÛÉÔØ ÐÒÉÌÏÖÅÎÉÀ/ ÐÏÌØÚÏ×ÁÔÅÌÀ ÏÓÕÝÅÓÔ×ÌÑÔØ ×ÙÚÏ× bindresvport Ó 0. "
--#~ "éÓÐÏÌØÚÕÅÔÓÑ ÐÏÒÔ 600-1024"
--
--#~ msgid "Boolean Name"
--#~ msgstr "éÍÑ ÐÅÒÅËÌÀÞÁÔÅÌÑ"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "óÏÚÄÁ×ÁÔØ É ÏÂÒÁÂÁÔÙ×ÁÔØ ×ÒÅÍÅÎÎÙÅ ÆÁÊÌÙ × ËÁÔÁÌÏÇÅ /tmp"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË TCP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, Ë "
--#~ "ËÏÔÏÒÙÍ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØÓÑ ÐÏÄËÌÀÞÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË UDP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, ÄÌÑ "
--#~ "ËÏÔÏÒÙÈ ÂÕÄÅÔ ×ÙÐÏÌÎÅÎÏ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË UDP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, Ë "
--#~ "ËÏÔÏÒÙÍ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØÓÑ ÐÏÄËÌÀÞÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "õËÁÖÉÔÅ ÓÅÔÅ×ÙÅ ÐÏÒÔÙ, Ë ËÏÔÏÒÙÍ ÐÏÄËÌÀÞÁÅÔÓÑ ÒÏÌØ ÐÒÉÌÏÖÅÎÉÑ/ "
--#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr ""
--#~ "õËÁÖÉÔÅ ÓÅÔÅ×ÙÅ ÐÏÒÔÙ, ËÏÔÏÒÙÅ ÒÏÌØ ÐÒÉÌÏÖÅÎÉÑ/ ÐÏÌØÚÏ×ÁÔÅÌÑ ÂÕÄÅÔ "
--#~ "ÐÒÏÓÌÕÛÉ×ÁÔØ"
--
--#~ msgid "Executable"
--#~ msgstr "éÓÐÏÌÎÑÅÍÙÊ ËÏÍÐÏÎÅÎÔ"
--
--#~ msgid "Existing User Roles"
--#~ msgstr "óÕÝÅÓÔ×ÕÀÝÉÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "óÇÅÎÅÒÉÒÏ×ÁÎÎÙÅ ÆÁÊÌÙ ÐÏÌÉÔÉËÉ"
--
--#~ msgid "Init script"
--#~ msgstr "CÃÅÎÁÒÉÊ init"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "÷ÚÁÉÍÏÄÅÊÓÔ×ÕÅÔ Ó ÔÅÒÍÉÎÁÌÏÍ"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "äÅÍÏΠéÎÔÅÒÎÅÔ-ÓÌÕÖ (inetd)"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "initd ÚÁÐÕÓËÁÅÔÓÑ ÄÅÍÏÎÏÍ xinetd"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "éÚÍÅÎÉÔØ ÓÕÝÅÓÔ×ÕÀÝÕÀ ÚÁÐÉÓØ Á×ÔÏÒÉÚÁÃÉÉ ÐÏÌØÚÏ×ÁÔÅÌÑ."
--
--#~ msgid "Name"
--#~ msgstr "éÍÑ"
+-#~ msgstr "ନୀତି ଏକକାଂଶ ଧାରଣ କରନ୍ତୁ"
 -
 -#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Policy Directory"
--#~ msgstr "ëÁÔÁÌÏÇ ÐÏÌÉÔÉËÉ"
+-#~ msgstr "ପଲଜେନ"
 -
 -#~ msgid "Red Hat 2007"
 -#~ msgstr "Red Hat 2007"
 -
--#~ msgid "Root Admin User Role"
--#~ msgstr "òÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ root"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "õÔÉÌÉÔÁ ÇÅÎÅÒÁÃÉÉ ÐÏÌÉÔÉËÉ SELinux"
--
--#~ msgid "Select Ports"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ðÏÒÔÙ"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÒÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ root, ÅÓÌÉ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ ÔÁËÖÅ "
--#~ "ÁÄÍÉÎÉÓÔÒÉÒÕÅÔ ÓÉÓÔÅÍÕ × ÒÅÖÉÍÅ root. ðÒÉ ÜÔÏÍ ÐÏÌØÚÏ×ÁÔÅÌØ ÎÅ ÓÍÏÖÅÔ "
--#~ "Á×ÔÏÒÉÚÏ×ÁÔØÓÑ × ÓÉÓÔÅÍÅ ÎÁÐÒÑÍÕÀ."
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÄÏÍÅÎÙ, ËÏÔÏÒÙÍÉ ÂÕÄÅÔ ÕÐÒÁ×ÌÑÔØ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ"
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÄÏÍÅÎÙ, × ËÏÔÏÒÙÈ ÄÏÌÖÎÁ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ ÜÔÁ ÒÏÌØ"
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÒÏÌÉ ÄÌÑ ÜÔÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ"
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ÐÅÒÅËÌÀÞÁÔÅÌÉ ÄÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ÐÒÉÌÏÖÅÎÉÅÍ"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ËÁÔÁÌÏÇ, × ËÏÔÏÒÏÍ ÂÕÄÅÔ ÇÅÎÅÒÉÒÏ×ÁÔØÓÑ ÐÏÌÉÔÉËÁ"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ÆÁÊÌÙ É ËÁÔÁÌÏÇÉ, ËÏÔÏÒÙÍÉ ÂÕÄÅÔ ÕÐÒÁ×ÌÑÔØ ÐÒÉÌÏÖÅÎÉÅ"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÄÏÍÅÎÙ ÐÒÉÌÏÖÅÎÉÊ, ÎÁ ËÏÔÏÒÙÅ ÓÌÅÄÕÅÔ ÐÅÒÅÎÅÓÔÉ ÜÔÕ ÒÏÌØ "
--#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ."
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "÷ÙÂÅÒÉÔÅ ÄÏÍÅÎÙ, ËÏÔÏÒÙÍÉ ÄÏÌÖÅΠÕÐÒÁ×ÌÑÔØ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ."
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ÓÌÅÄÕÅÔ ÐÅÒÅÎÅÓÔÉ × ÄÏÍÅÎÙ "
--#~ "ÐÒÉÌÏÖÅÎÉÊ."
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr ""
--#~ "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ÄÏÌÖÎÙ ÂÙÔØ ÐÅÒÅÎÅÓÅÎÙ × ÜÔÏÔ ÄÏÍÅÎ"
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ×Ù ÈÏÔÉÔÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "ïÔÐÒÁ×ËÁ audit ÓÏÏÂÝÅÎÉÊ "
--
--#~ msgid "Sends email"
--#~ msgstr "ïÔÐÒÁ×ÌÑÅÔ ÓÏÏÂÝÅÎÉÅ ÐÏ ÜÌ.ÐÏÞÔÅ"
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
 -
--#~ msgid "Standard Init Daemon"
--#~ msgstr "óÔÁÎÄÁÒÔÎÙÊ Init äÅÍÏÎ"
+-#~ msgid "translator-credits"
+-#~ msgstr "ମନୋଜ କୁମାର ଗିରି"
 -
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "óÔÁÎÄÁÒÔÎÙÅ ÄÅÍÏÎÙ ÉÎÉÃÉÁÌÉÚÁÃÉÉ ÚÁÐÕÓËÁÀÔÓÑ ÐÒÉ ÚÁÇÒÕÚËÅ Ó ÐÏÍÏÝØÀ "
--#~ "ÓÃÅÎÁÒÉÅ× init, ËÏÔÏÒÙÅ ÏÂÙÞÎÏ ÒÁÓÐÏÌÏÖÅÎÙ × /etc/rc.d/init.d"
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux ନୀତି ସୃଷ୍ଟି ଉପକରଣ"
 -
 -#~ msgid ""
 -#~ "This tool can be used to generate a policy framework, to confine "
@@ -226397,1204 +169819,1100 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 -#~ "File context file (fc)\n"
 -#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "ó ÐÏÍÏÝØÀ ÜÔÏÊ ÕÔÉÌÉÔÙ ÍÏÖÎÏ ÇÅÎÅÒÉÒÏ×ÁÔØ ÉÎÆÒÁÓÔÒÕËÔÕÒÕ ÐÏÌÉÔÉËÉ, "
--#~ "ÏÇÒÁÎÉÞÉÔØ ÒÁÂÏÔÕ ÐÒÉÌÏÖÅÎÉÊ É ÐÏÌØÚÏ×ÁÔÅÌÅÊ Ó ÐÏÍÏÝØÀ SELinux.\n"
--#~ "\n"
--#~ "õÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
--#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te)\n"
--#~ "æÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if)\n"
--#~ "æÁÊÌ ËÏÎÔÅËÓÔÁ (fc)\n"
--#~ "óÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh) ÄÌÑ ËÏÍÐÉÌÑÃÉÉ É ÕÓÔÁÎÏ×ËÉ ÐÏÌÉÔÉËÉ."
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "ପ୍ରୟୋଗଗୁଡିକୁ କିମ୍ବା SELinux ବ୍ୟବହାର କରୁଥିବା ଚାଳକଗୁଡିକୁ ପରିସୀମିତ କରିବାକୁ ଏହି ସାଧନଟି ଗୋଟିଏ ନୀତି "
+-#~ "ଢାଞ୍ଚା ସୃଷ୍ଟିକରିବାରେ ବ୍ୟବହାର କରିହେବ।   \n"
 -#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "üÔÁ ÕÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
--#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te), ÆÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if), ÆÁÊÌÏ×ÙÊ ËÏÎÔÅËÓÔ "
--#~ "(fc),\n"
--#~ "ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh).\n"
+-#~ "ଏହି ସାଧନଟି ସୃଷ୍ଟିକରେ:\n"
+-#~ "ପ୍ରବର୍ତ୍ତନ ଫାଇଲ ଟାଇପ କରିବାରେ (te)\n"
 -#~ "\n"
--#~ "÷ÙÐÏÌÎÉÔÅ ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ, ÞÔÏÂÙ ÓËÏÍÐÉÌÉÒÏ×ÁÔØ/ ÕÓÔÁÎÏ×ÉÔØ É ÐÒÉÓ×ÏÉÔØ "
--#~ "ÍÅÔËÉ ÆÁÊÌÁÍ\n"
--#~ "É ËÁÔÁÌÏÇÁÍ.\n"
--#~ "÷ËÌÀÞÉÔÅ ÒÁÚÒÅÛÁÀÝÉÊ ÒÅÖÉÍ (setenforce 0). \n"
--#~ "úÁÐÕÓÔÉÔÅ ÐÒÉÌÏÖÅÎÉÅ ÄÌÑ ÇÅÎÅÒÁÃÉÉ ÓÏÏÂÝÅÎÉÊ avc.\n"
--#~ "÷ÙÐÏÌÎÉÔÅ ËÏÍÁÎÄÕ audit2allow -R, ÞÔÏÂÙ ÓÏÚÄÁÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÒÁ×ÉÌÁ "
--#~ "ÄÌÑ ÆÁÊÌÁ te.\n"
+-#~ "ଅନ୍ତରାପୃଷ୍ଠ ଫାଇଲ (if)\n"
+-#~ "ସେଲ ସ୍କ୍ରିପ୍ଟ (sh) - ନୀତି ସଙ୍କଳନ ଏବଂ ସ୍ଥାପନ କରିବାରେ ବ୍ୟବହୃତ ହୋଇଥାଏ।"
 -
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "üÔÁ ÕÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
--#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te), ÆÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if), ÆÁÊÌÏ×ÙÊ ËÏÎÔÅËÓÔ "
--#~ "(fc),\n"
--#~ "ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh).\n"
--#~ "\n"
--#~ "÷ÙÐÏÌÎÉÔÅ ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ × ÒÅÖÉÍÅ root, ÞÔÏÂÙ ÓËÏÍÐÉÌÉÒÏ×ÁÔØ/ "
--#~ "ÕÓÔÁÎÏ×ÉÔØ\n"
--#~ "É ÐÒÉÓ×ÏÉÔØ ÍÅÔËÉ ÆÁÊÌÁÍ É ËÁÔÁÌÏÇÁÍ.\n"
--#~ "þÔÏÂÙ ÓÏÐÏÓÔÁ×ÉÔØ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÑÍ Linux, ÉÓÐÏÌØÚÕÊÔÅ semanage ÉÌÉ "
--#~ "useradd.\n"
--#~ "÷ËÌÀÞÉÔÅ ÒÁÚÒÅÛÁÀÝÉÊ ÒÅÖÉÍ (setenforce 0). \n"
--#~ "á×ÔÏÒÉÚÕÊÔÅÓØ É ÐÒÏ×ÅÒØÔÅ ÒÏÌØ ÐÏÌØÚÏ×ÁÔÅÌÑ.\n"
--#~ "÷ÙÐÏÌÎÉÔÅ ËÏÍÁÎÄÕ audit2allow -R, ÞÔÏÂÙ ÓÏÚÄÁÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÒÁ×ÉÌÁ "
--#~ "ÄÌÑ ÆÁÊÌÁ te.\n"
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "ପରିସୀମିତ କରିବାକୁ ଥିବା ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାର ପ୍ରକାର ଚୟନ କରନ୍ତୁ"
 -
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "üÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ ÍÏÖÅÔ Á×ÔÏÒÉÚÏ×ÁÔØÓÑ Ó ÐÏÍÏÝØÀ X ÉÌÉ ÔÅÒÍÉÎÁÌÁ. "
--#~ "éÚÎÁÞÁÌØÎÏ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÎÁÓÔÒÏÅÎÙ setuid, sudo, su É ÓÅÔÅ×ÏÅ "
--#~ "ÏËÒÕÖÅÎÉÅ."
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>ପ୍ରୟୋଗଗୁଡିକ</b>"
 -
 -#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "ðÏÌØÚÏ×ÁÔÅÌØ ÓÍÏÖÅÔ Á×ÔÏÒÉÚÏ×ÁÔØÓÑ ÔÏÌØËÏ ÕÄÁÌÅÎÎÏ ÉÌÉ × ÔÅÒÍÉÎÁÌÅ. "
--#~ "éÚÎÁÞÁÌØÎÏ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÎÁÓÔÒÏÅÎÙ setuid, sudo, su É ÓÅÔÅ×ÏÅ "
--#~ "ÏËÒÕÖÅÎÉÅ."
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "îÅÚÁÒÅÚÅÒ×ÉÒÏ×ÁÎÎÙÅ ðÏÒÔÙ (>1024)"
--
--#~ msgid "User Application"
--#~ msgstr "ðÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ðÒÉÌÏÖÅÎÉÅ"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "éÓÐÏÌØÚÕÅÔÓÑ Pam ÄÌÑ ÁÕÔÅÎÔÉÆÉËÁÃÉÉ"
--
--#~ msgid "Uses dbus"
--#~ msgstr "éÓÐÏÌØÚÕÅÔÓÑ dbus"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "éÓÐÏÌØÚÕÀÔÓÑ nsswitch ÉÌÉ getpw* ×ÙÚÏ×Ù"
--
--#~ msgid "Role"
--#~ msgstr "òÏÌØ"
--
--#~ msgid "Application"
--#~ msgstr "ðÒÉÌÏÖÅÎÉÑ"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s ÄÏÌÖÎÁ ÂÙÔØ ÄÉÒÅËÔÏÒÉÅÊ"
--
--#~ msgid "You must select a user"
--#~ msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ"
--
--#~ msgid "Verify Name"
--#~ msgstr "ðÒÏ×ÅÒËÁ ÉÍÅÎÉ"
--
--#~ msgid "You must enter a name"
--#~ msgstr "îÅÏÂÈÏÄÉÍÏ ××ÅÓÔÉ ÉÍÑ"
--
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÒÏÌØ"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "îÁÓÔÒÏÊËÁ SELinux"
+-#~ "ମାନକ Init ଡେମନ ଗୁଡିକ ହେଲା init ସ୍କ୍ରିପ୍ଟ ଜରୀଆରେ ବୁଟରେ ଆରମ୍ଭ ହେଉଥିବା ଡେମନଗୁଡିକ।  "
+-#~ "ସାଧାରଣତଃ /etc/rc.d/init.d ରେ ଗୋଟିଏ ସ୍କ୍ରିପ୍ଟ ଆବଶ୍ୟକ କରେ। "
 -
--#~ msgid "Type Enforcement file"
--#~ msgstr "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "ମାନକ Init ଡେମନ"
 -
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "æÁÉÌ ÉÎÔÅÒÆÅÊÓÁ"
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ ଗୁଡିକ xinetd ଦ୍ୱାରା ଆରମ୍ଭ କରାଯାଇଥିବା ଡେମନ"
 -
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ଇଣ୍ଟରନେଟ ସେବା ଡେମନ (inetd)"
 -
 -#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
 -#~ msgstr ""
--#~ "SELinux ðÏÒÔ\n"
--#~ "ôÉÐ"
+-#~ "ୱେବ ପ୍ରୟୋଗଗୁଡିକ/ସ୍କ୍ରିପ୍ଟ (CGI) ୱେବ ସରର୍ଭର (apache) ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା CGI ସ୍କ୍ରିପ୍ଟ"
 -
--#~ msgid "Protocol"
--#~ msgstr "ðÒÏÔÏËÏÌ"
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "ୱେବ ପ୍ରୟୋଗ/ସ୍କ୍ରିପ୍ଟ (CGI)"
 -
 -#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
 -#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "õÒÏ×ÅÎØ"
--
--#~ msgid "Port"
--#~ msgstr "ðÏÒÔ"
--
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "óÌÕÖÂÁ úÁÝÉÔÙ SELinux"
--
--#~ msgid "Admin"
--#~ msgstr "áÄÍÉÎ"
--
--#~ msgid "Memory Protection"
--#~ msgstr "úÁÝÉÔÁ ðÁÍÑÔÉ"
--
--#, fuzzy
--#~ msgid "Mount"
--#~ msgstr "íÏÎÔÉÒÏ×ÁÔØ"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+msgstr "Ошибка параметров %s "
--#~ msgid "Web Applications"
--#~ msgstr "Web ðÒÉÌÏÖÅÎÉÑ"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Переключатель"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "все"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Произвольный"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Присвоение меток файлам"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ amanda ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ amavis ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ apmd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ arpwatch ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ auditd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ automount ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ avahi ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ bluetooth ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ canna ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cardmgr ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Cluster Server ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ciped ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ clamd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ clamscan ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ clvmd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ comsat ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ courier ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cpucontrol ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cpuspeed ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ crond ÏÔËÌÀÞÅÎÁ"
--
--#, fuzzy
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ cupsd back end server ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cupsd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ cupsd_lpd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cvs ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cyrus ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dbskkd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dbusd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ dccd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ dccifd ÏÔËÌÀÞÅÎÁ"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9edccm"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9eddt"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9edevfsd"
+-#~ "ଚାଳକ ପ୍ରୟୋଗଗୁଡିକ ହେଉଛି କୌଣସି ପ୍ରୟୋଗ ଯାହାକୁକି ଆପଣ ପରିସୀମିତ କରିବାକୁ ଚାହିଁବେ ଯାହାକି ଚାଳକ "
+-#~ "ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥାଏ"
 -
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9edhcpc ÏÔËÌÀÞÅÎÁ\9e"
+-#~ msgid "User Application"
+-#~ msgstr "ଚାଳକ ପ୍ରୟୋଗ"
 -
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dhcpd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>ଲଗଇନ ଚାଳକଗୁଡିକ</b>"
 -
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dictd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "ଗୋଟିଏ ଅବସ୍ଥିତ ଲଗଇନ ଚାଳକ ଅନୁଲିପିକୁ ରୂପାନ୍ତର କରନ୍ତୁ।"
 -
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Evolution ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Existing User Roles"
+-#~ msgstr "ଅବସ୍ଥିତ ଚାଳକ ଭୂମିକା"
 -
--#~ msgid "Games"
--#~ msgstr "éÇÒÙ"
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "ଏହି ଚାଳକଟି କେବଳ ଗୋଟିଏ ଟର୍ମିନାଲ ମାଧ୍ଯମରେ କିମ୍ବା ସୂଦୁର ଲଗଇନ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ "
+-#~ "କରିପାରିବ।  ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, su ନଥିବ, sudo "
+-#~ "ନଥିବ।"
 -
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ games ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "ନ୍ୟୁନତମ ଟର୍ମିନାଲ ଚାଳକ ଭୂମିକା"
 -
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ web ÂÒÁÕÚÅÒÏ× ÏÔËÌÀÞÅÎÁ"
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "ଏହି ଚାଳକଟି X କିମ୍ବା ଟର୍ମିନାଲ ମାଧ୍ଯମରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିପାରେ।  ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ଏହି "
+-#~ "ଚାଳକର setuid ନଥିବ, ନେଟୱର୍କିଙ୍ଗ ନଥିବ, sudo ନଥିବ, su ନଥିବ "
 -
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Thunderbird ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "ନ୍ୟୁନତମ X ୱିଣ୍ଡୋ ଚାଳକ ଭୂମିକା"
 -
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ distccd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, sudo ନାହିଁ, su "
+-#~ "ନାହିଁ।"
 -
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dmesg ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Определение\n"
-+"файлов"
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dnsmasq ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"SELinux\n"
-+"Тип Файла"
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ dovecot ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Файл\n"
-+"Тип"
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ entropyd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Сопоставление пользователей"
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ fetchmail ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Логин\n"
-+"Имя"
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ fingerd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"Пользователь"
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ freshclam ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
+-#~ msgid "User Role"
+-#~ msgstr "ଚାଳକ ଭୂମିକା"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "ସମ୍ପୂର୍ଣ୍ଣ ନେଟୱର୍କିଙ୍ଗ ବିଶିଷ୍ଟ ଚାଳକ, ସକର୍ମ ବିନା କୌଣସି setuid ପ୍ରୟୋଗ ନାହିଁ, su ନାହିଁ, sudo ରୁ "
+-#~ "ମୂଳ ପ୍ରଶାସନ ଭୂମିକାଗୁଡିକୁ"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "ପ୍ରଶାସନ ଚାଳକ ନିତୀ"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>ମୂଳ ଚାଳକଗୁଡିକ</b>"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+"Диапазон\n"
-+"MLS/MCS"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ fsdaemon ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Требуется авторизация «%s»"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ gpm ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Модуль политики"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Имя модуля"
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ gss ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Версия"
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ Hal ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Выключить аудит"
--#~ msgid "Compatibility"
--#~ msgstr "óÏ×ÍÅÓÔÉÍÏÓÔØ"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Включить аудит"
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ hostname ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Загрузить модуль политики"
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ hotplug ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ howl ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ cups hplip ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ httpd rotatelogs ÏÔËÌÀÞÅÎÁ"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "перевод"
--#~ msgid "HTTPD Service"
--#~ msgstr "óÌÕÖÂÁ HTTPD"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"С помощью этой утилиты можно генерировать инфраструктуру политики, "
-+"ограничить работу приложений и пользователей с помощью SELinux.\n"
-+"\n"
-+"Утилита генерирует:\n"
-+"Файл принуждения типа (te)\n"
-+"Файл интерфейса (if)\n"
-+"Файл контекста (fc)\n"
-+"Сценарий оболочки (sh) для компиляции и установки политики."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Выберите тип роли приложения/ пользователя для применения ограничений"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Приложения</b>"
  
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ http suexec ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "ମୂଳ ପ୍ରଶାସକ ଚାଳକ ଭୂମିକାକୁ ଚୟନ କରନ୍ତୁ, ଯଦି ଏହି ଚାଳକଟି ମୂଳ ଆକାରରେ ଚାଲୁଥିବା ସମୟରେ ଯନ୍ତ୍ରକୁ "
+-#~ "ପ୍ରଶାସନ କରିବାରେ ବ୍ୟବହୃତ ହେବ।  ଏହି ଚାଳକଟି ସିଧାସଳଖ ଭାବରେ ଯନ୍ତ୍ରରେ ଲଗଇନ କରିବାକୁ ସମର୍ଥ "
+-#~ "ହେବ ନାହିଁ।"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+"Стандартные службы инициализации запускаются при загрузке с помощью "
-+"сценариев init, которые обычно расположены в /etc/rc.d/init.d"
  
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ hwclock ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Стандартная служба Init"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "Системная служба DBUS"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "initd запускается службой xinetd"
-+
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "ମୂଳ ପ୍ରଶାସନ ଚାଳକ ଭୂମିକା"
 +#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Диспетчер Интернет-служб (inetd)"
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ i18n ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:320
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "Веб-приложения/ сценарии CGI, запускаемые веб-сервером Apache"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ imazesrv ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:322
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "ପରିସୀମିତ ହେବାକୁଥିବା ପ୍ରୟୋଗର ନାମ କିମ୍ୱା ଚାଳକ ଭୂମିକାକୁ ଭରଣ କରନ୍ତୁ"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Веб-приложение/ сценарий (CGI)"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ inetd child ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:341
+-#~ msgid "Name"
+-#~ msgstr "ନାମ"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Пользовательское приложение -- любое приложение, запущенное пользователем, к "
-+"которому вы хотите применить ограничения."
  
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ inetd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:343
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "ନିଷ୍ପାଦ୍ୟକୁ ପରିସୀମିତ କରିବାପାଇଁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Пользовательское приложение"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ କିମ୍ୱା ଚାଳକ ଭୂମିକା ପାଇଁ ଏକୈକ ନାମ ଭରଣ କରନ୍ତୁ।"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Зарегистрированные пользователи</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Изменить существующую запись авторизации пользователя."
-+
++msgstr ""
+-#~ msgid "Executable"
+-#~ msgstr "ନିଷ୍ପାଦ୍ୟ"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Init script"
+-#~ msgstr "Init ସ୍କ୍ରିପ୍ଟ"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Существующие роли пользователей"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ innd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:472
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "ପରିସୀମିତ ପ୍ରୟୋଗକୁ ଆରମ୍ଭ କରିବାପାଇଁ ବ୍ୟବହାର ହେଉଥିବା init ସ୍କ୍ରିପ୍ଟକୁ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ଭରଣ କରନ୍ତୁ।"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Пользователь сможет авторизоваться только удаленно или в терминале. "
-+"Изначально для пользователя не настроены setuid, sudo, su и сетевое "
-+"окружение."
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "ଆପଣ ଇଚ୍ଛାରୂପଣ କରିବାକୁ ଚାହୁଁଥିବା ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Минимальная роль пользователя терминала"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ iptables ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:493
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "ଚାଳକ ଭୂମିକା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ସକର୍ମ କରିବ।"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Этот пользователь может авторизоваться с помощью X или терминала. Изначально "
-+"для пользователя не настроены setuid, sudo, su и сетевое окружение."
  
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ircd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:495
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ସକର୍ମ କରିବ"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Минимальная роль пользователя X Window"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ irqbalance ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:514
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "ପ୍ରୟୋଗ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଚାହୁଁଥିବା ଚାଳକ ଭୁମିକାକୁ ସକର୍ମ କରିବ।"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Пользователь с полностью настроенным сетевым окружением, приложения без "
-+"setuid, без su, без sudo."
  
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ iscsi ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:516
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "ଚାଳକ ଭୂମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯିଏ ଏହି ପରିସରକୁ ସକର୍ମ କରିବ"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Роль пользователя"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ jabberd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:535
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "ଅତିରିକ୍ତ ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ଭୂମିକା ପ୍ରଶାସନ କରିବ"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Пользователь с полностью настроенным сетевым окружением, приложения без "
-+"setuid, без su могут выполнять доступ sudo к ролям администрирования root."
  
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
-+#: ../gui/polgen.glade:537
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ପରିସରଗୁଡିକୁ ଚୟନ କରନ୍ତୁ ଯାହାକୁକି ଏହି ଚାଳକ ପ୍ରଶାସନ କରିବ।"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Роль администратора"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "ଏହି ଚାଳକ ପାଇଁ ଅତିରିକ୍ତ ଭୁମିକାଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Пользователи root</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ kadmind ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:645
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ମାନୁଥିବା ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Выберите роль администратора root, если этот пользователь также "
-+"администрирует систему в режиме root. При этом пользователь не сможет "
-+"авторизоваться в системе напрямую."
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP ସଂଯୋଗିକୀ</b>"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Роль администратора root"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ klogd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "କୌଣସି udp ସଂଯୋଗିକୀକୁ ବାନ୍ଧିବା ପାଇଁ ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+"Введите имя роли приложения или пользователя для применения ограничений"
  
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ krb5kdc ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "All"
+-#~ msgstr "ସମସ୍ତ"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "bindresvport କୁ 0 ସହିତ ଡାକିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ। ସଂଯୋଗିକୀ "
+-#~ "600-1024 କୁ ବାନ୍ଧିକରି"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Имя"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ktalk ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:781
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+"Укажите полный путь к исполняемому компоненту, к которому будут применены "
-+"ограничения"
  
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ kudzu ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
+-#~ "ଚାଳକ ଭୂମିକାକୁ ବାନ୍ଧିଥାଏ। ଉଦାହରଣ: 612, 650-660"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ locate ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:823
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "ଅସଂରକ୍ଷିତ ସଂଯୋଗିକୀ  (> 1024)"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+"Введите уникальное имя для ограничиваемой роли приложения/ пользователя."
  
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lpd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:845
+-#~ msgid "Select Ports"
+-#~ msgstr "ସଂଯୋଗିକୀ ଚୟନକରନ୍ତୁ"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Исполняемый компонент"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lrrd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:873
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr "କୌଣସି udp ସଂଯୋଗିକୀ > 1024 କୁ ବାନ୍ଧିବା ପାଇଁ ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP ସଂଯୋଗିକୀ</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "ପ୍ରୟୋଗ/ଚାଳକ ଭୂମିକାକୁ ସଂଯୁକ୍ତ ନେଟୱର୍କ ସଂଯୋଗିକୀଗୁଡିକୁ ଭରଣ କରନ୍ତୁ"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "tcp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
+-#~ "ଚାଳକ ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "udp ସଂଯୋଗିକୀ ମାନଙ୍କର କମା ବିଭାଜିତ ତାଲିକା କିମ୍ୱା ସଂଯୋଗିକୀ ମାନଙ୍କର ପରିସର ଯିଏକି ପ୍ରୟୋଗ/"
+-#~ "ଚାଳକ ଭୂମିକାକୁ ସଂଯୋଗ କରିଥାଏ। ଉଦାହରଣ: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "ସାଧାରଣ ପ୍ରୟୋଗ ବିଶିଷ୍ଟତା ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog ସନ୍ଦେଶଗୁଡିକୁ ଲେଖିଥାଏ\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp ରେ ଅସ୍ଥାୟୀ ଫାଇଲଗୁଡିକୁ ସୃଷ୍ଟି/ପ୍ରକଳନ କରନ୍ତୁ"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "ବୈଧିକରଣ ପାଇଁ Pam ବ୍ୟବହାର କରେ"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch କିମ୍ୱା getpw* ଡାକରା ବ୍ୟବହାର କରେ"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Сценарий init"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lvm ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:901
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ବ୍ୟବହାର କରେ"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Укажите полный путь к сценарию init, используемому для запуска "
-+"ограничиваемого приложения."
  
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ mailman ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Выберите роли пользователей, которые вы хотите модифицировать"
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ଲେଖା ପରୀକ୍ଷଣ ସନ୍ଦେଶ ପଠାଏ"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "ଟର୍ମିନାଲ ସହିତ ପାରସ୍ପର ଉପରେ ପ୍ରଭାବ ପକାଏ"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "ଇମେଲ ପଠାଏ"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "ପ୍ରୟୋଗ ପରିଚାଳନ କରୁଥିବା ଫାଇଲ/ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ଫାଇଲ/ଡିରେକ୍ଟୋରି ଗୁଡିକୁ ସଂଯୋଗକରନ୍ତୁ ଯାହାକି ପ୍ରୟୋଗରେ \"ଲେଖିବା\" କୁ ଆବଶ୍ୟକ କରେ। Pid "
+-#~ "ଫାଇଲଗୁଡିକ, Log ଫାଇଲଗୁଡିକ, /var/lib ଫାଇଲଗୁଡିକ ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "ବୁଲିଆନଗୁଡିକୁ ଚୟନକରନ୍ତୁ ଯାହାକୁ ପ୍ରୟୋଗ ବ୍ୟବହାର କରେ"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "ଏହି ପରିସୀମିତ ପ୍ରୟୋଗ/ଚାଳକ ପାଇଁ ବୁଲିଆନଗୁଡିକୁ ଯୋଗ/ଅପସାରଣ କରନ୍ତୁ"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "ଭିତର ନୀତି ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "ନୀତି ଡିରେକ୍ଟୋରୀ"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "ସୃଷ୍ଟିହେଇଥିବା ନୀତି ଫାଇଲଗୁଡିକ"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
+-#~ "ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
+-#~ "ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
+-#~ "Linux ଲଗଇନ ଚାଳକକୁ ଚାଳକ ଭୂମିକା ସହିତ ପରିକଳ୍ପନା କରିବାକୁ semanage କିମ୍ବା useradd ବ୍ୟବହାର "
+-#~ "କରିଥାଏ।\n"
+-#~ "ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
+-#~ "ଚାଳକ ଭାବରେ ଲଗଇନ କରିଥାଏ ଏବଂ ଏହି ଚାଳକ ଭୂମିକାକୁ ପରୀକ୍ଷା କରିଥାଏ।\n"
+-#~ "te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mdadm ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ଏହି ସାଧନଟି ନିମ୍ନଲିଖିତ ମାନଙ୍କୁ ସୃଷ୍ଟି କରିବ: \n"
+-#~ "ପ୍ରବର୍ତ୍ତନ ଟାଇପକରିବା(te), ଫାଇଲ ପ୍ରସଙ୍ଗ(fc), ଅନ୍ତରାପୃଷ୍ଠ(if), ସେଲ ସ୍କ୍ରିପ୍ଟ(sh)\n"
+-#~ "\n"
+-#~ "ସଙ୍କଳନ/ସ୍ଥାପନ କରିବାକୁ ସେଲ ସ୍କ୍ରିପ୍ଟ ନିଷ୍ପାଦନ କରେ ଏବଂ ଫାଇଲ/ଡିରେକ୍ଟୋରୀକୁ ପୁନଃଚିହ୍ନଟ କରେ।  \n"
+-#~ "ଯନ୍ତ୍ରକୁ ଅନୁମୋଦନକାରୀ ଅବସ୍ଥାରେ ରଖେ (setenforce 0)। \n"
+-#~ "avc ସନ୍ଦେଶଗୁଡିକୁ ସୃଷ୍ଟି କରବାପାଇଁ ପ୍ରୟୋଗକୁ ଚଲାଇଥାଏ/ପୁନଃଆରମ୍ଭ କରିଥାଏ।\n"
+-#~ "te ଫାଇଲ ପାଇଁ ଅତିରିକ୍ତ ନିୟମ ସୃଷ୍ଟିକରିବା ପାଇଁ audit2allow -R ବ୍ୟବହାର କରେ।\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "ବୁଲିୟାନ ସଂଳାପ ଯୋଗକରନ୍ତୁ"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "ବୁଲିଆନ ନାମ"
+-
+-#~ msgid "Role"
+-#~ msgstr "ଭୂମିକା"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+"Выберите роли пользователей, которые следует перенести в домены приложений."
  
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ monopd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Existing_User"
+-#~ msgstr "ଅବସ୍ଥିତ ଚାଳକ (_U)"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+"Выберите дополнительные домены, в которых должна присутствовать эта роль"
  
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mrtg ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Application"
+-#~ msgstr "ପ୍ରୟୋଗ"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+"Выберите домены приложений, на которые следует перенести эту роль "
-+"пользователя."
  
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mysqld ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ନିଶ୍ଚିତ ରୂପେ ଗୋଟିଏ ଡିରେକ୍ଟରୀ"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+"Выберите роли пользователей, которые должны быть перенесены в этот домен"
  
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nagios ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "You must select a user"
+-#~ msgstr "ଆପଣ ଗୋଟିଏ ଚାଳକ ଚୟନ କରିବା ଉଚିତ"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+"Выберите дополнительные домены, которыми будет управлять этот пользователь"
  
--#~ msgid "Name Service"
--#~ msgstr "óÌÕÖÂÁ éÍÅÎ"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "ପରିସୀମିତ ରହିବାକୁ ନିଷ୍ପାଦ୍ୟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "ପରିସୀମିତ ରହିବାକୁ init ସ୍କ୍ରିପ୍ଟ ଫାଇଲ ଚୟନ କରନ୍ତୁ।"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ସୃଷ୍ଟି କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଫାଇଲ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "ପରିସୀମିତ ପ୍ରୟୋଗ ହାସଲ କରିବା କିମ୍ୱା ଲେଖିବାକୁ ଡିରେକ୍ଟୋରୀ(ଗୁଡିକୁ) ଚୟନ କରନ୍ତୁ"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "ଭିତର ନୀତି ଫାଇଲ ସୃଷ୍ଟି କରିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଚୟନ କରନ୍ତୁ"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "%s_t ପ୍ରକାରକୁ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ବ୍ୟଖ୍ୟା କରାଯାଇଛି।\n"
+-#~ "ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "ନାମ ଯାଞ୍ଚ କରନ୍ତୁ"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "%s.pp ଏକକାଂଶ ପ୍ରଚଳିତ ନୀତିରେ ପୂର୍ବରୁ ଧାରଣ କରାଯାଇଛି।\n"
+-#~ "ଆପଣ ଚାଲୁ ରଖିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "ଆପଣ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ଭରଣ କରିବା ଉଚିତ"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux ବିନ୍ୟାସ କରନ୍ତୁ"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "ସଂଯୋଗିକୀଗୁଡିକ ନିଶ୍ଚିତ ରୂପେ ସଂଖ୍ୟା କିମ୍ବା 1 ରୁ %d ପର୍ଯ୍ୟନ୍ତ ସଂଖ୍ୟାର ପରିସର ହୋଇଥିବା ଉଚିତ"
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ/ଚାଳକ ପାଇଁ ଆପଣ ଗୋଟିଏ ନାମ ଭରଣ କରିବା ଉଚିତ"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "ଚାଳକ ପ୍ରକାର ଗୁଡିକ ଅନୁମତିପ୍ରାପ୍ତ ନିଷ୍ପାଦ୍ୟ ନୁହଁନ୍ତି"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "କେବଳ ଡେମନ apps init ସ୍କ୍ରିପ୍ଟ ବ୍ୟବହାର କରିପାରିବେ"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Выберите домены, которыми должен управлять этот пользователь."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Выберите дополнительные роли для этого пользователя"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ named ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog ଟି ଗୋଟିଏ ବୁଲିଆନ ମୂଲ୍ୟ ହୋଇଥିବା ଉଚିତ"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+"Укажите сетевые порты, которые роль приложения/ пользователя будет "
-+"прослушивать"
  
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nessusd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER ପ୍ରକାରଗୁଡିକ ସ୍ୱୟଂଚାଳିତଭାବେ ଗୋଟିଏ tmp ପ୍ରକାର ପାଇଥାଏ"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "ଆପଣଙ୍କର ପରିସୀମିତ ପ୍ରଣାଳୀ ପାଇଁ ଗୋଟିଏ ନିଷ୍ପାଦ୍ୟ ପଥ ଭରଣ କରିବା ଉଚିତ"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "ପ୍ରବର୍ତ୍ତନ ଫାଇଲକୁ ଟାଇପ କରନ୍ତୁ"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ଅନ୍ତରାପ୍ରୁଷ୍ଠ ଫାଇଲ"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>Порты TCP</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NetworkManager ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "File Contexts file"
+-#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗ ଫାଇଲ"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+"Разрешает сопоставление ограничиваемых приложений/ пользователей любому "
-+"порту UDP"
  
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nfsd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Setup Script"
+-#~ msgstr "ସ୍କ୍ରିପ୍ଟ ବ୍ୟବସ୍ଥା"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Все"
++msgstr ""
  
--#~ msgid "Samba"
--#~ msgstr "Samba"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux ସଂଯୋଗିକୀ\n"
+-#~ "ପ୍ରକାର"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"Разрешить приложению/ пользователю осуществлять вызов bindresvport с 0. "
-+"Используется порт 600-1024"
  
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nmbd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Protocol"
+-#~ msgstr "ପ୍ରଟୋକଲ"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nrpe ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "ସ୍ତର"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Введите список UDP-портов или диапазонов портов, разделенных запятой, для "
-+"которых будет выполнено сопоставление. Пример: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nscd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Port"
+-#~ msgstr "ସଂଯୋଗିକୀ"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Незарезервированные порты (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "ସଂଯୋଗିକୀ ସଂଖ୍ୟା \"%s\" ଟି ବୈଧ ନୁହଁ  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Выберите порты"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nsd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "List View"
+-#~ msgstr "ତାଲିକା ଦୃଶ୍ୟ"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"Разрешить сопоставление приложений/ пользователей любым портам UDP с "
-+"номерами > 1024"
  
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ntpd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Group View"
+-#~ msgstr "ସମୁହ ଦୃଶ୍ୟ"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>Порты UDP</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ oddjob ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux ଚାଳକ ସୁରକ୍ଷା"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Укажите сетевые порты, к которым подключается роль приложения/ пользователя"
  
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ oddjob_mkhomedir ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "ପ୍ରଶାସନ"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "ସର୍ବପ୍ରଧାନ ଫାଇଲଗୁଡିକୁ ଲେଖିବାକୁ ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ /"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Введите список TCP-портов или диапазонов портов, разделенных запятой, к "
-+"которым будет осуществляться подключение. Пример: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ openvpn ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "ସମସ୍ତ ଡେମନଗୁଡିକୁ ଅବଣ୍ଟିତ tty ଗୁଡିକୁ ବ୍ୟବହାର କରିବାର କ୍ଷମତା ପ୍ରଦାନ କରନ୍ତୁ"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "User Privs"
+-#~ msgstr "ଚାଳକ ଗୋପନୀୟତା"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Введите список UDP-портов или диапазонов портов, разделенных запятой, к "
-+"которым будет осуществляться подключение. Пример: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ pam ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Выбрать типичное поведение приложения"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ଅତିଥି SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "ସ୍ମୃତି ସୁରକ୍ଷା"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Записывает сообщения syslog\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java ନିଷ୍ପାଦ୍ୟ ଥାକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Создавать и обрабатывать временные файлы в каталоге /tmp"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "ସ୍ଥାପନ"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Используется Pam для аутентификации"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "ଯେକୌଣସି ଫାଇଲକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Используются nsswitch или getpw* вызовы"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "ଯେକୌଣସି ଡିରେକ୍ଟୋରୀକୁ ସ୍ଥାପନ କରିବାକୁ ସ୍ଥାପନ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Используется dbus"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer ନିଷ୍ପାଦ୍ୟ ଥାକ କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Отправка audit сообщений "
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Взаимодействует с терминалом"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh-keysign କୁ ଚଲାଇବା ପାଇଁ ssh କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Отправляет сообщение по эл.почте"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Выберите файлы и каталоги, которыми будет управлять приложение"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pegasus ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2607
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "staff SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "unconfined SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ "
+-#~ "ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Добавить файлы и каталоги, в которые приложение будет осуществлять запись. "
-+"Файлы PID, журналы, /var/lib"
  
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ perdition ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Выберите переключатели для использования приложением"
+-#~ msgid "Network Configuration"
+-#~ msgstr "ନେଟୱର୍କ ବିନ୍ୟାସ"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ portmap ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "ନାମପଟିକରଣ ହୋଇନଥିବା ପ୍ୟାକେଟଗୁଡିକୁ ନେଟୱର୍କରେ ପ୍ରବାହ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"Добавить/ удалить переключатели, используемые для этого приложения/ "
-+"пользователя"
  
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ portslave ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Выберите каталог, в котором будет генерироваться политика"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Каталог политики"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Сгенерированные файлы политики"
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ postfix ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Эта утилита генерирует:\n"
-+"Файл принуждения типа (te), файл интерфейса (if), файловый контекст (fc),\n"
-+"сценарий оболочки (sh).\n"
-+"\n"
-+"Выполните сценарий оболочки в режиме root, чтобы скомпилировать/ установить\n"
-+"и присвоить метки файлам и каталогам.\n"
-+"Чтобы сопоставить роли пользователям Linux, используйте semanage или "
-+"useradd.\n"
-+"Включите разрешающий режим (setenforce 0). \n"
-+"Авторизуйтесь и проверьте роль пользователя.\n"
-+"Выполните команду audit2allow -R, чтобы создать дополнительные правила для "
-+"файла te.\n"
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "ଅପରିସୀମିତ dyntrans କୁ ଅପରିସୀମିତ_execmen ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ postgresql ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Эта утилита генерирует:\n"
-+"Файл принуждения типа (te), файл интерфейса (if), файловый контекст (fc),\n"
-+"сценарий оболочки (sh).\n"
-+"\n"
-+"Выполните сценарий оболочки, чтобы скомпилировать/ установить и присвоить "
-+"метки файлам\n"
-+"и каталогам.\n"
-+"Включите разрешающий режим (setenforce 0). \n"
-+"Запустите приложение для генерации сообщений avc.\n"
-+"Выполните команду audit2allow -R, чтобы создать дополнительные правила для "
-+"файла te.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Databases"
+-#~ msgstr "ତଥ୍ୟାଧାର"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "mysql ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Добавить диалог для переключателей"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "postgres ସକେଟ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିବାପାଇଁ ଚାଳକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Имя переключателя"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "Xସର୍ଭର"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Роль"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "X ସହଭାଗୀ ସ୍ମୃତିରେ ଲେଖିବା ପାଇଁ ଗ୍ରାହକକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Существующий _пользователь"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "x ଚାଳକ SELinux ଚାଳକ ଖାତାକୁ ମୂଳ ଡିରେକ୍ଟୋରୀ କିମ୍ବା /tmp ରେ ଫାଇଲ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି "
+-#~ "ଦିଅନ୍ତୁ"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Приложение"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s должна быть директорией"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "NIS ସହିତ ଚାଲିବାପାଇଁ ଡେମନକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Необходимо указать пользователя"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "ୱେବ ପ୍ରୟୋଗ"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Выберите исполняемый файл для применения ограничений."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "ସକର୍ମ staff SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Выберите сценарий init для применения ограничений."
++msgstr ""
  
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/polgengui.py:474
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "ସକର୍ମ sysadm SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"Выберите файлы, которые ограничиваемое приложение будет создавать или "
-+"записывать"
  
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pptp ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:481
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "ସକର୍ମ user SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Выберите каталоги, которые будут принадлежать ограничиваемым приложениям"
  
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ prelink ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:541
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "ସକର୍ମ xguest SELinux ଚାଳକ କୁ ୱେବ ବ୍ରାଉଜର ପରିସର"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Выберите каталог, в котором будут генерироваться файлы политики"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ privoxy ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:554
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "ମୂଳ ଡିରେକ୍ଟୋରୀରେ ଲେଖିବା ପାଇଁ staff Web Browsers କୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Тип %s_t уже определен в текущей политике.\n"
-+"Продолжить?"
  
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ptal ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Проверка имени"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ pxe ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Модуль %s.pp уже загружен в текущую политику.\n"
-+"Продолжить?"
  
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pyzord ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Необходимо ввести имя"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ quota ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Необходимо указать исполняемый компонент"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ radiusd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Настройка SELinux"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ radvd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Номера портов должны лежать в диапазоне от 1 до %d "
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ rdisc ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Необходимо ввести имя процесса/ пользователя с ограничениями"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ readahead ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Типы пользователей не являются допустимыми исполняемыми компонентами"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ restorecond ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Только демоны могут использовать сценарий init"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rhgb ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Cluster ସର୍ଭର  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "ବିଭିନ୍ନ ପ୍ରକାର ପ୍ରସଙ୍ଗକୁ ପଢିବାପାଇଁ cdrecordକୁ ଅନୁମତି ଦିଅନ୍ତୁ। nfs, samba, ଅପସାରଣୀୟ "
+-#~ "ଯନ୍ତ୍ରଗୁଡିକୁ, ଚାଳକ temp ଏବଂ ଅବିସ୍ଵସ୍ତ ପ୍ରସଙ୍ଗ ଫାଇଲଗୁଡିକ"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog должен содержать логическое значение"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ricci ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "Типам пользователей автоматически присваивается тип tmp"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ricci_modclusterd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Для ограничиваемого процесса необходимо задать исполняемый путь"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rlogind ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Файл принуждения типа"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rpcd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Файл интерфейса"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ rshd ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Файл контекста"
++msgstr ""
  
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.py:851
+-#~ msgid "Cron"
+-#~ msgstr "କ୍ରନ"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Сценарий настройки"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rsync ÏÔËÌÀÞÅÎÁ"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "ମୁଦ୍ରଣ କରୁଅଛି"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd ପଛପାଖ ସର୍ଭର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Сетевой порт"
++msgstr ""
  
--#~ msgid "SASL authentication server"
--#~ msgstr "ÓÅÒ×ÅÒ Á×ÔÏÒÉÚÁÃÉÉ SASL"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux Порт\n"
-+"Тип"
  
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ saslauthd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Протокол"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ scannerdaemon ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"Уровень"
  
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sendmail ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Порт"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Неверный номер порта \"%s\". 0 < номер порта < 65536 "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Список"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Группы"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -227642,26 +170960,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Защита служб SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Отключить защиту SELinux для acct"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Админ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Разрешить всем демонам осуществлять запись в /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Разрешить всем демонам использовать незанятые tty"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -227670,153 +170988,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Привилегии пользователей"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ setrans ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить учетной записи gadmin исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ setroubleshoot ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить учетной записи guest исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ slapd ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Защита памяти"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Разрешить исполняемый стек java"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Монтирование"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Разрешить монтирование любых файлов"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Разрешить монтирование любых каталогов"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Разрешить исполняемый стек mplayer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Разрешить ssh исполнять ssh-keysign"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ slrnpull ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить пользователю staff исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ smbd ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить пользователю sysadm исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ snmpd ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Разрешить неограниченной учетной записи SELinux исполнять файлы в домашнем "
-+"каталоге и /tmp"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ snort ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Конфигурация сети"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Разрешить прохождение по сети неотмеченных пакетов"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ soundd ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить пользователям user исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sound ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"Разрешить неограниченным компонентам выполнять dyntrans для "
-+"unconfined_execmem"
--#~ msgid "Spam Protection"
--#~ msgstr "úÁÝÉÔÁ ÏÔ óÐÁÍÁ"
++
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Базы данных"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Разрешить пользователю подключаться к сокету mysql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Разрешить пользователю подключаться к сокету postgres"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Разрешить клиентам осуществлять запись в разделяемую память X"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ spamd ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Разрешить учетной записи xguest исполнять файлы в домашнем каталоге и /tmp"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ speedmgmt ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Разрешить демонам исполняться с NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -227824,1082 +171108,1328 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web Приложения"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Перенести пользователя staff в домен веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Перенести пользователя sysadm в домен веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Перенести пользователя user в домен веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Перенести пользователя xguest в домен веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+"Разрешить браузерам пользователя staff осуществлять запись в домашние "
-+"каталоги"
--#~ msgid "Squid"
--#~ msgstr "Squid"
++
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Отключить защиту SELinux для amanda "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Отключить защиту SELinux для amavis "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Отключить защиту SELinux для службы apmd "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Отключить защиту SELinux для arpwatch "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Отключить защиту SELinux для auditd "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Отключить защиту SELinux для automount "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Отключить защиту SELinux для avahi "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Отключить защиту SELinux для bluetooth "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Отключить защиту SELinux для canna "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Отключить защиту SELinux для cardmgr "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Отключить защиту SELinux для Cluster Server "
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ squid ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Разрешить cdrecord осуществлять чтение различной информации с NFS, Samba, из "
-+"временных каталогов пользователей, недоверенных файлов и съемных устройств"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ssh ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Отключить защиту SELinux для ciped "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Отключить защиту SELinux для clamd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifdନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Отключить защиту SELinux для clamscan "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Отключить защиту SELinux для clvmd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Отключить защиту SELinux для comsat "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Отключить защиту SELinux для courier "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Отключить защиту SELinux для cpucontrol "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Отключить защиту SELinux для cpuspeed "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
-+
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "start ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Отключить защиту SELinux для crond "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ବିକାସ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Печать"
-+
++msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "ଖେଳ"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Отключить защиту·SELinux·для сервера cupsd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "ଖେଳ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Отключить защиту SELinux для cupsd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "ୱେବ ବ୍ରାଉଜର ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Отключить защиту SELinux для cupsd_lpd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Thunderbird ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Отключить защиту SELinux для cvs "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Отключить защиту SELinux для cyrus "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Отключить защиту SELinux для dbskkd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Отключить защиту SELinux для dbusd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Отключить защиту SELinux для dccd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Отключить защиту SELinux для dccifd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Отключить защиту SELinux для dccm"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Отключить защиту SELinux для ddt "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Отключить защиту SELinux для devfsd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Отключить защиту SELinux для dhcpc"
-+
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Отключить защиту SELinux для dhcpd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Отключить защиту SELinux для dictd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Разрешить sysadm_t запускать службы напрямую"
-+
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "ସୁସଂଗତି"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Отключить защиту SELinux·для Evolution"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "ଆମେ ଜାଣିଥିବା ଜିନିଷ ଯାହାକି ଭାଙ୍ଗିବାକୁ ଯାଉଛି କିନ୍ତୁ ଯେଉଁଥିରେ ସୁରକ୍ଷା ବିପତ୍ତି ନାହିଁ ତାକୁ ସମୀକ୍ଷା "
+-#~ "କରନ୍ତୁ ନାହିଁ"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Игры"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Отключить защиту SELinux для games "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Отключить защиту SELinux для веб-браузеров "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Отключить защиту SELinux для Thunderbird "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "ଆଧାରନାମ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Отключить защиту SELinux для distccd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Отключить защиту SELinux для dmesg "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Отключить защиту SELinux для dnsmasq "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Отключить защиту SELinux для dovecot "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Отключить защиту SELinux для entropyd "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Отключить защиту SELinux для fetchmail "
-+
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD ସେବା"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Отключить защиту SELinux для fingerd "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Отключить защиту SELinux для freshclam "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Отключить защиту SELinux для fsdaemon "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Отключить защиту SELinux для gpm "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Отключить защиту SELinux для gss "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Отключить защиту SELinux для Hal "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Совместимость"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ stunnel ÏÔËÌÀÞÅÎÁ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Не выполнять аудит неисправных компонентов, которые не представляют угрозу "
-+"безопасности"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ swat ÏÔËÌÀÞÅÎÁ"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Отключить защиту SELinux для hostname "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Отключить защиту SELinux для hotplug "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Отключить защиту SELinux для howl "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Отключить защиту SELinux для cups hplip "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Отключить защиту SELinux для httpd rotatelogs "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "Служба HTTPD"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Отключить защиту SELinux для http suexec "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Отключить защиту SELinux для hwclock "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Отключить защиту SELinux для службы i18n"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Отключить защиту SELinux для imazesrv"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Отключить защиту SELinux для дочерних процессов inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Отключить защиту SELinux для inetd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Отключить защиту SELinux для innd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Отключить защиту SELinux для iptables"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Отключить защиту SELinux для ircd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Отключить защиту SELinux для irqbalance"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Отключить защиту SELinux для iscsi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Отключить защиту SELinux для jabberd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Отключить защиту SELinux для kadmind"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Отключить защиту SELinux для klogd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Отключить защиту SELinux для krb5kdc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Отключить защиту SELinux для процессов ktalk"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Отключить защиту SELinux для kudzu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Отключить защиту SELinux для locate"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Отключить защиту SELinux для lpd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Отключить защиту SELinux для lrrd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Отключить защиту SELinux для lvm"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inet child ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Отключить защиту SELinux для mailman"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sxid ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+"Разрешить Evolution и Thunderbird осуществлять чтение файлов пользователей"
  
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ syslogd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Отключить защиту SELinux для mdadm"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Отключить защиту SELinux для monopd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Разрешить Mozilla осуществлять чтение файлов пользователя"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Отключить защиту SELinux для mrtg"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Отключить защиту SELinux для mysqld"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Отключить защиту SELinux для nagios"
-+
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "କେର୍ବେରୋଶ"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Служба имён"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Отключить защиту SELinux для named"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Отключить защиту SELinux для nessusd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Отключить защиту SELinux для NetworkManager"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk ଡେମନଗୁଡିକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Отключить защиту SELinux для nfsd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Отключить защиту SELinux для nmbd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Отключить защиту SELinux для nrpe"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Отключить защиту SELinux для nscd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Отключить защиту SELinux для nsd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Отключить защиту SELinux для ntpd "
-+
++msgstr ""
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଇଭଲ୍ୟୁସନ ଏବଂ ଥଣ୍ଡରବର୍ଡକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Отключить защиту SELinux для oddjob "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Отключить защиту SELinux для oddjob_mkhomedir "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Отключить защиту SELinux для openvpn "
-+
++msgstr ""
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "ଚାଳକ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ମଜିଲା ବ୍ରାଉଜରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Отключить защиту SELinux для pam"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Отключить защиту SELinux для pegasus "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Отключить защиту SELinux для perdition "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Отключить защиту SELinux для portmap "
-+
++msgstr ""
+-#~ msgid "Name Service"
+-#~ msgstr "ନାମ ସେବା"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Отключить защиту SELinux для portslave "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Отключить защиту SELinux для postfix "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Отключить защиту SELinux для postgresql "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "ନେଟୱର୍କ ପରିଚାଳକ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Разрешить исполнение pppd в режиме обычного пользователя"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "ଶାମ୍ବା"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Отключить защиту SELinux для pptp"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Отключить защиту SELinux для prelink"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Отключить защиту SELinux для privoxy"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Отключить защиту SELinux для ptal"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Отключить защиту SELinux для pxe"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Отключить защиту SELinux для pyzord"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Отключить защиту SELinux для quota"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Отключить защиту SELinux для radiusd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Отключить защиту SELinux для radvd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Отключить защиту SELinux для rdisc "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Отключить защиту SELinux для readahead "
++msgstr ""
  
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÓÉÓÔÅÍÙ ÚÁÄÁÎÉÊ cron jobs ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Разрешить программам осуществлять чтение файлов из нестандартных источников "
-+"(default_t)"
  
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ tcp ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Отключить защиту SELinux для restorecond"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Отключить защиту SELinux для rhgb "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Отключить защиту SELinux для ricci "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Отключить защиту SELinux для ricci_modclusterd "
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Отключить защиту SELinux для rlogind "
-+
++msgstr ""
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "ଗୋଟିଏ ସାଧାରଣ ଚାଳକ ପାଇଁ pppd ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Отключить защиту SELinux для rpcd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Отключить защиту SELinux для rshd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Отключить защиту SELinux для rsync "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Разрешить запуск ssh из inted, а не в качестве демона"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Разрешить Samba открыть совместный доступ к каталогам NFS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "сервер авторизации SASL"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Разрешить серверу авторизации sasl осуществлять чтение /etc/shadow"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ telnet ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Разрешить серверу X-Windows обозначать регион памяти как исполняемый и "
-+"доступный для записи"
  
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ tftpd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Отключить защиту SELinux для saslauthd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Отключить защиту SELinux для scannerdaemon "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Не разрешать изменение на sysadm_t, sudo и su"
-+
++msgstr ""
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "ମାନକ ବିହିନ ସ୍ଥାନମାନଙ୍କରେ (default_t) ଫାଇଲ ପଢିବାପାଇଁ ପ୍ରଗ୍ରାମ ଗୁଡିକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Не разрешать процессам загружать модули ядра"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Не разрешать процессам изменять политику SELinux ядра"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Отключить защиту SELinux для sendmail"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Отключить защиту SELinux для setrans"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Отключить защиту SELinux для setroubleshoot"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Отключить защиту SELinux для slapd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Отключить защиту SELinux для slrnpull "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Отключить защиту SELinux для smbd "
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Отключить защиту SELinux для snmpd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Отключить защиту SELinux для snort "
-+
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh କୁ ଡେମନ ଆକାରରେ ଚଲାଇବା ବଦଳରେ inetd ରୁ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Отключить защиту SELinux для soundd "
-+
++msgstr ""
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "nfs ଡିରେକ୍ଟୋରୀଗୁଡିକରେ ଅଂଶଧନ କରିବା ପାଇଁ Sambaକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Отключить защиту SELinux для sound "
-+
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL ବୈଧିକରଣ ସର୍ଭର"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Защита от cпама"
-+
++msgstr ""
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "/etc/shadow କୁ ପଢିବା ପାଇଁ sasl ବୈଧିକରଣ ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Отключить защиту SELinux для spamd "
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "ଗୋଟିଏ ସ୍ମୃତି ସ୍ଥାନକୁ ଉଭୟ ନିଷ୍ପାଦ୍ୟ ଏବଂ ଲିଖନୀୟ ଆକାରରେ ପ୍ରତିଚିତ୍ରଣ କରିବା ପାଇଁ X-ୱିଣ୍ଡୋ ସର୍ଭରକୁ "
+-#~ "ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Разрешить spamd обращаться к домашним каталогам"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Разрешить сетевой доступ демону Spam Assassin"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Отключить защиту SELinux для speedmgmt "
-+
++msgstr ""
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo ଏବଂ su ର ଅଭିପ୍ରାୟର ପରିବର୍ତ୍ତନକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ ଏକକାଂଶ ଧାରଣ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Разрешить демону squid подключаться к сети"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "କୌଣସି ପ୍ରଣାଳୀକୁ କର୍ଣ୍ଣଲ SELinux ନୀତି ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ ନାହିଁ"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Отключить защиту SELinux для squid"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Отключить защиту SELinux для ssh "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Разрешить авторизацию ssh для sysadm_r:sysadm_t"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ transproxy ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroubleshoot ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Разрешить пользователям staff_r выполнять поиск в домашнем каталоге и "
-+"осуществлять чтение файлов (например, ~/.bashrc)"
  
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ udev ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Универсальный туннель SSL"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Отключить защиту SELinux для stunnel "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Разрешить демону stunnel выполняться независимо от xinetd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Отключить защиту SELinux для swat"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Отключить защиту SELinux для sxid "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Отключить защиту SELinux для syslogd "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Отключить защиту SELinux для системы заданий cron jobs "
-+
++msgstr ""
+-#~ msgid "Spam Protection"
+-#~ msgstr "ଅବାଞ୍ଛିତ ଡାକ ସୁରକ୍ଷା"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Отключить защиту SELinux для tcp "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Отключить защиту SELinux для telnet "
-+
++msgstr ""
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd କୁ ମୂଳ ଡିରେକ୍ଟୋରୀରେ ପ୍ରବେଶାନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Отключить защиту SELinux для tftpd "
-+
++msgstr ""
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "spamd Assassin ଡେମନକୁ ନେଟୱର୍କ ଅଭିଗମନର ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Отключить защиту SELinux для transproxy "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Отключить защиту SELinux для udev "
-+
++msgstr ""
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Отключить защиту SELinux для uml "
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uml ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid ଡେମନକୁ ନେଟୱର୍କ ସହିତ ସଂଯୋଗର ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Разрешить демону xinetd выполняться без ограничений, что включает все "
-+"запускаемые им службы, для которых явно не заданы преобразования доменов"
  
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ updfstab ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Разрешить выполнение сценариев rc без ограничений, включая демон, "
-+"запускаемый сценарием rc, для которого не задан явно домен перехода"
  
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uptimed ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Разрешить rpm исполняться без ограничений"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uucpd ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Разрешить привилегированным утилитам (например, hotplug и insmod) "
-+"выполняться без ограничений"
  
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ vmware ÏÔËÌÀÞÅÎÁ"
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r ଚାଳକକୁ sysadm ମୂଳ ଡିରେକ୍ଟୋରୀ ଖୋଜିବାପାଇଁ ଏବଂ ଫାଇଲଗୁଡିକୁ ପଢିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ "
+-#~ "(ଯେପରି କି ~/.bashrc)"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Отключить защиту SELinux для updfstab "
-+
++msgstr ""
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "ସର୍ବବ୍ୟାପୀ SSL ସୁରଙ୍ଗ"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Отключить защиту SELinux для uptimed "
++msgstr ""
  
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ watchdog ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Разрешить пользователю user_r обращаться к sysadm_r через su, sudo или "
-+"userhelper. В противном случае только staff_r сможет осуществлять обращение"
  
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ winbind ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "stunnel ଡେମନକୁ standalone ପରି ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, xinetd ର ବାହାରେ"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Разрешить пользователям исполнять команду mount"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xdm ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Разрешить обычным пользователям осуществлять прямой доступ с помощью мыши "
-+"(только для сервера X)"
  
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xen ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Разрешить пользователям исполнять команду dmesg"
++msgstr ""
  
--#~ msgid "XEN"
--#~ msgstr "XEN"
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Разрешить пользователям управлять сетевыми интерфейсами (также требуется "
-+"USERCTL=true)"
  
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xfs ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "system cron jobs  ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Разрешить обычным пользователям выполнять ping"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ xen ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Разрешить пользователям выполнять чтение и запись noextattrfile (FAT, CDROM, "
-+"FLOPPY)"
  
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÏÍÏÎÁ ypbind ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Разрешить пользователям выполнять чтение и запись устройств USB"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NIS Password Daemon ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Разрешить пользователям запускать серверы TCP (осуществлять сопоставление "
-+"портов и принимать подключения из того же домена и внешних пользователей). "
-+"Отключение этой возможности вызовет переход в пассивный режим FTP и может "
-+"изменить другие протоколы"
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Разрешить пользователям исполнять stat для файлов tty"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "undev ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Отключить защиту SELinux для uucpd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Отключить защиту SELinux для vmware"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd କୁ ଅପରିସୀମିତ ହୋଇ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ, ଏହା ଦ୍ୱାରା ଆରମ୍ଭ ହୋଇଥିବା ଯେକୌଣସି ସେବାକୁ "
+-#~ "ଅନ୍ତର୍ଭୁକ୍ତ କରି ଯାହାରକି ପରିସର ପରିବର୍ତ୍ତନ ସ୍ପଷ୍ଟ ଭାବରେ ବ୍ୟାଖ୍ୟା କରାଯାଇନାହିଁ"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Отключить защиту SELinux для watchdog "
-+
++msgstr ""
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm କୁ ଅପରିସୀମିତ ଭାବରେ ଚାଲିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Отключить защиту SELinux для winbind "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Отключить защиту SELinux для xdm "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Разрешить авторизацию xdm как sysadm_r:sysadm_t"
-+
++msgstr ""
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "ଚାଳକ ମାନଙ୍କୁ mount ନିର୍ଦ୍ଦେଶ ନିଷ୍ପାଦନ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Отключить защиту SELinux для xen"
-+
++msgstr ""
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "ସାଧାରଣ ଚାଳକ ମାନଙ୍କୁ ସିଧାସଳଖ ମାଉସ ବ୍ୟବହାରର ଅନୁମତି ଦିଅନ୍ତୁ (କେବଳ X ସର୍ଭରକୁ ଅନୁମତି ଦିଅନ୍ତୁ)"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ypserv ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "ଚାଳକମାନଙ୍କୁ dmesg ନିର୍ଦ୍ଦେଶ ଚଲାଇବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+"Разрешить xen осуществлять запись и чтение физических дисковых устройств"
  
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NIS Transfer Daemon ÏÔËÌÀÞÅÎÁ"
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "ନେଟୱର୍କ ଅନ୍ତରାପୃଷ୍ଠକୁ ନିୟନ୍ତ୍ରଣ କରିବାପାଇଁ ଚାଳକମାନଙ୍କୁ ଅନୁମତି ଦିଅନ୍ତୁ (ଏହା ବ୍ୟତିତ USERCTL=ସତ "
+-#~ "ହୋଇଥିବା ଆବଶ୍ୟକ )"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Отключить защиту SELinux для xfs"
-+
++msgstr ""
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "ସାଧାରଣ ଚାଳକକୁ ping ନିଷ୍ପାଦନ କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Отключить защиту SELinux для управления xen "
-+
++msgstr ""
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "ଚାଳକକୁ noextattrଫାଇଲ r/w କରିବାର ଅନୁମତି ଦିଅନ୍ତୁ (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Отключить защиту SELinux для ypbind "
-+
++msgstr ""
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "ଚାଳକକୁ usb ଉପକରଣଗୁଡିକୁ rw ର ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Отключить защиту SELinux для NIS Password Daemon "
-+
++msgstr ""
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ଚାଳକକୁ tty ଫାଇଲଗୁଡିକୁ ଆରମ୍ଭକରିବାର ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Отключить защиту SELinux для ypserv "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Отключить защиту SELinux для NIS Transfer Daemon "
++msgstr ""
  
--#~ msgid "Delete %s"
--#~ msgstr "õÄÁÌÉÔØ %s"
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Разрешить пользователю webadm управлять домашними каталогами "
-+"непривилегированных пользователей"
  
--#~ msgid "Add %s"
--#~ msgstr "äÏÂÁÉÔØ %s"
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Разрешить пользователю webadm осуществлять чтение домашних каталогов "
-+"непривилегированных пользователей"
  
--#~ msgid "Modify %s"
--#~ msgstr "éÚÍÅÎÉÔØ %s"
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Вы действительно хотите удалить %s «%s»?"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Disabled"
--#~ msgstr "÷ÙËÌÀÞÅÎÏ"
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Удалить %s"
++msgstr ""
  
--#~ msgid "Status"
--#~ msgstr "óÔÁÔÕÓ"
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm ଲଗଇନକୁ sysadm_r:sysadm_t ପରି ଅନୁମତି ଦିଅନ୍ତୁ"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Добавить %s"
++msgstr ""
  
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>÷ÙÂÏÒ:</b>"
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Изменить %s"
++msgstr ""
  
--#~ msgid "Add"
--#~ msgstr "äÏÂÁ×ÉÔØ"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Разрешающий"
++msgstr ""
  
--#~ msgid "Add Network Port"
--#~ msgstr "äÏÂÁ×ÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "ଭୌତିକ ଡିସ୍କ ଉପକରଣଗୁଡିକୁ ପଢିବା/ଲେଖିବା ପାଇଁ xenକୁ ଅନୁମତି ଦିଅନ୍ତୁ"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Строгий"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "äÏÂÁ×ÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ SELinux"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Выключено"
++msgstr ""
  
--#~ msgid "Add SELinux User"
--#~ msgstr "äÏÂÁ×ÉÔØ ðÏÌØÚÏ×ÁÔÅÌÑ SELinux"
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Статус"
++msgstr ""
  
--#~ msgid "Delete Network Port"
--#~ msgstr "õÄÁÌÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen ନିୟନ୍ତ୍ରଣ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Изменение типа политики потребует переразметки всей файловой системы при "
-+"следующей загрузке. Процесс переразметки может быть достаточно длительным в "
-+"зависимости от размера файловой системы. Продолжить?"
  
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -228909,81 +172439,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Отключение политики SELinux требует перезагрузки и не рекомендуется. Если в "
-+"дальнейшем вы захотите включить SELinux, потребуется выполнить переразметку "
-+"файловой системы. Если же вы просто хотите проверить, не вызывает ли SELinux "
-+"проблем в системе, используйте разрешающий режим, который не принуждает "
-+"политику, но при этом регистрирует ошибки в журнале. Разрешающий режим не "
-+"требует перезагрузки. Продолжить?"
  
--#~ msgid "Edit Network Port"
--#~ msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS ପ୍ରବେଶ ସଂକେତ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Активация политики SELinux потребует переразметки всей файловой системы при "
-+"следующей загрузке. Процесс переразметки может быть достаточно длительным в "
-+"зависимости от размера файловой системы. Продолжить?"
-+
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
  
--#~ msgid "File Type"
--#~ msgstr "ôÉРæÁÊÌÁ"
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS ସ୍ଥାନାନ୍ତରଣ ଡେମନ ପାଇଁ SELinux ସୁରକ୍ଷାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"(c) 2006 Red Hat, Inc.\n"
-+"(c) 2006 Dan Walsh <dwalsh@redhat.com>"
  
--#~ msgid "Filter"
--#~ msgstr "æÉÌØÔÅÒ"
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "ଆପଣ ନିଶ୍ଚିତକି ଆପଣ %s କୁ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି '%s'?"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Добавить соответствие авторизации SELinux"
-+
++msgstr ""
+-#~ msgid "Delete %s"
+-#~ msgstr "%s କୁ ଅପସାରଣ କରନ୍ତୁ"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Добавить сетевые порты SELinux"
-+
++msgstr ""
+-#~ msgid "Add %s"
+-#~ msgstr "%s କୁ ଯୋଗକରନ୍ତୁ"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Тип SELinux"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÈÒÁÎÉÌÉÝÅ ÐÏÌÉÔÉËÉ."
+-#~ msgid "Modify %s"
+-#~ msgstr "%s କୁ ରୂପାନ୍ତର କରନ୍ତୁ"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++msgid "File Specification"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Уровень"
  
--#~ msgid "MLS"
--#~ msgstr "MLS"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Спецификация файла"
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Permissive"
+-#~ msgstr "ଅନୁମୋଦନକାରୀ"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Тип файла"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Enforcing"
+-#~ msgstr "କାର୍ଯ୍ୟକାରୀ କରୁଅଛି"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -228994,1869 +172508,2100 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ru.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"все файлы\n"
-+"обычный файл\n"
-+"каталог\n"
-+"символьное устройство\n"
-+"блочное устройство\n"
-+"сокет\n"
-+"символьная ссылка\n"
-+"канал\n"
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
++msgstr ""
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Добавить пользователя SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
++msgstr ""
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux ଲଗଇନ ଢାଞ୍ଚାକୁ ଯୋଗକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Администрирование SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
++msgstr ""
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Добавить"
-+
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux ପ୍ରକାର"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Свойство"
-+
-+#: ../gui/system-config-selinux.glade:1358
++msgstr ""
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Удалить"
-+
-+#: ../gui/system-config-selinux.glade:1449
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "ସ୍ତର"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Выбрать объект управления"
-+
-+#: ../gui/system-config-selinux.glade:1466
++msgstr ""
+-#~ msgid "File Specification"
+-#~ msgstr "ଫାଇଲ ନିର୍ଦ୍ଦିଷ୍ଟକ ସୂଚନା"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Выбор:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
++msgstr ""
+-#~ msgid "File Type"
+-#~ msgstr "ଫାଇଲ ପ୍ରକାର"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Строгий режим по умолчанию"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "ସମସ୍ତ ଫାଇଲଗୁଡିକ\n"
+-#~ "ନିୟମିତ ଫାଇଲ\n"
+-#~ "ଡିରେକ୍ଟୋରୀ\n"
+-#~ "ଅକ୍ଷର ଯନ୍ତ୍ର\n"
+-#~ "ଅସ୍ଥାୟୀ ଯନ୍ତ୍ର\n"
+-#~ "ସକେଟ\n"
+-#~ "ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କ\n"
+-#~ "ନାମ ବିଶିଷ୍ଟ ପାଇପ\n"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Выключено\n"
-+"Разрешающий\n"
-+"Строгий\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Текущий строгий режим"
-+
-+#: ../gui/system-config-selinux.glade:1611
++msgstr ""
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ଚାଳକ କୁ ଯୋଗ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Тип политики по умолчанию:"
++msgstr ""
  
 -#~ msgid "SELinux Administration"
--#~ msgstr "áÄÍÉÎÉÓÔÒÉÒÏ×ÁÎÉÅ SELinux"
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgstr "SELinux ପ୍ରଶାସନ"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Выберите, если вы хотите выполнить переразметку всей файловой системы при "
-+"следующей загрузке. Процесс переразметки может быть длительным в зависимости "
-+"о размера файловой системы. При изменении типа политики также будет "
-+"необходима переразметка."
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Add"
+-#~ msgstr "ଯୋଗକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Переразметка при следующей загрузке."
-+
-+#: ../gui/system-config-selinux.glade:1754
++msgstr ""
+-#~ msgid "_Properties"
+-#~ msgstr "ଗୁଣ (_P)"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
++msgstr ""
+-#~ msgid "_Delete"
+-#~ msgstr "ଅପସାରଣ କରନ୍ତୁ(_D)"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Восстановить исходное значение параметра"
-+
-+#: ../gui/system-config-selinux.glade:1807
++msgstr ""
+-#~ msgid "Select Management Object"
+-#~ msgstr "ପରିଚାଳନା ବସ୍ତୁ ଚୟନକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Переключение между пользовательскими и всеми логическими значениями"
-+
-+#: ../gui/system-config-selinux.glade:1825
++msgstr ""
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>ଚୟନକରନ୍ତୁ:</b>"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Запустить мастер блокировки логических переменных"
-+
-+#: ../gui/system-config-selinux.glade:1826
++msgstr ""
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତକାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Блокирование..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
+-#~ msgid ""
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
+-#~ msgstr ""
+-#~ "ନିଷ୍କ୍ରିୟ\n"
+-#~ "ଅନୁମୋଦନକାରୀe\n"
+-#~ "କାର୍ଯ୍ୟକାରୀ\n"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Фильтр"
-+
-+#: ../gui/system-config-selinux.glade:1945
++msgstr ""
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଅବସ୍ଥା"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
++msgstr ""
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "ତନ୍ତ୍ର ପୂର୍ବନିର୍ଦ୍ଧାରିତ ନୀତିର ପ୍ରକାର: "
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Добавить контекст файла"
-+
-+#: ../gui/system-config-selinux.glade:1998
++msgstr ""
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "ପରବର୍ତ୍ତୀ ପୁନର୍ଚାଳନରେ ପୁନଃଚିହ୍ନଟ କରନ୍ତୁ।"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Изменить контекст файла"
-+
-+#: ../gui/system-config-selinux.glade:2014
++msgstr ""
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "ବୁଲିଆନ ବିନ୍ୟାସକୁ ତନ୍ତ୍ରପୂର୍ବନିର୍ଦ୍ଧାରିତରେ ପ୍ରତ୍ୟାବୃତ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Удалить контекст файла"
-+
-+#: ../gui/system-config-selinux.glade:2030
++msgstr ""
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ବୁଲିଆନଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Переключение между всеми и произвольными контекстами файлов"
-+
-+#: ../gui/system-config-selinux.glade:2150
++msgstr ""
+-#~ msgid "Filter"
+-#~ msgstr "ଛାଣନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
+-#~ msgid "Add File Context"
+-#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Добавить соответствие пользователей SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
+-#~ msgid "Modify File Context"
+-#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Изменить сопоставление пользователя SELinux пользователя %s"
-+
-+#: ../gui/system-config-selinux.glade:2219
++msgstr ""
+-#~ msgid "Delete File Context"
+-#~ msgstr "ଫାଇଲ ପ୍ରସଙ୍ଗକୁ ଅପସାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Удалить соответствие пользователя SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2337
++msgstr ""
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "ସମସ୍ତ ଇଚ୍ଛାରୂପୀ ଫାଇଲ ପ୍ରସଙ୍ଗ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
++msgstr ""
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux ଚାଳକ ଢାଞ୍ଚା ଯୋଗକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Добавить пользователя"
-+
-+#: ../gui/system-config-selinux.glade:2390
++msgstr ""
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Изменить пользователя"
-+
-+#: ../gui/system-config-selinux.glade:2406
++msgstr ""
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux ଚାଳକ ପ୍ରତିଚିତ୍ରଣକୁ ଅପସାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Удалить пользователя"
-+
-+#: ../gui/system-config-selinux.glade:2524
++msgstr ""
+-#~ msgid "Add Translation"
+-#~ msgstr "ଅନୁବାଦ ଯୋଗକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Добавить категорию"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Изменить категорию"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Удалить категорию"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
++msgstr ""
+-#~ msgid "Modify Translation"
+-#~ msgstr "ଅନୁବାଦ ରୂପାନ୍ତର କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Добавить сетевой порт"
-+
-+#: ../gui/system-config-selinux.glade:2764
++msgstr ""
+-#~ msgid "Delete Translation"
+-#~ msgstr "ଅନୁବାଦକୁ ଅପସାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Изменить сетевой порт"
-+
-+#: ../gui/system-config-selinux.glade:2780
++msgstr ""
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux ଚାଳକକୁ ରୂପାନ୍ତର କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Удалить сетевой порт"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++msgstr ""
+-#~ msgid "Add Network Port"
+-#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଯୋଗ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Переключение между пользовательскими и всеми портами"
-+
-+#: ../gui/system-config-selinux.glade:2954
++msgstr ""
+-#~ msgid "Edit Network Port"
+-#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ସମ୍ପାଦନ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
++msgstr ""
+-#~ msgid "Delete Network Port"
+-#~ msgstr "ନେଟୱର୍କ ସଂଯୋଗିକୀକୁ ଅପସାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Генерировать модуль новой политики"
-+
-+#: ../gui/system-config-selinux.glade:3007
++msgstr ""
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "ଇଚ୍ଛାରୂପୀ ଏବଂ ସମସ୍ତ ସଂଯୋଗିକୀଗୁଡିକ ମଧ୍ଯରେ ଆଗପଛ ହେଉଛି"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Загрузить модуль политики"
-+
-+#: ../gui/system-config-selinux.glade:3023
++msgstr ""
+-#~ msgid "Generate new policy module"
+-#~ msgstr "ନୂତନ ନୀତି ଏକକାଂଶ ସୃଷ୍ଟିକରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Удалить загружаемый модуль политики"
++msgstr ""
  
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "õÒÏ×ÅÎØ"
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Load policy module"
+-#~ msgstr "ନୀତି ଏକକାଂଶକୁ ଧାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Включить или выключить дополнительные правила аудита, которые обычно не "
-+"отражаются в журналах."
  
--#~ msgid "SELinux Type"
--#~ msgstr "ôÉРSELinux"
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "ଧାରଣ କରିପାରୁଥିବା ନୀତି ଏକକାଂଶକୁ ଅପସାରଣ କରନ୍ତୁ"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
  
--#~ msgid "_Delete"
--#~ msgstr "_õÄÁÌÉÔØ"
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "ଅତିରିକ୍ତ ଲେଖା ପରୀକ୍ଷଣ ନୀତିକୁ ସକ୍ରିୟ/ନିଷ୍କ୍ରିୟ କରନ୍ତୁ, ଯାହାକି ସାଧାରଣତଃ ଲଗ ଫାଇଲରେ ଖବର "
+-#~ "ହେଉନଥିବ। "
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Изменить режим процесса на разрешающий."
++msgstr ""
  
--#~ msgid "_Properties"
--#~ msgstr "_ó×ÏÊÓÔ×Ï"
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "ସମ୍ୱେଦନଶୀଳତା ସ୍ତର"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Изменить режим на строгий."
++msgstr ""
  
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux ଚାଳକ '%s' ଟି ଆବଶ୍ଯକ"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Домен процесса"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Sensitvity Level"
--#~ msgstr "õÒÏ×ÅÎØ þÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ"
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "seଏକକାଂଶ -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
++msgstr ""
  
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "ÎÅÏÂÈÏÄÉÍ SELinux ÐÏÌØÚÏ×ÁÔÅÌØ '%s' "
+-#~ msgid "Requires value"
+-#~ msgstr "ମୂଲ୍ଯ ଆବଶ୍ଯକ"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "Необходим SELinux пользователь «%s»"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils-2.0.85/po/si.po
---- nsapolicycoreutils/po/si.po        2011-02-17 15:11:25.272732440 -0500
-+++ policycoreutils-2.0.85/po/si.po    2011-02-18 16:03:41.442976249 -0500
-@@ -8,14 +8,32 @@
++msgstr ""
+diff --git a/policycoreutils/po/pa.po b/policycoreutils/po/pa.po
+index d8c1a15..31d4091 100644
+--- a/policycoreutils/po/pa.po
++++ b/policycoreutils/po/pa.po
+@@ -1,24 +1,23 @@
+-# translation of pa.po to Punjabi
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
++# Translators:
+ # A S Alam <apbrar@gmail.com>, 2006.
+-# Jaswinder Singh <jsingh@redhat.com>, 2006, 2007, 2008.
++# Jaswinder Singh <jsingh@redhat.com>, 2006, 2007, 2008, 2009, 2010.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: pa\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-26 16:08+0530\n"
+-"Last-Translator: Jaswinder Singh <jsingh@redhat.com>\n"
+-"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Panjabi (Punjabi) <punjabi-users@lists.sf.net>\n"
+ "Language: pa\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+@@ -113,9 +112,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage ਕੁਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s ਲਈ MLS ਰੇਂਜ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "MLS ਯੋਗ ਹਾਲਤ ਦੀ ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -123,36 +121,33 @@ msgstr "ਹਾਲੇ ਲਾਗੂ ਨਹੀਂ ਕੀਤਾ"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "semanage ਤਬਦੀਲੀ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਹੀ ਹੈ"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "semanage ਸੰਚਾਰ ਚਾਲੂ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "semanage ਤਬਦੀਲੀ ਚਾਲੂ ਨਹੀਂ ਹੈ"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux ਉਪਭੋਗੀਆਂ ਨੂੰ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
++msgstr "SELinux ਮੈਡਿਊਲਾਂ ਨੂੰ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "ਮੈਡਿਊਲ ਨਾਂ"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "ਵਰਜਨ"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "ਅਯੋਗ"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -162,9 +157,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "ਰੋਲ %s ਨੂੰ %s ਲਈ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -176,24 +171,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "ਚੇਤਾਵਨੀ"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "ਚੇਤਾਵਨੀ"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "ਚੇਤਾਵਨੀ ਡੋਮੇਨ %s ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਦਾ (ਮੈਡਿਊਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ ਹੋਈ)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "ਚੇਤਾਵਨੀ ਮੈਡਿਊਲ %s ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ (ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -213,9 +206,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ %s ਲਈ ਲਾਗਇਨ ਮੈਪ ਪਰਿਭਾਸ਼ਤ ਨਹੀਂ"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "ਲੀਨਕਸ ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
++msgstr "ਲੀਨਕਸ ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -282,15 +275,20 @@ msgid "Could not list login mappings"
+ msgstr "ਲਾਗਇਨ ਮੈਪਿੰਗ ਵੇਖਾ ਨਹੀਂ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "ਲਾਗਇਨ ਨਾਂ"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux ਉਪਭੋਗੀ"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "MLS/MCS ਰੇਂਜ"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -308,9 +306,9 @@ msgid "Could not query user for %s"
+ msgstr "%s ਲਈ ਉਪਭੋਗੀ ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਘੱਟੋ-ਘੱਟ ਇੱਕ ਰੋਲ ਸ਼ਾਮਿਲ ਕਰਨਾ ਜਰੂਰੀ ਹੈ"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -400,6 +398,7 @@ msgid "MCS Range"
+ msgstr "MCS ਰੇਂਜ"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "SELinux ਰੋਲ"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -412,9 +411,8 @@ msgid "Port is required"
+ msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "ਗਲਤ ਅਗੇਤਰ %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -531,18 +529,17 @@ msgstr "SELinux ਪੋਰਟ ਕਿਸਮ"
  msgid "Proto"
- msgstr ""
+ msgstr "ਪਰੋਟੋ"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "ਪੋਰਟ ਨੰਬਰ"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
++msgstr "ਕਿਸੇ ਐਡਰੈੱਸ ਦੀ ਲੋੜ ਹੈ"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "ਅਣਜਾਣਾ ਜਾਂ ਗੈਰ-ਮੌਜੂਦ ਪਰੋਟੋਕਾਲ"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -559,14 +556,14 @@ msgstr "%s ਲਈ ਕੁੰਜੀ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕੀ"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਪੋਰਟ %s/%s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
++msgstr "ਜਾਂਚ ਨਹੀਂ ਕਰ ਸਕਦਾ ਜੇ ਐਡਰੈੱਸ %s ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਕੁੰਜੀ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -575,74 +572,72 @@ msgid "Could not create context for %s"
+ msgstr "%s ਲਈ ਪ੍ਰਸੰਗ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਨਾਂ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਮਾਸਕ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਉਪਭੋਗੀ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਰੋਲ ਨਹੀਂ ਦੇ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ ਕਿਸਮ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਵਿੱਚ mlf ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਵਿੱਚ mls ਖੇਤਰ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "%s ਲਈ ਐਡਰੈੱਸ ਪ੍ਰਸੰਗ ਨਿਰਧਾਰਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "ਪੋਰਟ %s/%s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "ਐਡਰੈੱਸ %s ਸ਼ਾਮਿਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "ਪੋਰਟ %s/%s ਦਿੱਤੀ ਨਹੀਂ ਗਈ"
++msgstr "ਐਡਰੈੱਸ %s ਦਿੱਤੀ ਨਹੀਂ ਗਈ"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "ਪੋਰਟ %s/%s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "ਐਡਰੈੱਸ %s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "ਪੋਰਟ %s/%s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
++msgstr "ਐਡਰੈੱਸ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "ਪੋਰਟ %s/%s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
++msgstr "ਐਡਰੈੱਸ %s ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਹੈ, ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "%s ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
++msgstr "ਐਡਰੈੱਸ %s ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪਿੰਗ ਹਟਾ ਨਹੀਂ ਸਕਦਾ"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "ਪੋਰਟਾਂ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
++msgstr "ਐਡਰੈੱਸ ਨਹੀਂ ਵੇਖਾ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -716,9 +711,8 @@ msgid "Could not delete interface %s"
+ msgstr "ਇੰਟਰਫੇਸ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "ਇੰਟਰਫੇਸ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+@@ -733,9 +727,9 @@ msgid "Context"
+ msgstr "ਪ੍ਰਸੰਗ"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s ਲਈ ਫਾਇਲ ਪ੍ਰਸੰਗ ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
+@@ -743,9 +737,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "ਲੀਨਕਸ ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -865,11 +859,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -888,14 +881,14 @@ msgid "Could not query file context %s"
+ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ %s ਕਿਊਰੀ ਨਹੀਂ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਮੁੱਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
++msgstr "ਤੁਹਾਨੂੰ ਹੇਠਲਿਆਂ ਵਿੱਚੋਂ ਇੱਕ ਮੁੱਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "ਬੂਲੀਅਨ %s ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ"
++msgstr "ਬੂਲੀਅਨ %s ਦਾ ਯੋਗ ਮੁੱਲ ਨਹੀਂ ਨਿਰਧਾਰਤ ਕਰ ਸਕਦਾ"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -905,7 +898,7 @@ msgstr "ਬੂਲੀਅਨ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕਰ ਸ
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "ਗਲਤ ਫਾਰਮੈਟ %s: ਰਿਕਾਰਡ %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -938,15 +931,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux ਬੂਲੀਅਨ"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "ਹਾਲਤ"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "ਵੇਰਵਾ"
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+@@ -1283,1707 +1276,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "ਚੋਣ ਗਲਤੀ %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਦਾ: ਅਨੁਵਾਦ ਨੂੰ ਨਾਨ-MLS ਮਸ਼ੀਨਾਂ ਉੱਪਰ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "ਲੈਵਲ"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "ਅਨੁਵਾਦ"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "ਅਨੁਵਾਦ ਵਿੱਚ ਸਪੇਸ '%s' ਨਹੀਂ ਹੈ"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "ਗਲਤ ਲੈਵਲ '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ਪਹਿਲਾਂ ਹੀ ਅਨੁਵਾਦ ਵਿੱਚ ਪਰਿਭਾਸ਼ਤ ਹੈ"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s ਅਨੁਵਾਦ ਵਿੱਚ ਪਰਿਭਾਸ਼ਤ ਨਹੀਂ ਹੈ"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s ਲਈ ਲਾਗਇਨ ਮੈਪ ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਤ ਹੈ"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਸ਼ਾਮਿਲ ਕਰੋ"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ %s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "ਪੋਰਟ ਦੀ ਲੋੜ ਹੈ"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "ਪੋਰਟ %s/%s ਪਹਿਲਾਂ ਹੀ ਪਰਿਭਾਸ਼ਿਤ ਹੈ"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "ਇੰਟਰਫੇਸ %s ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ਯੋਗਤਾਵਾਂ ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈ।\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ਯੋਗਤਾਵਾਂ ਦੀ ਸਥਾਪਨ ਕਰਨ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS ਸਥਾਪਨ ਕਰਨ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ਯੋਗਤਾਵਾਂ ਛੱਡਣ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID ਸਹੂਲਤ ਛੱਡਣ ਵਿੱਚ ਗਲਤੀ, ਅਧੂਰਾ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "caps ਛੱਡਣ ਵਿੱਚ ਗਲਤੀ\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "ਅਨੁਵਾਦ ਨੂੰ ਨਾਨ-MLS ਮਸ਼ੀਨਾਂ ਉੱਪਰ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "ਬੂਲੀਅਨ"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "ਸਭ"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "ਸੋਧਿਆ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "ਫਾਇਲ ਲੇਬਲਿੰਗ"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "ਫਾਇਲ\n"
+-#~ "ਨਿਰਧਾਰਨ"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "ਫਾਇਲ ਕਿਸਮ"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "ਫਾਇਲ\n"
+-#~ "ਕਿਸਮ"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "User Mapping"
+-#~ msgstr "ਉਪਭੋਗੀ ਮੈਪਿੰਗ"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "ਲਾਗਇਨ\n"
+-#~ "ਨਾਂ"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "ਉਪਭੋਗੀ"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS ਰੇਂਜ"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "ਲਾਗਇਨ '%s' ਦੀ ਲੋੜ ਹੈ"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "ਆਡਿਟ ਅਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "ਆਡਿਟ ਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "ਜਸਵਿੰਦਰ ਸਿੰਘ <j.phulewala@gmail.com>"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux ਪਾਲਿਸੀ ਨਿਰਮਾਣ ਜੰਤਰ"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "ਇਹ ਜੰਤਰ ਪਾਲਿਸੀ ਫਰੇਮਵਰਕ ਬਣਾਉਣ ਲਈ ਕਾਰਜਾਂ ਅਤੇ ਉਪਭੋਗੀਆਂ ਜੋ SELinux ਵਰਤਦੇ ਹਨ, ਬੰਦ ਕਰਨ "
+-#~ "ਲਈ ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ।   \n"
+-#~ "\n"
+-#~ "ਜੰਤਰ ਜੋ ਬਣਾਉਂਦਾ ਹੈ ਇਸ ਤਰਾਂ ਹਨ:\n"
+-#~ "ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ (te)\n"
+-#~ "ਇੰਟਰਫੇਸ ਫਾਇਲ (if)\n"
+-#~ "ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ (fc)\n"
+-#~ "ਸ਼ੈੱਲ ਸਕਰਿਪਟ (sh) - ਪਾਲਿਸੀ ਨੂੰ ਕੰਪਾਈਲ ਅਤੇ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ। "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਦੀ ਕਿਸਮ ਚੁਣੋ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>ਕਾਰਜ</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "ਸਟੈਂਡਰਡ Init ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ ਬੂਟ ਹੋਣ ਤੇ init ਸਕਰਿਪਟਾਂ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ।  ਆਮ ਕਰਕੇ /etc/"
+-#~ "init.d ਵਿੱਚ ਇੱਕ ਸਕਰਿਪਟ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "ਸਟੈਂਡਰਡ Init ਡੈਮਨ"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ ਉਹ ਡੈਮਨ ਹਨ ਜੋ xinetd ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ਇੰਟਰਨੈੱਟ ਸਰਵਿਸ ਡੈਮਨ (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI) CGI ਸਕਰਿਪਟਾਂ ਵੈੱਬ ਸਰਵਰ (apache) ਦੁਆਰਾ ਚੱਲਦੀਆਂ ਹਨ"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "ਵੈੱਬ ਕਾਰਜ/ਸਕਰਿਪਟ (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "ਉਪਭੋਗੀ ਕਾਰਜ ਉਹ ਕਾਰਜ ਹਨ ਜਿਨਾਂ ਤੇ ਤੁਸੀਂ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ ਤੇ ਜੋ ਉਪਭੋਗੀ ਦੁਆਰਾ ਚੱਲਦੇ ਹਨ"
+-
+-#~ msgid "User Application"
+-#~ msgstr "ਉਪਭੋਗੀ ਕਾਰਜ"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>ਲਾਗਇਨ ਉਪਭੋਗੀ</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "ਇੱਕ ਮੌਜੂਦਾ ਲਾਗਇਨ ਉਪਭੋਗੀ ਰਿਕਾਰਡ"
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ ਰੋਲ"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ ਸਿਰਫ ਟਰਮੀਨਲ ਜਾਂ ਰਿਮੋਟ ਲਾਗਇਨ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ "
+-#~ "ਵਿੱਚ ਇਸ ਉਪਭੋਗੀ ਦਾ ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, su, sudo ਨਹੀਂ ਹੈ।"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "ਘੱਟੋ-ਘੱਟ ਟਰਮੀਨਲ ਉਪਭੋਗੀ ਰੋਲ"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਉੱਪਰ X ਜਾਂ ਟਰਮੀਨਲ ਰਾਹੀਂ ਲਾਗਇਨ ਕਰ ਸਕਦਾ ਹੈ।  ਮੂਲ ਰੂਪ ਵਿੱਚ ਇਸ ਉਪਭੋਗੀ "
+-#~ "ਦਾ ਕੋਈ setuid, ਨੈੱਟਵਰਕਿੰਗ, sudo, su ਨਹੀਂ ਹੈ।"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "ਘੱਟੋ-ਘੱਟ X ਵਿੰਡੋ ਉਪਭੋਗੀ ਰੋਲ"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਬਿਨਾਂ ਤਬਦੀਲੀ, ਕੋਈ sudo, ਕੋਈ su ਨਹੀਂ।"
+-
+-#~ msgid "User Role"
+-#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "ਪੂਰੀ ਨੈੱਟਵਰਕਿੰਗ ਵਾਲੇ ਉਪਭੋਗੀ, ਕੋਈ setuid ਕਾਰਜ ਤਬਦੀਲੀ ਬਿਨਾਂ, ਕੋਈ su, ਰੂਟ ਪਰਬੰਧਿਕ ਰੋਲ ਲਈ "
+-#~ "sudo ਕਰ ਸਕਦਾ ਹੈ"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>ਪਰਬੰਧਕ ਉਪਭੋਗੀ</b>"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "ਰੂਟ ਉਪਭੋਗੀ ਚੁਣੋ, ਜੇ ਇਹ ਉਪਭੋਗੀ ਮਸ਼ੀਨ ਦਾ ਪਰਬੰਧਨ ਕਰੇਗਾ ਜਦੋਂ ਪਰਬੰਧਕ ਤੌਰ ਤੇ ਚੱਲਦੀ ਹੈ।  ਇਹ "
+-#~ "ਉਪਭੋਗੀ ਸਿਸਟਮ ਉੱਪਰ ਸਿੱਧੇ ਤੌਰ ਤੇ ਲਾਗਇਨ ਨਹੀਂ ਕਰ ਸਕਦਾ ਹੈ।"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "ਰੂਟ ਪਰਬੰਧਕ ਉਪਭੋਗੀ ਰੋਲ"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਦਾ ਨਾਂ ਦਿਓ ਜਿਨਾਂ ਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Name"
+-#~ msgstr "ਨਾਂ"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਲਈ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਜਾਂ ਉਪਭੋਗੀ ਰੋਲ ਲਈ ਵੱਖਰਾ ਨਾਂ ਦਿਓ।"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "Executable"
+-#~ msgstr "ਐਗਜ਼ੀਕਿਊਟੇਬਲ"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Init script"
+-#~ msgstr "Init ਸਕਰਿਪਟ"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ ਚਲਾਉਣ ਵਾਲੀ init ਸਕਰਿਪਟ ਦਾ ਪੂਰਾ ਮਾਰਗ ਦਿਓ।"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਸੋਧਣਾ ਚਾਹੁੰਦੇ ਹੋ"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਕਾਰਜ ਡੋਮੇਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ।"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "ਵਾਧੂ ਉਪਭੋਗੀ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਅਨੁਵਾਦ ਕਰੇਗਾ"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "ਕਾਰਜ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਤੁਸੀਂ ਇਸ ਉਪਭੋਗੀ ਨੂੰ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ।"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "ਉਪਭੋਗੀ ਰੋਲ ਚੁਣੋ ਜੋ ਇਸ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਹੋਵੇਗਾ"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "ਵਾਧੂ ਡੋਮੇਨ ਚੁਣੋ ਜਿਸਦਾ ਇਹ ਉਪਭੋਗੀ ਰੋਲ ਪਰਬੰਧਨ ਕਰੇਗਾ"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ਡੋਮੇਨ ਚੁਣੋ ਜਿਸ ਦਾ ਪਰਬੰਧਨ ਇਸ ਉਪਭੋਗੀ ਤੋਂ ਕਰਾਉਣਾ ਹੈ।"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "ਇਸ ਉਪਭੋਗੀ ਲਈ ਵਾਧੂ ਰੋਲ ਚੁਣੋ"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਸੁਣਦੇ ਹਨ।"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP ਪੋਰਟ</b>"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ ਵੀ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "All"
+-#~ msgstr "ਸਭ"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ bindresvport ਨੂੰ 0 ਨਾਲ ਕਾਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਪੋਰਟ 600-1024 "
+-#~ "ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
+-#~ "612, 650-660"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "ਨਾ-ਰਾਖਵੇਂ ਪੋਰਟ (>1024)"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Select Ports"
+-#~ msgstr "ਪੋਰਟ ਚੁਣੋ"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ udp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ > 1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP ਪੋਰਟ</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ।"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਜੁੜਦੇ ਹਨ। "
+-#~ "ਉਦਾਹਰਨ: 612, 650-660"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ udp ਪੋਰਟਾਂ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਕਾਰਜ/ਉਪਭੋਗੀ ਜੁੜਦੇ ਹਨ। ਉਦਾਹਰਨ: "
+-#~ "612, 650-660"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Select common application traits"
+-#~ msgstr "ਆਮ ਕਾਰਜ ਗੁਣ ਚੁਣੋ"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "syslog ਸੁਨੇਹੇ ਲਿਖਦਾ ਹੈ\t"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ ਬਣਾਓ/ਸੋਧੋ"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "ਪ੍ਰਮਾਣਿਕਤਾ ਲਈ Pam ਨੂੰ ਵਰਤਦੇ ਹਨ"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch ਜਾਂ getpw* ਕਾਲਾਂ ਵਰਤਦਾ ਹੈ"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ਵਰਤਦਾ ਹੈ"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ਆਡਿਟ ਸੁਨੇਹੇ ਭੇਜਦਾ ਹੈ"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "ਟਰਮੀਨਲ ਨਾਲ ਸੰਪਰਕ ਕਰਦਾ ਹੈ"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Sends email"
+-#~ msgstr "ਈ-ਮੇਲ ਭੇਜਦਾ ਹੈ"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਨਾ ਦਾ ਪਰਬੰਧਨ ਕਾਰਜ ਕਰਦਾ ਹੈ"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀਆਂ ਸ਼ਾਮਿਲ ਕਰੋ ਜਿਨਾਂ ਨੂੰ ਇਹ ਕਾਰਜ \"ਲਿਖੇਗਾ\"। Pid ਫਾਇਲਾਂ, ਲਾਗ ਫਾਇਲਾਂ, /"
+-#~ "var/lib ਫਾਇਲਾਂ ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "ਬੂਲੀਅਨ ਚੁਣੋ ਜੋ ਇਹ ਕਾਰਜ ਵਰਤਦੇ ਹਨ"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "ਇਸ ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਲਈ ਵਰਤਿਆ ਜਾਣ ਵਾਲਾ ਬੂਲੀਅਨ ਜੋੜੋ/ਹਟਾਓ"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਬਣਾਉਣੀ ਹੈ"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "ਪਾਲਿਸੀ ਡਾਇਰੈਕਟਰੀ"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "ਬਣਾਈਆਂ ਪਾਲਿਸੀ ਫਾਇਲਾਂ"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), "
+-#~ "ਇੰਟਰਫੇਸ(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
+-#~ "ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ "
+-#~ "ਤੁਸੀਂ ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
+-#~ "avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
+-#~ "te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ਇਹ ਜੰਤਰ ਹੇਠ ਦਿੱਤੇ ਸਭ ਬਣਾਉਂਦਾ ਹੈ: ਕਿਸਮ ਲਾਗੂ ਕਰਨ ਵਾਲੀ ਫਾਇਲ(te), ਫਾਇਲ ਪ੍ਰਸੰਗ(fc), "
+-#~ "ਇੰਟਰਫੇਸ(if), ਸ਼ੈੱਲ ਸਕਰਿਪਟ(sh)।\n"
+-#~ "ਫਾਇਲ/ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਕੰਪਾਈਲ/ਇੰਸਟਾਲ ਕਰਨਲ ਲਈ ਅਤੇ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਲਈ ਸ਼ੈੱਲਸਕਰਿਪਟ ਚਲਾਓ।  ਹੁਣ "
+-#~ "ਤੁਸੀਂ ਮਸ਼ੀਨ ਨੂੰ ਮਜਬੂਰ ਢੰਗ (setenforce 0) ਵਿੱਚ ਲਿਜਾ ਸਕਦੇ ਹੋ। \n"
+-#~ "avc ਸੁਨੇਹੇ ਬਣਾਉਣ ਲਈ ਕਾਰਜ ਚਲਾਓ/ਮੁੜ-ਚਲਾਓ।\n"
+-#~ "te ਫਾਇਲ ਲਈ ਵਾਧੂ ਨਿਯਮ ਬਣਾਉਣ ਲਈ audit2allow -R ਵਰਤੋ।\n"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "ਬੂਲੀਅਨ ਵਾਰਤਾਲਾਪ ਜੋੜੋ"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "ਬੂਲੀਅਨ ਨਾਂ"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Role"
+-#~ msgstr "ਰੋਲ"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Existing_User"
+-#~ msgstr "ਮੌਜੂਦਾ ਉਪਭੋਗੀ(_U)"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Application"
+-#~ msgstr "ਕਾਰਜ"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ਇੱਕ ਡਾਇਰੈਕਟਰੀ ਹੋਣੀ ਜਰੂਰੀ ਹੈ"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "You must select a user"
+-#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਉਪਭੋਗੀ ਚੁਣਨਾ ਜਰੂਰੀ ਹੈ"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "ਪਾਬੰਦ ਕਰਨ ਲਈ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਫਾਇਲ ਚੁਣੋ।"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "ਪਾਬੰਦੀ ਵਾਲੀ init ਸਕਰਿਪਟ ਚੁਣੋ।"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "ਫਾਇਲਾਂ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜ ਨੇ ਬਣਾਈਆਂ ਜਾਂ ਲਿਖੀਆਂ ਹਨ"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜੋ ਪਾਬੰਦੀ ਵਾਲੇ ਕਾਰਜਾਂ ਦੇ ਅਧੀਨ ਹਨ ਅਤੇ ਲਿਖੀਆਂ ਹਨ"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਣੋ ਜਿਸ ਵਿੱਚ ਪਾਲਿਸੀ ਫਾਇਲਾਂ ਬਣਾਉਣੀਆਂ ਹਨ"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "ਕਿਸਮ %s_t ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਪਰਿਭਾਸ਼ਿਤ ਕੀਤੀ ਸੀ।\n"
+-#~ "ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੈ?"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Verify Name"
+-#~ msgstr "ਨਾਂ ਦੀ ਜਾਂਚ ਕਰੋ"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "ਮੈਡਿਊਲ %s.pp ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ ਪਾਲਿਸੀ ਵਿੱਚ ਲੋਡ ਹੋਈ ਹੈ।\n"
+-#~ "ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰਹਿਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "You must enter a name"
+-#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਨਾਂ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਦੇਣਾ ਚਾਹੀਦਾ ਹੈ"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux ਸੰਰਚਨਾ"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "ਪੋਰਟਾਂ ਨੰਬਰ ਜਾਂ 1 ਤੋਂ %d ਤੱਕ ਨੰਬਰਾਂ ਦੀ ਰੇਂਜ ਹੋਣੇ ਜਰੂਰੀ ਹਨ"
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦੀ ਕਾਰਜਾਂ/ਉਪਭੋਗੀਆਂ ਲਈ ਨਾਂ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER ਕਿਸਮਾਂ ਨੂੰ ਐਗਜ਼ੀਕਿਊਟੇਬਲਾਂ ਲਈ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "DAEMON ਕਾਰਜ init ਸਕਰਿਪਟ ਨੂੰ ਵਰਤ ਸਕਦੇ ਹਨ"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog ਦਾ ਮੁੱਲ ਬੂਲੀਅਨ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER ਕਿਸਮ ਆਟੋਮੈਟਿਕ ਹੀ tmp ਕਿਸਮ ਲੈ ਲੈਂਦੀ ਹੈ"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "ਤੁਹਾਨੂੰ ਆਪਣੇ ਪਾਬੰਦ ਕਾਰਜ ਲਈ ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਮਾਰਗ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "enforcment ਫਾਇਲ ਟਾਈਪ ਕਰੋ"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Interface file"
+-#~ msgstr "ਇੰਟਰਫੇਸ ਫਾਇਲ"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "File Contexts file"
+-#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਫਾਇਲ"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Setup Script"
+-#~ msgstr "ਸੈੱਟਅੱਪ ਸਕਰਿਪਟ"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux ਪੋਰਟ\n"
+-#~ "ਕਿਸਮ"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Protocol"
+-#~ msgstr "ਪਰੋਟੋਕਾਲ"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "ਲੈਵਲ"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Port"
+-#~ msgstr "ਪੋਰਟ"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "ਪੋਰਟ ਨੰਬਰ \"%s\" ਠੀਕ ਨਹੀਂ ਹੈ  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "List View"
+-#~ msgstr "ਸੂਚੀ ਦਰਿਸ਼"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Group View"
+-#~ msgstr "ਗਰੁੱਪ ਦਰਿਸ਼"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux ਸਰਵਿਸ ਸੁਰੱਖਿਆ"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "acct ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Admin"
+-#~ msgstr "ਪਰਬੰਧ"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "ਸਭ ਡੈਮਨਾਂ ਰਾਹੀਂ ਮੁੱਖ-ਫਾਇਲਾਂ ਨੂੰ / ਤੋ ਲਿਖਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "ਨਾ-ਨਿਰਧਾਰਤ ttys ਵਰਤਣ ਲਈ ਸਭ ਡੈਮਨਾਂ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "User Privs"
+-#~ msgstr "ਉਪਭੋਗੀ Privs"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ home ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ "
+-#~ "ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ਗਿਸਟ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ "
+-#~ "ਦਿਓ"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Memory Protection"
+-#~ msgstr "ਮੈਮੋਰੀ ਸੁਰੱਖਿਆ"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "java ਆਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਨੂੰ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Mount"
+-#~ msgstr "ਮਾਊਂਟ"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "ਕਿਸੇ ਫਾਇਲ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "ਕਿਸੇ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਮਾਊਂਟ ਕਰਨ ਲਈ mount ਮਨਜੂਰ ਕਰੋ"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "mplayer ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਸਟੈਕ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh ਨੂੰ ssh-keysign ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
+-#~ "ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
+-#~ "ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "ਨਾ-ਪਾਬੰਦ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ "
+-#~ "ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Network Configuration"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਸੰਰਚਨਾ"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "ਬਿਨਾਂ-ਲੇਬਲ ਪੈਕਟਾਂ ਨੂੰ ਨੈੱਟਵਰਕ ਤੇ ਜਾਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
+-#~ "ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "unconfined ਨੂੰ unconfined_execmem ਵੱਲ ਆਰਜੀ ਤਬਦੀਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Databases"
+-#~ msgstr "ਡਾਟਾਬੇਸ"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ mysql ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ postgres ਸਾਕਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "ਕਲਾਂਈਟ ਨੂੰ X ਸ਼ੇਅਰ ਮੈਮੋਰੀ ਤੇ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux ਉਪਭੋਗੀ ਖਾਤਿਆਂ ਨੂੰ ਆਪਣੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ ਜਾਂ /tmp ਵਿੱਚ ਫਾਇਲਾਂ ਚਲਾਉਣ ਦੀ "
+-#~ "ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "ਡੈਮਨਾਂ ਨੂੰ NIS ਨਾਲ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Web Applications"
+-#~ msgstr "ਵੈੱਬ ਕਾਰਜ"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "ਸਟਾਫ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "sysadm SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "ਉਪਭੋਗੀ SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "xguest SELinux ਉਪਭੋਗੀ ਨੂੰ ਵੈੱਬ ਬਰਾਊਜਰ ਡੋਮੇਨ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "ਸਟਾਫ ਵੈੱਬ ਬਰਾਊਜ਼ਰ ਨੂੰ home ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amanda ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavis ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahi ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -230904,26 +174649,40 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "ਕਲੱਸਟਰ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord ਨੂੰ ਵੱਖ-ਵੱਖ ਹਿੱਸੇ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। nfs, samba, ਹਟਾਉਣ-ਯੋਗ ਜੰਤਰ, ਉਪਭੋਗੀ "
+-#~ "temp ਅਤੇ ਨਾ-ਭਰੇਸੋਯੋਗ ਸੰਖੇਪ ਫਾਇਲਾਂ"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -230932,119 +174691,171 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Printing"
+-#~ msgstr "ਪ੍ਰਿੰਟਿੰਗ"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd ਬੈਕਐਂਡ ਸਰਵਰ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccm ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "sysadm_t ਨੂੰ ਸਿੱਧਾ ਹੀ ਡੈਮਨ ਚਾਲੂ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ਏਵੋਲੂਸ਼ਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -231052,708 +174863,1236 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "ਖੇਡਾਂ"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "ਖੇਡਾਂ ਲਈ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "ਵੈੱਬ ਬਰਾਊਜ਼ਰਾਂ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "ਥੰਡਰਬਰਡ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmail ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "ਅਨੁਕੂਲਤਾ"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "ਉਹ ਚੀਜਾਂ ਆਡਿਟ ਨਾ ਕਰੋ ਜੋ ਤੁਹਾਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਰੁਕਾਵਟ ਪਾਉਂਦੀਆਂ ਹਨ ਅਤੇ ਸੁਰੱਖਿਆ ਨੂੰ ਕੋਈ ਖਤਰਾ "
+-#~ "ਨਹੀਂ ਹੈ।"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD ਸਰਵਿਸ"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd ਅਧੀਨ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd ਡੈਮਨ "
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "ਕਰਬੀਰੋਸ"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "ਏਵੋਲੂਸ਼ਨ ਅਤੇ ਥੰਡਰਬਰਡ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "ਮੋਜ਼ੀਲਾ ਬਰਾਊਜ਼ਰ ਨੂੰ ਉਪਭੋਗੀ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "ਨਾਂ ਸਰਵਿਸ"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManager ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "pppd ਨੂੰ ਰੈਗੂਲਰ ਉਪਭੋਗੀ ਲਈ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "ਪਰੋਗਰਾਮਾਂ ਨੂੰ ਬਿਨਾ-ਮਿਆਰ (default_t) ਸਥਿਤੀਆਂ ਤੋਂ ਫਾਇਲਾਂ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ssh ਨੂੰ ਡੈਮਨ ਦੀ ਬਜਾਇ inetd ਤੋਂ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Samba ਨੂੰ nfs ਡਾਇਰੈਕਟਰੀ ਸ਼ੇਅਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl ਪ੍ਰਮਾਣਿਕਤਾ ਸਰਵਰ ਨੂੰ /etc/shadow ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "X-ਵਿੰਡੋ ਸਰਵਰ ਨੂੰ ਮੈਮੋਰੀ ਮੈਪ ਕਰਨ ਲਈ ਮਨਜੂਰੀ ਦਿਓ ਤਾਂ ਕਿ ਇਹ ਐਗਜ਼ੀਕਿਊਟੇਬਲ ਅਤੇ ਲਿਖਣਯੋਗ ਹੋ ਸਕੇ"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "sysadm_t, sudo ਅਤੇ su ਪ੍ਰਭਾਵੀ ਤਬਦੀਲੀ ਮਨਜੂਰ ਨਾ ਕਰੋ"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "ਕਿਸੇ ਵੀ ਕਾਰਜ ਨੂੰ ਕਰਨਲ ਮੈਡਿਊਲ ਲੋਡ ਨਾ ਕਰਨ ਦਿਓ"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "ਕਰਨਲ SELinux ਪਾਲਿਸੀ ਨੂੰ ਕਿਸੇ ਵੀ ਕਾਰਜ ਦੁਆਰਾ ਸੋਧਣ ਨਾ ਦਿਓ"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroublesoot ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "spam ਸੁਰੱਖਿਆ"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "spamd ਨੂੰ ਨੈੱਟਵਰਕ ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Spam Assasin ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਪਹੁੰਚ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "squid ਡੈਮਨ ਨੂੰ ਨੈੱਟਵਰਕ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "staff_r ਉਪਭੋਗੀਆਂ ਨੂੰ ਪਰਬੰਧਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੈਕਟਰੀ ਖੋਜਣ ਅਤੇ ਫਾਇਲਾਂ (ਜਿਵੇਂ ~/.bashrc) ਪੜਨ "
+-#~ "ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "ਯੂਨੀਵਰਸਲ SSL tunnel"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "stunnel ਡੈਮਨ ਨੂੰ xinetd ਦੇ ਬਾਹਰ, ਸਟੈਂਡਅਲੋਨ ਚੱਲਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "ਸਿਸਟਮ cron jobs ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "xinetd ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਸਰਵਿਸਾਂ ਜੋ ਇਹ ਚਲਾਉਂਦਾ ਹੈ ਤੇ ਜਿਸ ਜੀ "
+-#~ "ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "rc ਸਕਰਿਪਟਾਂ ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਲਈ ਮਨਜੂਰੀ ਦਿਓ, ਜਿਵੇਂ ਕਿ ਕੋਈ ਵੀ ਡੈਮਨ ਜੋ rc ਸਕਰਿਪਟ "
+-#~ "ਦੁਆਰਾ ਚਲਾਇਆ ਗਿਆ ਹੈ ਤੇ ਜਿਸ ਦੀ ਡੋਮੇਨ ਤਬਦੀਲੀ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤੀ ਹੈ"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "rpm ਨੂੰ unconfined ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr "ਪ੍ਰਮਾਣਿਤ ਸਹੂਲਤਾਂ ਜਿਵੇਂ hotplug ਅਤੇ insmod ਨੂੰ ਨਾ-ਪਾਬੰਦ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r ਨੂੰ sysadm_r ਤੱਕ su, sudo, ਜਾਂ userhelper ਰਾਹੀਂ ਪਹੁੰਚਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ। ਨਹੀਂ "
+-#~ "ਤਾਂ, ਸਿਰਫ staff_r ਹੀ ਅਜਿਹਾ ਕਰ ਸਕਦਾ ਹੈ"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ mount ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr "ਰੈਗੂਲਰ ਉਪਭੋਗੀਆਂ ਨੂੰ ਸਿੱਧੀ ਮਾਊਸ ਵਰਤੋਂ ਲਈ ਮਨਜੂਰੀ ਦਿਓ (ਸਿਰਫ X ਸਰਵਰ ਨੂੰ ਮਨਜੂਰ ਕਰੋ)"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ dmesg ਕਮਾਂਡ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "ਉਪਭੋਗੀ ਨੂੰ ਨੈੱਟਵਰਕ ਇੰਟਰਫੇਸ ਕੰਟਰੋਲ ਕਰਨ ਦੀ ਮਨਜੂਰੀ ਦਿੰਦਾ ਹੈ (USERCTL=true ਦੀ ਵੀ ਲੋੜ ਹੈ)"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "ਆਮ ਉਪਭੋਗੀ ਨੂੰ ping ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ r/w noextattrfile (FAT, CDROM, FLOPPY) ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ rw usb ਜੰਤਰ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "ਉਪਭੋਗੀਆਂ ਨੂੰ TCP ਸਰਵਰ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ (ਪੋਰਟਾਂ ਨਾਲ ਜੋੜੋ ਅਤੇ ਉਸੇ ਡੋਮੇਨ ਜਾਂ ਬਾਹਰਲੇ "
+-#~ "ਉਪਭੋਗੀਆਂ ਤੋਂ ਕੁਨੈਕਸ਼ਨ ਸਵੀਕਾਰ ਕਰੋ)  ਇਸ ਨੂੰ ਅਯੋਗ ਕਰਨ ਨਾਲ FTP passive ਮੋਡ ਨੂੰ ਮਜਬੂਰ ਕਰਦਾ ਹੈ "
+-#~ "ਅਤੇ ਹੋਰ ਪਰੋਟੋਕਾਲ ਤਬਦੀਲੀਆਂ ਕਰਦਾ ਹੈ"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "ਉਪਭੋਗੀ ਨੂੰ stat ttyfiles ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm ਲਾਗਇਨ ਨੂੰ sysadm_r:sysadm_t ਤੌਰ ਤੇ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "xen ਨੂੰ ਭੌਤਿਕ ਡਿਸਕ ਜੰਤਰ ਪੜਨ/ਲਿਖਣ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen constrol ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS ਪਾਸਵਰਡ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS ਟਰਾਂਸਫਰ ਡੈਮਨ ਲਈ SELinux ਸੁਰੱਖਿਆ ਅਯੋਗ ਕਰੋ"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਦੇ ਪਰਬੰਧਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "SELinux webadm ਉਪਭੋਗੀ ਨੂੰ ਨਾ-ਪ੍ਰਮਾਣਿਤ ਉਪਭੋਗੀ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀਆਂ ਨੂੰ ਪੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ %s '%s' ਨੂੰ ਹਟਾਉਣਾ ਚੀਹੁੰਦੇ ਹੋ?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s ਹਟਾਓ"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s ਸ਼ਾਮਿਲ"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s ਸੋਧ"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "ਚੇਤਾਵਨੀ"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "ਮਜਬੂਰ"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ "
+-#~ "ਜਾਏਗਾ। ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ "
+-#~ "ਕਰਨਾ ਹੈ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux ਅਯੋਗ ਕਰਨ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ। ਇਸ ਦੀ ਸਿਫਾਰਸ਼ ਨਹੀਂ ਕੀਤੀ ਜਾਂਦੀ।  ਜੇ ਤੁਸੀਂ "
+-#~ "ਬਾਅਦ ਵਿੱਚ SELinux ਵੱਲ ਪਿੱਛੇ ਜਾਣਾ ਚਾਹੁੰਦੇ ਹੋ, ਤਾਂ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰੇਗਾ।  ਜਿਸ ਤੁਸੀਂ ਇਹ "
+-#~ "ਵੇਖਣਾ ਚਾਹੁੰਦੇ ਹੋ ਜੇ SELinux ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਪਰ ਸਮੱਸਿਆ ਪੈਦਾ ਕਰ ਰਿਹਾ ਹੈ, ਤੁਸੀਂ permissive "
+-#~ "ਮੋਡ ਵਿੱਚ ਜਾ ਸਕਦੇ ਹੋ ਜੋ ਸਿਰਫ ਗਲਤੀਆਂ ਦਾ ਲਾਗ ਰੱਖਦਾ ਹੈ ਅਤੇ enforce SELinux ਪਾਲਿਸੀ "
+-#~ "ਨਹੀਂ।  Permissive ਮੋਡ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ    ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux ਯੋਗ ਕਰਨ ਨਾਲ ਅਗਲੀ ਵਾਰ ਬੂਟ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ ਲੇਬਲ ਕੀਤਾ ਜਾਏਗਾ। ਮੁੜ-"
+-#~ "ਲੇਬਲ ਹੋਣ ਤੇ ਫਾਇਲ ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕੁਝ ਸਮਾਂ ਲੱਗਦਾ ਹੈ।  ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਕਰਨਾ ਹੈ?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux ਲਾਗਿੰਗ ਮੈਪਿੰਗ ਜੋੜੋ"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux ਨੈੱਟਵਰਕ ਪੋਰਟਾਂ ਜੋੜੋ"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux ਕਿਸਮ"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "ਲੈਵਲ"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "ਫਾਇਲ ਨਿਰਧਾਰਨ"
+-
+-#~ msgid "File Type"
+-#~ msgstr "ਫਾਇਲ ਕਿਸਮ"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "ਸਭ ਫਾਇਲਾਂ\n"
+-#~ "ਰੈਗੂਲਰ ਫਾਇਲ\n"
+-#~ "ਡਾਇਰੈਕਟਰੀ\n"
+-#~ "ਅੱਖਰ ਜੰਤਰ\n"
+-#~ "ਬਲਾਕ ਜੰਤਰ\n"
+-#~ "ਸਾਕਟ\n"
+-#~ "ਚਿੰਨ ਸੰਬੰਧ\n"
+-#~ "named ਪਾਈਪ\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਸ਼ਾਮਿਲ"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux ਪਰਬੰਧਨ"
+-
+-#~ msgid "Add"
+-#~ msgstr "ਸ਼ਾਮਿਲ"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ(_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "ਹਟਾਓ(_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "ਮੈਨੇਜਮੈਂਟ ਆਬਜੈਕਟ ਚੁਣੋ"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>ਚੁਣੋ:</b>"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "ਸਿਸਟਮ ਮੂਲ ਮਜਬੂਰ ਮੋਡ"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "ਵਰਤਮਾਨ ਮਜਬੂਰ ਮੋਡ"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "ਸਿਸਟਮ ਮੂਲ ਪਾਲਿਸੀ ਕਿਸਮ: "
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
@@ -231970,40 +176309,57 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "ਚੁਣੋ ਜੇ ਤੁਸੀਂ ਅਗਲੀ ਵਾਰ ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਪੂਰਾ ਫਾਇਲ ਸਿਸਟਮ ਮੁੜ-ਲੇਬਲ ਕਰਨਾ ਹੈ।  ਮੁੜ-ਲੇਬਲ ਹੋਣ ਤੇ "
+-#~ "ਸਿਸਟਮ ਦੇ ਅਕਾਰ ਮੁਤਾਬਿਕ ਕਾਫੀ ਸਮਾਂ ਲੱਗ ਲਕਦਾ ਹੈ। ਜੇ ਤੁਸੀਂ ਪਾਲਿਸੀ ਕਿਸਮ ਤਬਦੀਲ ਕਰ ਦਿੱਤੀ "
+-#~ "ਜਾਂ ਅਯੋਗ ਤੋਂ ਮਜਬੂਰ ਤਬਦੀਲ ਕਰ ਰਹੇ ਹੋ, ਤਾਂ ਮੁੜ-ਲੇਬਲ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "ਫਿਰ ਚਾਲੂ ਹੋਣ ਤੇ ਮੁੜ-ਲੇਬਲ ਕਰੋ।"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "ਬੂਲੀਅਨ ਸੈਟਿੰਗ ਨੂੰ ਸਿਸਟਮ ਮੂਲ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਬੂਲੀਅਨਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "ਫਿਲਟਰ"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸ਼ਾਮਿਲ ਕਰੋ"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਸੋਧੋ"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -232013,14 +176369,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "ਫਾਇਲ ਪ੍ਰਸੰਗ ਹਟਾਓ"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "ਸਭ ਅਤੇ ਸੋਧੇ ਫਾਇਲ ਪ੍ਰਸੰਗ ਤਬਦੀਲ ਕਰੋ"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
@@ -232030,10 +176390,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੈਪਿੰਗ ਜੋੜੋ"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -232042,25 +176403,21 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -232071,229 +176428,280 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਮੇਲ ਹਟਾਓ"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Add Translation"
+-#~ msgstr "ਅਨੁਵਾਦ ਸ਼ਾਮਿਲ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Modify Translation"
+-#~ msgstr "ਅਨੁਵਾਦ ਸੋਧ"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Delete Translation"
+-#~ msgstr "ਅਨੁਵਾਦ ਹਟਾਓ"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Add Network Port"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸ਼ਾਮਿਲ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Edit Network Port"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਸੋਧ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Delete Network Port"
+-#~ msgstr "ਨੈੱਟਵਰਕ ਪੋਰਟ ਹਟਾਓ"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "ਸੋਧੇ ਅਤੇ ਸਭ ਪੋਰਟਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Generate new policy module"
+-#~ msgstr "ਨਵਾਂ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਬਣਾਓ"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Load policy module"
+-#~ msgstr "ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਲੋਡ ਕਰੋ"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "ਲੋਡ ਹੋਣਯੋਗ ਪਾਲਿਸੀ ਮੈਡਿਊਲ ਹਟਾਓ"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr "ਵਾਧੂ ਆਡਿਟ ਨਿਯਮ ਯੋਗ/ਅਯੋਗ ਕਰੋ, ਜੋ ਆਮ ਤੌਰ ਤੇ ਲਾਗ ਫਾਇਲਾਂ ਵਿੱਚ ਨਹੀਂ ਦਿੱਤੇ ਗਏ ਹਨ।"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "ਸੰਵੇਦਨਸ਼ੀਲਤਾ ਲੈਵਲ"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux ਉਪਭੋਗੀ '%s' ਦੀ ਲੋੜ ਹੈ"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "Requires value"
+-#~ msgstr "ਮੁੱਲ ਲੋੜੀਂਦਾ ਹੈ"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr "ਕਾਰਜ/ਉਪਭੋਗੀ ਨੂੰ ਕਿਸੇ ਵੀ tcp ਪੋਰਟਾਂ ਨਾਲ ਜੁੜਨ ਦਿੰਦਾ ਹੈ > 1024"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr "ਪਾਬੰਦ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ ਨੂੰ ਕਿਸੇ ਵੀ tcp ਪੋਰਟ ਨਾਲ ਜੁੜਨ ਦੀ ਮਨਜੂਰੀ ਦਿਓ"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ tcp ਪੋਰਟਾਂ ਜਾਂ ਪੋਰਚਾਂ ਦੀ ਰੇਂਜ ਦੀ ਸੂਚੀ ਦਿਓ ਜਿਨਾਂ ਨਾਲ ਇਹ ਕਾਰਜ/ਉਪਭੋਗੀ ਰੋਲ "
+-#~ "ਜੁੜਿਆ ਹੈ। ਉਦਾਹਰਨ: 612, 650-660"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux ਪਾਲਿਸੀ ਨਿਰਮਾਣ ਡਰਾਊਡ"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "ਨਾ-ਰਾਖਵੇਂ ਪੋਰਟ  (> 1024)"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "ਇਹ ਚੋਣਬਟਨ ਵਰਤੋ ਜੇ ਤੁਹਾਡਾ ਕਾਰਜ bindresvport ਨੂੰ 0 ਨਾਲ ਕਾਲ ਕਰਦਾ ਹੈ।"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "ਮਜਬੂਰ\n"
+-#~ "ਚੇਤਾਵਨੀ\n"
+-#~ "ਅਯੋਗ\n"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -232301,1670 +176709,2136 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/si.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils-2.0.85/po/sk.po
---- nsapolicycoreutils/po/sk.po        2011-02-17 15:11:25.302731946 -0500
-+++ policycoreutils-2.0.85/po/sk.po    2011-02-18 16:03:41.442976249 -0500
-@@ -7,16 +7,36 @@
+diff --git a/policycoreutils/po/pl.po b/policycoreutils/po/pl.po
+index 322c7c3..3ffe59a 100644
+--- a/policycoreutils/po/pl.po
++++ b/policycoreutils/po/pl.po
+@@ -1,18 +1,24 @@
+-# translation of pl.po to Polish
+-# Piotr Drąg <piotrdrag@gmail.com>, 2006.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
++# Translators:
++# Piotr Drąg <piotrdrag@gmail.com>, 2006, 2012.
+ msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: pl\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
- "PO-Revision-Date: 2007-01-25 03:00+0100\n"
- "Last-Translator: Mike Karas <zoliqe@gmail.com>\n"
- "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
-+"Language: sk\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-09-10 21:03+0200\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-11 18:29+0000\n"
+ "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
+-"Language-Team: Polish <pl@li.org>\n"
++"Language-Team: Polish (http://www.transifex.net/projects/p/fedora/language/"
++"pl/)\n"
+ "Language: pl\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Poedit-Language: Slovak\n"
- "X-Poedit-Country: SLOVAKIA\n"
++"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
++"|| n%100>=20) ? 1 : 2)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux typ je požadovaný"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Nemožno načítať pravidlo z pamäte."
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -129,7 +149,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -183,743 +204,750 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+@@ -20,19 +26,19 @@ msgid ""
+ "  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 wykonania,\n"
+-"         a <args ...> są argumentami dla tego skryptu."
++"UŻYCIE: run_init <skrypt> <parametry...>\n"
++"  gdzie: <skrypt> jest nazwą skryptu inicjowania do wykonania,\n"
++"         a <parametry...> są parametrami dla tego skryptu."
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Nemožno vytvoriť kľúč pre %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Nemožno skontrolovať či mapovanie loginu pre %s je definované"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Mapovanie loginu pre %s je už definované"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, fuzzy, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linuxový užívateľ %s neexistuje"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linuxový užívateľ %s neexistuje"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Nemožno vytvoriť mapovanie loginu pre %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Nemožno nastaviť meno pre %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Nemožno nastavit MLS rozsah pre %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Nemožno nastaviť SELinux užívateľa pre %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Nemožno pridat mapovanie loginu pre %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- #, fuzzy
- msgid "add SELinux user mapping"
- msgstr "Nemožno pridať SELinux užívateľa %s"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Vyžaduje seuser alebo serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Mapovanie loginu pre %s nie je definované"
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+ msgid "failed to initialize PAM\n"
+-msgstr "inicjowanie PAM nie powiodło się\n"
++msgstr "zainicjowanie PAM się nie powiodło\n"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Nemožno overiť seuser pre %s"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "uzyskanie informacji o koncie nie powiodło się\n"
++msgstr "uzyskanie informacji o koncie się nie powiodło\n"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Nemožno zmeniť mapovanie loginu pre %s"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -41,7 +47,7 @@ msgstr "Hasło:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "Nie można znaleźć wpisu w pliku passwd shadow.\n"
++msgstr "Nie można odnaleźć wpisu w pliku shadow passwd.\n"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "Mapovanie loginu pre %s je definované v pravidlách, nemôže byť zmazané"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+@@ -51,7 +57,7 @@ msgstr "getpass nie może otworzyć /dev/tty\n"
+ #: ../run_init/run_init.c:275
+ #, c-format
+ msgid "run_init: incorrect password for %s\n"
+-msgstr "run_init: nieprawidłowe hasło dla %s\n"
++msgstr "run_init: niepoprawne hasło dla %s\n"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Nemožno zmazať mapovanie loginu pre %s"
+ #: ../run_init/run_init.c:309
+ #, c-format
+@@ -66,13 +72,12 @@ msgstr "Brak kontekstu w pliku %s\n"
+ #: ../run_init/run_init.c:361
+ #, 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"
++msgstr "run_init może zostać uruchomione tylko na jądrze SELinuksa.\n"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Nemožno listovať mapovaniami loginov"
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr "uwierzytelnianie nie powiodło się.\n"
++msgstr "uwierzytelnianie się nie powiodło.\n"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+@@ -85,7 +90,7 @@ msgstr "******************** WAŻNE ***********************\n"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- #, fuzzy
- msgid "SELinux User"
- msgstr "SELinux typ je požadovaný"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr "Aby uaktywnić ten pakiet polityki, wykonaj:"
++msgstr "Aby aktywować ten pakiet polityki należy wykonać:"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+@@ -99,28 +104,27 @@ msgstr "Nie można utworzyć obsługi semanage"
+ 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."
++"przechowalni."
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, fuzzy, python-format
- msgid "You must add at least one role for %s"
- msgstr "Nemožno pridať kontext súboru pre %s"
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "Nie można odczytać składu polityk."
++msgstr "Nie można odczytać przechowalni polityki."
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Nemožno skontrolovať či SELinux užívateľ %s je definovaný"
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+ msgstr "Nie można nawiązać połączenia semanage"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux užívateľ %s je už definovaný"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Nie można ustawić zasięgu MLS dla %s"
++msgstr "Nie można sprawdzić stanu włączenia MLS"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Nemožno vytvoriť SELinux užívateľa pre %s"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr "Nie zaimplementowane"
++msgstr "Niezaimplementowane"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Nemožno pridať rolu %s pre %s"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Transakcja semanage jest już wykonywana"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Nemožno nastaviť MLS úroveň pre %s"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+@@ -132,64 +136,61 @@ msgstr "Nie można wykonać transakcji semanage"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Nemožno pridať prefix %s pre %s"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Transakcja semanage nie jest wykonywana"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Nemožno extrahovať kľúč pre %s"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+ msgid "Could not list SELinux modules"
+ msgstr "Nie można wyświetlić listy modułów SELinuksa"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Nemožno pridať SELinux užívateľa %s"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+ msgstr "Nazwa modułu"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Požaduje prefix, role, úroveň alebo rozsah"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Wersja"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Požaduje prefix alebo role"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Wyłączony"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux užívateľ %s nie je definovaný"
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "Nie można usunąć domeny zezwalania %s (usunięcie nie powiodło się)"
++msgstr "Nie można wyłączyć modułu %s (usunięcie się nie powiodło)"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Nemožno overiť užívateľa pre %s"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Nie można usunąć domeny zezwalania %s (usunięcie nie powiodło się)"
++msgstr "Nie można włączyć modułu %s (usunięcie się nie powiodło)"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Nemožno zmeniť SELinux užívateľa %s"
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "Nie można usunąć domeny zezwalania %s (usunięcie nie powiodło się)"
++msgstr "Nie można usunąć modułu %s (usunięcie się nie powiodło)"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux užívateľ %s je definovaný v pravidlách, nemožno ho zmazať"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "dontaudit wymaga \"on\" lub \"off\""
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Nemožno zmazať SELinux užívateľa %s"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Typy zezwalania"
++msgstr "Wbudowane typy zezwalania"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Nemožno listovať SELinux užívateľmi"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Typy zezwalania"
++msgstr "Dostosowane typy zezwalania"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Nemožno listovať rolami pre užívateľa %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
+ msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
+-"Nie można ustawić domeny zezwalania %s (instalacja modułu nie powiodła się)"
++"Nie można ustawić domeny zezwalania %s (instalacja modułu się nie powiodła)"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Protokol udp alebo tcp je požadovaný"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Port je požadovaný"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Nemožno vytvoriť kľúč pre %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Typ je požadovaný"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Nemožno skontrolovať či port %s/%s je definovaný"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s je už definovaný"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Nemožno vytvoriť port pre %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Nemožno vytvoriť kontext pre %s/%s"
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr "Nie można usunąć domeny zezwalania %s (usunięcie nie powiodło się)"
++msgstr "Nie można usunąć domeny zezwalania %s (usunięcie się nie powiodło)"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -231,7 +232,7 @@ msgstr "Nie można ustawić nazwy %s"
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Nemožno nastaviť užívateľa v kontexte portu pre %s/%s"
+ msgid "Could not set MLS range for %s"
+-msgstr "Nie można ustawić zasięgu MLS dla %s"
++msgstr "Nie można ustawić zakresu MLS dla %s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:514
  #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Nemožno nastaviť rolu v kontexte portu pre %s/%s"
+@@ -280,15 +281,20 @@ msgid "Could not list login mappings"
+ msgstr "Nie można wyświetlić listę mapowań loginów"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Nemožno nastaviť typ v kontexte portu pre %s/%s"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "Login"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Nemožno nastaviť mls pole v kontexte portu pre %s/%s"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "Użytkownik SELinuksa"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Nemožno nastaviť kontext portu pre %s/%s"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "Zakres MLS/MCS"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+@@ -308,7 +314,7 @@ msgstr "Nie można odpytać użytkownika dla %s"
+ #: ../semanage/seobject.py:722
  #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Nemožno pridať port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Požaduje setype alebo serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Požaduje setype"
+ msgid "You must add at least one role for %s"
+-msgstr "Musisz dodać co najmniej jedną rolę dla %s"
++msgstr "Należy dodać co najmniej jedną rolę dla %s"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Por %s/%s nie je definovaný"
+@@ -342,7 +348,7 @@ msgstr "Nie można dodać użytkownika SELinuksa %s"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Nemožno overiť port %s/%s"
+ #: ../semanage/seobject.py:787
+ msgid "Requires prefix, roles, level or range"
+-msgstr "Wymagany jest przedrostek, role, poziom lub zasięg"
++msgstr "Wymagany jest przedrostek, role, poziom lub zakres"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Nemožno zmeniť port %s/%s"
+ #: ../semanage/seobject.py:789
+ msgid "Requires prefix or roles"
+@@ -400,6 +406,7 @@ msgid "MCS Range"
+ msgstr "Zakres MCS"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- #, fuzzy
- msgid "Could not list the ports"
- msgstr "Nemožno listovať portami"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "Role SELinuksa"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, fuzzy, python-format
- msgid "Could not delete the port %s"
- msgstr "Nemožno zmazať port %s/%s"
+@@ -413,7 +420,7 @@ msgstr "Wymagany jest port"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s je definovaný v pravidlách, nemôže byť zmazaný"
+ #: ../semanage/seobject.py:975
+ msgid "Invalid Port"
+-msgstr ""
++msgstr "Nieprawidłowy port"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Nemožno zmazať port %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Nemožno listovať portami"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -530,7 +537,7 @@ msgstr "Typ portu SELinuksa"
  msgid "Proto"
- msgstr ""
+ msgstr "Protokół"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- #, fuzzy
- msgid "Node Address is required"
- msgstr "Port je požadovaný"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- #, fuzzy
- msgid "Node Netmask is required"
- msgstr "Port je požadovaný"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux typ je požadovaný"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Nemožno vytvoriť kľúč pre %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, fuzzy, python-format
- msgid "Could not check if addr %s is defined"
- msgstr "Nemožno skontrolovať či port %s/%s je definovaný"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, fuzzy, python-format
- msgid "Addr %s already defined"
- msgstr "Port %s/%s je už definovaný"
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, fuzzy, python-format
- msgid "Could not create addr for %s"
- msgstr "Nemožno vytvoriť kľúč pre %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Nemožno vytvoriť kontext pre %s"
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, fuzzy, python-format
- msgid "Could not set mask for %s"
- msgstr "Nemožno nastaviť meno pre %s"
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, fuzzy, python-format
- msgid "Could not set user in addr context for %s"
- msgstr "Nemožno nastaviť užívateľa v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, fuzzy, python-format
- msgid "Could not set role in addr context for %s"
- msgstr "Nemožno nastaviť rolu v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, fuzzy, python-format
- msgid "Could not set type in addr context for %s"
- msgstr "Nemožno nastaviť typ v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, fuzzy, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr "Nemožno nastaviť mls pole v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, fuzzy, python-format
- msgid "Could not set addr context for %s"
- msgstr "Nemožno nastavit kontext súboru pre %s"
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, fuzzy, python-format
- msgid "Could not add addr %s"
- msgstr "Nemožno pridať port %s/%s"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, fuzzy, python-format
- msgid "Addr %s is not defined"
- msgstr "Por %s/%s nie je definovaný"
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, fuzzy, python-format
- msgid "Could not query addr %s"
- msgstr "Nemožno overiť port %s/%s"
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, fuzzy, python-format
- msgid "Could not modify addr %s"
- msgstr "Nemožno zmeniť port %s/%s"
+ msgstr "Numer portu"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, fuzzy, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s je definovaný v pravidlách, nemôže byť zmazaný"
+@@ -633,9 +640,8 @@ msgid "Could not delete addr %s"
+ msgstr "Nie można usunąć adresu %s"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, fuzzy, python-format
- msgid "Could not delete addr %s"
- msgstr "Nemožno zmazať rozhranie %s"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Nie można usunąć mapowania loginu dla %s"
++msgstr "Nie można usunąć wszystkich mapowań węzłów"
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- #, fuzzy
+ #: ../semanage/seobject.py:1394
  msgid "Could not list addrs"
- msgstr "Nemožno listovať portami"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Nemožno skontrolovať či rozhranie %s je definované"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Rozhranie %s je už definované"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Nemožno vytvoriť rozhranie pre %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Nemožno nastaviť užívateľa v kontexte rozhrania pre %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Nemožno nastaviť rolu v kontexte rozhrania pre %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Nemožno nastaviť typ v kontexte rozhrania pre %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Nemožno nastaviť mls pole v kontexte rozhrania pre %s"
+@@ -713,9 +719,8 @@ msgid "Could not delete interface %s"
+ msgstr "Nie można usunąć interfejsu %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Nemožno nastaviť kontext rozhrania pre %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Nie można usunąć interfejsu %s"
++msgstr "Nie można usunąć wszystkich mapowań interfejsów"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Nemožno nastaviť kontext správy pre %s"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -730,19 +735,19 @@ msgid "Context"
+ msgstr "Kontekst"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Nemožno pridať rozhranie %s"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Kontekst pliku dla %s nie został określony"
++msgstr "Klasa ekwiwalentu dla %s już istnieje"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Interface %s is not defined"
- msgstr "Rozhranie %s nie je definované"
+ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
++msgstr "Plik spec %s jest w konflikcie z regułą ekwiwalentu \"%s %s\""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Nemožno overiť rozhranie %s"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Użytkownik linuksowy %s nie istnieje"
++msgstr "Klasa ekwiwalentu dla %s nie istnieje"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not modify interface %s"
- msgstr "Nemožno zmeniť rozhranie %s"
+@@ -765,13 +770,15 @@ msgstr "Nieprawidłowe określenie pliku"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Rozhranie %s je definované v pravidlách, nemôže byť zmazané"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+-msgstr ""
++msgstr "Określenie pliku nie może zawierać spacji"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1714
  #, python-format
- msgid "Could not delete interface %s"
- msgstr "Nemožno zmazať rozhranie %s"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Nemožno listovať rozhraniami"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
+ msgid ""
+ "File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
  msgstr ""
++"Plik spec %s jest w konflikcie z regułą ekwiwalentu \"%s %s\"; należy "
++"spróbować dodać \"%s\" zamiast tego"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
+ #: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+ #: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+@@ -861,13 +868,16 @@ msgid ""
+ "\n"
+ "SELinux Distribution fcontext Equivalence \n"
  msgstr ""
++"\n"
++"Ekwiwalent fcontext dystrybucji SELinuksa \n"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Nemožno nastaviť užívateľa v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Nemožno nastaviť rolu v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Nemožno nastaviť mls pole v kontexte súboru pre %s"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "fcontext SELinuksa"
++msgstr ""
++"\n"
++"Lokalny ekwiwalent fcontext SELinuksa \n"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -888,7 +898,7 @@ msgstr "Nie można odpytać kontekstu pliku %s"
+ #: ../semanage/seobject.py:1999
  #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Nemožno skontrolovať či kontext súboru pre %s je definovaný"
+ msgid "You must specify one of the following values: %s"
+-msgstr "Musisz podać jedną z poniższych wartości: %s"
++msgstr "Należy podać jedną z poniższych wartości: %s"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
+ #: ../semanage/seobject.py:2004
  #, python-format
- msgid "File context for %s already defined"
- msgstr "Kontext súboru pre %s je už definovaný"
+@@ -937,22 +947,22 @@ msgid "SELinux boolean"
+ msgstr "Zmienna logiczna SELinuksa"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Nemožno vytvoriť kontext súboru pre %s"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+ msgstr "Stan"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Nemožno nastaviť typ v kontexte súboru pre %s"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Domyślnie"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Nemožno nastavit kontext súboru pre %s"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "Opis"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Nemožno pridať kontext súboru pre %s"
+ #: ../newrole/newrole.c:201
+ #, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "ustawienie PAM_TTY nie powiodło się\n"
++msgstr "ustawienie PAM_TTY się nie powiodło\n"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Požaduje setype, serange alebo seuser"
+ #: ../newrole/newrole.c:290
+ #, c-format
+@@ -967,17 +977,17 @@ msgstr "newrole: %s: błąd w wierszu %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "nie można znaleźć prawidłowego wpisu w pliku passwd.\n"
++msgstr "nie można odnaleźć prawidłowego wpisu w pliku passwd.\n"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Kontext súboru pre %s nie je definovaný"
+ #: ../newrole/newrole.c:450
+ #, c-format
+ msgid "Out of memory!\n"
+-msgstr "Brak pamięci!\n"
++msgstr "Brak pamięci.\n"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Nemožno overiť kontext súboru pre %s"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Błąd! Powłoka jest nieprawidłowa.\n"
++msgstr "Błąd. Powłoka jest nieprawidłowa.\n"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Nemožno zmeniť kontext súboru pre %s"
+ #: ../newrole/newrole.c:512
+ #, c-format
+@@ -997,7 +1007,7 @@ msgstr "Błąd podczas przywracania KEEPCAPS, przerywanie.\n"
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "Błąd podczas łączenia się z systemem audytu.\n"
++msgstr "Błąd podczas łączenia z systemem audytu.\n"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- #, fuzzy
- msgid "Could not list the file contexts"
- msgstr "Nemožno listovať kontextami súboru"
+ #: ../newrole/newrole.c:641
+ #, c-format
+@@ -1017,26 +1027,26 @@ msgstr "Nie można ustalić trybu wymuszania.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Błąd! Nie można otworzyć %s.\n"
++msgstr "Błąd. Nie można otworzyć %s.\n"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, fuzzy, python-format
- msgid "Could not delete the file context %s"
- msgstr "Nemožno zmazať kontext súboru pre %s"
+ #: ../newrole/newrole.c:705
+ #, 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"
++"%s. Nie można uzyskać bieżącego kontekstu dla %s, ponowne nadanie etykiety "
++"TTY się nie odbędzie.\n"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "Kontext súboru pre %s je definovaný v pravidlách, nemôže byť zmazaný"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s! Nie można uzyskać nowego kontekstu dla %s, ponowne nadanie etykiety TTY "
+-"nie odbędzie się.\n"
++"%s. Nie można uzyskać nowego kontekstu dla %s, ponowne nadanie etykiety TTY "
++"się nie odbędzie.\n"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Nemožno zmazať kontext súboru pre %s"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s! Nie można ustawić nowego kontekstu dla %s\n"
++msgstr "%s. Nie można ustawić nowego kontekstu dla %s\n"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Nemožno listovať kontextami súboru"
+ #: ../newrole/newrole.c:772
+ #, c-format
+@@ -1046,7 +1056,7 @@ msgstr "%s zmienił etykiety.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Ostrzeżenie! Nie można przywrócić kontekstu dla %s\n"
++msgstr "Ostrzeżenie. Nie można przywrócić kontekstu dla %s\n"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Nemožno listovať kontextami lokálnych súborov"
+ #: ../newrole/newrole.c:835
+ #, c-format
+@@ -1061,7 +1071,7 @@ msgstr "Błąd: podano wiele typów\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr "Przepraszamy, -l może zostać użyte z obsługą MLS SELinuksa.\n"
++msgstr "Opcja -l może zostać użyta z obsługą MLS SELinuksa.\n"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
+ #: ../newrole/newrole.c:855
+ #, c-format
+@@ -1071,7 +1081,7 @@ msgstr "Błąd: podano wiele poziomów\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr "Błąd: nie możesz zmieniać poziomów na niezabezpieczonym terminalu \n"
++msgstr "Błąd: nie można zmieniać poziomów na niezabezpieczonym terminalu \n"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../newrole/newrole.c:891
+ #, c-format
+@@ -1081,33 +1091,32 @@ msgstr "Nie można uzyskać domyślnego typu.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "uzyskanie nowego kontekstu nie powiodło się.\n"
++msgstr "uzyskanie nowego kontekstu się nie powiodło.\n"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Nemožno skontrolovať či logická hodnota %s je definovaná"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "ustawienie nowej roli %s nie powiodło się\n"
++msgstr "ustawienie nowej roli %s się nie powiodło\n"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Logická hodnota %s nie je definovaná"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "ustawienie nowego typu %s nie powiodło się\n"
++msgstr "ustawienie nowego typu %s się nie powiodło\n"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Nemožno overiť kontext súboru %s"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "zbudowanie nowego zasięgu z poziomem %s nie powiodło się\n"
++msgstr "zbudowanie nowego zakresu z poziomem %s się nie powiodło\n"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, fuzzy, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "Musíte zadať prefix"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "ustawienie nowego zasięgu %s nie powiodło się\n"
++msgstr "ustawienie nowego zakresu %s się nie powiodło\n"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, fuzzy, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "Nemožno zmazať logickú hodnotu %s"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr ""
+-"przekonwertowanie nowego kontekstu na łańcuch tekstowy nie powiodło się\n"
++msgstr "przekonwertowanie nowego kontekstu na ciąg tekstowy się nie powiodło\n"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Nemožno zmeniť logickú hodnotu %s"
+ #: ../newrole/newrole.c:943
+ #, c-format
+@@ -1132,17 +1141,17 @@ msgstr "Nie można ustawić obsługi SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr "Przepraszamy, newrole może zostać użyte tylko na jądrze SELinux.\n"
++msgstr "newrole może zostać użyte tylko na jądrze SELinuksa.\n"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "uzyskanie old_context nie powiodło się.\n"
++msgstr "uzyskanie old_context się nie powiodło.\n"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Logická hodnota %s je definovaná v pravidlách, nemožno ju zmazať"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Ostrzeżenie! Nie można pobrać informacji o TTY.\n"
++msgstr "Ostrzeżenie. Nie można pobrać informacji o TTY.\n"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Nemožno zmazať logickú hodnotu %s"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1157,7 +1166,7 @@ msgstr "newrole: niepoprawne hasło dla %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr "newrole: rozgałęzienie nie powiodło się: %s"
++msgstr "newrole: rozgałęzienie się nie powiodło: %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Nemožno listovať logickými hodnotami"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+@@ -1167,7 +1176,7 @@ msgstr "Nie można przywrócić etykiety TTY...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "Poprawne zamknięcie TTY nie powiodło się\n"
++msgstr "Poprawne zamknięcie TTY się nie powiodło\n"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:1224
+ #, c-format
+@@ -1186,7 +1195,7 @@ msgstr "Nie można przywrócić środowiska, przerywanie\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr "wykonanie powłoki nie powiodło się\n"
++msgstr "wykonanie powłoki się nie powiodło\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../load_policy/load_policy.c:22
+ #, c-format
+@@ -1277,7 +1286,7 @@ msgstr "Użycie %s -L -l użytkownik"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "Użyj --, aby zakończyć listę opcji. Na przykład"
++msgstr "Należy użyć --, aby zakończyć listę opcji. Na przykład"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1287,1745 +1296,2231 @@ msgstr "chcat -- -CompanyConfidential /dokumenty/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential jużytkownik"
  
-@@ -1291,86 +1319,2087 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Chyba volieb %s"
+ msgstr "Błąd opcji %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "preklady nie sú podporované na nie-MLS strojoch"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Nie można otworzyć %s: tłumaczenia nie są obsługiwane na komputerach bez "
+-#~ "MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr ""
++msgstr "Zmienna logiczna"
  
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "SELinux typ je požadovaný"
+-#~ msgid "Level"
+-#~ msgstr "Poziom"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr ""
++msgstr "wszystko"
  
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "SELinux typ je požadovaný"
+-#~ msgid "Translation"
+-#~ msgstr "Tłumaczenie"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr ""
++msgstr "Dostosowane"
  
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Chyba odosielania audit správy.\n"
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Tłumaczenia nie mogą zawierać spacji \"%s\" "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr ""
++msgstr "Etykiety plików"
  
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Musíte zadať rolu"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Nieprawidłowy poziom \"%s\" "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
++"Określenie\n"
++"pliku"
  
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s zostało już określone w tłumaczeniach"
 +#: ../gui/fcontextPage.py:81
- #, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Musíte zadať rolu"
 +msgid ""
 +"Selinux\n"
 +"File Type"
-+msgstr "SELinux typ je požadovaný"
++msgstr ""
++"Typ pliku\n"
++"SELinuksa"
  
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Musíte zadať rolu"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nie został określony w tłumaczeniach"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
++"Typ\n"
++"pliku"
  
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Vytváranie súboru vynútenia typov: %s.te"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mapowanie loginu dla %s zostało już określone"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr ""
++msgstr "Mapowanie użytkownika"
  
--#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Rozhranie %s nie je definované"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "dodaj mapowanie użytkownika SELinuksa"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
++"Login\n"
++" "
  
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Kontext súboru pre %s nie je definovaný"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "Użytkownik SELinuksa %s został już określony"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
++"Użytkownik\n"
++"SELinuksa"
  
--#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux užívateľ %s nie je definovaný"
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Wymagana jest maska sieciowa węzła"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
++"Zakres MLS/\n"
++"MCS"
  
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Zostavujem pravidlá"
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Adres %s został już określony"
 +#: ../gui/loginsPage.py:133
-+#, fuzzy, python-format
++#, python-format
 +msgid "Login '%s' is required"
-+msgstr "SELinux typ je požadovaný"
++msgstr "Login \"%s\" jest wymagany"
  
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Autentifikácia %s.\n"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Interfejs %s został już określony"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr ""
++msgstr "Moduł polityki"
  
 -#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux typ je požadovaný"
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Błąd podczas inicjowania możliwości, przerywanie.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr ""
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Nemožno pridať SELinux užívateľa %s"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
++msgstr "Nazwa modułu"
  
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Nemožno zmeniť SELinux užívateľa %s"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Błąd podczas ustawiania możliwości, przerywanie\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr ""
++msgstr "Wyłącz audytowanie"
  
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Nemožno zmazať SELinux užívateľa %s"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Błąd podczas ustawiania KEEPCAPS, przerywanie\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr ""
++msgstr "Włącz audytowanie"
  
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Nemožno zmeniť SELinux užívateľa %s"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Błąd podczas opuszczania możliwości, przerywanie\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr ""
++msgstr "Wczytaj moduł polityki"
  
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Nemožno načítať pravidlo z pamäte."
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Błąd podczas opuszczania możliwości SETUID, przerywanie\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr ""
++msgstr "Polgen"
  
--#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux typ je požadovaný"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Błąd podczas zwalniania caps\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr ""
-+
++msgstr "Red Hat 2007"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "tłumaczenia nie są obsługiwane na komputerach bez MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr ""
-+
++msgstr "GPL"
+-#~ msgid "Boolean"
+-#~ msgstr "Zmienna logiczna"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:125
++msgstr "Piotr Drąg <piotrdrag@gmail.com>, 2006"
+-#~ msgid "all"
+-#~ msgstr "wszystko"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr "Narzędzie tworzenia polityki SELinuksa"
+-#~ msgid "Customized"
+-#~ msgstr "Dostosowane"
++#: ../gui/polgen.glade:128
 +msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:196
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr "<b>Wybór typu roli aplikacji lub użytkownika do ograniczenia:</b>"
+-#~ msgid "File Labeling"
+-#~ msgstr "Etykiety plików"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr "<b>Aplikacje</b>"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Określenie\n"
+-#~ "pliku"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
++"Standardowe demony inicjowania to demony włączane podczas uruchamiania przez "
++"skrypty inicjacyjne. Zwykle wymagają skryptu w /etc/rc.d/init.d"
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Typ pliku\n"
+-#~ "SELinuksa"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:280
++msgstr "Standardowy demon inicjowania"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Typ\n"
+-#~ "pliku"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:299
++msgstr "Systemowy demon D-Bus"
+-#~ msgid "User Mapping"
+-#~ msgstr "Mapowanie użytkownika"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr ""
-+
++msgstr "Demony usług internetowych to demony uruchamiane przez xinetd"
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Login\n"
+-#~ " "
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "Użytkownik\n"
+-#~ "SELinuksa"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "Zakres MLS/\n"
+-#~ "MCS"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr "Demon usług internetowych (inetd)"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Login \"%s\" jest wymagany"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Moduł polityki"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Wyłącz audytowanie"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Włącz audytowanie"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Wczytaj moduł polityki"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "Piotr Drąg <piotrdrag@gmail.com>, 2006"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Narzędzie tworzenia polityki SELinuksa"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "To narzędzie może być używane do tworzenia struktury polityki, aby "
+-#~ "ograniczyć aplikacje lub użytkowników używając SELinuksa.   \n"
+-#~ "\n"
+-#~ "Narzędzie tworzy:\n"
+-#~ "Pliki typu wymuszania (te)\n"
+-#~ "Pliki interfejsu (if)\n"
+-#~ "Pliki kontekstu pliku (fc)\n"
+-#~ "Skrypty powłoki (sh) - używane kompilowania i instalowania polityk. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Wybierz typ roli aplikacji/użytkownika do ograniczenia"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Aplikacje</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Standardowe demony init to demony startowane podczas uruchamiania przez "
+-#~ "skrypty init. Zwykle wymagają skryptu w /etc/rc.d/init.d"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Standardowy demon init"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Demony usług internetowych to demony uruchamiane przez xinetd"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Demon usług internetowych (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "Skrypty CGI aplikacji/skryptów WWW (CGI) uruchamiane przez serwer WWW "
+-#~ "(Apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Aplikacje/skrypty WWW (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Aplikacje użytkownika to wszystkie aplikacje, które chciałbyś ograniczyć "
+-#~ "uruchamiane przez użytkowników"
+-
+-#~ msgid "User Application"
+-#~ msgstr "Aplikacja użytkownika"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Logowani użytkownicy</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "Zmodyfikuj istniejący wpis logowania użytkownika."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "Istniejące role użytkowników"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "Ten użytkownik będzie logował się do komputera tylko przez terminal lub "
+-#~ "zdalne logowanie. Domyślnie ten użytkownik nie będzie posiadał setuid, "
+-#~ "sieci, su ani sudo."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "Minimalna rola użytkownika terminala"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "Ten użytkownik może logować się do komputera przez X Window lub terminal. "
+-#~ "Domyślnie ten użytkownik nie będzie posiadał setuid, sieci, sudo ani su"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "Minimalna rola użytkownika X Window"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany, sudo i "
+-#~ "su"
+-
+-#~ msgid "User Role"
+-#~ msgstr "Rola użytkownika"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany i su, "
+-#~ "może używać sudo dla ról administratorów root"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "Rola użytkownika administratora"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Użytkownicy root</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Wybierz rolę użytkownika administratora root, jeśli ten użytkownik będzie "
+-#~ "używany do administrowania komputerem podczas uruchamiania jako root. Ten "
+-#~ "użytkownik nie będzie mógł zalogować się bezpośrednio do systemu."
+-
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Rola użytkownika administratora root"
+-
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "Podaj nazwę roli aplikacji lub użytkownika do ograniczenia"
+-
+-#~ msgid "Name"
+-#~ msgstr "Nazwa"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Podaj pełną ścieżkę do ograniczanego pliku wykonywalnego."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Podaj unikalną nazwę dla roli ograniczanego aplikacji lub użytkownika."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Plik wykonywalny"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Skrypt init"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Podaj pełną ścieżkę do skryptu init używanego do uruchamiania "
+-#~ "ograniczanej aplikacji."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "Wybierz role użytkowników, które chcesz dostosować"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "Wybierz role użytkownika, które przemienić do tych domen aplikacji."
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "Wybierz dodatkowe domeny, do których przemienić tą rolę użytkownika"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Wybierz domeny aplikacji, do których chcesz przemienić tę rolę "
+-#~ "użytkownika."
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "Wybierz role użytkownika, które przemienić do tej domeny"
+-
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr ""
+-#~ "Wybierz dodatkowe domeny, którymi ta rola użytkownika będzie "
+-#~ "administrowała"
 +#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:320
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
++"Skrypty CGI aplikacji/skryptów WWW (CGI) uruchamiane przez serwer WWW "
++"(Apache)"
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "Wybierz domeny, które chcesz, aby ten użytkownik administrował."
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Wybierz dodatkowe role dla tego użytkownika"
+-
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr ""
+-#~ "Podaj porty sieciowe, które ta rola aplikacji/użytkownika ma nasłuchiwać."
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:341
++msgstr "Aplikacje/skrypty WWW (CGI)"
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>Porty TCP</b>"
+-
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Pozwól ograniczanej roli aplikacji/użytkownika dowiązywać do każdego "
+-#~ "portu UDP"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
++"Aplikacje użytkownika to wszystkie ograniczane aplikacje, które są "
++"uruchamiane przez użytkowników"
+-#~ msgid "All"
+-#~ msgstr "Wszystko"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:389
++msgstr "Aplikacja użytkownika"
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Pozwól roli aplikacji/użytkownika wywoływać bindresvport z 0. "
+-#~ "Dowiązywanie do portów 600-1024"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr "Piaskownica"
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr ""
-+
++msgstr "<b>Logowani użytkownicy</b>"
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Podaj listę portów lub zakresów portów UDP oddzielaną przecinkami, do "
+-#~ "których ta rola aplikacji/użytkownika dowiązuje, na przykład: 612, 650-660"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Niezarezerwowane porty (powyżej 1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Wybierz porty"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Pozwól roli aplikacji/użytkownika dowiązywać do każdego portu UDP powyżej "
+-#~ "1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>Porty UDP</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Podaj porty sieciowe, z którymi łączy się ta rola aplikacji/użytkownika"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Podaj listę portów lub zakresów portów TCP oddzielaną przecinkami, z "
+-#~ "którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Podaj listę portów lub zakresów portów UDP oddzielaną przecinkami, z "
+-#~ "którymi łączy się ta rola aplikacji/użytkownika, na przykład: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "Wspólne wspólne cechy aplikacji"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "Zapisuje komunikaty syslog\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "Tworzy/manipuluje plikami tymczasowymi w /tmp"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "Używa PAM do uwierzytelniania"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "Używa wywołań nsswitch lub getpw*"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "Używa D-Bus"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Wysyła komunikaty audytu"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "Współpracuje z terminalem"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "Wysyła e-maile"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "Wybierz pliki/foldery, którymi zarządza ta aplikacja"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Dodaj pliki/foldery, do których ta aplikacja będzie musiała \"zapisywać"
+-#~ "\". Pliki PID, pliki dziennika, pliki /var/lib..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Wybierz zmienne logiczne, których używa ta aplikacja"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Dodaj/usuń zmienne logiczne używane dla tej ograniczanej aplikacji/"
+-#~ "użytkownika"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "Wybierz folder, w którym utworzyć politykę"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Folder polityki"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Utworzone pliki polityki"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "To narzędzie utworzy: \n"
+-#~ "typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu "
+-#~ "powłoki(sh).\n"
+-#~ "Wykonaj skrypt powłoki jako root, aby skompilować/zainstalować oraz nadać "
+-#~ "etykiety plikom/folderom.  \n"
+-#~ "Użyj semanage lub useradd, aby zmapować logowanych użytkowników Linuksa "
+-#~ "do ról użytkowników.\n"
+-#~ "Umieść komputer w trybie zezwalania (setenforce 0). \n"
+-#~ "Zaloguj się jako użytkownik i przetestuj tę rolę użytkownika.\n"
+-#~ "Użyj audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "To narzędzie utworzy: \n"
+-#~ "typy wymuszania(te), kontekstu plików(fc), interfejsy(if) i skryptu "
+-#~ "powłoki(sh).\n"
+-#~ "\n"
+-#~ "Wykonaj skrypt powłoki jako root, aby skompilować/zainstalować oraz nadać "
+-#~ "etykiety plikom/folderom.  \n"
+-#~ "Umieść komputer w trybie zezwalania (setenforce 0). \n"
+-#~ "Uruchom/uruchom ponownie aplikację, aby utworzyć komunikaty AVC.\n"
+-#~ "Użyj audit2allow -R, aby utworzyć dodatkowe reguły dla pliku te.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "Dodaj okno dialogowe zmiennej logicznej"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "Nazwa zmiennej logicznej"
+-
+-#~ msgid "Role"
+-#~ msgstr "Rola"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "Istniejący_użytkownik"
+-
+-#~ msgid "Application"
+-#~ msgstr "Aplikacja"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s musi być folderem"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "Musisz wybrać użytkownika"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Wybierz ograniczany plik wykonywalny."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Wybierz ograniczany plik skryptu init."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "Wybierz pliki, które ograniczana aplikacja tworzy lub zapisuje"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Wybierz foldery, które ograniczana aplikacja posiada lub do nich zapisuje"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "Wybierz folder, w którym utworzyć pliki polityki"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Typ %s_t został już określony w bieżącej polityce.\n"
+-#~ "Czy chcesz kontynuować?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "Sprawdź nazwę"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Moduł %s.pp został już wczytany w bieżącej polityce.\n"
+-#~ "Czy chcesz kontynuować?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Musisz podać nazwę"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Musisz podać wykonywalny"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Skonfiguruj SELinuksa"
+-
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "Porty muszą być liczbą lub zakresem liczb od 1 do %d "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "Musisz podać nazwę dla ograniczanego procesu/użytkownika"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Typy USER nie mają dozwolonych plików wykonywalnych"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr "Zmodyfikuj istniejący wpis logowania użytkownika."
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "Tylko aplikacje DAEMON mogą używać skryptów init"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:472
++msgstr "Istniejące role użytkowników"
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog musi być zmienną logiczną "
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
++"Ten użytkownik będzie logował się do komputera tylko przez terminal lub "
++"zdalne logowanie. Domyślnie ten użytkownik nie będzie posiadał setuid, "
++"sieci, su ani sudo."
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Typy USER automatycznie uzyskują typ tmp"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:493
++msgstr "Minimalna rola użytkownika terminala"
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "Musisz podać ścieżkę do pliku wykonywalnego dla ograniczanego procesu"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
++"Ten użytkownik może logować się do komputera przez X Window lub terminal. "
++"Domyślnie ten użytkownik nie będzie posiadał setuid, sieci, sudo ani su"
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Plik typu wymuszania"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:514
++msgstr "Minimalna rola użytkownika X Window"
+-#~ msgid "Interface file"
+-#~ msgstr "Plik interfejsu"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
++"Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany, sudo i su"
+-#~ msgid "File Contexts file"
+-#~ msgstr "Plik kontekstów pliku"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:535
++msgstr "Rola użytkownika"
+-#~ msgid "Setup Script"
+-#~ msgstr "Ustaw skrypt"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
++"Użytkownik z pełną siecią, brakiem aplikacji setuid bez przemiany i su, może "
++"używać sudo dla ról administratorów root"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Typ portu\n"
+-#~ "SELinuksa"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:583
++msgstr "Rola użytkownika administratora"
+-#~ msgid "Protocol"
+-#~ msgstr "Protokół"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:645
++msgstr "<b>Użytkownicy root</b>"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Poziom\n"
+-#~ "MLS/MCS"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
++"Należy wybrać rolę użytkownika administratora root, jeśli ten użytkownik "
++"będzie używany do administrowania komputerem podczas uruchamiania jako root. "
++"Ten użytkownik nie będzie mógł zalogować się bezpośrednio do systemu."
+-#~ msgid "Port"
+-#~ msgstr "Port"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr "Rola użytkownika administratora root"
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Numer portu \"%s\" jest nieprawidłowy. 0 < NUMER_PORTU < 65536 "
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr "label104"
+-#~ msgid "List View"
+-#~ msgstr "Widok listy"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr "<b>Nazwa roli aplikacji lub użytkownika do ograniczenia:</b>"
+-#~ msgid "Group View"
+-#~ msgstr "Widok grupy"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:781
++msgstr "Nazwa"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Ochrona usługi SELinuksa"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr "Pełna ścieżka do ograniczanego pliku wykonywalnego."
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona acct"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:823
++msgstr "..."
+-#~ msgid "Admin"
+-#~ msgstr "Administracja"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:845
++msgstr "Unikalna nazwa dla roli ograniczanego aplikacji lub użytkownika."
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Pozwól wszystkim demonom zapisywać pliki core do /"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:873
++msgstr "Plik wykonywalny"
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "Pozwól wszystkim demonom używać nieprzydzielonych TTY"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:901
++msgstr "Skrypt inicjowania"
+-#~ msgid "User Privs"
+-#~ msgstr "Przywileje użytkowników"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
++"Pełna ścieżka do skryptu inicjowania używanego do uruchamiania ograniczanej "
++"aplikacji."
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa gadmin na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr "label105"
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa guest na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr "<b>Wybór istniejącej roli do zmodyfikowania:</b>"
+-#~ msgid "Memory Protection"
+-#~ msgstr "Ochrona pamięci"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr "Wybór roli użytkownika, które przemienić do domeny %s."
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Zezwól stos wykonywalny Javy"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr "label106"
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr "<b>Wybór ról, do których przemienić %s:</b>"
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Pozwól mount na montowanie wszystkich plików"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr "Wybór domen aplikacji, do których przemienić %s."
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Pozwól mount na montowanie wszystkich folderów"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr "label107"
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Zezwól stos wykonywalny MPlayera"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr "<b>Wybór ról użytkownika, do których przemienić %s:</b>"
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++msgstr "Wybór ról użytkownika, które przemienić do tych domen aplikacji."
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Pozwól SSH na uruchamianie ssh-keysign"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr "label108"
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa staff na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr "<b>Wybór domen, którymi %s będzie administrował:</b>"
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa sysadm na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr "Wybór domen, które ten użytkownik ma administrować."
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Pozwól nieograniczanym kontom użytkowników SELinuksa na wykonywanie "
+-#~ "plików folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr "label109"
+-#~ msgid "Network Configuration"
+-#~ msgstr "Konfiguracja sieci"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr "<b>Wybór dodatkowych ról dla %s:</b>"
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Pozwól pakietom bez etykiet na przepływanie przez sieć"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr "label111"
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa user na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr "<b>Porty sieciowe, do których %s dowiązuje:</b>"
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Pozwól nieograniczanym dyntrans do unconfined_execmem"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++msgstr "<b>Porty TCP</b>"
+-#~ msgid "Databases"
+-#~ msgstr "Bazy danych"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr "Umożliwia %s dowiązywanie do dowolnego portu UDP"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Pozwól użytkownikowi na łączenie z gniazdem MySQL"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
++msgstr "Wszystko"
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Pozwól użytkownikowi na łączenie z gniazdem PostgreSQL"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
++"Umożliwia %s wywoływanie bindresvport z wartością 0. Dowiązywanie do portów "
 +"600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "XServer"
+-#~ msgstr "Serwer X"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr "600-1024"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Pozwól klientom na zapisywanie do współdzielonej pamięci X Window"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++"Lista portów lub zakresów portów UDP oddzielonych przecinkami, do których %s "
++"może dowiązywać. Przykład: 612, 650-660"
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Pozwól kontom użytkowników SELinuksa xguest na wykonywanie plików w "
+-#~ "folderze domowym lub /tmp"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr "Niezastrzeżone porty (powyżej 1024)"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++msgstr "Wybór portów"
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Pozwól demonom na uruchamianie za pomocą NIS"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr "Umożliwia %s dowiązywanie do dowolnego portu UDP > 1024"
+-#~ msgid "Web Applications"
+-#~ msgstr "Aplikacje WWW"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:1958
++msgstr "<b>Porty UDP</b>"
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "Przemień użytkownika SELinuksa staff na domenę przeglądarki WWW"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr "label113"
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "Przemień użytkownika SELinuksa sysadm na domenę przeglądarki WWW"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr "<b>Wybór portów sieciowych, do których %s może się łączyć:</b>"
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "Przemień użytkownika SELinuksa user na domenę przeglądarki WWW"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr "Umożliwia %s łączenie z dowolnym portem TCP"
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "Przemień użytkownika SELinuksa xguest na domenę przeglądarki WWW"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
++"Lista portów lub zakresów portów TCP oddzielonych przecinkami, z którymi %s "
++"może się łączyć. Przykład: 612, 650-660"
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "Pozwól przeglądarkom WWW staff na zapisywanie do folderów domowych"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr "Umożliwia %s łączenie z dowolnym portem UDP"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla amandy"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2202
++"Lista portów lub zakresów portów UDP oddzielonych przecinkami, z którymi %s "
++"może się łączyć. Przykład: 612, 650-660"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla amavis"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr "label114"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona apmd"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr "<b>Wybór wspólnych cech aplikacji dla %s:</b>"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona arpwatch"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2221
++msgstr "Zapisuje komunikaty syslog\t"
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona auditd"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2240
++msgstr "Tworzy/manipuluje plikami tymczasowymi w /tmp"
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona automount"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2259
++msgstr "Używa PAM do uwierzytelniania"
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Avahi"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2278
++msgstr "Używa wywołań nsswitch lub getpw*"
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Bluetooth"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2297
-+#, fuzzy
++msgstr "Używa D-Bus"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona canna"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Chyba odosielania audit správy.\n"
-+
-+#: ../gui/polgen.glade:2316
++msgstr "Wysyła komunikaty audytu"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona cardmgr"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2335
++msgstr "Używa terminala"
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla serwera klastra"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
++msgstr "Wysyła e-maile"
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Pozwól cdrecord na odczytywanie różnej zawartości. NFS, Samba, urządzenia "
+-#~ "wymienne, pliki tymczasowe użytkownika i potencjalnie niebezpieczne pliki "
+-#~ "zawartości"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr "label115"
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ciped"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr "<b>Dodanie plików/katalogów, którymi %s zarządza</b>"
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona clamd"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
++"Dodanie plików/katalogów, którymi %s \"zarządza\". Pliki PID, pliki "
++"dziennika, pliki /var/lib..."
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla clamscan"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr "label116"
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla clvmd"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr "<b>Dodanie zmiennych logicznych z polityki %s:</b>"
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona comsat"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr "Dodanie/usunięcie zmiennych logicznych używanych przez domenę %s"
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona courier"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr "<b>Który katalog utworzyć dla polityki %s?</b>"
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona cpucontrol"
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3127
++msgstr "Katalog polityki"
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona cpuspeed"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:3200
++msgstr "Dodanie okna dialogowego zmiennej logicznej"
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:177
++msgstr "Nazwa zmiennej logicznej"
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona crond"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:184
++msgstr "Rola"
+-#~ msgid "Printing"
+-#~ msgstr "Drukowanie"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr "Istniejący_użytkownik"
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla serwera zaplecza cupsd"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:269
++msgstr "Aplikacja"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona cupsd"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+#, fuzzy
++msgstr "%s musi być katalogiem"
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla cupsd_lpd"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Musíte zadať rolu"
-+
-+#: ../gui/polgengui.py:453
++msgstr "Należy wybrać użytkownika"
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:464
++msgstr "Wybór ograniczanego pliku wykonywalnego."
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona CVS"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr ""
-+
-+#: ../gui/polgengui.py:474
++msgstr "Wybór ograniczanego pliku skryptu inicjowania."
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona cyrus"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:481
++msgstr "Wybór plików, które ograniczana aplikacja tworzy lub zapisuje"
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dbskkd"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
++"Wybór katalogów, które ograniczana aplikacja posiada lub do nich zapisuje"
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dbusd"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:554
++msgstr "Wybór katalogu, w którym utworzyć pliki polityki"
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla dccd"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++"Typ %s_t został już określony w bieżącej polityce.\n"
++"Kontynuować?"
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla dccifd"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr ""
-+
-+#: ../gui/polgengui.py:558
++msgstr "Sprawdź nazwę"
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla dccm"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+#, fuzzy
-+msgid "You must enter a name"
-+msgstr "Musíte zadať rolu"
-+
-+#: ../gui/polgengui.py:610
-+#, fuzzy
++"Moduł %s.pp został już wczytany w bieżącej polityce.\n"
++"Kontynuować?"
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ddt"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr "Należy dodać nazwę składającą się z liter i liczb, bez spacji."
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona devfsd"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Musíte zadať rolu"
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr "Należy podać plik wykonywalny"
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dhcpc"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr ""
-+
-+#: ../gui/polgen.py:174
++msgstr "Skonfiguruj SELinuksa"
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dhcpd"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr "Demon usług internetowych"
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dictd"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr ""
-+
-+#: ../gui/polgen.py:204
++msgstr "Porty muszą być liczbą lub zakresem liczb od 1 do %d "
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Pozwól sysadm_t na bezpośrednie uruchamianie demonów"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
++msgstr "Należy podać nazwę dla ograniczanego procesu/użytkownika"
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Evolution"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr ""
-+
-+#: ../gui/polgen.py:306
++"Nazwa musi być alfanumeryczna bez spacji. Proszę rozważyć użycie opcji \"-n "
++"NAZWA_MODUŁU\""
+-#~ msgid "Games"
+-#~ msgstr "Gry"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr "Typy roli użytkownika nie mogą być dowiązanymi plikami wykonywalnymi."
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla gier"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr "Tylko aplikacje demony mogą używać skryptu inicjowania..."
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla przeglądarek WWW"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr "use_resolve musi być wartością logiczną "
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Thunderbirda"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr ""
-+
-+#: ../gui/polgen.py:327
++msgstr "use_syslog musi być zmienną logiczną "
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona distccd"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr "use_kerberos musi być wartością logiczną "
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dmesg"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr "manage_krb5_rcache musi być wartością logiczną "
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dnsmasq"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr ""
-+
-+#: ../gui/polgen.py:729
++msgstr "Typy USER automatycznie uzyskują typ tmp"
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona dovecot"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr ""
-+
-+#: ../gui/polgen.py:848
-+#, fuzzy
++msgstr "Należy podać ścieżkę do pliku wykonywalnego dla ograniczanego procesu"
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona entropyd"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Vytváranie súboru vynútenia typov: %s.te"
-+
-+#: ../gui/polgen.py:849
-+#, fuzzy
++msgstr "Plik typu wymuszania"
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla fetchmail"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Rozhranie %s nie je definované"
-+
-+#: ../gui/polgen.py:850
-+#, fuzzy
++msgstr "Plik interfejsu"
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona fingerd"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Kontext súboru pre %s nie je definovaný"
-+
-+#: ../gui/polgen.py:851
++msgstr "Plik kontekstów pliku"
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona freshclam"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
++msgstr "Ustawienie skryptu"
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona fsdaemon"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n nazwaModułu ] [ -m ] [ -t typ ] [ plikWykonywalny | Nazwa ]\n"
++"prawidłowe typy:\n"
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona gpm"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr "Wymagany jest plik wykonywalny lub nazwa"
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr ""
-+
++msgstr "Port sieciowy"
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona gss"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
++"Typ portu\n"
++"SELinuksa"
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona HAL"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr ""
-+
++msgstr "Protokół"
+-#~ msgid "Compatibility"
+-#~ msgstr "Zgodność"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
++"Poziom\n"
++"MLS/MCS"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr ""
++msgstr "Port"
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr ""
++msgstr "Numer portu \"%s\" jest nieprawidłowy. 0 < NUMER_PORTU < 65536 "
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr ""
++msgstr "Widok listy"
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr ""
++msgstr "Widok grupy"
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -234011,28 +178885,27 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
-+#, fuzzy
 +msgid "SELinux Service Protection"
-+msgstr "SELinux užívateľ %s nie je definovaný"
++msgstr "Ochrona usługi SELinuksa"
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona acct"
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr ""
++msgstr "Administracja"
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr ""
++msgstr "Umożliwia wszystkim demonom zapisywać pliki core do /"
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr ""
++msgstr "Umożliwia wszystkim demonom używać nieprzydzielonych TTY"
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -234041,119 +178914,181 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr ""
++msgstr "Przywileje użytkowników"
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
++"Umożliwia kontom użytkowników SELinuksa gadmin wykonywanie plików w katalogu "
++"domowym lub /tmp"
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Nie audytuj rzeczy, o których wiemy, że są zepsute, ale nie niosą za sobą "
+-#~ "ryzyka"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
++"Umożliwia kontom użytkowników SELinuksa guest wykonywanie plików w katalogu "
++"domowym lub /tmp"
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona hostname"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr ""
-+
++msgstr "Ochrona pamięci"
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona hotplug"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr ""
-+
++msgstr "Zezwala na stos wykonywalny Javy"
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona howl"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr ""
-+
++msgstr "Mount"
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona hplip CUPS"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr ""
-+
++msgstr "Umożliwia mount montowanie wszystkich plików"
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla rotatelogs httpd"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr ""
-+
++msgstr "Umożliwia mount montowanie wszystkich katalogów"
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Usługa HTTPD"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr ""
-+
++msgstr "Zezwala na stos wykonywalny MPlayera"
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla suexec HTTP"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr ""
-+
++msgstr "SSH"
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona hwclock"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr ""
-+
++msgstr "Umożliwia SSH uruchamianie ssh-keysign"
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona i18n"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
++"Umożliwia kontom użytkowników SELinuksa staff wykonywanie plików w katalogu "
++"domowym lub /tmp"
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona imazesrv"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
++"Umożliwia kontom użytkowników SELinuksa sysadm wykonywanie plików w katalogu "
++"domowym lub /tmp"
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demonów potomnych inetd"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
++"Umożliwia nieograniczanym kontom użytkowników SELinuksa wykonywanie plików "
++"katalogu domowym lub /tmp"
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona inetd"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr ""
-+
++msgstr "Konfiguracja sieci"
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona innd"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr ""
-+
++msgstr "Umożliwia pakietom bez etykiet przepływanie przez sieć"
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona iptables"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
++"Umożliwia kontom użytkowników SELinuksa user wykonywanie plików w katalogu "
++"domowym lub /tmp"
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ircd"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr ""
-+
++msgstr "Umożliwia nieograniczane dyntrans do unconfined_execmem"
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona irqbalance"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr ""
-+
++msgstr "Bazy danych"
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona iSCSI"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikowi łączenie z gniazdem MySQL"
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona jabberd"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikowi łączenie z gniazdem PostgreSQL"
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr ""
-+
++msgstr "Serwer X"
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona kadmind"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr ""
-+
++msgstr "Umożliwia klientom zapisywanie do współdzielonej pamięci X Window"
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona klogd"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
++"Umożliwia kontom użytkowników SELinuksa xguest wykonywanie plików w katalogu "
++"domowym lub /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr ""
++msgstr "NIS"
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr ""
++msgstr "Umożliwia demonom uruchamianie za pomocą NIS"
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -234161,961 +179096,1542 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr ""
++msgstr "Aplikacje WWW"
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr ""
++msgstr "Przemienia użytkownika SELinuksa staff na domenę przeglądarki WWW"
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr ""
++msgstr "Przemienia użytkownika SELinuksa sysadm na domenę przeglądarki WWW"
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr ""
++msgstr "Przemienia użytkownika SELinuksa user na domenę przeglądarki WWW"
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr ""
++msgstr "Przemienia użytkownika SELinuksa xguest na domenę przeglądarki WWW"
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr ""
++msgstr "Umożliwia przeglądarkom WWW staff zapisywanie do katalogów domowych"
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla amandy"
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla amavis"
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona apmd"
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona arpwatch"
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona auditd"
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona automount"
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla Avahi"
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona Bluetooth"
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona canna"
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona cardmgr"
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla serwera klastra"
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
++"Umożliwia cdrecord odczytywanie różnej zawartości. NFS, Samba, urządzenia "
++"wymienne, pliki tymczasowe użytkownika i potencjalnie niebezpieczne pliki "
++"zawartości"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona ciped"
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona clamd"
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla clamscan"
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla clvmd"
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona comsat"
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona courier"
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona cpucontrol"
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona cpuspeed"
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr ""
++msgstr "Cron"
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona crond"
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr ""
++msgstr "Drukowanie"
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla serwera zaplecza cupsd"
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona cupsd"
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla cupsd_lpd"
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr ""
++msgstr "CVS"
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona CVS"
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona cyrus"
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dbskkd"
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dbusd"
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla dccd"
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla dccifd"
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla dccm"
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona ddt"
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona devfsd"
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dhcpc"
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dhcpd"
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dictd"
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr ""
++msgstr "Umożliwia sysadm_t bezpośrednie uruchamianie demonów"
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla Evolution"
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr ""
++msgstr "Gry"
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla gier"
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla przeglądarek WWW"
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla Thunderbirda"
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona distccd"
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dmesg"
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dnsmasq"
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona dovecot"
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona entropyd"
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla fetchmail"
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona fingerd"
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona freshclam"
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona fsdaemon"
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona gpm"
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr ""
++msgstr "NFS"
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona gss"
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona HAL"
 +
 +#: ../gui/selinux.tbl:87
-+#, fuzzy
 +msgid "Compatibility"
-+msgstr "Zostavujem pravidlá"
++msgstr "Zgodność"
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
++"Bez audytowania rzeczy, o których wiadomo, że są zepsute, ale nie niosą za "
++"sobą ryzyka"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona hostname"
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona hotplug"
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona howl"
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona hplip CUPS"
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla rotatelogs httpd"
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr ""
++msgstr "Usługa HTTPD"
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla suexec HTTP"
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona hwclock"
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona i18n"
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona imazesrv"
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demonów potomnych inetd"
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr ""
++msgstr "Wyłącza ochronę SELinuksa dla demona inetd"
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona innd"
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona krb5kdc"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona iptables"
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demonów ktalk"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona ircd"
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona kudzu"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona irqbalance"
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona locate"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona iSCSI"
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona LPD"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona jabberd"
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona lrrd"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr ""
-+
++msgstr "Kerberos"
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona LVM"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona kadmind"
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Mailman"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona klogd"
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr ""
+-#~ "Pozwól Evolution i Thunderbirdowi na odczytywanie plików użytkownika"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona krb5kdc"
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona mdadm"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demonów ktalk"
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona monopd"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona kudzu"
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Pozwól przeglądarce Mozilla na odczytywanie plików użytkownika"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona locate"
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona mrtg"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona LPD"
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona mysqld"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona lrrd"
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nagios"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona LVM"
+-#~ msgid "Name Service"
+-#~ msgstr "Usługa nazw"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Mailman"
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona named"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr ""
-+
++msgstr "Umożliwia Evolution i Thunderbirdowi odczytywanie plików użytkownika"
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nessusd"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona mdadm"
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Menedżera sieci"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona monopd"
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nfsd"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr ""
-+
++msgstr "Umożliwia przeglądarce Mozilla odczytywanie plików użytkownika"
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona mrtg"
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nmbd"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona mysqld"
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nrpe"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nagios"
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nscd"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr ""
-+
++msgstr "Usługa nazw"
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona nsd"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona named"
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ntpd"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nessusd"
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla oddjob"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla Menedżera sieci"
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nfsd"
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona OpenVPN"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr ""
-+
++msgstr "Samba"
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona PAM"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nmbd"
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Pegasusa"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nrpe"
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona perdition"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nscd"
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona portmap"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona nsd"
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona portslave"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona ntpd"
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla Postfiksa"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla oddjob"
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona PostgreSQL"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla oddjob_mkhomedir"
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona OpenVPN"
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Pozwól pppd na uruchamianie przez zwykłych użytkowników"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona PAM"
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona pptp"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla Pegasusa"
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona prelink"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona perdition"
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona privoxy"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona portmap"
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ptal"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona portslave"
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona PXE"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla Postfiksa"
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla pyzord"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona PostgreSQL"
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Quoty"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr ""
-+
++msgstr "pppd"
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona radiusd"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr ""
-+
++msgstr "Umożliwia uruchamianie pppd przez zwykłych użytkowników"
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona radvd"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona pptp"
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla rdisc"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona prelink"
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla readahead"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona privoxy"
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Pozwól programom na odczytywanie plików w niestandardowych położeniach "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona ptal"
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona restorecond"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona PXE"
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona RHGB"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla pyzord"
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla ricci"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Quoty"
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla ricci_modclusterd"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona radiusd"
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona rlogind"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona radvd"
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona rpcd"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla rdisc"
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla rshd"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla readahead"
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
++"Umożliwia programom odczytywanie plików w niestandardowych położeniach "
++"(default_t)"
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona rsync"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona restorecond"
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "Pozwól SSH na uruchamianie z inetd zamiast jako demon"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona RHGB"
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Pozwól Sambie na współdzielenie folderów NFS"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla ricci"
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Serwer uwierzytelniania SASL"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla ricci_modclusterd"
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Pozwól serwerowi uwierzytelniania SASL na odczytywanie /etc/shadow"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona rlogind"
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Pozwól serwerowi X Window na mapowanie regionów pamięci zarówno jako "
+-#~ "wykonywalną, jak i zapisywalną"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona rpcd"
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona saslauthd"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla rshd"
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona scannerdaemon"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr ""
-+
++msgstr "rsync"
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Nie pozwól na przemienienie na sysadm_t, dotyczy sudo i su"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona rsync"
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Nie pozwól żadnemu procesowi na wczytywanie modułów jądra"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr ""
-+
++msgstr "Umożliwia SSH uruchamianie z inetd zamiast jako demon"
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Nie pozwól żadnemu procesowi na modyfikowanie polityki jądra SELinuksa"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr ""
-+
++msgstr "Umożliwia Sambie współdzielenie katalogów NFS"
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Sendmail"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+#, fuzzy
 +msgid "SASL authentication server"
-+msgstr "Autentifikácia %s.\n"
-+
++msgstr "Serwer uwierzytelniania SASL"
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla setrans"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr ""
-+
++msgstr "Umożliwia serwerowi uwierzytelniania SASL odczytywanie /etc/shadow"
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona SETroubleshoot"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
++"Umożliwia serwerowi X Window mapowanie regionów pamięci zarówno jako "
++"wykonywalną, jak i zapisywalną"
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona slapd"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona saslauthd"
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona slrnpull"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona scannerdaemon"
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona smbd"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr ""
-+
++msgstr "Zabrania przemienienia na sysadm_t, dotyczy sudo i su"
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona snmpd"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr ""
-+
++msgstr "Zabrania wszystkim procesom wczytywania modułów jądra"
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Snort"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr ""
-+
++msgstr "Zabrania wszystkim procesom modyfikowania polityki jądra SELinuksa"
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona soundd"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Sendmail"
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona sound"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla setrans"
+-#~ msgid "Spam Protection"
+-#~ msgstr "Ochrona przed niechcianymi wiadomościami"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona SETroubleshoot"
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona spamd"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona slapd"
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Pozwól smapd na dostęp do folderów domowych"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona slrnpull"
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Pozwól demonowi Spam Assassin na dostęp do sieci"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona smbd"
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona speedmgmt"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona snmpd"
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Snort"
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Pozwól demonowi Squid na dostęp do sieci"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona soundd"
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Squid"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona sound"
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona SSH"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr ""
-+
++msgstr "Ochrona przed niechcianymi wiadomościami"
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Pozwól SSH na logowanie jako sysadm_r:sysadm_t"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona spamd"
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikom staff_r na wyszukiwanie w folderze domowym sysadm i "
+-#~ "odczytywanie plików (takich jak ~/.bashrc)"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr ""
-+
++msgstr "Umożliwia smapd dostęp do katalogów domowych"
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Uniwersalny tunel SSH"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr ""
-+
++msgstr "Umożliwia demonowi Spam Assassin dostęp do sieci"
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona stunnel"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona speedmgmt"
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "Pozwól demonowi stunnel na samodzielne uruchamianie, poza xinetd"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr ""
-+
++msgstr "Squid"
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona swat"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr ""
-+
++msgstr "Umożliwia demonowi Squid dostęp do sieci"
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona sxid"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Squid"
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona syslogd"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona SSH"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla systemowych zadań Crona"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
++msgstr "Umożliwia SSH logowanie jako sysadm_r:sysadm_t"
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona TCP"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
++"Umożliwia użytkownikom staff_r wyszukiwanie w katalogu domowym sysadm i "
++"odczytywanie plików (takich jak ~/.bashrc)"
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Telnet"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr ""
-+
++msgstr "Uniwersalny tunel SSH"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona tftpd"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona stunnel"
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona transproxy"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr ""
-+
++msgstr "Umożliwia demonowi stunnel samodzielne uruchamianie, poza xinetd"
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona udev"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona swat"
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona uml"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona sxid"
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Pozwól xinetd na uruchamianie nieograniczane, w tym wszystkich usług, "
+-#~ "jakie uruchamia, a które nie mają określonych przemian domen"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona syslogd"
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Pozwól skryptom rc na uruchamianie nieograniczane, w tym wszystkie demony "
+-#~ "uruchamiane przez skrypty rc, a które nie mają określonych przemian domen"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla systemowych zadań Crona"
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Pozwól RPM na uruchamianie nieograniczane"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona TCP"
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Pozwól uprzywilejowanym narzędziom, takim jak hotplug i insmod na "
+-#~ "uruchamianie nieograniczane"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Telnet"
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona updfstab"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona tftpd"
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona uptimed"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona transproxy"
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Pozwól user_r na osiąganie sysadm_r przez su, sudo lub userhelper. W "
+-#~ "innym wypadku tylko staff_r może to zrobić"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona udev"
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Pozwól użytkownikom na uruchamianie polecenia mount"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona uml"
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Pozwól zwykłym użytkownikom na bezpośredni dostęp do myszy (pozwól tylko "
+-#~ "serwerowi X Window)"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
++"Umożliwia xinetd uruchamianie nieograniczane, w tym wszystkich usług, jakie "
++"uruchamia, a które nie mają określonych przemian domen"
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Pozwól użytkownikom na wykonywanie polecenia dmesg"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
++"Umożliwia skryptom rc uruchamianie nieograniczane, w tym wszystkie demony "
++"uruchamiane przez skrypty rc, a które nie mają określonych przemian domen"
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikom na kontrolowanie interfejsów sieciowych (wymaga także "
+-#~ "USERCTL=true)"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr ""
-+
++msgstr "Umożliwia RPM nieograniczane uruchamianie"
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Pozwól normalnym użytkownikom na wykonywanie ping"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
++"Umożliwia uprzywilejowanym narzędziom, takim jak hotplug i insmod "
++"uruchamianie nieograniczane"
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikom na odczyt/zapis noextattrfile (FAT, CD-ROM, DYSKIETKA)"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona updfstab"
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Pozwól użytkownikom na odczyt/zapis urządzeń USB"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona uptimed"
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikom na uruchamianie serwerów TCP (dowiąż do portów i "
+-#~ "akceptuj połączenia z tych samych domen i zewnętrznych użytkowników) "
+-#~ "wyłączenie tego wymusza tryb pasywny FTP i może zmienić inne protokoły"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
++"Umożliwia user_r osiąganie sysadm_r przez su, sudo lub userhelper. W innym "
++"wypadku tylko staff_r może to zrobić"
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Pozwól użytkownikom na wykonywanie stat na plikach TTY"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikom uruchamianie polecenia mount"
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona uucpd"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
++"Umożliwia zwykłym użytkownikom bezpośredni dostęp do myszy (umożliwia tylko "
++"serwerowi X Window)"
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona VMWare"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona watchdog"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona winbind"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona XDM"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Pozwól XDM na logowanie jako sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona Xen"
+-
+-#~ msgid "XEN"
+-#~ msgstr "Xen"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr ""
+-#~ "Pozwól Xenowi na odczytywanie/zapisywanie fizycznych urządzeń dyskowych"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona xfs"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla kontroli Xena"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ypbind"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona hasła NIS"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona ypserv"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Wyłącz ochronę SELinuksa dla demona przesyłania NIS"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikowi SELinuksa webadm na zarządzanie folderami domowymi "
+-#~ "nieuprzywilejowanych użytkowników"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Pozwól użytkownikowi SELinuksa webadm na odczytywanie folderami domowymi "
+-#~ "nieuprzywilejowanych użytkowników"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Na pewno chcesz usunąć %s \"%s\"?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Usuń %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Dodaj %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Zmodyfikuj %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Zezwalanie"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Wymuszanie"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Zmienianie typu polityki spowoduje ponowne nadanie etykiet całemu "
+-#~ "systemowy plików podczas następnego uruchamiania. Ponowne nadawanie "
+-#~ "etykiet zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Czy "
+-#~ "chcesz kontynuować?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Zmienianie SELinuksa na wyłączony wymaga ponownego uruchomienia. Nie jest "
+-#~ "to zalecane. Jeśli później zdecydujesz się ponownie włączyć SELinuksa, "
+-#~ "system będzie wymagał ponownego nadania etykiet. Jeśli chcesz tylko "
+-#~ "zobaczyć, czy SELinux powoduje problem z systemem, możesz przejść do "
+-#~ "trybu zezwalania, który będzie tylko zapisywał błędy do dziennika i nie "
+-#~ "wymuszał polityki SELinuksa. Tryb zezwalania nie wymaga ponownego "
+-#~ "uruchomienia. Czy chcesz kontynuować?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Zmienianie SELinuksa na włączony spowoduje ponowne nadanie etykiet całemu "
+-#~ "systemowy plików podczas następnego uruchamiania. Ponowne nadawanie "
+-#~ "etykiet zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Czy "
+-#~ "chcesz kontynuować?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c) 2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Dodaj mapowanie loginu SELinuksa"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Dodaj porty sieciowe SELinuksa"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "Typ SELinuksa"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "TCP\n"
+-#~ "UDP"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Poziom MLS/MCS\n"
+-#~ "SELinuksa"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Określenie pliku"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Typ pliku"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "wszystkie pliki\n"
+-#~ "zwykłe pliki\n"
+-#~ "folder\n"
+-#~ "urządzenie znakowe\n"
+-#~ "urządzenie blokowe\n"
+-#~ "gniazdo\n"
+-#~ "dowiązanie symboliczne\n"
+-#~ "nazwany potok\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Dodaj użytkownika SELinuksa"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Administracja SELinuksa"
+-
+-#~ msgid "Add"
+-#~ msgstr "Dodaj"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Właściwości"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Usuń"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Wybierz obiekt zarządzania"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Wybierz:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Domyślny systemowy tryb wymuszania"
+-
+-#~ msgid ""
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
+-#~ msgstr ""
+-#~ "Wyłączone\n"
+-#~ "Zezwalanie\n"
+-#~ "Wymuszanie\n"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikom wykonywanie polecenia dmesg"
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Obecny tryb wymuszania"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
++"Umożliwia użytkownikom kontrolowanie interfejsów sieciowych (wymaga także "
++"USERCTL=true)"
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Domyślny systemowy typ polityki: "
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr ""
-+
++msgstr "Umożliwia zwykłym użytkownikom wykonywanie ping"
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Wybierz, czy chcesz ponownie nadać etykiety całemu systemowi plików "
+-#~ "podczas następnego ponownego uruchomienia. Ponowne nadanie etykiet może "
+-#~ "zająć dużo czasu, w zależności od rozmiaru systemu. Jeśli zmieniasz typy "
+-#~ "polityki lub przechodzisz z wyłączonego do wymuszania, ponowne nadanie "
+-#~ "etykiet jest wymagane."
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
++"Umożliwia użytkownikom odczyt/zapis noextattrfile (FAT, CD-ROM, DYSKIETKA)"
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Ponownie nadaj etykiety podczas następnego ponownego uruchomienia."
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikom odczyt/zapis urządzeń USB"
+-#~ msgid "label37"
+-#~ msgstr "label37"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
++"Umożliwia użytkownikom uruchamianie serwerów TCP (dowiązanie do portów i "
++"akceptowanie połączenia z tych samych domen i zewnętrznych użytkowników) "
++"wyłączenie tego wymusza tryb pasywny FTP i może zmienić inne protokoły"
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Przywróć ustawienia zmiennych logicznych do domyślnych systemu"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr ""
-+
++msgstr "Umożliwia użytkownikom wykonywanie stat na plikach TTY"
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Przełącz między dostosowanymi i wszystkimi zmiennymi logicznymi"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona uucpd"
+-#~ msgid "Run booleans lockdown wizard"
+-#~ msgstr "Uruchom kreatora blokowania zmiennych logicznych"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona VMWare"
+-#~ msgid "Lockdown..."
+-#~ msgstr "Zablokuj..."
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona watchdog"
+-#~ msgid "Filter"
+-#~ msgstr "Filtr"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona winbind"
+-#~ msgid "label50"
+-#~ msgstr "label50"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona XDM"
+-#~ msgid "Add File Context"
+-#~ msgstr "Dodaj kontekst pliku"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr ""
-+
++msgstr "Umożliwia XDM logowanie jako sysadm_r:sysadm_t"
+-#~ msgid "Modify File Context"
+-#~ msgstr "Zmodyfikuj kontekst pliku"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona Xen"
+-#~ msgid "Delete File Context"
+-#~ msgstr "Usuń kontekst pliku"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr ""
-+
++msgstr "Xen"
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Przełącz między wszystkimi i dostosowanymi kontekstami plików"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
++"Umożliwia Xenowi odczytywanie/zapisywanie fizycznych urządzeń dyskowych"
+-#~ msgid "label38"
+-#~ msgstr "label38"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona xfs"
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Dodaj mapowanie użytkownika SELinuksa"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla kontroli Xena"
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Zmodyfikuj mapowanie użytkownika SELinuksa"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona ypbind"
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Usuń mapowanie użytkownika SELinuksa"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona hasła NIS"
+-#~ msgid "label39"
+-#~ msgstr "label39"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona ypserv"
+-#~ msgid "Add Translation"
+-#~ msgstr "Dodaj tłumaczenie"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr ""
-+
++msgstr "Wyłącza ochronę SELinuksa dla demona przesyłania NIS"
+-#~ msgid "Modify Translation"
+-#~ msgstr "Zmodyfikuj tłumaczenie"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
++"Umożliwia użytkownikowi SELinuksa webadm zarządzanie katalogami domowymi "
++"nieuprzywilejowanych użytkowników"
+-#~ msgid "Delete Translation"
+-#~ msgstr "Usuń tłumaczenie"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
++"Umożliwia użytkownikowi SELinuksa webadm odczytywanie katalogów domowych "
++"nieuprzywilejowanych użytkowników"
+-#~ msgid "label41"
+-#~ msgstr "label41"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr ""
-+
++msgstr "Na pewno usunąć %s \"%s\"?"
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Zmodyfikuj użytkownika SELinuksa"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr ""
-+
++msgstr "Usuń %s"
+-#~ msgid "label40"
+-#~ msgstr "label40"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr ""
-+
++msgstr "Dodaj %s"
+-#~ msgid "Add Network Port"
+-#~ msgstr "Dodaj port sieciowy"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr "Modyfikuj %s"
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Edytuj port sieciowy"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr "Zezwalanie"
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Usuń port sieciowy"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
++msgstr "Wymuszanie"
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Przełącz między dostosowanymi i wszystkimi portami"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr ""
-+
++msgstr "Stan"
+-#~ msgid "label42"
+-#~ msgstr "label42"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
++"Zmienianie typu polityki spowoduje ponowne nadanie etykiet całemu systemowy "
++"plików podczas następnego uruchamiania. Ponowne nadawanie etykiet zajmuje "
++"dużo czasu, w zależności od rozmiaru systemu plików. Kontynuować?"
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Utwórz nowy moduł polityki"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -235125,6 +180641,12 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
++"Zmienianie SELinuksa na wyłączony wymaga ponownego uruchomienia. Nie jest to "
++"zalecane. Jeśli później SELinux zostanie ponownie włączony, to system będzie "
++"wymagał ponownego nadania etykiet. można przejść do trybu zezwalania, który "
++"będzie tylko zapisywał błędy do dziennika i nie wymuszał polityki SELinuksa, "
++"by zobaczyć, czy SELinux powoduje problem z systemem. Tryb zezwalania nie "
++"wymaga ponownego uruchomienia. Kontynuować?"
 +
 +#: ../gui/statusPage.py:152
 +msgid ""
@@ -235132,48 +180654,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
++"Zmienianie SELinuksa na włączony spowoduje ponowne nadanie etykiet całemu "
++"systemowy plików podczas następnego uruchamiania. Ponowne nadawanie etykiet "
++"zajmuje dużo czasu, w zależności od rozmiaru systemu plików. Kontynuować?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr ""
++msgstr "system-config-selinux"
 +
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
++"Copyright (c) 2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr ""
++msgstr "Dodanie mapowania loginu SELinuksa"
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr ""
++msgstr "Dodanie portów sieciowych SELinuksa"
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux typ je požadovaný"
++msgstr "Typ SELinuksa"
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
-+msgstr ""
++msgstr "Określenie pliku"
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
++msgstr "Typ pliku"
+-#~ msgid "Load policy module"
+-#~ msgstr "Wczytaj moduł polityki"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -235184,1220 +180705,339 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sk.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
++"wszystkie pliki\n"
++"zwykłe pliki\n"
++"katalog\n"
++"urządzenie znakowe\n"
++"urządzenie blokowe\n"
++"gniazdo\n"
++"dowiązanie symboliczne\n"
++"nazwany potok\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr ""
++msgstr "MLS"
 +
-+#: ../gui/system-config-selinux.glade:1029
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Nemožno pridať SELinux užívateľa %s"
++msgstr "Dodanie użytkownika SELinuksa"
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr ""
++msgstr "Administracja SELinuksem"
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr ""
++msgstr "Dodaj"
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr ""
++msgstr "_Właściwości"
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr ""
++msgstr "_Usuń"
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr ""
++msgstr "Wybór obiektu zarządzania"
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr ""
++msgstr "<b>Wybór:</b>"
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr ""
++msgstr "Domyślny systemowy tryb wymuszania"
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
++"Wyłączone\n"
++"Zezwalanie\n"
++"Wymuszanie\n"
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Usuń wczytywalny moduł polityki"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
++msgstr "Obecny tryb wymuszania"
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Włącz/wyłącz dodatkowe reguły audytu, które normalnie nie są raportowane "
+-#~ "do plików dziennika."
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
++msgstr "Domyślny systemowy typ polityki: "
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
++"Proszę wybrać, czy ponownie nadać etykiety całemu systemowi plików podczas "
++"następnego ponownego uruchomienia. Ponowne nadanie etykiet może zająć dużo "
++"czasu, w zależności od rozmiaru systemu. Jeśli zmieniany jest typ polityki "
++"lub przechodzi z trybu wyłączonego do wymuszania, ponowne nadanie etykiet "
++"jest wymagane."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr ""
++msgstr "Ponownie nadanie etykiet podczas następnego ponownego uruchomienia."
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr ""
++msgstr "label37"
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr ""
++msgstr "Przywrócenie ustawienia zmiennych logicznych do domyślnych systemu"
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr ""
++msgstr "Przełączenie między dostosowanymi i wszystkimi zmiennymi logicznymi"
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr ""
++msgstr "Uruchomienie kreatora blokowania zmiennych logicznych"
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr ""
++msgstr "Zablokuj..."
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr ""
++msgstr "Filtr"
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr ""
++msgstr "label50"
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr ""
++msgstr "Dodanie kontekstu pliku"
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr ""
++msgstr "Modyfikacja kontekstu pliku"
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr ""
++msgstr "Usunięcie kontekstu pliku"
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr ""
++msgstr "Przełączenie między wszystkimi i dostosowanymi kontekstami plików"
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr ""
++msgstr "label38"
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr ""
++msgstr "Dodanie mapowania użytkownika SELinuksa"
 +
-+#: ../gui/system-config-selinux.glade:2203
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Nemožno zmeniť SELinux užívateľa %s"
++msgstr "Modyfikacja mapowania użytkownika SELinuksa"
 +
-+#: ../gui/system-config-selinux.glade:2219
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Nemožno zmazať SELinux užívateľa %s"
++msgstr "Usunięcie mapowania użytkownika SELinuksa"
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr ""
++msgstr "label39"
 +
-+#: ../gui/system-config-selinux.glade:2374
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Nemožno pridať SELinux užívateľa %s"
++msgstr "Dodanie użytkownika"
 +
-+#: ../gui/system-config-selinux.glade:2390
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Nemožno zmeniť SELinux užívateľa %s"
++msgstr "Modyfikacja użytkownika"
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr ""
++msgstr "Usunięcie użytkownika"
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
++msgstr "label41"
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr ""
++msgstr "Dodanie portu sieciowego"
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr ""
++msgstr "Modyfikacja portu sieciowego"
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr ""
++msgstr "Usunięcie portu sieciowego"
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr ""
++msgstr "Przełączenie między dostosowanymi i wszystkimi portami"
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr ""
++msgstr "label42"
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr ""
++msgstr "Utworzenie nowego modułu polityki"
 +
-+#: ../gui/system-config-selinux.glade:3007
-+#, fuzzy
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Nemožno načítať pravidlo z pamäte."
++msgstr "Wczytanie modułu polityki"
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr ""
++msgstr "Usunięcie wczytywalnego modułu polityki"
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
++"Włączenie/wyłączenie dodatkowych reguł audytu, które zwykle nie są "
++"raportowane do plików dziennika."
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr ""
++msgstr "label44"
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
++msgstr "Zmiana trybu procesu na zezwalanie."
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Poziom wrażliwości"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
++msgstr "Zmiana trybu procesu na wymuszanie"
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Użytkownik SELinuksa \"%s\" jest wymagany"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr ""
++msgstr "Domena procesu"
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr ""
++msgstr "label59"
 +
 +#: ../gui/usersPage.py:138
-+#, fuzzy, python-format
++#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux typ je požadovaný"
-+
-+#~ msgid "translations not supported on non-MLS machines"
-+#~ msgstr "preklady nie sú podporované na nie-MLS strojoch"
- #~ msgid "Requires value"
- #~ msgstr "Požaduje hodnotu"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils-2.0.85/po/sl.po
---- nsapolicycoreutils/po/sl.po        2011-02-17 15:11:25.560727684 -0500
-+++ policycoreutils-2.0.85/po/sl.po    2011-02-18 16:03:41.443976256 -0500
-@@ -8,14 +8,32 @@
++msgstr "Użytkownik SELinuksa \"%s\" jest wymagany"
+diff --git a/policycoreutils/po/policycoreutils.pot b/policycoreutils/po/policycoreutils.pot
+index 86ed212..2501222 100644
+--- a/policycoreutils/po/policycoreutils.pot
++++ b/policycoreutils/po/policycoreutils.pot
+@@ -8,7 +8,7 @@ msgid ""
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
  msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
  msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
  msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
  msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
  msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
  msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr ""
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
  msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
  msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
- msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
- msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
  msgstr ""
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
  msgstr ""
 +
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
 +
@@ -236406,13 +181046,13 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
 +
@@ -236434,7 +181074,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +"Type"
 +msgstr ""
 +
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
 +
@@ -236461,7 +181101,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgid "Login '%s' is required"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
 +
@@ -236469,15 +181109,11 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgid "Module Name"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
 +
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
 +
@@ -236502,481 +181138,541 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgid "translator-credits"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:260
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:320
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:322
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:341
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:472
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:493
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:514
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:516
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:535
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:537
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:645
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:901
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2111
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:558
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
 +
-+#: ../gui/polgengui.py:610
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
 +
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
 +
-+#: ../gui/polgen.py:174
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
 +
-+#: ../gui/polgen.py:204
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
 +
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
 +
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:306
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -237009,7 +181705,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -238137,18 +182833,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -238189,7 +182881,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -238198,25 +182889,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -238228,58 +182913,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -238287,169 +182972,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -238457,1570 +183125,2889 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sl.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils-2.0.85/po/sq.po
---- nsapolicycoreutils/po/sq.po        2011-02-17 15:11:25.382730625 -0500
-+++ policycoreutils-2.0.85/po/sq.po    2011-02-18 16:03:41.443976256 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/pt.po b/policycoreutils/po/pt.po
+index fcb817e..c3cf65d 100644
+--- a/policycoreutils/po/pt.po
++++ b/policycoreutils/po/pt.po
+@@ -1,23 +1,23 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
++# Rui Gouveia <rui.gouveia@gmail.com>, 2010.
++# Sérgio Mesquita <smesquita@gmail.com>, 2010.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-10-02 12:37+0100\n"
+-"Last-Translator: José Nuno Coelho Pires <jncp@netcabo.pt>\n"
+-"Language-Team: pt <kde-i18n-pt@kde.org>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Portuguese <trans-pt@lists.fedoraproject.org>\n"
++"Language: pt\n"
  "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Type: text/plain; charset=utf-8\n"
++"Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-POFile-SpellExtra: SETUID tty ze odt tcp ConfidencialEmpresa getpass PAM\n"
+-"X-POFile-SpellExtra: TTY serange PAMTTY SELinux semodule chcat init\n"
+-"X-POFile-SpellExtra: newrole setype udp runinit passwd pp semanage\n"
+-"X-POFile-SpellExtra: KEEPCAPS bq shadow UID MLS seuser dev SIGHUP\n"
+-"X-POFile-SpellExtra: novocontexto argv Polgen UIDs nsswitch Init Hat Red\n"
+-"X-POFile-SpellExtra: if tmp lib label lu var avc inetd fc xinetd usesyslog\n"
+-"X-POFile-SpellExtra: Fich audit syslog bindresvport XWindows setenforce sh\n"
+-"X-POFile-SpellExtra: allow MCS carregável\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
+@@ -46,7 +46,7 @@ msgstr "Senha:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "O seu item não foi encontrado no ficheiro de senhas 'shadow'.\n"
++msgstr "Os seus dados não foram encontrados no ficheiro de senhas 'shadow'.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+@@ -61,18 +61,18 @@ msgstr "run_init: a senha do %s é incorrecta\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr "Não foi possível aceder ao ficheiro %s\n"
++msgstr "Não foi possível abrir o ficheiro %s\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+ msgid "No context in file %s\n"
+-msgstr "Não existe qualquer contexto no ficheiro %s\n"
++msgstr "Não existe contexto no ficheiro %s\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
  msgstr ""
+-"Desculpe, mas o 'run_init' só poderá ser usado num 'kernel' com SELinux.\n"
++"Desculpe, o 'run_init' só poderá ser utilizado num kernel com SELinux.\n"
+ #: ../run_init/run_init.c:380
+ #, c-format
+@@ -82,7 +82,7 @@ msgstr "a autenticação falhou.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Não foi possível mudar o contexto de execução para %s.\n"
++msgstr "Não foi possível definir o contexto de execução para %s.\n"
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+@@ -94,68 +94,65 @@ msgstr "Para tornar este pacote de políticas activo, execute:"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "global"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+-msgstr "Não foi possível iniciar o descritor do 'semanage'"
++msgstr "Não foi possível iniciar o descritor do SELinux (\"semanage\")"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-"A política do SELinux não é gerida ou não é possível aceder ao armazém."
++msgstr "A política do SELinux não é gerida ou não é possível aceder aos dados."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "Não é possível ler o armazém de políticas."
++msgstr "Não é possível ler os dados de políticas."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "Não é possível estabelecer uma ligação ao 'semanage'"
++msgstr ""
++"Não é possível estabelecer uma ligação ao gestor do SELinux (\"semanage\")"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Não foi possível definir o intervalo do MLS do %s"
++msgstr "Não foi testar o estado de activação do MLS"
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "Ainda não está implementado"
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Transacção Semanage já está em curso"
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+-msgstr "Não foi possível iniciar a transacção do 'semanage'"
++msgstr ""
++"Não foi possível iniciar uma transacção do gestor do SELinux (\"semanage\")"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Não foi possível iniciar a transacção do 'semanage'"
++msgstr "Não foi possível finalizar a transacção semanage"
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Transacção Semanage não está em curso"
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Não foi possível listar os utilizadores do SELinux"
++msgstr "Não foi possível listar os módulos SELinux"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Nome do Módulo"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versão"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "Inactivo"
++msgstr "Desactivado"
+ #: ../semanage/seobject.py:322
+ #, python-format
+@@ -163,9 +160,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Não foi possível adicionar o papel %s para o %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -177,24 +174,24 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissivo"
++msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissivo"
++msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
++"Não foi possível definir o domínio permissivo %s (instalação do módulo "
++"falhou)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+-msgstr ""
++msgstr "Não foi possível remover o domínio permissivo %s (remoção falhou)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -205,19 +202,20 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr ""
+-msgstr "Não é possível criar uma chave para o %s"
++msgstr "Não foi possível criar uma chave para o %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
  msgstr ""
+-"Não foi possível ver se o mapeamento de autenticação do %s está definido"
++"Não foi possível verificar se o mapeamento de autenticação para %s está "
++"definido"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
  msgid "Linux Group %s does not exist"
- msgstr ""
+-msgstr "O utilizador de Linux %s não existe"
++msgstr "O Grupo Linux %s não existe"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+@@ -227,58 +225,59 @@ msgstr "O utilizador de Linux %s não existe"
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr ""
+-msgstr "Não foi possível criar o mapeamento de autenticação do %s"
++msgstr "Não foi possível criar o mapeamento de autenticação para %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr ""
+-msgstr "Não foi possível definir o nome do %s"
++msgstr "Não foi possível definir o nome para %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr ""
+-msgstr "Não foi possível definir o intervalo do MLS do %s"
++msgstr "Não foi possível definir o intervalo MLS para %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr ""
+-msgstr "Não foi possível definir o utilizador do SELinux para o %s"
++msgstr "Não foi possível definir o utilizador SELinux para %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-msgstr "Não foi possível adicionar o mapeamento de autenticação do %s"
++msgstr "Não foi possível adicionar o mapeamento de autenticação para %s"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr ""
+-msgstr "Necessita do 'seuser' ou do 'serange'"
++msgstr ""
++"Requer utilizador SELinux (\"seuser\") ou intervalo SELinux (\"serange\")"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
- msgstr ""
+-msgstr "O mapeamento de autenticação do %s não está definido"
++msgstr "O mapeamento de autenticação para %s não está definido"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr ""
+-msgstr "Não foi possível pesquisar o 'seuser' por %s"
++msgstr "Não foi possível encontrar o utilizador SELinux (\"seuser\") para %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr ""
+-msgstr "Não foi possível modificar o mapeamento de autenticação do %s"
++msgstr "Não foi possível modificar o mapeamento de autenticação para %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
  msgstr ""
+-"O mapeamento de autenticação do %s está definido na política e não pode ser "
++"O mapeamento de autenticação para %s está definido na política, não pode ser "
+ "removido"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr ""
+-msgstr "Não foi possível remover o mapeamento de autenticação do %s"
++msgstr "Não foi possível remover o mapeamento de autenticação para %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
+@@ -286,24 +285,29 @@ msgid "Could not list login mappings"
+ msgstr "Não foi possível listar os mapeamentos de autenticação"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "Nome da Conta"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+-msgstr "Utilizador do SELinux"
++msgstr "Utilizador SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-msgstr "Intervalo do MLS/MCS"
++msgstr "Intervalo MLS/MCS"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-msgstr "Não foi possível verificar se o utilizador %s do SELinux está definido"
++msgstr "Não foi possível verificar se o utilizador SELinux %s está definido"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
+@@ -312,81 +316,81 @@ msgid "Could not query user for %s"
+ msgstr "Não foi possível pesquisar o utilizador %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Não foi possível adicionar o contexto do ficheiro %s"
++msgstr "Precisa de adicionar pelo menos um perfil para %s"
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr ""
+-msgstr "Não foi possível criar o utilizador do SELinux do %s"
++msgstr "Não foi possível criar o utilizador SELinux para %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr ""
+-msgstr "Não foi possível adicionar o papel %s para o %s"
++msgstr "Não foi possível adicionar o perfil %s para %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr ""
+-msgstr "Não foi possível definir o nível do MLS do %s"
++msgstr "Não foi possível definir o nível MLS para %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr ""
+-msgstr "Não foi possível adicionar o prefixo %s do %s"
++msgstr "Não foi possível adicionar o prefixo %s para %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr ""
+-msgstr "Não foi possível extrair a chave do %s"
++msgstr "Não foi possível extrair a chave para %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr ""
+-msgstr "Não foi possível adicionar o utilizador do SELinux %s"
++msgstr "Não foi possível adicionar o utilizador SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr ""
+-msgstr "É necessário um prefixo, papéis, um nível ou um intervalo"
++msgstr "Requer prefixo, perfil, nível ou intervalo"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
- msgstr ""
+-msgstr "É necessário um prefixo ou papéis"
++msgstr "Requer prefixo ou perfil"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+-msgstr "O utilizador do SELinux %s não está definido"
++msgstr "O utilizador SELinux %s não está definido"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr ""
+-msgstr "Não foi possível modificar o utilizador do SELinux %s"
++msgstr "Não foi possível modificar o utilizador SELinux %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
  msgstr ""
+-"O utilizador do SELinux %s está definido na política, não pode ser removido"
++"O utilizador SELinux %s está definido na política, não pode ser removido"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr ""
+-msgstr "Não foi possível remover o utilizador do SELinux %s"
++msgstr "Não foi possível remover o utilizador SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr ""
+-msgstr "Não foi possível listar os utilizadores do SELinux"
++msgstr "Não foi possível listar os utilizadores SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr ""
+-msgstr "Não foi possível listar os papéis do utilizador %s"
++msgstr "Não foi possível listar os perfis para o utilizador %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr ""
+-msgstr "Legendagem"
++msgstr "Etiquetas"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr ""
+@@ -398,28 +402,28 @@ msgstr "Prefixo"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
- msgstr ""
+-msgstr "Nível do MCS"
++msgstr "Nível MCS"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr ""
+-msgstr "Intervalo do MCS"
++msgstr "Intervalo MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
+-msgstr "Papéis do SELinux"
++msgstr "Perfis SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr ""
+-msgstr "É obrigatório o protocolo 'udp' ou 'tcp'"
++msgstr "É obrigatório o protocolo udp ou tcp"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+ msgstr "O porto é obrigatório"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "O prefixo %s é inválido"
++msgstr ""
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+@@ -444,37 +448,37 @@ msgstr "O porto %s/%s já está definido"
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr ""
+-msgstr "Não foi possível criar o porto %s/%s"
++msgstr "Não foi possível criar o porto para %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível criar o contexto do %s/%s"
++msgstr "Não foi possível criar o contexto para %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível definir o utilizador no contexto do porto %s/%s"
++msgstr "Não foi possível definir o utilizador no contexto do porto para %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível definir o papel no contexto do porto %s/%s"
++msgstr "Não foi possível definir o perfil no contexto do porto para %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível definir o tipo no contexto do porto %s/%s"
++msgstr "Não foi possível definir o tipo no contexto do porto para %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível definir os campos de MLS no contexto do porto %s/%s"
++msgstr "Não foi possível definir os campos mls no contexto do porto para %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr ""
+-msgstr "Não foi possível definir o contexto do porto %s/%s"
++msgstr "Não foi possível definir o contexto do porto para %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
+@@ -484,11 +488,11 @@ msgstr "Não foi possível adicionar o porto %s/%s"
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
  msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+-msgstr "Necessita de um 'setype' ou 'serange'"
++msgstr "Requer tipo SELinux (\"setype\") ou intervalo SELinux (\"serange\")"
+ #: ../semanage/seobject.py:1049
+ msgid "Requires setype"
+-msgstr "Necessita de um 'setype'"
++msgstr "Requer tipo SELinux (\"setype\")"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+@@ -506,14 +510,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Não foi possível modificar o porto %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr ""
+ msgstr "Não foi possível listar os portos"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "Não foi possível remover o porto %s/%s"
++msgstr "Não foi possível remover o porto %s"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+@@ -531,29 +534,28 @@ msgstr "Não foi possível listar os portos"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr ""
+-msgstr "Tipo de Porto do SELinux"
++msgstr "Tipo de Porto SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr ""
+ msgstr "Protocolo"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "Número de Porto"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "O porto é obrigatório"
++msgstr "É obrigatório o Endereço do Nó"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
+-msgstr ""
++msgstr "Protocolo desconhecido ou em falta"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
- msgstr ""
+-msgstr "O Tipo do SELinux é obrigatório"
++msgstr "O Tipo SELinux é obrigatório"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -561,94 +563,92 @@ msgstr "O Tipo do SELinux é obrigatório"
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr ""
+-msgstr "Não foi possível criar a chave do %s"
++msgstr "Não foi possível criar a chave para %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "Não foi possível verificar se o porto %s/%s está definido"
++msgstr "Não foi possível verificar se o endereço %s está definido"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "Não é possível criar uma chave para o %s"
++msgstr "Não foi possível criar um endereço para %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr ""
+-msgstr "Não foi possível criar o contexto de %s"
++msgstr "Não foi possível criar o contexto para %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "Não foi possível definir o nome do %s"
++msgstr "Não foi possível definir uma máscara para %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o utilizador no contexto do ficheiro %s"
++msgstr "Não foi possível definir o utilizador no contexto do endereço para %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o papel no contexto do ficheiro %s"
++msgstr "Não foi possível definir o perfil no contexto do endereço para %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o tipo no contexto do ficheiro %s"
++msgstr "Não foi possível definir o tipo no contexto do endereço para %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "Não foi possível definir os campos do MLS no contexto do ficheiro %s"
++msgstr "Não foi possível definir os campos mls no contexto do endereço para %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o contexto do ficheiro %s"
++msgstr "Não foi possível definir o contexto do endereço para %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "Não foi possível adicionar o porto %s/%s"
++msgstr "Não foi possível adicionar o endereço %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "O porto %s/%s não está definido"
++msgstr "O endereço %s não está definido"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "Não foi possível pesquisar o porto %s/%s"
++msgstr "Não foi possível pesquisar o endereço %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "Não foi possível modificar o porto %s/%s"
++msgstr "Não foi possível modificar o endereço %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "O porto %s/%s está definido na política, não pode ser removido"
++msgstr "O endereço %s está definido na política, não pode ser removido"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
+-msgstr "Não foi possível remover a interface %s"
++msgstr "Não foi possível remover o endereço %s"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Não foi possível remover o mapeamento de autenticação do %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Não foi possível listar os portos"
++msgstr "Não foi possível listar os endereços"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -659,37 +659,38 @@ msgstr "Não foi possível verificar se a interface %s está definida"
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr ""
+-msgstr "Não foi possível criar a interface %s"
++msgstr "Não foi possível criar a interface para %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o utilizador no contexto da interface %s"
++msgstr "Não foi possível definir o utilizador no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o papel no contexto da interface %s"
++msgstr "Não foi possível definir o perfil no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o tipo no contexto da interface %s"
++msgstr "Não foi possível definir o tipo no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-msgstr "Não foi possível definir os campos de MLS no contexto da interface %s"
++msgstr ""
++"Não foi possível definir os campos mls no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o contexto da interface %s"
++msgstr "Não foi possível definir o contexto da interface para %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+-msgstr "Não foi possível definir o contexto da mensagem %s"
++msgstr "Não foi possível definir o contexto da mensagem para %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1495
  #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+@@ -722,9 +723,8 @@ msgid "Could not delete interface %s"
+ msgstr "Não foi possível remover a interface %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Não foi possível remover a interface %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
+@@ -732,16 +732,16 @@ msgstr "Não foi possível listar as interfaces"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr ""
+-msgstr "Interface do SELinux"
++msgstr "Interface SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
+ msgstr "Contexto"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "O contexto do ficheiro %s já está definido"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -749,29 +749,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "O utilizador de Linux %s não existe"
++msgstr ""
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o utilizador no contexto do ficheiro %s"
++msgstr "Não foi possível definir o utilizador no contexto do ficheiro para %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o papel no contexto do ficheiro %s"
++msgstr "Não foi possível definir o perfil no contexto do ficheiro para %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-msgstr "Não foi possível definir os campos do MLS no contexto do ficheiro %s"
++msgstr "Não foi possível definir os campos mls no contexto do ficheiro para %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
- msgstr ""
+-msgstr "Especificação do Ficheiro"
++msgstr "Especificação de ficheiro inválida"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -788,80 +787,82 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+-msgstr "Não foi possível verificar se o contexto do ficheiro %s está definido"
++msgstr ""
++"Não foi possível verificar se o contexto de ficheiro para %s está definido"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr ""
+-msgstr "Não foi possível criar o contexto do ficheiro %s"
++msgstr "Não foi possível criar o contexto de ficheiro %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o tipo no contexto do ficheiro %s"
++msgstr "Não foi possível definir o tipo no contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr ""
+-msgstr "Não foi possível definir o contexto do ficheiro %s"
++msgstr "Não foi possível definir o contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr ""
+-msgstr "Não foi possível adicionar o contexto do ficheiro %s"
++msgstr "Não foi possível adicionar o contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr ""
+-msgstr "Necessita de um 'setype', 'serange' ou 'seuser'"
++msgstr ""
++"Requer tipo SELinux (\"setype\"), intervalo SELinux (\"serange\") ou "
++"utilizador SELinux (\"seuser\")"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr ""
+-msgstr "O contexto do ficheiro %s não está definido"
++msgstr "O contexto de ficheiro para %s não está definido"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr ""
+-msgstr "Não foi possível pesquisar o contexto do ficheiro %s"
++msgstr "Não foi possível pesquisar o contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr ""
+-msgstr "Não foi possível modificar o contexto do ficheiro %s"
++msgstr "Não foi possível modificar o contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
  msgid "Could not list the file contexts"
- msgstr ""
+-msgstr "Não foi possível listar os contextos do ficheiro"
++msgstr "Não foi possível listar os contextos de ficheiros"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the file context %s"
- msgstr ""
+-msgstr "Não foi possível remover o contexto do ficheiro %s"
++msgstr "Não foi possível remover o contexto de ficheiro %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
  msgstr ""
+-"O contexto do ficheiro %s está definido na política, não pode ser removido"
++"O contexto de ficheiro %s está definido na política, não pode ser removido"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr ""
+-msgstr "Não foi possível remover o contexto do ficheiro %s"
++msgstr "Não foi possível remover o contexto de ficheiro para %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr ""
+-msgstr "Não foi possível listar os contextos do ficheiro"
++msgstr "Não foi possível listar os contextos de ficheiro"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr ""
+-msgstr "Não foi possível listar os contextos do ficheiro local"
++msgstr "Não foi possível listar os contextos de ficheiro locais"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr ""
+-msgstr "Contexto Fich. do SELinux"
++msgstr "SELinux fcontext"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
+@@ -874,102 +875,100 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "Contexto Fich. do SELinux"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr ""
+-msgstr "Não foi possível verificar se o booleano %s está definido"
++msgstr "Não foi possível verificar se o tipo booleano %s está definido"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
- msgstr ""
+-msgstr "O booleano %s não está definido"
++msgstr "O tipo booleano %s não está definido"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr ""
+-msgstr "Não foi possível pesquisar o contexto do ficheiro %s"
++msgstr "Não foi possível pesquisar o contexto de ficheiro %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "Precisa de indicar um prefixo"
++msgstr "Precisa de indicar um dos seguintes valores: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "Não foi possível remover o booleano %s"
++msgstr "Não foi possível definir o valor activo do booleano %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr ""
+-msgstr "Não foi possível modificar o booleano %s"
++msgstr "Não foi possível modificar o tipo booleano %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
+-msgstr ""
++msgstr "Formato inválido %s: Registo %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "O booleano %s está definido na política, não pode ser removido"
++msgstr "O tipo booleano %s está definido na política, não pode ser removido"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr ""
+-msgstr "Não foi possível remover o booleano %s"
++msgstr "Não foi possível remover o tipo booleano %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr ""
+-msgstr "Não foi possível listar os booleanos"
++msgstr "Não foi possível listar os tipos booleanos"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr ""
+-msgstr ""
++msgstr "desconhecido"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr ""
+-msgstr ""
++msgstr "desligado"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
  msgid "on"
- msgstr ""
+-msgstr "CRON"
++msgstr "ligado"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
+-msgstr "Booleano do SELinux"
++msgstr "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Estado"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
+-msgstr ""
++msgstr "Descrição"
+ #: ../newrole/newrole.c:201
+ #, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "não foi possível definir o PAM_TTY\n"
++msgstr "não foi possível definir PAM_TTY\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
  msgstr ""
+-"newrole: esgotamento da lista de configurações dos nomes dos serviços\n"
++"newrole: a tabela de hash da configuração dos nomes dos serviços esgotou-se\n"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../newrole/newrole.c:300
  #, c-format
- msgid "Options Error %s "
+@@ -979,7 +978,7 @@ msgstr "newrole:  %s:  erro na linha %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "não foi possível encontrar um item válido no ficheiro 'passwd'.\n"
++msgstr "não foi possível encontrar uma entrada válida no ficheiro de senhas.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+@@ -989,7 +988,7 @@ msgstr "Sem memória!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Erro! A linha de comandos não é válida.\n"
++msgstr "Erro!  A consola não é válida.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+@@ -999,7 +998,7 @@ msgstr "Não foi possível limpar o ambiente\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr "Erro ao mudar de UID, a interromper.\n"
++msgstr "Erro ao mudar o uid, a interromper.\n"
+ #: ../newrole/newrole.c:612
+ #, c-format
+@@ -1009,118 +1008,117 @@ msgstr "Erro ao reiniciar o KEEPCAPS, a interromper\n"
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "Erro ao ligar-se ao sistema de auditoria.\n"
++msgstr "Erro ao conectar ao sistema de auditoria.\n"
+ #: ../newrole/newrole.c:641
+ #, c-format
+ msgid "Error allocating memory.\n"
+-msgstr "Erro ao reservar memória.\n"
++msgstr "Erro ao alocar memória.\n"
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "Erro ao enviar a mensagem de auditoria.\n"
++msgstr "Erro ao enviar mensagem de auditoria.\n"
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Não é possível determinar o modo de aplicação do SELinux.\n"
++msgstr "Não é possível determinar o modo de actuação forçada do SELinux.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Erro! Não foi possível aceder ao %s.\n"
++msgstr "Erro! Não foi possível abrir %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
  msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-"%s!  Não foi possível obter o contexto actual do %s; o TTY não mudará de "
+-"etiqueta.\n"
++"%s!  Não foi possível obter o contexto actual para %s, etiqueta do tty "
++"inalterada.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  Não foi possível obter o novo contexto do %s; o TTY não mudará de "
+-"etiqueta.\n"
++"%s!  Não foi possível obter um novo contexto para %s, etiqueta do tty "
++"inalterada.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!  Não foi possível definir o novo contexto do %s\n"
++msgstr "%s!  Não foi possível definir um novo contexto para %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+ msgid "%s changed labels.\n"
+-msgstr "O %s mudou de etiquetas.\n"
++msgstr "%s alterou etiquetas.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Atenção!  Não foi possível repor o contexto do %s\n"
++msgstr "Atenção!  Não foi possível repor o contexto para %s\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "Erro: foram definidos vários papéis\n"
++msgstr "Erro: foram especificados vários perfis\n"
+ #: ../newrole/newrole.c:843
+ #, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr "Erro : foram definidos vários tipos\n"
++msgstr "Erro : foram especificados vários tipos\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-"Desculpe, mas o -l só pode ser usado com o suporte para MLS do SELinux.\n"
++msgstr "Desculpe, o -l pode ser utilizado com o suporte MLS do SELinux.\n"
+ #: ../newrole/newrole.c:855
+ #, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr "Erro: foram definidos vários níveis\n"
++msgstr "Erro: foram especificados vários níveis\n"
+ #: ../newrole/newrole.c:865
+-#, fuzzy, c-format
++#, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr ""
+-"Erro: não tem permissões para alterar os níveis num terminal não-seguro\n"
++"Erro: não tem permissões para alterar os níveis num terminal inseguro \n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Não foi possível obter o tipo predefinido.\n"
++msgstr "Não foi possível obter o tipo por omissão.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "não foi possível obter o novo contexto.\n"
++msgstr "não foi possível obter um novo contexto.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "não foi possível definir o novo papel %s\n"
++msgstr "não foi possível definir um novo perfil %s\n"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "não foi possível definir o novo tipo %s\n"
++msgstr "não foi possível definir um novo tipo %s\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "não foi possível criar um novo intervalo com o nível %s\n"
++msgstr "não foi possível construir um novo intervalo com o nível %s\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "não foi possível definir o novo intervalo %s\n"
++msgstr "não foi possível definir um novo intervalo %s\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "não foi possível converter o novo contexto para texto\n"
++msgstr "não foi possível converter o novo contexto para string\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+@@ -1130,7 +1128,7 @@ msgstr "o %s não é um contexto válido\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "Não é possível reservar memória para o novo_contexto"
++msgstr "Não é possível alocar memória para \"new_context\""
+ #: ../newrole/newrole.c:976
+ #, c-format
+@@ -1140,48 +1138,47 @@ msgstr "Não é possível obter o conjunto de sinais vazios\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "Não é possível atribuir a rotina do SIGHUP\n"
++msgstr "Não é possível definir o descritor da rotina SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-"Desculpe, mas o 'newrole' só pode ser usado num 'kernel' com SELinux.\n"
++msgstr "Desculpe, mas o 'newrole' só pode ser utilizado num kernel SELinux.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "não foi possível obter o contexto antigo.\n"
++msgstr "não foi possível obter o contexto antigo (\"old_context\").\n"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Erro! Não foi possível obter a informação do TTY.\n"
++msgstr "Erro! Não foi possível obter informação do tty.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr "erro ao ler a configuração de serviços do PAM.\n"
++msgstr "erro ao ler a configuração do serviço PAM.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "newrole: a senha do %s é incorrecta\n"
++msgstr "newrole: senha incorrecta para %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr "newrole: não foi possível criar um sub-processo: %s"
++msgstr "newrole: não foi possível criar um novo processo (\"fork\"): %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "Não foi possível repor a legenda do TTY...\n"
++msgstr "Não foi possível repor a legenda do tty...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "não foi possível fechar devidamente o TTY\n"
++msgstr "não foi possível fechar o tty adequadamente\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+@@ -1191,31 +1188,35 @@ msgstr "Não foi possível fechar os descritores.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr "Erro ao reservar o argv0 da linha de comandos.\n"
++msgstr "Erro ao alocar o argumento argv0 da consola.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "Não foi possível repor o ambiente, a interromper\n"
++msgstr "Não foi possível restaurar o ambiente, a interromper\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr "não foi possível executar a linha de comandos\n"
++msgstr "não foi possível executar a consola\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "utilização:  %s [-q]\n"
++msgstr "utilização:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgstr ""
++"%s:  Esta política já foi carregada e o carregamento inicial já foi "
++"requisitado.\n"
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  Não é possível carregar a política:  %s\n"
++msgstr ""
++"%s:  Não é possível carregar a política e foi requerido o modo de execução "
++"forçada:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+@@ -1224,7 +1225,7 @@ msgstr "%s:  Não é possível carregar a política:  %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+-msgstr "É necessária pelo menos uma categoria"
++msgstr "Requer pelo menos uma categoria"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+@@ -1234,12 +1235,12 @@ msgstr "Não é possível modificar os níveis de sensibilidade com o '+' no %s"
+ #: ../scripts/chcat:110
+ #, c-format
+ msgid "%s is already in %s"
+-msgstr "O %s já está em %s"
++msgstr "%s já está em %s"
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+ #, c-format
+ msgid "%s is not in %s"
+-msgstr "O %s não está em %s"
++msgstr "%s não está em %s"
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+@@ -1291,7 +1292,7 @@ msgstr "Utilização %s -L -l utilizador"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "Use o -- para terminar a lista de opções. Por exemplo"
++msgstr "Utilize -- para terminar a lista de opções. Por exemplo"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1299,2179 +1300,2098 @@ msgstr "chcat -- -ConfidencialEmpresa /documentos/plano-negócio.odt"
+ #: ../scripts/chcat:335
+ msgid "chcat -l +CompanyConfidential juser"
+-msgstr "chcat -l +ConfidencialEmpresa ze"
++msgstr "chcat -l +ConfidencialEmpresa jose"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "Erro nas Opções %s "
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Não é possível aceder ao %s: as traduções não são suportadas nas máquinas "
+-#~ "não-MLS"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "Nível"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "Tradução"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "As traduções não poderão conter espaços '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Nível '%s' Inválido "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "O %s já está definido nas traduções"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "O %s não está definido nas traduções"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "O mapeamento de autenticação do %s já está definido"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "adicionar o mapeamento do utilizador do SELinux"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "O utilizador %s do SELinux já está definido"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "O porto é obrigatório"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "O porto %s/%s já está definido"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "A interface %s já está definida"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Erro ao iniciar as capacidades, a interromper.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Erro ao atribuir as capacidades, a interromper\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Erro ao atribuir o KEEPCAPS, a interromper\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Erro ao remover as capacidades, a interromper\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Erro ao remover a capacidade de SETUID, a interromper\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Erro ao libertar as capacidades\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "as traduções não são suportadas em máquinas não-MLS"
+-
+-#~ msgid "Boolean"
+-#~ msgstr "Booleano"
+-
+-#, fuzzy
+-#~ msgid "all"
+-#~ msgstr "Tudo"
+-
+-#~ msgid "File Labeling"
+-#~ msgstr "Legendagem de Ficheiros"
+-
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Especificação\n"
+-#~ "do Ficheiro"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Contexto\n"
+-#~ "do SELinux"
+-
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Tipo de\n"
+-#~ "Ficheiro"
+-
+-#~ msgid "User Mapping"
+-#~ msgstr "Mapeamento de Utilizadores"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Nome da\n"
+-#~ "Conta"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "Utilizador\n"
+-#~ "do SELinux"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "Intervalo\n"
+-#~ "do MLS/MCS"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "A conta '%s' é obrigatória"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Módulo da Política"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Desactivar a Auditoria"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Activar a Auditoria"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Carregar o Módulo da Política"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "José Nuno Pires <jncp@netcabo.pt>, 2006."
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Ferramenta de Geração de Políticas do SELinux"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "Esta ferramenta pode ser usada para gerar uma plataforma de políticas, "
+-#~ "para confinar as aplicações ou os utilizadores no SELinux.   \n"
+-#~ "A ferramenta gera:\n"
+-#~ "Ficheiro de aplicação de tipos (te)\n"
+-#~ "Ficheiro da interface (if)\n"
+-#~ "Ficheiro de contextos dos ficheiros (fc)\n"
+-#~ "Programa (sh) - usado para compilar e instalar a política. "
+-
+-#, fuzzy
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Seleccionar o perfil da aplicação ou utilizador a confinar."
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Aplicações</b>"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Os Servidores-Padrão do Init são serviços que só iniciados no arranque "
+-#~ "através dos programas do 'init'. Normalmente é necessário um programa no "
+-#~ "'/etc/init.d'"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Servidor do Init Normal"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Os Serviços de Internet são servidores iniciados pelo 'xinetd'"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Serviços de Internet (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "As Aplicações/Programas Web (CGI) são programas iniciados pelo servidor "
+-#~ "Web (Apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Aplicação/Programa Web (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Uma Aplicação do Utilizador é qualquer aplicação que deseje confinar e "
+-#~ "que seja iniciada por um utilizador"
+-
+-#~ msgid "User Application"
+-#~ msgstr "Aplicação do Utilizador"
+-
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Utilizadores</b>"
+-
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "Papel"
+-
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Utilizadores</b>"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Seleccione Administrador, se este utilizador será usado para administrar "
+-#~ "a máquina enquanto estiver a correr como 'root'. Este utilizador não se "
+-#~ "poderá ligar directamente ao sistema."
+-
+-#, fuzzy
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Administrador"
+-
+-#, fuzzy
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "Seleccionar o perfil da aplicação ou utilizador a confinar."
+-
+-#~ msgid "Name"
+-#~ msgstr "Nome"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Indique a localização completa do executável a confinar."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#, fuzzy
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Indique um nome único para o tipo do utilizador ou aplicação confinado."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Executável"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Programa do Init"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Indique a localização completa do programa do 'init' usada para iniciar a "
+-#~ "aplicação confinada."
+-
+-#, fuzzy
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr ""
+-#~ "Seleccione os papéis ou perfis para os quais este utilizador poderá mudar"
+-
+-#, fuzzy
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "Seleccione os domínios do utilizador adicionais para a transição"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Seleccione os domínios de aplicações para onde deseja que este utilizador "
+-#~ "transite."
+-
+-#, fuzzy
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "Seleccione os domínios que este utilizador irá administrar"
+-
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr ""
+-#~ "Seleccione os domínios que gostaria que este utilizador administrasse."
+-
+-#, fuzzy
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Seleccione os domínios do utilizador adicionais para a transição"
+-
+-#, fuzzy
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
+-#~ "aplicação se liga."
+-
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>Portos de TCP</b>"
+-
+-#, fuzzy
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador/aplicação confinado associar-se a qualquer porto "
+-#~ "de UDP"
+-
+-#~ msgid "All"
+-#~ msgstr "Tudo"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador/aplicação invocar o 'bindresvport' com 0, para "
+-#~ "se associar aos portos 600-1024"
+-
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
+-#~ "aplicação se liga."
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Portos Não-Reservados (> 1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Seleccionar os Portos"
+-
+-#, fuzzy
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador/aplicação associar-se a qualquer porto de UDP > "
+-#~ "1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>Portos de UDP</b>"
+-
+-#, fuzzy
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
+-#~ "aplicação se liga."
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
+-#~ "aplicação se liga."
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de UDP aonde esta "
+-#~ "aplicação se liga."
+-
+-#, fuzzy
+-#~ msgid "Select common application traits"
+-#~ msgstr "Registos Comuns da Aplicação"
+-
+-#, fuzzy
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "A aplicação usa o 'syslog' para registar mensagens      "
+-
+-#, fuzzy
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "A aplicação usa o '/tmp' para criar/manipular ficheiros temporários"
+-
+-#, fuzzy
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "A aplicação usa o PAM para se autenticar"
+-
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Erro ao enviar a mensagem de auditoria.\n"
+-
+-#, fuzzy
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr ""
+-#~ "Seleccione as pastas que pertencem à aplicação confinada ou onde esta "
+-#~ "grava"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Adicione os Ficheiros/Pastas onde esta aplicação terá necessidade de "
+-#~ "\"Gravar\": ficheiros do PID, Ficheiros de Registo, Ficheiros do /var/"
+-#~ "lib..."
+-
+-#, fuzzy
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Seleccione os ficheiros que a aplicação confinada cria ou grava"
+-
+-#, fuzzy
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Indique a localização completa do programa do 'init' usada para iniciar a "
+-#~ "aplicação confinada."
+-
+-#, fuzzy
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "Seleccione a pasta onde gerar os ficheiros de políticas"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Pasta da Política"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Ficheiros da Política Gerados"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Esta ferramenta irá gerar o seguinte: Aplicação do Tipo (te), Contexto "
+-#~ "dos Ficheiros(fc), Interface(if), Programa(sh).\n"
+-#~ "Execute o programa para compilar/instalar e legendar de novo os ficheiros/"
+-#~ "pastas. Depois, poderá colocar a máquina no modo permissivo (setenforce "
+-#~ "0). \n"
+-#~ "Execute/reinicie a aplicação para gerar as mensagens do 'avc'.\n"
+-#~ "Use o 'audit2allow -R' para gerar regras adicionais para o ficheiro TE.\n"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Esta ferramenta irá gerar o seguinte: Aplicação do Tipo (te), Contexto "
+-#~ "dos Ficheiros(fc), Interface(if), Programa(sh).\n"
+-#~ "Execute o programa para compilar/instalar e legendar de novo os ficheiros/"
+-#~ "pastas. Depois, poderá colocar a máquina no modo permissivo (setenforce "
+-#~ "0). \n"
+-#~ "Execute/reinicie a aplicação para gerar as mensagens do 'avc'.\n"
+-#~ "Use o 'audit2allow -R' para gerar regras adicionais para o ficheiro TE.\n"
+-
+-#, fuzzy
+-#~ msgid "Boolean Name"
+-#~ msgstr "Booleano"
+-
+-#~ msgid "Role"
+-#~ msgstr "Papel"
+-
+-#~ msgid "Application"
+-#~ msgstr "Aplicação"
+-
+-#, fuzzy
+-#~ msgid "%s must be a directory"
+-#~ msgstr "Permitir ao 'mount' montar qualquer pasta"
+-
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Tem de indicar um nome"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Seleccione o ficheiro executável a confinar."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Seleccione o ficheiro do programa do 'init' a confinar."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "Seleccione os ficheiros que a aplicação confinada cria ou grava"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Seleccione as pastas que pertencem à aplicação confinada ou onde esta "
+-#~ "grava"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "Seleccione a pasta onde gerar os ficheiros de políticas"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Tem de indicar um nome"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Tem de indicar um executável"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Configurar o SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "Os portos deverão ser números de 1 a %d "
+-
+-#, fuzzy
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "Tem de indicar um nome para o seu processo confinado"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Os tipos do UTILIZADOR não permitem executáveis"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "Só as aplicações de SERVIDORES poderão usar um programa do 'init'"
+-
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "O 'use_syslog' deverá ser um valor booleano "
+-
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Os Tipos do UTILIZADOR obtém automaticamente um tipo 'tmp'"
+-
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "Tem de indicar a localização do executável para o seu processo confinado"
+-
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Ficheiro de Aplicação do Tipo"
+-
+-#~ msgid "Interface file"
+-#~ msgstr "Ficheiro de interface"
+-
+-#~ msgid "File Contexts file"
+-#~ msgstr "Ficheiro de contexto dos ficheiros"
+-
+-#~ msgid "Setup Script"
+-#~ msgstr "Programa de Configuração"
+-
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Tipo do Porto\n"
+-#~ "de SELinux"
+-
+-#~ msgid "Protocol"
+-#~ msgstr "Protocolo"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Nível do\n"
+-#~ "MLS/MCS"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "Port"
+-#~ msgstr "Porto"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "O número de porto \"%s\" não é válido. 0 < NÚMERO PORTO < 65536 "
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "Group View"
+-#~ msgstr "Vista de Grupo"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Protecção de Serviços do SELinux"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o servidor 'acct'"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid "Admin"
+-#~ msgstr "Administração"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Permitir a todos os servidores criarem ficheiros 'core' no /"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "Permitir a todos os servidores usarem TTYs não reservados"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "User Privs"
+-#~ msgstr "Privilégios do Utilizador"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas de utilizadores 'gadmin' do SELinux executarem "
+-#~ "ficheiros na sua pasta pessoal ou na /tmp"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas convidadas do SELinux executarem ficheiros nas suas "
+-#~ "pastas pessoais ou na /tmp"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "Memory Protection"
+-#~ msgstr "Protecção de Memória"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Permitir a pilha executável do Java"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Montar"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Permitir ao 'mount' montar qualquer ficheiro"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Permitir ao 'mount' montar qualquer pasta"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Permitir a pilha executável do MPlayer"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Permitir ao SSH executar o 'ssh-keysign'"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas 'staff' do SELinux executarem ficheiros nas suas "
+-#~ "pastas pessoais ou na /tmp"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas 'sysadm' do SELinux executarem ficheiros nas suas "
+-#~ "pastas pessoais ou na /tmp"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas não-confinadas do SELinux executarem ficheiros nas "
+-#~ "suas pastas pessoais ou na /tmp"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Network Configuration"
+-#~ msgstr "Configuração da Rede"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Permitir o fluxo de pacotes não-legendados pela rede"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas 'user' do SELinux executarem ficheiros nas suas pastas "
+-#~ "pessoais ou na /tmp"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Permitir a não-confinação do 'dyntrans' para o 'unconfined_execmem'"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Databases"
+-#~ msgstr "Bases de Dados"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Permitir ao utilizador ligar-se ao porto do MySQL"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Permitir ao utilizador ligar-se ao porto do PostgreSQL"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "Servidor X"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Permitir aos clientes escreverem na memória partilhada do X"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir às contas 'xguest' do SELinux executarem ficheiros nas suas "
+-#~ "pastas pessoais ou na /tmp"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Permitir aos servidores executarem com o NIS"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Web Applications"
+-#~ msgstr "Aplicações Web"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transitar o utilizador 'staff' do SELinux para o Domínio de Navegação Web"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transitar o utilizador 'sysadm' do SELinux para o Domínio de Navegação Web"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transitar o utilizador 'user' do SELinux para o Domínio de Navegação Web"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr ""
+-#~ "Transitar o utilizador 'xguest' do SELinux para o Domínio de Navegação Web"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr ""
+-#~ "Permitir aos Navegadores Web do 'staff' escrever nas pastas pessoais"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Desactivar a protecção do SELinux para o Amanda"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Desactivar a protecção do SELinux para o Amavis"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'apmd'"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'arpwatch'"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'auditd'"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'automount'"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Desactivar a protecção do SELinux para o Avahi"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'bluetooth'"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'canna'"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cardmgr'"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Desactivar a protecção do SELinux para o Servidor de 'Clusters'"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Permitir ao 'cdrecord' ler conteúdo diverso: ficheiros de conteúdo não-"
+-#~ "fiável e temporário, NFS, Samba, dispositivos removíveis, etc"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ciped'"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clamd'"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clamscan'"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'clvmd'"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'comsat'"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'courier'"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cpucontrol'"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cpuspeed'"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Cron"
+-#~ msgstr "CRON"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'crond'"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Printing"
+-#~ msgstr "Impressão"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr ""
+-#~ "Desactivar a protecção do SELinux para o serviço de infra-estrutura do "
+-#~ "'cupsd'"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cupsd'"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cupsd_lpd'"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cvs'"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'cyrus'"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dbskkd'"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dbusd'"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccd'"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccifd'"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dccm'"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ddt'"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'devfsd'"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dhcpc'"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dhcpd'"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dictd'"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Permitir ao 'sysadm_t' iniciar directamente os serviços"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Desactivar a protecção do SELinux para o Evolution"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Games"
+-#~ msgstr "Jogos"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Desactivar a protecção do SELinux para os jogos"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Desactivar a protecção do SELinux para os navegadores Web"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Desactivar a protecção do SELinux para o Thunderbird"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'distccd'"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dmesg'"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dnsmasq'"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'dovecot'"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'entropyd'"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'fetchmail'"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'fingerd'"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'freshclam'"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'fsdaemon'"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'gpm'"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'gss'"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hal'"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Compatibility"
+-#~ msgstr "Compatibilidade"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Não auditar as coisas marcadas como problemáticas mas que não são "
+-#~ "problemas de segurança"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hostname'"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hotplug'"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'howl'"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hplip' do CUPS"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr ""
+-#~ "Desactivar a protecção do SELinux para o serviço 'rotatelogs' do HTTPD"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Serviço do HTTPD"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'suexec' do HTTPD"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'hwclock'"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'i18n'"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'imazesrv'"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr ""
+-#~ "Desactivar a protecção do SELinux para os serviços-filhos do 'inetd'"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'inetd'"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'innd'"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'iptables'"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ircd'"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'irqbalance'"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'iscsi'"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'jabberd'"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'kadmin'"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'klog'"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'krb5kdc'"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Desactivar a protecção do SELinux para os serviços do 'ktalk'"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'kudzu'"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'locate'"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lpd'"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
@@ -240040,7 +186027,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -240570,317 +186557,486 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lrrd'"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'lvm'"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'mailman'"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Permitir ao Evolution e Thunderbird lerem ficheiros do utilizador"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mdadm'"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'monopd'"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Permitir ao navegador Mozilla ler os ficheiros do utilizador"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mrtg'"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'mysqld'"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nagios'"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "Serviço de Nomes"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'named'"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nessusd'"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Desactivar a protecção do SELinux para o NetworkManager"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nfsd'"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nmbd'"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nrpe'"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nscd'"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'nsd'"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ntpd'"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Desactivar a protecção do SELinux para o Oddjob"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'oddjob_mkhomedir'"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'openvpn'"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pam'"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pegasus'"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'perdition'"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'portmap'"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'portslave'"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'postfix'"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'postgresql'"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Permitir ao 'pppd' ser executado por um utilizador normal"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'pptp'"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'prelink'"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'privoxy'"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ptal'"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pxe'"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'pyzord'"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'quota'"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'radiusd'"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'radvd'"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rdisc'"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'readahead'"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Permitir aos programas lerem ficheiros em pastas fora do normal "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'restorecond'"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rhgb'"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'ricci'"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'ricci_modclusterd'"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rlogind'"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rpcd'"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'rshd'"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'rsync'"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr ""
+-#~ "Permitir ao SSH correr a partir do 'inetd' em vez de ser um servidor"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Permitir ao Samba partilhar as pastas do NFS"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Servidor de autenticação do SASL"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Permitir ao servidor de autenticação do SASL ler o '/etc/shadow'"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Permitir ao servidor do X mapear uma região de memória como executável e "
+-#~ "para escrita"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'saslauthd'"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'scannerdaemon'"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr ""
+-#~ "Não permitir a transição para o 'sysadm_t'; o 'sudo' e o 'su' são "
+-#~ "afectados"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Não permitir a nenhum processo carregar módulos do 'kernel'"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Não permitir a nenhum processo modificar a política do SELinux no 'kernel'"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sendmail'"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'setrans'"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'setroubleshoot'"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'slapd'"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'slrnpull'"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'smbd'"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'snmpd'"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'snort'"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'soundd'"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sound'"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "Protecção contra Spam"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'spamd'"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Permitir ao 'spamd' aceder às pastas pessoais"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Permitir ao servidor do Spam Assassin aceder à rede"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
@@ -240892,19 +187048,27 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'speedmgmt'"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Permitir ao servidor Squid aceder à rede"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'squid'"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
@@ -240920,7 +187084,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ssh'"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
@@ -240982,215 +187148,550 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permitir as autenticações de SSH como 'sysadm_r:sysadm_t'"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Permitir aos utilizadores 'staff_r' pesquisarem a pasta pessoal do "
+-#~ "'sysadm' e ler os ficheiros (como o ~/.bashrc)"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Túnel de SSL universal"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'stunnel'"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Permitir ao serviço 'stunnel' executar-se autonomamente, fora do 'xinetd'"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'swat'"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'sxid'"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'syslogd'"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr ""
+-#~ "Desactivar a protecção do SELinux para as tarefas do CRON do sistema"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'tcp'"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'telnet'"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'tftpd'"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'transproxy'"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'udev'"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uml'"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permitir ao 'xinetd' correr como não-confinado, incluindo os serviços que "
+-#~ "inicia e que não têm uma transição de domínio definida explicitamente"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permitir aos programas 'rc' correrem como não-confinados, incluindo os "
+-#~ "serviços iniciados por um programa 'rc' que não tenha uma transição de "
+-#~ "domínio definida explicitamente"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Permitir ao RPM ser executado como não-confinado"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Permitir a execução não-confinada dos utilitários privilegiados como o "
+-#~ "'hotplug' e o 'insmod'"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'updfstab'"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uptimed'"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Permitir ao 'user_r' aceder ao 'sysadm_r' com o 'su', 'sudo' ou o "
+-#~ "'userhelper'. Caso contrário, só o 'staff_r' o poderá fazer"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Permitir aos utilizadores executarem o comando 'mount'"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Permitir aos utilizadores normais acederem ao rato (só permitir o "
+-#~ "servidor X)"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Permitir aos utilizadores executarem o comando 'dmesg'"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Permitir aos utilizadores controlarem as interfaces de rede (também "
+-#~ "precisa do USERCTL=true)"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Permitir a um utilizador normal executar o 'ping'"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador escrever num 'noextattrfile' (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Permitir aos utilizadores gravarem em dispositivos USB"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Permitir aos utilizadores executarem servidores do TCP (associar a portos "
+-#~ "e aceitar ligações do mesmo domínio e de utilizadores exteriores); se "
+-#~ "desactivar isto irá forçar o modo passivo do FTP e poderá alterar outros "
+-#~ "protocolos"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Permitir ao utilizador fazer um 'stat' em ficheiros de TTY"
+-
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'uucpd'"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'vmware'"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'watchdog'"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'winbind'"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xdm'"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permitir as autenticações no 'xdm' como 'sysadm_r:sysadm_t'"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xen'"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Permitir ao Xen ler/escrever em dispositivos físicos do disco"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'xfs'"
+-
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Desactivar a protecção do SELinux para o 'constrol' do Xen"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ypbind'"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o Servidor de Senhas do NIS"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ypserv'"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr ""
+-#~ "Desactivar a protecção do SELinux para o Servidor de Transferências do NIS"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permitir ao utilizador 'webadm' do SELinux gerir as pastas pessoais dos "
+-#~ "utilizadores não-privilegiados"
+-
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permitir ao utilizador 'webadm' do SELinux ler as pastas pessoais dos "
+-#~ "utilizadores não-privilegiados"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Tem a certeza que deseja remover o %s '%s'?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Apagar o %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Adicionar o %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Modificar o %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Permissivo"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Obrigatório"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "A mudança do tipo de política obriga a voltar a etiquetar todo o sistema "
+-#~ "de ficheiros no próximo arranque. Esta operação demora bastante tempo, "
+-#~ "dependendo do tamanho do sistema de ficheiros.  Deseja continuar?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "A mudança para a desactivação do SELinux necessita de um reinício do "
+-#~ "sistema. Isto não é recomendado. Se optar por activar de novo o SELinux, "
+-#~ "o sistema terá de ser legendado de novo. Se apenas quiser ver se o "
+-#~ "SELinux está a provocar algum problema no seu sistema, poderá mudar para "
+-#~ "o modo permissivo, que só irá registar os erros e não irá aplicar a "
+-#~ "política do SELinux. O modo permissivo não necessita de reiniciar o "
+-#~ "sistema. Deseja continuar?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Activar o SELinux obriga a voltar a etiquetar todo o sistema de ficheiros "
+-#~ "no próximo arranque. Esta operação demora bastante tempo, dependendo do "
+-#~ "tamanho do sistema de ficheiros.  Deseja continuar?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Adicionar um Mapeamento de Contas do SELinux"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Adicionar Portos de Rede ao SELinux"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "Tipo do SELinux"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "TCP\n"
+-#~ "UDP"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Nível MLS/MCS\n"
+-#~ "do SELinux"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Especificação do Ficheiro"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Tipo de Ficheiro"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "todos os ficheiros\n"
+-#~ "ficheiro normal\n"
+-#~ "pasta\n"
+-#~ "dispositivo de carácter\n"
+-#~ "dispositivo de bloco\n"
+-#~ "'socket'\n"
+-#~ "ligação simbólica\n"
+-#~ "'pipe' com nome\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Adicionar o Utilizador do SELinux"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Administração do SELinux"
+-
+-#~ msgid "Add"
+-#~ msgstr "Adicionar"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Propriedades"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "Apa_gar"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Seleccionar o Objecto da Gestão"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Seleccionar:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Modo de Aplicação Predefinido do Sistema"
+-
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Modo de Aplicação Actual"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Tipo de Política Predefinida do Sistema: "
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Seleccione se quiser legendar ou etiquetar de novo todo o sistema de "
+-#~ "ficheiros no próximo arranque. Esta nova legendagem poderá levar bastante "
+-#~ "tempo, dependendo do tamanho do sistema. Se estiver a alterar os tipos de "
+-#~ "políticas ou mudar do modo desactivado para o obrigatório, é necessária "
+-#~ "uma nova legendagem."
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Legendar no próximo arranque."
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "label37"
+-#~ msgstr "label37"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "Filtro"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "label50"
+-#~ msgstr "label50"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "Adicionar um Contexto de Ficheiros"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "Modificar o Contexto de Ficheiros"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "Apagar o Contexto de Ficheiros"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid "label38"
+-#~ msgstr "label38"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Adicionar um Mapeamento de Utilizadores do SELinux"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Modificar o Mapeamento de Utilizadores do SELinux"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Apagar o Mapeamento de Utilizadores do SELinux"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "label39"
+-#~ msgstr "label39"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "Adicionar uma Tradução"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "Modificar a Tradução"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Delete Translation"
+-#~ msgstr "Apagar a Tradução"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -241200,54 +187701,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "label41"
+-#~ msgstr "label41"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Modificar o Utilizador do SELinux"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "label40"
+-#~ msgstr "label40"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "Adicionar um Porto de Rede"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Editar o Porto de Rede"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Apagar o Porto de Rede"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "label42"
+-#~ msgstr "label42"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Gerar um novo módulo de política"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Load policy module"
+-#~ msgstr "Carregar o módulo de políticas"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -241258,1420 +187770,2304 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sq.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Remover o módulo de política carregável"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Desactivar as regras de auditoria adicionais, que não são normalmente "
+-#~ "comunicadas nos ficheiros de registo."
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Nível de Sensibilidade"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "O utilizador do SELinux '%s' é obrigatório"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Requires value"
+-#~ msgstr "É necessário um valor"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Assistente de Geração de Políticas do SELinux"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#, fuzzy
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador/aplicação confinado associar-se a qualquer porto "
+-#~ "de TCP"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "Use esta opção se a sua aplicação invoca o 'bindresvport' com 0."
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#, fuzzy
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Permitir a um utilizador/aplicação associar-se a qualquer porto de TCP > "
+-#~ "1024"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Portos Não-Reservados (> 1024)"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#, fuzzy
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Indique uma lista separada por vírgulas de portos de TCP onde esta "
+-#~ "aplicação se associa."
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "label34"
+-#~ msgstr "label34"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "label35"
+-#~ msgstr "label35"
+-
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
+-
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Obrigatório\n"
+-#~ "Permissivo\n"
+-#~ "Desactivado\n"
+-
+-#~ msgid "value"
+-#~ msgstr "valor"
+-
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Deverá ser o 'root' para executar o %s."
+-
+-#~ msgid "Other"
+-#~ msgstr "Outro"
+-
+-#~ msgid ""
+-#~ "Select XWindows login user, if this is a user who will login to a machine "
+-#~ "via X"
+-#~ msgstr ""
+-#~ "Seleccione o Utilizador de Conta no XWindows, se este for um utilizador "
+-#~ "que se irá autenticar numa máquina através do X"
+-
+-#~ msgid "XWindows Login User"
+-#~ msgstr "Utilizador de Conta no XWindows"
+-
+-#~ msgid ""
+-#~ "Select Terminal Login User, if this user will login to a machine only via "
+-#~ "a terminal or remote login"
+-#~ msgstr ""
+-#~ "Seleccione o Utilizador de Conta no Terminal se este utilizador se irá "
+-#~ "autenticar apenas através de um terminal ou ligação remota"
+-
+-#~ msgid "Terminal Login User"
+-#~ msgstr "Utilizador de Conta no Terminal"
+-
+-#~ msgid "Name of application to be confined"
+-#~ msgstr "Nome da aplicação a confinar"
+-
+-#~ msgid "Incoming Network Port Connections"
+-#~ msgstr "Ligações de Portos de Rede Recebidas"
+-
+-#~ msgid "Outgoing Network Port Connections"
+-#~ msgstr "Ligações a Portos de Rede à Saída"
+-
+-#~ msgid ""
+-#~ "Application uses nsswitch or translates UID's (daemons that run as non "
+-#~ "root)"
+-#~ msgstr ""
+-#~ "A aplicação usa o 'nsswitch' ou traduz os UIDs (servidores que se "
+-#~ "executam como não-root)"
+-
+-#~ msgid "Files and Directories"
+-#~ msgstr "Ficheiros e Pastas"
+-
+-#~ msgid "Generate policy in this directory"
+-#~ msgstr "Gerar uma política nesta pasta"
+-
+-#~ msgid "Login"
+-#~ msgstr "Autenticação"
+-
+-#~ msgid "Allow direct login to the console device. Requiered for System 390"
+-#~ msgstr ""
+-#~ "Permitir a autenticação directa no dispositivo de consola. Obrigatório no "
+-#~ "System 390"
+-
+-#~ msgid "Allow cvs daemon to read shadow"
+-#~ msgstr "Permitir ao servidor do CVS ler o 'shadow'"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their heap memory executable.  Doing "
+-#~ "this is a really bad idea. Probably indicates a badly coded executable, "
+-#~ "but could indicate an attack. This executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Permitir aos executáveis não-confinados tornarem a sua memória de dados "
+-#~ "executável. Fazer isto é realmente uma má ideia. Provavelmente poderá ser "
+-#~ "um executável mal-codificado, mas também poderá indicar um ataque. Este "
+-#~ "executável deverá ser notificado no Bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to map a memory region as both executable "
+-#~ "and writable, this is dangerous and the executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Permitir aos executáveis não-confinados reservarem uma região de memória "
+-#~ "como sendo executável e de escrita; isto é perigoso e o executável deverá "
+-#~ "ser notificado no Bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow all unconfined executables to use libraries requiring text "
+-#~ "relocation that are not labeled textrel_shlib_t"
+-#~ msgstr ""
+-#~ "Permitir a todos os executáveis não-confinados usarem bibliotecas que "
+-#~ "necessitem de recolocação do texto, não estando marcadas como "
+-#~ "'textrel_shlib_t'"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their stack executable.  This should "
+-#~ "never, ever be neessary. Probably indicates a badly coded executable, but "
+-#~ "could indicate an attack. This executable should be reported in bugzilla"
+-#~ msgstr ""
+-#~ "Permitir aos executáveis não-confinados tornarem a sua pilha executável. "
+-#~ "Isto nunca, mas nunca deverá ser alguma vez necessário. Provavelmente "
+-#~ "poderá ser um executável mal-codificado, mas também poderá indicar um "
+-#~ "ataque. Este executável deverá ser notificado no Bugzilla"
+-
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
+-
+-#~ msgid "Allow ftpd to full access to the system"
+-#~ msgstr "Permitir ao 'ftpd' ter acesso completo ao sistema"
+-
+-#~ msgid ""
+-#~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir ao 'ftpd' enviar ficheiros para pastas marcadas como "
+-#~ "'public_content_rw_t'"
+-
+-#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Permitir aos servidores de FTP usarem o CIFS usado nas transferências "
+-#~ "públicas de ficheiros"
+-
+-#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Permitir aos servidores de FTP usarem o NFS usado nas transferências "
+-#~ "públicas de ficheiros"
+-
+-#~ msgid "Allow gpg executable stack"
+-#~ msgstr "Permitir a pilha executável do 'gpg'"
+-
+-#~ msgid "Allow gssd to read temp directory"
+-#~ msgstr "Permitir ao 'gssd' ler a pasta de temporários"
+-
+-#~ msgid ""
+-#~ "Allow httpd daemon to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir ao servidor 'httpd' gravar ficheiros nas pastas chamadas "
+-#~ "'public_content_rw_t'"
+-
+-#~ msgid "Allow Apache to communicate with avahi service"
+-#~ msgstr "Permitir ao Apache comunicar com o serviço Avahi"
+-
+-#~ msgid "Allow Apache to use mod_auth_pam"
+-#~ msgstr "Permitir ao Apache usar o 'mod_auth_pam'"
+-
+-#~ msgid ""
+-#~ "Allow httpd scripts to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir aos programas do 'httpd' criarem ficheiros nas pastas chamadas "
+-#~ "'public_content_rw_t'"
+-
+-#~ msgid "Allow daemons to use kerberos files"
+-#~ msgstr "Permitir ao servidores usarem os ficheiros do Kerberos"
+-
+-#~ msgid ""
+-#~ "Allow nfs servers to modify public files used for public file transfer "
+-#~ "services"
+-#~ msgstr ""
+-#~ "Permitir aos servidores de NFS modificarem os ficheiros públicos usados "
+-#~ "nas transferências públicas de ficheiros"
+-
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Poli-instanciação"
+-
+-#~ msgid "Enable polyinstantiated directory support"
+-#~ msgstr "Activar o suporte de pastas poli-instanciadas"
+-
+-#~ msgid "Allow sysadm_t to debug or ptrace applications"
+-#~ msgstr ""
+-#~ "Permitir ao 'sysadm_t' depurar ou executar o 'ptrace' nas aplicações"
+-
+-#~ msgid ""
+-#~ "Allow rsync to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir ao 'rsync' gravar ficheiros em pastas marcadas como "
+-#~ "'public_content_rw_t'"
+-
+-#~ msgid ""
+-#~ "Allow Samba to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir ao Samba gravar ficheiros em pastas marcadas "
+-#~ "'public_content_rw_t'"
+-
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
+-
+-#~ msgid "Allow zebra daemon to write it configuration files"
+-#~ msgstr ""
+-#~ "Permitir ao servidor do Zebra escrever nos seus ficheiros de configuração"
+-
+-#~ msgid ""
+-#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
+-#~ msgstr ""
+-#~ "Permitir às tarefas de sistema do CRON mudarem a legenda do sistema de "
+-#~ "ficheiros para repor os contextos dos ficheiros"
+-
+-#~ msgid "Enable extra rules in the cron domain to support fcron"
+-#~ msgstr "Activar as regras-extra no domínio do CRON para suportar o 'fcron'"
+-
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ftpd'"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "Allow ftpd to run directly without inetd"
+-#~ msgstr "Permitir ao 'ftpd' executar directamente sem o 'inetd'"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Allow ftp to read/write files in the user home directories"
+-#~ msgstr ""
+-#~ "Permitir ao FTP ler/gravar ficheiros nas pastas pessoais dos utilizadores"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid ""
+-#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
+-#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
+-#~ "urandom"
+-#~ msgstr ""
+-#~ "Isto deverá ser activado quando todos os programas são compilados com a "
+-#~ "protecção de esgotamento da pilha ProPolice/SSP. Todos os domínios "
+-#~ "poderão ler do '/dev/urandom'"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid "Allow HTTPD to support built-in scripting"
+-#~ msgstr "Permitir ao HTTPD suportar a programação incorporada"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "Allow HTTPD to send mail"
+-#~ msgstr "Permitir ao HTTPD enviar e-mails"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
+-#~ msgstr ""
+-#~ "Permitir aos programas e módulos do HTTPD ligarem-se às bases de dados "
+-#~ "pela rede"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Allow HTTPD scripts and modules to connect to the network"
+-#~ msgstr "Permitir aos programas e módulos do HTTPD ligarem-se à rede"
+-
+-#~ msgid "Allow httpd to act as a relay"
+-#~ msgstr "Permitir ao HTTPD actuar como um encaminhador"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'httpd'"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
+-#~ msgid "Allow HTTPD cgi support"
+-#~ msgstr "Permitir o suporte de CGI's do HTTPD"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
+-#~ msgid "Allow HTTPD to run as a ftp server"
+-#~ msgstr "Permitir ao HTTPD executar como um servidor de FTP"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Allow HTTPD to read home directories"
+-#~ msgstr "Permitir ao HTTPD ler as pastas pessoais"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid ""
+-#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
+-#~ "scripts"
+-#~ msgstr ""
+-#~ "Permitir ao HTTP correr executáveis do SSI no mesmo domínio dos CGI's do "
+-#~ "sistema"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
+-#~ msgid ""
+-#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
+-#~ "certificates"
+-#~ msgstr ""
+-#~ "Unificar o HTTPD na comunicação com o terminal. É necessário para lidar "
+-#~ "com os certificados"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
+-#~ msgid "Unify HTTPD handling of all content files"
+-#~ msgstr "Unificar o tratamento do HTTPD para todos os ficheiros de conteúdos"
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
+-#~ msgid "Allow named to overwrite master zone files"
+-#~ msgstr "Permitir ao 'named' sobrepor os ficheiros da zona-mestra"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Allow NFS to share any file/directory read only"
+-#~ msgstr ""
+-#~ "Permitir ao NFS partilhar todas as pastas/ficheiros apenas para leitura"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid "Allow NFS to share any file/directory read/write"
+-#~ msgstr ""
+-#~ "Permitir ao NFS partilhar todas as pastas/ficheiros para leitura/escrita"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Allow openvpn service access to users home directories"
+-#~ msgstr ""
+-#~ "Permitir ao serviço 'openvpn' aceder às pastas pessoais dos utilizadores"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "Allow pppd daemon to insert modules into the kernel"
+-#~ msgstr "Permitir ao serviço 'pppd' inserir módulos no 'kernel'"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'pppd'"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'ppp' do Mozilla"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Allow programs to read untrusted content without relabel"
+-#~ msgstr ""
+-#~ "Permitir aos programas lerem conteúdo não-fiável sem mudança de legenda"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Allow Samba to share users home directories"
+-#~ msgstr "Permitir ao Samba partilhar as pastas dos utilizadores"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "Allow spammassasin to access the network"
+-#~ msgstr "Permitir ao 'spamassassin' aceder à rede"
+-
+-#~ msgid "Use lpd server instead of cups"
+-#~ msgstr "Usar o servidor 'lpd' em vez do 'cups'"
+-
+-#~ msgid "Support NFS home directories"
+-#~ msgstr "Suportar as pastas pessoais por NFS"
+-
+-#~ msgid "Allow users to login with CIFS home directories"
+-#~ msgstr ""
+-#~ "Permitir aos utilizadores autenticarem-se em pastas pessoais de CIFS"
+-
+-#~ msgid ""
+-#~ "Allow web applications to write untrusted content to disk (implies read)"
+-#~ msgstr ""
+-#~ "Permitir às aplicações Web gravarem conteúdo não-fiável no disco (implica "
+-#~ "leitura)"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "Desactivar a protecção do SELinux para o serviço 'zebra'"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid "Allow httpd to access samba/cifs file systems"
+-#~ msgstr "Permitir ao HTTPD aceder a sistemas de ficheiros Samba/CIFS"
+-
+-#~ msgid "Allow httpd to access nfs file systems"
+-#~ msgstr "Permitir ao HTTPD aceder a sistemas de ficheiros NFS"
+-
+-#~ msgid ""
+-#~ "Allow samba to act as the domain controller, add users, groups and change "
+-#~ "passwords"
+-#~ msgstr ""
+-#~ "Permitir ao Samba actuar como controlador do domínio, adicionar "
+-#~ "utilizadores, grupos e mudar as senhas"
+-
+-#~ msgid "Allow Samba to share any file/directory read only"
+-#~ msgstr "Permitir ao Samba partilhar qualquer pasta apenas para leitura"
+-
+-#~ msgid "Allow Samba to share any file/directory read/write"
+-#~ msgstr "Permitir ao Samba partilhar qualquer pasta para leitura/escrita"
+-
+-#~ msgid ""
+-#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
+-#~ msgstr ""
+-#~ "Permitir ao Samba executar programas não-confinados na pasta '/var/lib/"
+-#~ "samba/scripts'"
+-
+-#~ msgid "Label Prefix"
+-#~ msgstr "Prefixo da Legenda"
+-
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "Nível do MLS/MCS"
+-
+-#~ msgid "Group/ungroup network ports by SELinux type."
+-#~ msgstr "Agrupar/desagrupar os portos de rede pelo tipo do SELinux."
+-
+-#~ msgid ""
+-#~ "Enable additional audit rules, that are normally not reported in the log "
+-#~ "files."
+-#~ msgstr ""
+-#~ "Activar as regras de auditoria adicionais, que não são normalmente "
+-#~ "comunicadas nos ficheiros de registo."
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr ""
+-#~ "Prefixo de\n"
+-#~ "Legendagem"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "Nível do\n"
+-#~ "MCS/MLS"
+-
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "São necessários 2 ou mais argumentos"
+-
+-#~ msgid "%s not defined"
+-#~ msgstr "O %s não está definido"
+-
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "O %s não é válido para os objectos %s\n"
+-
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "o intervalo não é suportado em máquinas não-MLS"
+-
+-#~ msgid "Invalid value %s"
+-#~ msgstr "O valor %s é inválido"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Para poder carregar este pacote de políticas acabado de criar no "
+-#~ "'kernel',\n"
+-#~ "é preciso executar\n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Erro nas Opções: %s "
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycoreutils-2.0.85/po/sr@latin.po
---- nsapolicycoreutils/po/sr@latin.po  2011-02-17 15:11:25.433729780 -0500
-+++ policycoreutils-2.0.85/po/sr@latin.po      2011-02-18 16:03:41.443976256 -0500
-@@ -1,26 +1,44 @@
--# translation of policycoreutils.HEAD.sr.po to Serbian
- # Serbian(Latin) translations for policycoreutils
- # Copyright (C) 2006 Red Hat, Inc.
- # This file is distributed under the same license as the policycoreutils package.
--#
- # Miloš Komarčević <kmilos@gmail.com>, 2006.
- # Jovan Krunic <jovan.krunic@gmail.com>, 2008.
- # Nikola Pajtić <salgeras@gmail.com>, 2008.
- # Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
+diff --git a/policycoreutils/po/pt_BR.po b/policycoreutils/po/pt_BR.po
+index 91faec8..46f0d92 100644
+--- a/policycoreutils/po/pt_BR.po
++++ b/policycoreutils/po/pt_BR.po
+@@ -1,26 +1,29 @@
+-# Brazilian Portuguese translation of policycoreutils
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
 +#
++# Translators:
+ # Diego Búrigo Zacarão <diegobz@gmail.com>, 2006.
+-# Valnir Ferreira Jr., 2006.
+-# Igor Pires Soares <igor@projetofedora.org>, 2006,2007,2008.
+ # Frederico Madeira <fred@madeira.eng.br>, 2008.
++# Glaucia Cintra <gcintra@redhat.com>, 2010.
++# Igor Pires Soares <igor@projetofedora.org>, 2006, 2007, 2008, 2009.
++# Og Maciel <ogmaciel@gnome.org>, 2008.
+ # Oliver Silva <oliverpsilva@gmail.com>, 2008.
+-#
++# Taylon Silmer <taylonsilva@gmail.com>, 2008.
++# Valnir Ferreira Jr., 2006.
  msgid ""
  msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.sr\n"
-+"Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-07 21:19-0400\n"
--"Last-Translator: Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
--"Language-Team: Serbian <fedora-trans-sr@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2009-03-23 23:04+0100\n"
-+"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
-+"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-07-22 15:47-0300\n"
+-"Last-Translator: Igor Pires Soares <igor@projetofedora.org>\n"
+-"Language-Team: Brazilian Portuguese <fedora-trans-pt_br@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Portuguese (Brazil) <trans-pt_br@lists.fedoraproject.org>\n"
+ "Language: pt_BR\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
--"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
--"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
--"X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Napravi novi modul polise"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Alat za pravljenje SELinux polisa"
+-"X-Generator: KBabel 1.9.1\n"
+-"X-Poedit-Language: Portuguese\n"
+-"X-Poedit-Country: BRAZIL\n"
+-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
++"Plural-Forms: nplurals=2; plural=(n > 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -111,9 +129,8 @@
- msgstr "Ne mogu da uspostavim semanage vezu"
+@@ -29,7 +32,7 @@ msgid ""
+ "         <args ...> are the arguments to that script."
+ msgstr ""
+ "USO: run_init <script> <args ...>\n"
+-"onde: <script> é o nome do script de inicialização a ser executado,\n"
++" onde: <script> é o nome do script de inicialização a ser executado,\n"
+ "         <args ...> são os argumentos para esse script."
  
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Ne mogu da postavim MLS opseg za %s"
-+msgstr "Ne mogu da ispitam status MLS omogućavanja"
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+@@ -40,7 +43,7 @@ msgstr "falhou ao inicializar o PAM\n"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "falhou ao obter informação da conta\n"
++msgstr "falha ao obter informação da conta\n"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -129,7 +146,8 @@
- msgid "Level"
- msgstr "Nivo"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -49,7 +52,7 @@ msgstr "Senha:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "Impossível achar a sua entrada no arquivo de senha shadow.\n"
++msgstr "Não foi possível localizar a sua entrada no arquivo de senha shadow.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+@@ -64,7 +67,7 @@ msgstr "run_init: senha incorreta para %s\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr "Impossível abrir arquivo %s\n"
++msgstr "Não foi possível abrir o arquivo %s\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+@@ -74,17 +77,17 @@ msgstr "Sem contexto no arquivo %s\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr "Desculpe, run_init somente pode ser usado sobre um kernel SELinux.\n"
++msgstr "Desculpe, run_init pode ser usado somente em um kernel SELinux.\n"
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr "autenticação falhou.\n"
++msgstr "falha na autenticação.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Impossível definir contexto executável para %s.\n"
++msgstr "Não foi possível definir um contexto executável para %s.\n"
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+@@ -104,57 +107,54 @@ msgstr "Não foi possível criar o controlador do semanage"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "Política SELinux não é controlada ou não é possível acessar os dados."
++msgstr ""
++"A política SELinux não é gerenciada ou não foi possível acessar os dados."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "Impossível ler dados da política"
++msgstr "Não foi possível ler os dados da política."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "Impossível estabelecer uma conexão semanage"
++msgstr "Não foi possível estabelecer uma conexão semanage"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Prevod"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Impossível definir intervalo MLS para %s"
++msgstr "Não foi possível testar o status habilitado de MLS"
  
-@@ -159,764 +177,766 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr "Não implementado ainda"
++msgstr "Ainda não está implementado"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Semanage transakcija je već u toku"
++msgstr "A transação do semanage já está em andamento"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
- msgstr "Ne mogu da pokrenem semanage transakciju"
+-msgstr "Impossível iniciar transação semanage"
++msgstr "Não foi possível iniciar a transação semanage"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "Ne mogu da pokrenem semanage transakciju"
-+msgstr "Ne mogu da predam semanage transakciju"
+-msgstr "Impossível iniciar transação semanage"
++msgstr "Não foi possível enviar a transação semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Semanage transakcija nije u toku"
++msgstr "A transação do semanage não está em andamento"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "Ne mogu da popišem SELinux korisnike"
-+msgstr "Ne mogu da popišem SELinux module"
+-msgstr "Impossível listar usuários SELinux"
++msgstr "Não foi possível listar os módulos do SELinux"
  
- #: ../semanage/seobject.py:336
+ #: ../semanage/seobject.py:304
 -#, fuzzy
- msgid "Permissive Types"
--msgstr "Dopuštanje"
-+msgstr "Vrste dopuštanja"
+ msgid "Modules Name"
+-msgstr "Nome do Módulo"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Versão"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Desabilitado"
+@@ -164,9 +164,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Impossível adicionar role %s para %s"
++msgstr ""
+ #: ../semanage/seobject.py:348
+ #, python-format
+@@ -178,24 +178,24 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Tipos permissivos"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Tipos permissivos"
++msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
-+"Nisam mogao da postavim dopustivi domen %s (instalacija modula nije uspela)"
++"Não foi possível definir o domínio %s como permissivo (falha na instalação "
++"do módulo)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
 -msgstr ""
-+msgstr "Nisam mogao da uklonim dopustivi domen %s (uklanjanje nije uspelo)"
++msgstr "Não foi possível remover o domínio permissivo %s (falha na remoção)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -206,48 +206,50 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr "Ne mogu da napravim ključ za %s"
+-msgstr "Impossível criar uma chave para %s"
++msgstr "Não foi possível criar uma chave para %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr "Ne mogu da proverim da li je određeno preslikavanje prijave za %s"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Preslikavanje prijave za %s je već određeno"
+-msgstr "Impossível verificar se o mapeamento de login para %s está definido"
++msgstr ""
++"Não foi possível verificar se o mapeamento de início de sessão para %s está "
++"definido"
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
--msgstr "Linux korisnik %s ne postoji"
-+msgstr "Linux grupa %s ne postoji"
+-msgstr "Usuário Linux %s não existe"
++msgstr "O grupo linux %s não existe"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
  msgid "Linux User %s does not exist"
- msgstr "Linux korisnik %s ne postoji"
+-msgstr "Usuário Linux %s não existe"
++msgstr "O usuário linux %s não existe"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr "Ne mogu da napravim prazno preslikavanje prijave za %s"
+-msgstr "Não foi possível criar mapeamento de login para %s"
++msgstr "Não foi possível criar um mapeamento de início de sessão para %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr "Ne mogu da postavim ime za %s"
+-msgstr "Impossível definir nome para %s"
++msgstr "Não foi possível definir o nome para %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr "Ne mogu da postavim MLS opseg za %s"
+-msgstr "Impossível definir intervalo MLS para %s"
++msgstr "Não foi possível definir o intervalo MLS para %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr "Ne mogu da postavim SELinux korisnika za %s"
+-msgstr "Impossível definir usuário SELinux para %s"
++msgstr "Não foi possível definir o usuário SELinux para %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr "Ne mogu da dodam preslikavanje prijave za %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "Dodaj SELinux korisničko mapiranje"
+-msgstr "Impossível adicionar mapeamento de login para %s"
++msgstr "Não foi possível adicionar o mapeamento de início de sessão para %s"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Zahteva seuser ili serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+@@ -256,44 +258,50 @@ msgstr "Requer seuser ou serange"
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
- msgstr "Preslikavanje prijave za %s nije određeno "
+-msgstr "Mapeamento de login para %s não está definido"
++msgstr "O mapeamento de início de sessão para %s não está definido"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr "Ne mogu da ispitam seuser-a za %s"
+-msgstr "Impossível consultar seuser para %s"
++msgstr "Não foi possível consultar o seuser para %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "Ne mogu da izmenim preslikavanje prijave za %s"
+-msgstr "Impossível modificar mapeamento de login para %s"
++msgstr "Não foi possível modificar o mapeamento de início de sessão para %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "Preslikavanje prijave za %s je određeno u polisi, ne može se brisati"
+ msgstr ""
+-"Mapeamento de login para %s está definido na política, não pode ser excluído"
++"O mapeamento de início de sessão para %s está definido na política, e não "
++"pode ser excluído"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "Ne mogu da obrišem preslikavanje prijave za %s"
+-msgstr "Impossível excluir mapeamento de login para %s"
++msgstr "Não foi possível excluir o mapeamento de início de sessão para %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr "Ne mogu da popišem preslikavanja prijave"
+-msgstr "Impossível listar mapeamentos de logins"
++msgstr "Não foi possível listar os mapeamentos de início de sessão"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "Prijavno ime"
+-msgstr "Nome de Login"
++msgstr "Nome de usuário"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux korisnik"
+ msgstr "Usuário do SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS opseg"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Ne mogu da dodam kontekst datoteke za %s"
-+msgstr "Morate dodati barem jednu ulogu za %s"
+ msgstr "Intervalo MLS/MCS"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+@@ -302,89 +310,90 @@ msgstr "Intervalo MLS/MCS"
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr "Ne mogu da proverim da li je određen SELinux korisnik %s"
+-msgstr "Impossível checar se usuário SELinux %s está definido"
++msgstr "Não foi possível verificar se o usuário SELinux %s está definido"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux korisnik %s je već određen"
+ msgid "Could not query user for %s"
+-msgstr "Impossível consultar usuário para %s"
++msgstr "Não foi possível consultar o usuário por %s"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Impossível adicionar contexto de arquivo para %s"
++msgstr "Você deve adicionar pelo menos uma função para %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr "Ne mogu da napravim SELinux korisnika za %s"
+-msgstr "Impossível criar usuário SELinux for %s"
++msgstr "Não foi possível criar um usuário SELinux para %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr "Ne mogu da dodam ulogu %s za %s"
+-msgstr "Impossível adicionar role %s para %s"
++msgstr "Não foi possível adicionar uma função %s para %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr "Ne mogu da postavim MLS nivo za %s"
+-msgstr "Impossível definir nível MLS para %s"
++msgstr "Não foi possível definir um nível MLS para %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr "Ne mogu da dodam prefiks %s za %s"
+-msgstr "Impossível adicionar prefixo %s para %s"
++msgstr "Não foi possível adicionar um prefixo %s para %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr "Ne mogu da izdvojim ključ za %s"
+-msgstr "Impossível extrair chave para %s"
++msgstr "Não foi possível extrair uma chave para %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr "Ne mogu da dodam SELinux korisnika %s"
+-msgstr "Impossível adicionar usuário SELinux %s"
++msgstr "Não foi possível adicionar o usuário SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr "Zahteva prefiks, uloge, nivo ili opseg"
+-msgstr "Requer prefixo, roles, nível ou intervalo"
++msgstr "Requer prefixo, função, nível ou intervalo"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
- msgstr "Zahteva prefiks ili uloge"
+-msgstr "Requer prefixo ou roles"
++msgstr "Requer prefixo ou função"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr "SELinux korisnik %s nije određen"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Ne mogu da ispitam korisnika za %s"
+-msgstr "Usuário SELinux %s não está definido"
++msgstr "O usuário SELinux %s não está definido"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr "Ne mogu da izmenim SELinux korisnika %s"
+-msgstr "Impossível modificar usuário SELinux %s"
++msgstr "Não foi possível modificar o usuário SELinux %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux korisnik %s je određen u polisi, ne može se brisati"
+-msgstr "Usuário SELinux %s está definido na política, não pode ser excluído"
++msgstr ""
++"O usuário SELinux %s está definido na política, e não pode ser excluído"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr "Ne mogu da obrišem SELinux korisnika %s"
+-msgstr "Impossível excluir usuário SELinux %s"
++msgstr "Não foi possível excluir o usuário SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr "Ne mogu da popišem SELinux korisnike"
+-msgstr "Impossível listar usuários SELinux"
++msgstr "Não foi possível listar os usuários SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr "Ne mogu da popišem uloge za korisnika %s"
+-msgstr "Impossível listar roles para o usuário %s"
++msgstr "Não foi possível listar as funções do usuário %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr "Označavanje"
+-msgstr "Etiquetagem"
++msgstr "Rótulo"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefiks"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS nivo"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS opseg"
+@@ -403,81 +412,81 @@ msgid "MCS Range"
+ msgstr "Intervalo MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux uloge"
+-msgstr "Papéis do SELinux"
++msgstr "Funções do SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Neophodan je udp ili tcp protokol"
+-msgstr "Protocolo udp ou tcp é requerido"
++msgstr "O protocolo udp ou tcp é requerido"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr "Neophodan je port"
+-msgstr "Porta é requerida"
++msgstr "A porta é requerida"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Prefixo inválido %s"
++msgstr ""
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
- msgstr "Ne mogu da napravim ključ za %s/%s"
+-msgstr "Impossível criar uma chave para %s/%s"
++msgstr "Não foi possível criar uma chave para %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
- msgstr "Neophodna je vrsta"
+-msgstr "Tipo é requerido"
++msgstr "O tipo é requerido"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "Ne mogu da proverim da li je port %s/%s određen"
+-msgstr "Impossível checar se a porta %s/%s está definida"
++msgstr "Não foi possível verificar se a porta %s/%s está definida"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
  msgid "Port %s/%s already defined"
- msgstr "Port %s/%s je već određen"
+-msgstr "Porta %s/%s já está definida"
++msgstr "A porta %s/%s já está definida"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr "Ne mogu da napravim port za %s/%s"
+-msgstr "Impossível criar porta para %s/%s"
++msgstr "Não foi possível criar uma porta para %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr "Ne mogu da napravim kontekst %s/%s"
+-msgstr "Impossível criar contexto para %s/%s"
++msgstr "Não foi possível criar um contexto para %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr "Ne mogu da postavim korisnika u kontekstu porta za %s/%s"
+-msgstr "Impossível definir usuário no contexto da porta para %s/%s"
++msgstr "Não foi possível definir o usuário no contexto da porta para %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr "Ne mogu da postavim ulogu u kontekstu porta za %s/%s"
+-msgstr "Impossível definir role no contexto da porta para %s/%s"
++msgstr "Não foi possível definir a função no contexto da porta para %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr "Ne mogu da postavim vrstu u kontekstu porta za %s/%s"
+-msgstr "Impossível definir tipo no contexto da porta para %s/%s"
++msgstr "Não foi possível definir o tipo no contexto da porta para %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Ne mogu da postavim mls polja u kontekstu porta za %s/%s"
+-msgstr "Impossível definir campos mls no contexto da porta para %s/%s"
++msgstr "Não foi possível definir os campos mls no contexto da porta para %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr "Ne mogu da postavim kontekst port za %s/%s"
+-msgstr "Impossível definir contexto da porta para %s/%s"
++msgstr "Não foi possível definir o contexto da porta para %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr "Ne mogu da dodam port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Zahteva setype ili serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Zahteva setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s nije određen"
+-msgstr "Impossível adicionar porta %s/%s"
++msgstr "Não foi possível adicionar a porta %s/%s"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
+@@ -496,61 +505,60 @@ msgstr "A porta %s/%s não está definida"
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr "Ne mogu da ispitam port %s/%s"
+-msgstr "Impossível consultar porta %s/%s"
++msgstr "Não foi possível consultar a porta %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr "Ne mogu da izmenim port %s/%s"
+-msgstr "Impossível modificar porta %s/%s"
++msgstr "Não foi possível modificar a porta %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
  msgid "Could not list the ports"
- msgstr "Ne mogu da izlistam portove"
+-msgstr "Impossível listar as portas"
++msgstr "Não foi possível listar as portas"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
+ #: ../semanage/seobject.py:1101
  #, python-format
  msgid "Could not delete the port %s"
- msgstr "Ne mogu da obrišem port %s"
+-msgstr "Impossível excluir a porta %s"
++msgstr "Não foi possível excluir a porta %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s je određen u polisi, ne može se brisati"
+-msgstr "A porta %s/%s está definida na política, não pode ser excluída"
++msgstr "A porta %s/%s está definida na política, e não pode ser excluída"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr "Ne mogu da obrišem port %s/%s"
+-msgstr "Impossível excluir porta %s/%s"
++msgstr "Não foi possível excluir a porta %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr "Ne mogu da izlistam portove"
+-msgstr "Impossível listar portas"
++msgstr "Não foi possível listar as portas"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "Vrsta SELinux porta"
+-msgstr "Tipo da Porta do SELinux"
++msgstr "Tipo da porta do SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr "Proto"
+-msgstr "Protocolo"
++msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "Broj portova"
+-msgstr "Número da Porta"
++msgstr "Número da porta"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
--msgstr "Neophodan je port"
-+msgstr "Neophodna je adresa čvora"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Neophodan je port"
-+msgstr "Neophodna je mrežna maska čvora"
+-msgstr "Porta é requerida"
++msgstr "O endereço do nó é requerid"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
-+msgstr "Nepoznat ili nedostajući protokol"
++msgstr "O protocolo está faltando ou é desconhecido"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
- msgstr "SELinux vrsta je neophodna"
+-msgstr "Tipo SELinux é requerido"
++msgstr "O tipo SELinux é requerido"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -558,140 +566,139 @@ msgstr "Tipo SELinux é requerido"
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr "Ne mogu da napravim ključ za %s"
+-msgstr "Impossível criar chave para %s"
++msgstr "Não foi possível criar uma chave para %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "Ne mogu da proverim da li je port %s/%s određen"
-+msgstr "Ne mogu da proverim da li je adresa %s određena"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Port %s/%s je već određen"
-+msgstr "Adresa %s je već određena"
+-msgstr "Impossível checar se a porta %s/%s está definida"
++msgstr "Não foi possível verificar se o endereço %s está definido"
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
--msgstr "Ne mogu da napravim ključ za %s"
-+msgstr "Ne mogu da napravim adresu za %s"
+-msgstr "Impossível criar uma chave para %s"
++msgstr "Não foi possível criar um endereço para %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr "Ne mogu da napravim kontekst za %s"
+-msgstr "Impossível criar contexto para %s"
++msgstr "Não foi possível criar um contexto para %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
--msgstr "Ne mogu da postavim ime za %s"
-+msgstr "Ne mogu da postavim masku za %s"
+-msgstr "Impossível definir nome para %s"
++msgstr "Não foi possível definir uma máscara de rede para %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "Ne mogu da postavim korisnika u kontekstu datoteke za %s"
-+msgstr "Ne mogu da postavim korisnika u kontekstu adrese za %s"
+-msgstr "Impossível definir usuário no contexto de arquivo para %s"
++msgstr "Não foi possível definir o usuário no contexto de endereço para %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "Ne mogu da postavim ulogu u kontekstu datoteke za %s"
-+msgstr "Ne mogu da postavim ulogu u kontekstu adrese za %s"
+-msgstr "Impossível definir role no contexto de arquivo para %s"
++msgstr "Não foi possível definir uma função no contexto de endereço para %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "Ne mogu da postavim vrstu u kontekstu datoteke za %s"
-+msgstr "Ne mogu da postavim vrstu u kontekstu adrese za %s"
+-msgstr "Impossível definir tipo no contexto de arquivo para %s"
++msgstr "Não foi possível definir o tipo no contexto de endereço para %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "Ne mogu da postavim mls polja u kontekstu datoteke za %s"
-+msgstr "Ne mogu da postavim mls polja u kontekstu adrese za %s"
+-msgstr "Impossível definir campos mls no contexto de arquivo para %s"
++msgstr "Não foi possível definir os campos mls no contexto de endereço para %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
--msgstr "Ne mogu da postavim kontekst datoteke za %s"
-+msgstr "Ne mogu da postavim kontekst adrese za %s"
+-msgstr "Impossível definir contexto de arquivo para %s"
++msgstr "Não foi possível definir o contexto de endereço para %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
--msgstr "Ne mogu da dodam port %s/%s"
-+msgstr "Ne mogu da dodam adresu %s"
+-msgstr "Impossível adicionar porta %s/%s"
++msgstr "Não foi possível adicionar o endereço %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "Port %s/%s nije određen"
-+msgstr "Adresa %s nije određena"
+-msgstr "A porta %s/%s não está definida"
++msgstr "O endereço %s não está definido"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "Ne mogu da ispitam port %s/%s"
-+msgstr "Ne mogu da ispitam adresu %s"
+-msgstr "Impossível consultar porta %s/%s"
++msgstr "Não foi possível consultar o endereço %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "Ne mogu da izmenim port %s/%s"
-+msgstr "Ne mogu da izmenim adresu %s"
+-msgstr "Impossível modificar porta %s/%s"
++msgstr "Não foi possível modificar o endereço %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Port %s/%s je određen u polisi, ne može se brisati"
-+msgstr "Adresa %s je određena u polisi, ne može se brisati"
+-msgstr "A porta %s/%s está definida na política, não pode ser excluída"
++msgstr "O endereço %s está definido na política, e não pode ser excluído"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "Ne mogu da obrišem %s"
-+msgstr "Ne mogu da obrišem adresu %s"
+-msgstr "Impossível excluir a %s"
++msgstr "Não foi possível excluir o endereço %s"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Impossível excluir mapeamento de login para %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
  msgid "Could not list addrs"
--msgstr "Ne mogu da izlistam portove"
-+msgstr "Ne mogu da izlistam adrese"
+-msgstr "Impossível listar portas"
++msgstr "Não foi possível listar os endereços"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "Ne mogu da proverim da li je sučelje %s određeno"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Sučelje %s je već određeno"
+-msgstr "Impossível checar se a interface %s está definida"
++msgstr "Não foi possível verificar se a interface %s está definida"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr "Ne mogu da napravim sučelje za %s"
+-msgstr "Impossível criar interface para %s"
++msgstr "Não foi possível criar uma interface para %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr "Ne mogu da postavim korisnika u kontekstu sučelja za %s"
+-msgstr "Impossível definir usuário no contexto da interface para %s"
++msgstr "Não foi possível definir o usuário no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr "Ne mogu da postavim ulogu u kontekstu sučelja za %s"
+-msgstr "Impossível definir role no contexto da interface para %s"
++msgstr "Não foi possível definir a função no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr "Ne mogu da postavim vrstu u kontekstu sučelja za %s"
+-msgstr "Impossível definir tipo no contexto da interface para %s"
++msgstr "Não foi possível definir o tipo no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr "Ne mogu da postavim mls polja u kontekstu sučelja za %s"
+-msgstr "Impossível definir campos mls no contexto da interface para %s"
++msgstr ""
++"Não foi possível definir os campos mls no contexto da interface para %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr "Ne mogu da postavim kontekst sučelja za %s"
+-msgstr "Impossível definir contexto da interface para %s"
++msgstr "Não foi possível definir o contexto da interface para %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr "Ne mogu da postavim kontekst poruke za %s"
+-msgstr "Impossível definir contexto da mensagem para %s"
++msgstr "Não foi possível definir o contexto da mensagem para %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr "Ne mogu da dodam sučelje %s"
+-msgstr "Impossível adicionar interface %s"
++msgstr "Não foi possível adicionar a interface %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
- msgid "Interface %s is not defined"
- msgstr "Sučelje %s nije određeno"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+@@ -701,31 +708,30 @@ msgstr "A interface %s não está definida"
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr "Ne mogu da ispitam sučelje %s"
+-msgstr "Impossível consultar interface %s"
++msgstr "Não foi possível consultar a interface %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr "Ne mogu da izmenim sučelje %s"
+-msgstr "Impossível modificar interface %s"
++msgstr "Não foi possível modificar a interface %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Sprega %s je određena u polisi, ne može se brisati"
+-msgstr "A interface %s está definida na política, não pode ser excluída"
++msgstr "A interface %s está definida na política, e não pode ser excluída"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr "Ne mogu da obrišem sučelje %s"
+-msgstr "Impossível excluir interface %s"
++msgstr "Não foi possível excluir a interface %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Impossível excluir interface %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Ne mogu da popišem sučelja"
+-msgstr "Impossível listar interfaces"
++msgstr "Não foi possível listar as interfaces"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr "SELinux sučelje"
+@@ -736,9 +742,9 @@ msgid "Context"
+ msgstr "Contexto"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Kontekst"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Contexto do arquivo para %s já definido"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -746,28 +752,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Usuário Linux %s não existe"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr "Ne mogu da postavim korisnika u kontekstu datoteke za %s"
+-msgstr "Impossível definir usuário no contexto de arquivo para %s"
++msgstr "Não foi possível definir o usuário no contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr "Ne mogu da postavim ulogu u kontekstu datoteke za %s"
+-msgstr "Impossível definir role no contexto de arquivo para %s"
++msgstr "Não foi possível definir a função no contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "Ne mogu da postavim mls polja u kontekstu datoteke za %s"
+-msgstr "Impossível definir campos mls no contexto de arquivo para %s"
++msgstr "Não foi possível definir os campos mls no contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr "Neispravna specifikacija datoteke"
+-msgstr "Especificação do arquivo inválida"
++msgstr "Especificação inválida do arquivo"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -784,28 +790,29 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr "Ne mogu da proverim da li je određen kontekst datoteke za %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Kontekst datoteke za %s je već određen"
+-msgstr "Impossível checar se o contexto do arquivo para %s está definido"
++msgstr ""
++"Não foi possível verificar se o contexto do arquivo para %s está definido"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr "Ne mogu da napravim kontekst datoteke za %s"
+-msgstr "Impossível criar contexto de arquivo para %s"
++msgstr "Não foi possível criar um contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr "Ne mogu da postavim vrstu u kontekstu datoteke za %s"
+-msgstr "Impossível definir tipo no contexto de arquivo para %s"
++msgstr "Não foi possível definir o tipo no contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr "Ne mogu da postavim kontekst datoteke za %s"
+-msgstr "Impossível definir contexto de arquivo para %s"
++msgstr "Não foi possível definir o contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr "Ne mogu da dodam kontekst datoteke za %s"
+-msgstr "Impossível adicionar contexto de arquivo para %s"
++msgstr "Não foi possível adicionar o contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr "Zahteva setype, serange ili seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+@@ -814,45 +821,46 @@ msgstr "Requer setype, serange ou seuser"
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr "Kontekst datoteke za %s nije određen"
+-msgstr "Contexto de arquivo para %s não está definido"
++msgstr "O contexto de arquivo para %s não está definido"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr "Ne mogu da ispitam kontekst datoteke za %s"
+-msgstr "Impossível consultar contexto de arquivo para %s"
++msgstr "Não foi possível consultar o contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr "Ne mogu da izmenim kontekst datoteke %s"
+-msgstr "Impossível modificar contexto de arquivo para %s"
++msgstr "Não foi possível modificar o contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
- msgstr "Ne mogu da izlistam kontekste datoteka"
+-msgstr "Impossível listar contextos de arquivos "
++msgstr "Não foi possível listar os contextos de arquivos "
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
- msgstr "Ne mogu da obrišem kontekst datoteke %s"
+-msgstr "Impossível excluir contexto de arquivo  %s"
++msgstr "Não foi possível excluir os contexto do arquivo  %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "Kontekst datoteke za %s je određen u polisi, ne može se brisati"
+ msgstr ""
+-"Contexto de arquivo para %s está definido na política, não pode ser excluído"
++"O contexto de arquivo para %s está definido na política, e não pode ser "
++"excluído"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr "Ne mogu da obrišem kontekst datoteke %s"
+-msgstr "Impossível excluir contexto de arquivo para %s"
++msgstr "Não foi possível excluir o contexto de arquivo para %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr "Ne mogu da popišem kontekste datoteka"
+-msgstr "Impossível listar contextos de arquivos"
++msgstr "Não foi possível listar os contextos de arquivos"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr "Ne mogu da popišem lokalne kontekste datoteka"
+-msgstr "Impossível listar contextos de arquivos locais"
++msgstr "Não foi possível listar os contextos de arquivos locais"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
+@@ -869,17 +877,16 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "vrsta"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "fcontext do SELinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr "Ne mogu da proverim da li je određen logički izraz %s"
+-msgstr "Impossível checar se Booleano %s está definido"
++msgstr "Não foi possível verificar se o booleano %s está definido"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Logički izraz %s nije određen"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+@@ -889,12 +896,12 @@ msgstr "Booleano %s não está definido"
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr "Ne mogu da ispitam kontekst datoteke %s"
+-msgstr "Impossível consultar contexto de arquivo %s"
++msgstr "Não foi possível consultar o contexto de arquivo %s"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "Morate uneti vrednost"
-+msgstr "Morate navesti jednu od sledećih vrednosti: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Ne mogu da obrišem logički izraz %s"
-+msgstr "Ne mogu da postavim aktivnu vrednost logičke %s"
+-msgstr "Você deve especificar um valor"
++msgstr "Você deve especificar um dos seguintes valores: %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2004
+ #, python-format
+@@ -904,26 +911,26 @@ msgstr "Não foi possível definir o valor ativo do booleano %s"
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr "Ne mogu da izmenim logički izraz %s"
+-msgstr "Impossível modificar booleano %s"
++msgstr "Não foi possível modificar o booleano %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
-+msgstr "Loš format %s: zapis %s"
++msgstr "O formato %s é inválido: Registro %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Logički izraz %s je određen u polisi, ne može se brisati"
+-msgstr "Booleano %s está definido na política, não pode ser excluído"
++msgstr "O booleano %s está definido na política, e não pode ser excluído"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr "Ne mogu da obrišem logički izraz %s"
+-msgstr "Impossível excluir booleano %s"
++msgstr "Não foi possível excluir o booleano %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr "Ne mogu da popišem logičke izraze"
+-msgstr "Impossível listar portas booleanas"
++msgstr "Não foi possível listar os booleanos"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr "nepoznato"
+@@ -931,26 +938,26 @@ msgstr "desconhecido"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr "isključeno"
+-msgstr "desligado"
++msgstr "desativado"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
- msgstr "uključeno"
+-msgstr "Ativo"
++msgstr "ativado"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr "SELinux logička"
+ msgstr "Booleano do SELinux"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Status"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "Opis"
+ msgstr "Descrição"
+@@ -963,7 +970,7 @@ msgstr "falhou ao definir PAM_TTY\n"
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+ msgstr ""
+-"newrole: Estouro de capacidade da tabela hash da configuração do nome do "
++"newrole: estouro de capacidade da tabela hash de configuração do nome do "
+ "serviço\n"
  
-@@ -957,7 +977,7 @@
- msgstr "Ne mogu da očistim okruženje\n"
+ #: ../newrole/newrole.c:300
+@@ -974,7 +981,7 @@ msgstr "newrole:  %s:  erro na linha %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "impossível encontrar entrada válida no arquivo passwd.\n"
++msgstr "Não foi possível localizar a entrada válida no arquivo passwd.\n"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Greška pri inicijalizaciji mogućnosti, odustajem.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+@@ -984,27 +991,27 @@ msgstr "Memória insuficiente!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Erro! Shell não é valido.\n"
++msgstr "Erro!  Shell não é valido.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+ msgid "Unable to clear environment\n"
+-msgstr "Impossível limpar ambiente\n"
++msgstr "Não foi possível limpar o ambiente\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr "Erro ao mudar uid, abortando.\n"
++msgstr "Erro ao mudar o uid, abortando.\n"
+ #: ../newrole/newrole.c:612
+ #, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr "Erro ao restaurar KEEPCAPS, abortando\n"
++msgstr "Erro ao restaurar o KEEPCAPS, abortando\n"
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "Erro ao conectar com sistema audit.\n"
++msgstr "Erro ao conectar com o sistema auditoria.\n"
+ #: ../newrole/newrole.c:641
+ #, c-format
+@@ -1014,47 +1021,51 @@ msgstr "Erro ao alocar memória.\n"
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "Erro ao enviar mensagem audit.\n"
++msgstr "Erro ao enviar mensagem de auditoria.\n"
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Impossível determinar modo forçado.\n"
++msgstr "Não foi possível determinar modo forçado.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Erro!  Impossível abrir %s.\n"
++msgstr "Erro!  Não foi possível abrir %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr "%s! Impossível obter o atual contexto para %s, não reetiquetar tty.\n"
++msgstr ""
++"%s! Não foi possível obter o atual contexto para %s, o rótulo do tty não foi "
++"modificado.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr "%s! Impossível obter novo contexto para %s, não reetiquetar tty.\n"
++msgstr ""
++"%s! Não foi possível obter novo contexto para %s, o rótulo do tty não foi "
++"modificado.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!  Impossível definir novo contexto para %s\n"
++msgstr "%s!  Não foi possível definir novo contexto para %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+ msgid "%s changed labels.\n"
+-msgstr "%s etiquetas alteradas.\n"
++msgstr "%s rótulos alterados.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Atenção! Impossível restaurar contexto para %s\n"
++msgstr "Atenção! Não foi possível restaurar contexto para %s\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "Erro: múltiplas roles especificadas\n"
++msgstr "Erro: múltiplas funções especificadas\n"
+ #: ../newrole/newrole.c:843
+ #, c-format
+@@ -1064,7 +1075,7 @@ msgstr "Erro: múltiplos tipos especificados\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr "Desculpe, -l pode ser usado com suporte SELinux MLS.\n"
++msgstr "Desculpe, -l pode ser usado com suporte ao SELinux MLS.\n"
+ #: ../newrole/newrole.c:855
+ #, c-format
+@@ -1075,43 +1086,43 @@ msgstr "Erro: múltiplos níveis especificados\n"
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+ msgstr ""
+-"Erro: você não está habilitado a alterar os níveis em um terminal não "
++"Erro: você não tem permissão para alterar os níveis em um terminal não "
+ "seguro \n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Impossível obter o tipo padrão.\n"
++msgstr "Não foi possível obter o tipo padrão.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "falhou ao obter novo contexto.\n"
++msgstr "falha ao obter novo contexto.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "falhou ao definir nova role %s\n"
++msgstr "falha ao definir nova função %s\n"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "falhou ao definir novo tipo %s\n"
++msgstr "falha ao definir novo tipo %s\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "falhou ao construir novo intervalo com níveis %s\n"
++msgstr "falha ao construir novo intervalo com nível %s\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "falhou ao definir novo intervalo %s\n"
++msgstr "falha ao definir o novo intervalo %s\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "falhou ao converter novo contexto para uma seqüência de caracteres\n"
++msgstr "falha ao converter novo contexto para um string\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+@@ -1121,32 +1132,32 @@ msgstr "%s não é um contexto válido\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "Impossível alocar memória para new_context"
++msgstr "Não foi possível alocar memória para nobo_contexto"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "Impossível obter signal set vazio\n"
++msgstr "Não foi possível obter um conjunto de sinal vazio\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "Impossível configurar tratador de SIGHUP\n"
++msgstr "Não foi possível configurar o manipulador de SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr "Desculpe, newrole pode ser usado somente sobre um kernel SELinux.\n"
++msgstr "Desculpe, nova função pode ser usado somente em um kernel SELinux.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "falhou ao obter contexto antigo.\n"
++msgstr "falha ao obter o _contexto antigo.\n"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Erro!  Impossível recuperar informações do tty.\n"
++msgstr "Atenção!  Não foi possível recuperar informações do tty.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+@@ -1156,17 +1167,17 @@ msgstr "erro ao ler a configuração do serviço PAM.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "newrole: senha incorreta para %s\n"
++msgstr "nova função: senha incorreta para %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr "newrole: falha de bifurcação: %s"
++msgstr "nova função: falha de bifurcação: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "Impossível restaurar etiqueta tty...\n"
++msgstr "Não foi possível restaurar o rótulo do tty...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+@@ -1176,7 +1187,7 @@ msgstr "Não foi possível fechar o tty adequadamente\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Impossível fechar descritores.\n"
++msgstr "Não foi possível fechar os descritores.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+@@ -1186,7 +1197,7 @@ msgstr "Erro ao alocar argv0 do shell.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "Impossível restaurar o ambiente, abortando\n"
++msgstr "Não foi possível restaurar o ambiente, abortando\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+@@ -1205,12 +1216,13 @@ msgstr "%s:  A política já está carregada e a carga inicial foi solicitada\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  Impossível carregar política e aplicar o modo requisitado:  %s\n"
++msgstr ""
++"%s:  Não foi possível carregar a política e o modo forçado solicitado:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s:  Impossível carregar política:  %s\n"
++msgstr "%s:  Não foi possível carregar a política:  %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+@@ -1219,7 +1231,7 @@ msgstr "Requer pelo menos uma categoria"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr "Não se pode modificar os níveis de sensibilidade usando '+' em %s"
++msgstr "Não se pode modificar os níveis de sensibilidade usando \"+\" em %s"
+ #: ../scripts/chcat:110
+ #, c-format
+@@ -1242,27 +1254,27 @@ msgstr "Não se pode ter sensibilidades múltiplas"
+ #: ../scripts/chcat:325
+ #, c-format
+ msgid "Usage %s CATEGORY File ..."
+-msgstr "Uso %s CATEGORY Arquivo ..."
++msgstr "Uso %s CATEGORIA arquivo ..."
+ #: ../scripts/chcat:326
+ #, c-format
+ msgid "Usage %s -l CATEGORY user ..."
+-msgstr "Uso %s -l CATEGORY usuário ..."
++msgstr "Uso %s -l CATEGORIA usuário ..."
+ #: ../scripts/chcat:327
+ #, c-format
+ msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr "Uso %s [[+|-]CATEGORY],...]q Arquivo ..."
++msgstr "Uso %s [[+|-]CATEGORIA],...]q arquivo ..."
+ #: ../scripts/chcat:328
+ #, c-format
+ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr "Uso %s -l [[+|-]CATEGORY],...]q usuário ..."
++msgstr "Uso %s -l [[+|-]CATEGORIA],...]q usuário ..."
+ #: ../scripts/chcat:329
+ #, c-format
+ msgid "Usage %s -d File ..."
+-msgstr "Uso %s -d Arquivo ..."
++msgstr "Uso %s -d arquivo ..."
  
-@@ -1291,1719 +1311,2244 @@
+ #: ../scripts/chcat:330
+ #, c-format
+@@ -1291,2244 +1303,2096 @@ msgstr "chcat -- -EmpresaConfidencial /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +EmpresaConfidencial juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Greška opcija %s "
+-msgstr "Erro de Opções %s "
++msgstr "Erro nas opções %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Impossível abrir %s: traduções não suportadas em máquinas não-MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "Nível"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "Tradução"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Traduções não podem conter espaços '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Nível Inválido '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s já definido nas traduções"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s não definido nas traduções"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mapeamento de login para %s já está definido"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "adicionar mapeamento de usuário do SELinux"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "Usuário SELinux %s já está definido"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Porta é requerida"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Porta %s/%s já está definida"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Interface %s já definida"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Erro ao iniciar potencialidades, abortando.\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Erro ao tentar definir potencialidades, abortando.\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Erro ao tentar definir KEEPCAPS, abortando\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Erro ao remover potencialidades, abortando.\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Erro ao remover a potencialidade SETUID, abortando.\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Erro ao liberar caps\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
  
 -#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "prevodi nisu podržani na mašinama koje nisu MLS"
--
+-#~ msgstr "traduções não suportadas em maquinas não-MLS"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 -#~ msgid "Boolean"
--#~ msgstr "Logička vrednost"
--
+-#~ msgstr "Booleano"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
 -#~ msgid "all"
--#~ msgstr "sve"
+-#~ msgstr "Todas "
 -
 -#~ msgid "Customized"
--#~ msgstr "Prilagođen"
+-#~ msgstr "Personalizado"
 -
 -#~ msgid "File Labeling"
--#~ msgstr "Označavanje datoteka"
+-#~ msgstr "Etiquetagem dos Arquivos"
 -
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
 -#~ msgstr ""
--#~ "Specifikacije\n"
--#~ "datoteke"
+-#~ "Especificação do\n"
+-#~ "Arquivo"
 -
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr ""
 -#~ "Selinux\n"
--#~ "Vrsta datoteke"
+-#~ "Tipo do Arquivo"
 -
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Type"
 -#~ msgstr ""
--#~ "Vrsta\n"
--#~ "datoteke"
+-#~ "Tipo do\n"
+-#~ "Arquivo"
 -
 -#~ msgid "User Mapping"
--#~ msgstr "Mapiranje korisnika"
+-#~ msgstr "Mapeamento de Usuários"
 -
 -#~ msgid ""
 -#~ "Login\n"
 -#~ "Name"
 -#~ msgstr ""
--#~ "Prijavno\n"
--#~ "ime"
+-#~ "Nome de\n"
+-#~ "Usuário"
 -
 -#~ msgid ""
 -#~ "SELinux\n"
 -#~ "User"
 -#~ msgstr ""
--#~ "SELinux\n"
--#~ "korisnik"
+-#~ "Usuário do\n"
+-#~ "SELinux"
 -
 -#~ msgid ""
 -#~ "MLS/\n"
 -#~ "MCS Range"
 -#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS opseg"
+-#~ "Intervalo\n"
+-#~ "MLS/MCS"
 -
 -#~ msgid "Login '%s' is required"
--#~ msgstr "Prijava „%s“ je neophodna"
+-#~ msgstr "O login \"%s\" é requerido"
 -
 -#~ msgid "Policy Module"
--#~ msgstr "Modul polise"
--
--#~ msgid "Module Name"
--#~ msgstr "Ime modula"
--
--#~ msgid "Version"
--#~ msgstr "Verzija"
+-#~ msgstr "Módulo da Política"
 -
 -#~ msgid "Disable Audit"
--#~ msgstr "Isključi Audit"
+-#~ msgstr "Desabilitar o Audit"
 -
 -#~ msgid "Enable Audit"
--#~ msgstr "Uključi Audit"
+-#~ msgstr "Habilitar o Audit"
 -
 -#~ msgid "Load Policy Module"
--#~ msgstr "Učitaj modul polise"
+-#~ msgstr "Carregar Módulo de Política"
 -
 -#~ msgid "Polgen"
 -#~ msgstr "Polgen"
 -
 -#~ msgid "Red Hat 2007"
--#~ msgstr "Red Het 2007"
+-#~ msgstr "Red Hat 2007"
 -
 -#~ msgid "GPL"
 -#~ msgstr "GPL"
 -
 -#~ msgid "translator-credits"
--#~ msgstr "Miloš Komarčević <kmilos@gmail.com>, 2007."
+-#~ msgstr ""
+-#~ "Diego Búrigo Zacarão <diegobz@projetofedora.org>\n"
+-#~ "Valnir Ferreira Jr <vferreir@redhat.com>\n"
+-#~ "Igor Pires Soares <igor@projetofedora.org>\n"
+-#~ "Oliver Silva <oliverpsilva@gmail.com>"
 -
 -#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Alat za pravljenje SELinux polisa"
+-#~ msgstr "Ferramenta de Criação de Políticas do SELinux"
 -
 -#~ msgid ""
 -#~ "This tool can be used to generate a policy framework, to confine "
@@ -242683,299 +190079,310 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 -#~ "File context file (fc)\n"
 -#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "Ova alatka se može upotrebiti za pravljenje radnog okvira polisa, radi "
--#~ "ograničavanja programa i korisnika koristeći SELinux.   \n"
+-#~ "Esta ferramenta pode ser utilizada para gerar um framework de políticas, "
+-#~ "para restringir aplicações ou usuários usando o SELinux.\n"
 -#~ "\n"
--#~ "Alatka proizvodi:\n"
--#~ "datoteku za primoravanje vrste (te)\n"
--#~ "datoteku sučelja (if)\n"
--#~ "datoteku sa kontekstima datoteka (fc)\n"
--#~ "skriptu komandnog okruženja (sh) - koristi se za kompiliranje i "
--#~ "instalaciju polise. "
+-#~ "Esta ferramenta gera:\n"
+-#~ "Arquivo do tipo de execução (te)\n"
+-#~ "Arquivo de Interface (if)\n"
+-#~ "Arquivo do arquivo de contexto (fc)\n"
+-#~ "Shell script (sh) - usado para compilar e instalar a política."
 -
 -#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Izaberite vrstu programa/korisničke uloge koju treba ograničiti"
+-#~ msgstr "Selecione um papel do tipo aplicação/usuário para ser confinada"
 -
 -#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Programi</b>"
+-#~ msgstr "<b>Aplicações</b>"
 -
 -#~ msgid ""
 -#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
 -#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "Standardna init sistemska usluga su usluge koji se pokreću sa podizanjem "
--#~ "sistema preko init skripti.  Obično zahteva skriptu u /etc/rc.d/init.d"
+-#~ "Standard Init Daemon são daemons iniciados na inicialização através de "
+-#~ "scripts de inicialização. Normalmente necessitam de um script em /etc/"
+-#~ "init.d."
 -
 -#~ msgid "Standard Init Daemon"
--#~ msgstr "Standardna init sistemska usluga"
+-#~ msgstr "Daemons de Inicialização Padrão"
 -
 -#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Sistemska usluga za internet servise su usluge koje pokreće xinetd"
+-#~ msgstr "Internet Services Daemon são daemons iniciados pelo xinetd"
 -
 -#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Sistemska usluga za internet servise (inetd)"
+-#~ msgstr "Internet Services Daemon (inetd)"
 -
 -#~ msgid ""
 -#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
 -#~ "(apache)"
 -#~ msgstr ""
--#~ "Veb programi/skripte (CGI) CGI skripte koje pokreće veb server (apache)"
+-#~ "Aplicações/Scripts (CGI) Web - Scripts CGI iniciados pelo servidor web "
+-#~ "(apache)"
 -
 -#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Veb programi/skripte (CGI)"
+-#~ msgstr "Aplicações/Scripts (CGI) Web"
 -
 -#~ msgid ""
 -#~ "User Application are any application that you would like to confine that "
 -#~ "is started by a user"
 -#~ msgstr ""
--#~ "Korisnički program je bilo koji program koji biste želeli da ograničite "
--#~ "da je startovan od strane korisnika"
+-#~ "Aplicações do Usuário são quaisquer aplicações iniciadas por eles que "
+-#~ "você gostaria de restringir"
 -
 -#~ msgid "User Application"
--#~ msgstr "Korisnički program"
+-#~ msgstr "Aplicações do Usuário"
 -
 -#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Korisnici prijavljivanja</b>"
+-#~ msgstr "<b>Usuários de Login</b>"
 -
 -#~ msgid "Modify an existing login user record."
--#~ msgstr "Izmeni postojeći zapis korisnika za prijavljivanje."
+-#~ msgstr "Modifique um registro existente de login de usuário."
 -
 -#~ msgid "Existing User Roles"
--#~ msgstr "Postojeće korisničke uloge"
+-#~ msgstr "Regras para Usuários Existentes"
 -
 -#~ msgid ""
 -#~ "This user will login to a machine only via a terminal or remote login.  "
 -#~ "By default this user will have  no setuid, no networking, no su, no sudo."
 -#~ msgstr ""
--#~ "Ovaj korisnik će se prijaviti na mašinu samo preko terminala ili "
--#~ "udaljenom prijavom. Podrazumevano ovaj korisnik neće imati setuid, mrežu, "
--#~ "sudo, niti su."
+-#~ "Este usuário poderia fazer login nesta maquina via X ou Terminal. Por "
+-#~ "padrão este usuário não tem setuid, sem rede, sem sudo ou su"
 -
 -#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Minimalna uloga korisnika terminala"
+-#~ msgstr "Regra Mínima para Usuários de Terminal"
 -
 -#~ msgid ""
 -#~ "This user can login to a machine via X or terminal.  By default this user "
 -#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
--#~ "Ovaj korisnik može da se prijavi na mašinu preko X sistema prozora ili "
--#~ "terminala. Podrazumevano ovaj korisnik neće imati setuid, mrežu, sudo, "
--#~ "niti su"
+-#~ "Este usuário pode fazer login nesta maquina via X ou Terminal. Por padrão "
+-#~ "este usuário não tem setuid, sem rede, sem sudo ou su"
 -
 -#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Minimalna uloga korisnika X sistema prozora"
+-#~ msgstr "Regra de usuário Mínima para X Windows"
 -
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "sudo, no su."
 -#~ msgstr ""
--#~ "Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez sudo, "
--#~ "bez su."
+-#~ "usuário com acesso total a rede, sem setuid se acesso a plicações, sem "
+-#~ "sudo ou su"
 -
 -#~ msgid "User Role"
--#~ msgstr "Korisnička uloga"
+-#~ msgstr "Regra de Usuário"
 -
 -#~ msgid ""
 -#~ "User with full networking, no setuid applications without transition, no "
 -#~ "su, can sudo to Root Administration Roles"
 -#~ msgstr ""
--#~ "Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez su, "
--#~ "može da koristi sudo na korisničkim ulogama Root administratora"
+-#~ "Usuário pode ter com acesso total a rede, sem setuid e sem acesso as "
+-#~ "aplicações, sem su, ou pode usar sudo para Administração das regras de "
+-#~ "Root"
 -
 -#~ msgid "Admin User Role"
--#~ msgstr "Uloga administratorskog korisnika"
+-#~ msgstr "Regras de Usuários Admin"
 -
 -#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Root korisnici</b>"
+-#~ msgstr "<b>Usuários Root</b>"
 -
 -#~ msgid ""
 -#~ "Select Root Administrator User Role, if this user will be used to "
 -#~ "administer the machine while running as root.  This user will not be able "
 -#~ "to login to the system directly."
 -#~ msgstr ""
--#~ "Izaberite korisničku ulogu Root administratora, ako će ovaj korisnik "
--#~ "vršiti administraciju mašine dok radi kao root. Ovaj korisnik neće moći "
--#~ "da se direktno prijavi u sistem."
+-#~ "Selecione o Usuário Root, se este usuário for utilizado para administrar "
+-#~ "a máquina ao executar como root. Este usuário estará habilitado a "
+-#~ "autenticar no sistema diretamente."
 -
 -#~ msgid "Root Admin User Role"
--#~ msgstr "Korisnička uloga Root administratora"
+-#~ msgstr "Regra de Usuário Admin Root"
 -
 -#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Unesite naziv programa ili korisničku ulogu koju treba ograničiti."
+-#~ msgstr "Selecione um regra de usuário ou aplicação a ser confinada."
 -
 -#~ msgid "Name"
--#~ msgstr "Ime"
+-#~ msgstr "Nome"
 -
 -#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Unesite punu putanju izvršne datoteke koju treba ograničiti."
+-#~ msgstr "Insira o caminho completo para o executável a ser restrito."
 -
 -#~ msgid "..."
 -#~ msgstr "..."
 -
 -#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Unesite jedinstveni naziv za ograničeni program ili korisničku ulogu."
+-#~ msgstr "Insira um nome único para o papel de aplicação ou usuário."
 -
 -#~ msgid "Executable"
--#~ msgstr "Izvršna datoteka"
+-#~ msgstr "Executável"
 -
 -#~ msgid "Init script"
--#~ msgstr "Init skripta"
+-#~ msgstr "Script de inicialização"
 -
 -#~ msgid ""
 -#~ "Enter complete path to init script used to start the confined application."
 -#~ msgstr ""
--#~ "Unesite potpunu putanju do skripte za inicijalizaciju, koja startuje "
--#~ "ograničeni program."
+-#~ "Insira o caminho completo para script de inicialização usado para iniciar "
+-#~ "a aplicação restrita."
 -
 -#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Izaberite korisničke uloge koje želite da prilagodite"
+-#~ msgstr "Selecione os papéis de usuários que você deseja customizar"
 -
 -#~ msgid ""
 -#~ "Select the user roles that will transiton to this applications domains."
 -#~ msgstr ""
--#~ "Izaberite korisničke uloge koje će se prebaciti na ove programske domene."
+-#~ "Selecione os papéis do usuário que irá acessar os domínios de aplicações"
 -
 -#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr ""
--#~ "Izaberite dodatne domene kroz koje će ova korisnička uloga prolaziti"
+-#~ msgstr "Selecione o(s) domínio(s) de usuário adicionais para a transição"
 -
 -#~ msgid ""
 -#~ "Select the applications domains that you would like this user role to "
 -#~ "transition to."
 -#~ msgstr ""
--#~ "Izaberite programske domene na koje biste želeli da se ova korisnička "
--#~ "uloga prebaci."
+-#~ "Selecione os domínios de aplicações para os quais você gostaria que este "
+-#~ "papel de usuário transitasse."
 -
 -#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "Izaberite korisničke uloge koje će se prebaciti na ovaj domen"
+-#~ msgstr "Selecione os papéis de usuário de acesso ao domínio"
 -
 -#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "Izaberite dodatne domene koje će ovaj korisnik administrirati"
+-#~ msgstr "Selecione o(s) domínio(s) que este papel de usuário administrará"
 -
 -#~ msgid "Select the domains that you would like this user administer."
 -#~ msgstr ""
--#~ "Izaberite programske domene koje biste želeli ovaj korisnik administrira"
+-#~ "Selecione os domínios que você gostaria que este usuário administrasse."
 -
 -#~ msgid "Select additional roles for this user"
--#~ msgstr "Izaberite dodatne uloge za ovog korisnika"
+-#~ msgstr "Selecione papéis adicionais para esse usuário"
 -
 -#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "Unesite mrežne portove koje ova uloga programa/korisnika osluškuje"
+-#~ msgstr ""
+-#~ "Insira portas de rede que o papel de usuário/aplicação está escutando"
 -
 -#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP portovi</b>"
+-#~ msgstr "<b>Portas TCP</b>"
 -
 -#~ msgid "Allows confined application/user role to bind to any udp port"
 -#~ msgstr ""
--#~ "Dozvoljava ograničenoj ulozi programa/korisnika da se veže na bilo koji "
--#~ "udp port"
+-#~ "Permite que regras de aplicações/usuários restritas sejam vinculados a "
+-#~ "uma porta udp qualquer"
 -
 -#~ msgid "All"
--#~ msgstr "Sve"
+-#~ msgstr "Todas"
 -
 -#~ msgid ""
 -#~ "Allow application/user role to call bindresvport with 0. Binding to port "
 -#~ "600-1024"
 -#~ msgstr ""
--#~ "Dozvoli ulozi programa/korisnika da pozove bindresvport sa 0. Vezivanje "
--#~ "na portove 600-1024"
--
+-#~ "Permite que aplicações/usuários chamem o bindresvport com 0. Vinculando "
+-#~ "às portas 600-1024 "
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
--
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje "
--#~ "se veže uloga programa/korisnika. Primer: 612, 650-660"
+-#~ "Insira uma lista de portas udp, separadas por vírgulas, ou intervalos de "
+-#~ "portas às quais esta aplicação/papel de usuário está vinculada. Exemplo: "
+-#~ "612, 650-660"
 -
 -#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Nerezervisani portovi (>1024)"
+-#~ msgstr "Portas não reservadas (>1024)"
 -
 -#~ msgid "Select Ports"
--#~ msgstr "Izaberi portove"
+-#~ msgstr "Selecione as Portas"
 -
 -#~ msgid "Allows application/user role to bind to any udp ports > 1024"
 -#~ msgstr ""
--#~ "Dozvoljava ulozi programa/korisnika da se veže na bilo koji udp port > "
+-#~ "Permite que aplicações/usuários sejam vinculados a qualquer porta udp > "
 -#~ "1024"
 -
 -#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP portovi</b>"
+-#~ msgstr "<b>Portas UDP</b>"
 -
 -#~ msgid "Enter network ports that application/user role connects to"
 -#~ msgstr ""
--#~ "Unesite mrežne portove na koje se ova uloga programa/korisnika povezuje"
+-#~ "Insira portas de rede as quais este papel de usuário/aplicação está "
+-#~ "conectado"
 -
 -#~ msgid ""
 -#~ "Enter a comma separated list of tcp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Unesite spisak tcp portova ili opseg portova razdvojene zarezima na koje "
--#~ "se povezuje uloga programa/korisnika. Primer: 612, 650-660"
+-#~ "Insira uma lista de portas tcp, separadas por vírgulas, ou intervalos de "
+-#~ "portas às quais esta aplicação/papel de usuário está conectada. Exemplo: "
+-#~ "612, 650-660"
 -
 -#~ msgid ""
 -#~ "Enter a comma separated list of udp ports or ranges of ports that "
 -#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje "
--#~ "se povezuje uloga programa/korisnika. Primer: 612, 650-660"
+-#~ "Insira uma lista de portas udp, separadas por vírgulas, ou intervalos de "
+-#~ "portas às quais esta aplicação/papel de usuário está conectada. Exemplo: "
+-#~ "612, 650-660"
 -
 -#~ msgid "Select common application traits"
--#~ msgstr "Izaberite uobičajene karakteristike programa"
+-#~ msgstr "Selecione as características comuns da aplicação"
 -
 -#~ msgid "Writes syslog messages\t"
--#~ msgstr "Piše syslog poruke\t"
+-#~ msgstr "Escreve mensages no syslog\t"
 -
 -#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "Napravi/rukovodi privremenim podacima u /tmp"
+-#~ msgstr ""
+-#~ "A aplicação utiliza o /tmp para criar/manipular arquivos temporários "
 -
 -#~ msgid "Uses Pam for authentication"
--#~ msgstr "Koristi Pam za autentifikaciju"
+-#~ msgstr "Utiliza o PAM para autenticação"
 -
 -#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Koristi nsswitch ili getpw* pozive"
+-#~ msgstr "Ustilizar nsswitch ou chamadas getpw*"
 -
 -#~ msgid "Uses dbus"
--#~ msgstr "Koristi dbus"
+-#~ msgstr "Utilize dbus"
 -
 -#~ msgid "Sends audit messages"
--#~ msgstr "Šalje poruke kontrole"
+-#~ msgstr "Envia mensages de auditoria"
 -
 -#~ msgid "Interacts with the terminal"
--#~ msgstr "U vezi sa terminalom"
+-#~ msgstr "Interaja com o terminal"
 -
 -#~ msgid "Sends email"
--#~ msgstr "Šalje e-poruku"
+-#~ msgstr "Envia email"
 -
 -#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Izaberite datoteke/direktorijume koje program rukovodi"
+-#~ msgstr "Selecione o(s) arquivo(s)/diretório(s) que a aplicação gerencia"
 -
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr ""
--#~ "Dodajte datoteke/direktorijume koji su potrebni programu da u njih \"Piše"
--#~ "\". Pid datoteke, datoteke dnevnika, /var/lib datoteke ..."
+-#~ "Adicione arquivos/diretórios que a aplicação necessitará para gravação. "
+-#~ "Arquivos Pid, Arquivos de log, Arquivos em /var/lib..."
 -
 -#~ msgid "Select booleans that the application uses"
--#~ msgstr "Izaberite logičke promenljive koje ovaj program koristi"
+-#~ msgstr "Selecione os booleanos que a aplicação usa"
 -
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr ""
--#~ "Dodaj/ukloni logičke promenljive korišćene za ovaj ograničeni program/"
--#~ "korisnik"
+-#~ "Adiciona/Remove booleanos usados para esta aplicação/usuário confinado"
 -
 -#~ msgid "Select directory to generate policy in"
--#~ msgstr "Izaberite direktorijum u kome će se generisati polise"
+-#~ msgstr "Selecione o diretório para a criação dos arquivos da política "
 -
 -#~ msgid "Policy Directory"
--#~ msgstr "Direktorijum polise"
+-#~ msgstr "Diretório da Política"
 -
 -#~ msgid "Generated Policy Files"
--#~ msgstr "Datoteke napravljene polise"
+-#~ msgstr "Arquivos de Política Gerados"
 -
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
@@ -242987,19 +190394,16 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 -#~ "Login as the user and test this user role.\n"
 -#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Ova alatka će generisati sledeće: \n"
--#~ "vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
--#~ "komandnog okruženja(sh)\n"
--#~ "Izvršite skriptu komandnog okruženja kao root korisnik da biste \n"
--#~ "kompajlirali/instalirali i ponovo postavili oznake na \n"
--#~ "datotekama/direktorijumima. \n"
--#~ "Koristite semanage ili useradd da mapirate Linux korisnike za "
--#~ "prijavljivanje \n"
--#~ "na korisničke uloge.\n"
--#~ "Postavite mašinu u dopuštajući režim (setenforce 0). \n"
--#~ "Prijavite se kao korisnik i testirajte ovu korisničku ulogu.\n"
--#~ "Koristite audit2allow -R da biste generisali dodatna pravila za te "
--#~ "datoteku.\n"
+-#~ "Esta ferramenta gerará o seguinte:\n"
+-#~ "Tipo de Execução (te), Arquivo de Contexto (fc), Interface (if) e Shell "
+-#~ "script (sh).\n"
+-#~ "Execute o shell script pra compilar/instalar e reetiquetar arquivos/"
+-#~ "diretórios.\n"
+-#~ "Use o semanage ou o useradd para mapear o login de usuários do Linux para "
+-#~ "os papéis de usuário.\n"
+-#~ "Agora você pode deixar a máquina no modo permissivo (setenforce 0). \n"
+-#~ "Autentique com o usuário e teste este papel de usuário.\n"
+-#~ "Use audit2allow -R para gerar regras adicionais para o arquivo te.\n"
 -
 -#~ msgid ""
 -#~ "This tool will generate the following: \n"
@@ -243010,1568 +190414,959 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 -#~ "Run/restart the application to generate avc messages.\n"
 -#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Ova alatka će generisati sledeće: \n"
--#~ "vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
--#~ "komandnog okruženja(sh)\n"
--#~ "\n"
--#~ "Izvršite skriptu komandnog okruženja da biste kompajlirali/instalirali "
--#~ "i \n"
--#~ "ponovo postavili oznake na datotekama/direktorijumima. \n"
--#~ "Postavite mašinu u dopuštajući režim (setenforce 0). \n"
--#~ "Izvršite/ponovo pokrenite program da biste generisali avc poruke.\n"
--#~ "Koristite audit2allow -R da biste generisali dodatna pravila za te "
--#~ "datoteku.\n"
+-#~ "Esta ferramenta gerará o seguinte:\n"
+-#~ "Tipo de Execução (te), Arquivo de Contexto (fc), Interface (if) e Shell "
+-#~ "script (sh).\n"
+-#~ "Execute o shell script pra compilar/instalar e reetiquetar arquivos/"
+-#~ "diretórios.\n"
+-#~ "Agora você pode deixar a máquina no modo permissivo (setenforce 0). \n"
+-#~ "Execute/reinicie a aplicação para gerar mensagens avc.\n"
+-#~ "Use audit2allow -R para gerar regras adicionais para o arquivo te.\n"
 -
 -#~ msgid "Add Booleans Dialog"
--#~ msgstr "Dodaj dijalog logičkih promenljivih"
+-#~ msgstr "Adiciona Diálogos Boleanos"
 -
 -#~ msgid "Boolean Name"
--#~ msgstr "Naziv logičke vrednosti"
+-#~ msgstr "Nome Booleano"
 -
 -#~ msgid "Role"
--#~ msgstr "Uloga"
+-#~ msgstr "Regra"
 -
 -#~ msgid "Existing_User"
--#~ msgstr "Postojeći_korisnik"
+-#~ msgstr "Usuário_Existente"
 -
 -#~ msgid "Application"
--#~ msgstr "Program"
+-#~ msgstr "Aplicação"
 -
 -#~ msgid "%s must be a directory"
--#~ msgstr "%s mora biti direktorijum"
+-#~ msgstr "%s deve ser um diretório"
 -
 -#~ msgid "You must select a user"
--#~ msgstr "Morate izabrati korisnika"
+-#~ msgstr "Você deve selecionar um usuário"
 -
 -#~ msgid "Select executable file to be confined."
--#~ msgstr "Izaberite izvršnu datoteku koju biste želeli da ograničite."
+-#~ msgstr "Selecione o arquivo executável a ser restrito."
 -
 -#~ msgid "Select init script file to be confined."
--#~ msgstr "Izaberite init skriptu koju biste želeli da ograničite."
+-#~ msgstr "Selecione o arquivo do script de inicialização a ser restrito."
 -
 -#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Izaberite datoteku(e) koju ograničeni program pravi ili u nju piše"
+-#~ msgstr "Selecione o(s) arquivo(s) que a aplicação restrita cria ou escreve"
 -
 -#~ msgid ""
 -#~ "Select directory(s) that the confined application owns and writes into"
 -#~ msgstr ""
--#~ "Izaberite direktorijum(e) koji ograničeni program poseduje ili u njega "
--#~ "piše"
+-#~ "Selecione o(s) diretório(s) que a aplicação restrita é proprietária e que "
+-#~ "precisam de direito de escrita "
 -
 -#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Izaberite direktorijum u kome ćete praviti datoteke polise"
+-#~ msgstr "Selecione o diretório para a criação dos arquivos da política"
 -
 -#~ msgid ""
 -#~ "Type %s_t already defined in current policy.\n"
 -#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "Vrsta %s_t je već određena u trenutnoj polisi.\n"
--#~ "Da li želite da nastavite?"
+-#~ "Use %s_t já definido para politica em uso. \n"
+-#~ "Você deseja continuar"
 -
 -#~ msgid "Verify Name"
--#~ msgstr "Potvrdi ime"
+-#~ msgstr "Verifique o Nome"
 -
 -#~ msgid ""
 -#~ "Module %s.pp already loaded in current policy.\n"
 -#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "Modul %s.pp je već učitan u trenutnu polisu.\n"
--#~ "Da li želite da nastavite?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "Morate uneti ime"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "Morate uneti izvršni program"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "Podesite SELinux"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "Portovi moraju biti brojevi ili opsezi brojeva od 1 do %d "
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "Morate uneti ime vašeg ograničenog procesa/korisnika"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Tipovi korisnika nisu dozvoljene izvršne datoteke"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "Samo programi-sistemske usluge mogu koristiti init skriptu"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog mora biti logička vrednost"
--
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Tipovi korisnika automatski dobijaju tmp vrstu"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "Morate uneti putanju izvršne datoteke za vaš ograničeni proces"
--
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Datoteka za vrstu primoravanja"
--
--#~ msgid "Interface file"
--#~ msgstr "Datoteka sprege"
--
--#~ msgid "File Contexts file"
--#~ msgstr "Datoteka za kontekste datoteka"
--
--#~ msgid "Setup Script"
--#~ msgstr "Skripta za postavke"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux port\n"
--#~ "Vrsta"
--
--#~ msgid "Protocol"
--#~ msgstr "Protokol"
--
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "Nivo"
--
--#~ msgid "Port"
--#~ msgstr "Port"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Broj porta „%s“ nije ispravan.  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "Prikaz liste"
--
--#~ msgid "Group View"
--#~ msgstr "Grupni pregled"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Zaštita SELinux servisa"
--
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Onemogući SELinux zaštitu za acct sistemsku uslugu"
--
--#~ msgid "Admin"
--#~ msgstr "Administrator"
--
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr ""
--#~ "Dopusti svim sistemskim uslugama da upisuju datoteke jezgra na / "
--#~ "direktorijum"
--
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr ""
--#~ "Dopusti svim sistemskim uslugama mogućnost da koriste nealocirane tty "
--#~ "terminale"
--
--#~ msgid "User Privs"
--#~ msgstr "Ovlašćenja korisnika"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Dopusti gadmin SELinux korisničkim nalozima da izvršavaju datoteke u "
--#~ "svojim ličnim direktorijumima"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Dopusti da gostujući SELinux korisnički nalozi izvršavaju datoteke u "
--#~ "svojim ličnim direktorijumima ili u /tmp direktorijumu"
--
--#~ msgid "Memory Protection"
--#~ msgstr "Zaštita memorije"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "Dopusti java-i izvršni stek"
--
--#~ msgid "Mount"
--#~ msgstr "Mount"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Dopusti da mount montira bilo koju datoteku"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Dopusti da mount montira bilo koji direktorijum"
--
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Dopusti mplayer-u izvršni stek"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Dopusti da ssh izvršava ssh-keysign"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Dopusti da staff SELinux korisnički nalozi izvršavaju datoteke u svojim "
--#~ "ličnim direktorijumima ili u /tmp direktorijumu"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Dopusti da sysadm SELinux korisnički nalozi izvršavaju datoteke u svojim "
--#~ "ličnim direktorijumima ili u /tmp direktorijumu"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "Dopusti da neograničeni SELinux korisnički nalozi izvršavaju datoteke u "
--#~ "svojim ličnim direktorijumima ili u /tmp direktorijumu"
--
--#~ msgid "Network Configuration"
--#~ msgstr "Mrežna podešavanja"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Dopusti da neoznačeni paketi putuju mrežom"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "Dopusti da user SELinux korisnički nalozi izvršavaju datoteke u svojim "
--#~ "ličnim direktorijumima ili u /tmp direktorijumu"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Dopusti da neograničenim da se prebace u unconfined_execmem"
--
--#~ msgid "Databases"
--#~ msgstr "Baze podataka"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Dopusti korisniku da se poveže na mysql soket"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Dopusti korisniku da se poveže na postgres soket"
--
--#~ msgid "XServer"
--#~ msgstr "XServer"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Dopusti klijentima da upisuju u deljenu memoriju X servera"
--
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Dopusti da xguest SELinux korisnički nalozi izvršavaju datoteke u svojim "
--#~ "ličnim direktorijumima ili u /tmp direktorijumu"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Dozvoli sistemskim uslugama da se pokreću sa NIS servisom"
--
--#~ msgid "Web Applications"
--#~ msgstr "Veb programi"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "Prebacivanje staff SELinux korisnika na Web Browser domen"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "Prebacivanje sysadm SELinux korisnika na Web Browser domen"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "Prebacivanje user SELinux korisnika na Web Browser domen"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "Prebacivanje xguest SELinux korisnika na Web Browser domen"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "Dopusti osoblju Web Browser-a da upisuje u lične direktorijume"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Isključi SELinux zaštitu za amanda-u"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Isključi SELinux zaštitu za amavis"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Isključi SELinux zaštitu za apmd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Isključi SELinux zaštitu za arpwatch sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Isključi SELinux zaštitu za auditd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Isključi SELinux zaštitu za automount sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Isključi SELinux zaštitu za avahi"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Isključi SELinux zaštitu za bluetooth sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Isključi SELinux zaštitu za canna sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Isključi SELinux zaštitu za cardmgr sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Isključi SELinux zaštitu za Cluster server"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "Dopusti da cdrecord čita različit sadržaj. nfs, samba, removable devices, "
--#~ "user temp i datoteke sa nepouzdanim sadržajem"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Isključi SELinux zaštitu za ciped sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Isključi SELinux zaštitu za clamd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Isključi SELinux zaštitu za clamscan"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Isključi SELinux zaštitu za clvmd"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Isključi SELinux zaštitu za comsat sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Isključi SELinux zaštitu za courier sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Isključi SELinux zaštitu za cpucontrol sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Isključi SELinux zaštitu za cpuspeed sistemsku uslugu"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Isključi SELinux zaštitu za crond sistemsku uslugu"
--
--#~ msgid "Printing"
--#~ msgstr "Štampanje"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Isključi SELinux zaštitu za cupsd pozadinski server"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Logička vrednost"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "sve"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Prilagođen"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Označavanje datoteka"
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Isključi SELinux zaštitu za cupsd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Isključi SELinux zaštitu za cupsd_lpd"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Isključi SELinux zaštitu za cvs sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Isključi SELinux zaštitu za cyrus sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Isključi SELinux zaštitu za dbskk sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Isključi SELinux zaštitu za dbusd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Isključi SELinux zaštitu za dccd"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Isključi SELinux zaštitu za dccifd"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Isključi SELinux zaštitu za dccm"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Isključi SELinux zaštitu za ddt sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Isključi SELinux zaštitu za devfsd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Isključi SELinux zaštitu za dhcpc sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za dhcpd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Isključi SELinux zaštitu za dictd sistemsku uslugu"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Dopusti da sysadm_t direktno pokreće sistemske usluge"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Isključi SELinux zaštitu za Evolution"
--
--#~ msgid "Games"
--#~ msgstr "Igre"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Isključi SELinux zaštitu za igre"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Isključi SELinux zaštitu za veb čitače"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Isključi SELinux zaštitu za Thunderbird"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Isključi SELinux zaštitu za distccd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Isključi SELinux zaštitu za dmesg sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Isključi SELinux zaštitu za dnsmasq sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Isključi SELinux zaštitu za dovecot sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Isključi SELinux zaštitu za entropyd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Isključi SELinux zaštitu za fetchmail"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Isključi SELinux zaštitu za fingerd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Isključi SELinux zaštitu za freshclam sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Isključi SELinux zaštitu za fsdaemon sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Isključi SELinux zaštitu za gpm sistemsku uslugu"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Isključi SELinux zaštitu za gss sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Isključi SELinux zaštitu za Hal sistemsku uslugu"
--
--#~ msgid "Compatibility"
--#~ msgstr "Usaglašenost"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr ""
--#~ "Ne koristi audit za stvari koje znamo da su pokvarene, ali koje nisu "
--#~ "rizične po sigurnost"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Isključi SELinux zaštitu za hostname sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Isključi SELinux zaštitu za hotplug sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Isključi SELinux zaštitu za howl sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Isključi SELinux zaštitu za cups hplip sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Isključi SELinux zaštitu za httpd rotatelogs"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD servis"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Isključi SELinux zaštitu za http suexec"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Isključi SELinux zaštitu za hwclock sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Isključi SELinux zaštitu za i18n sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Isključi SELinux zaštitu za imazesrv sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Isključi SELinux zaštitu za potomke inetd sistemske usluge"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Isključi SELinux zaštitu za inetd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Isključi SELinux zaštitu za innd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Isključi SELinux zaštitu za iptables sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Isključi SELinux zaštitu za ircd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Isključi SELinux zaštitu za irqbalance sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Isključi SELinux zaštitu za iscsi sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Isključi SELinux zaštitu za jabberd sistemsku uslugu"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Isključi SELinux zaštitu za kadmind sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Isključi SELinux zaštitu za klogd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Isključi SELinux zaštitu za krb5kdc sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Isključi SELinux zaštitu za ktalk sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Isključi SELinux zaštitu za kudzu sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Isključi SELinux zaštitu za locate sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za lpd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Isključi SELinux zaštitu za lrrd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Isključi SELinux zaštitu za lvm sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Isključi SELinux zaštitu za mailman"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Dopusti evolution-u i thunderbird-u da čitaju datoteke korisnika"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Isključi SELinux zaštitu za mdadm sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Isključi SELinux zaštitu za monopd sistemsku uslugu"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Dopusti da mozilla čitač čita datoteke korisnika"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Isključi SELinux zaštitu za mrtg sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Isključi SELinux zaštitu za mysqld sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Isključi SELinux zaštitu za nagios sistemsku uslugu"
--
--#~ msgid "Name Service"
--#~ msgstr "Servis za imenovanje"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Isključi SELinux zaštitu za named sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Isključi SELinux zaštitu za nessusd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Isključi SELinux zaštitu za NetworkManager"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Isključi SELinux zaštitu za nfsd sistemsku uslugu"
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Isključi SELinux zaštitu za nmbd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Isključi SELinux zaštitu za nrpe sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Isključi SELinux zaštitu za nscd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Isključi SELinux zaštitu za nsd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za ntpd sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Isključi SELinux zaštitu za oddjob"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Isključi SELinux zaštitu za oddjob_mkhomedir"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Isključi SELinux zaštitu za openvpn sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Isključi SELinux zaštitu za pam sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Isključi SELinux zaštitu za pegasus"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Isključi SELinux zaštitu za perdition sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Isključi SELinux zaštitu za portmap sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Isključi SELinux zaštitu za portslave sistemsku uslugu"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Isključi SELinux zaštitu za postfix"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Isključi SELinux zaštitu za postgresql sistemsku uslugu"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
-+msgstr ""
-+"Specifikacije\n"
-+"datoteke"
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Dopusti pppd da bude dostupan za korišćenje običnim korisnicima"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
-+msgstr ""
-+"Selinux\n"
-+"vrsta datoteke"
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Isključi SELinux zaštitu za pptp"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
-+msgstr ""
-+"Vrsta\n"
-+"datoteke"
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Isključi SELinux zaštitu za prelink sistemsku uslugu"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Mapiranje korisnika"
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Isključi SELinux zaštitu za privoxy sistemsku uslugu"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
-+msgstr ""
-+"Prijavno\n"
-+"ime"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Isključi SELinux zaštitu za ptal sistemsku uslugu"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
-+msgstr ""
-+"SELinux\n"
-+"korisnik"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Isključi SELinux zaštitu za pxe sistemsku uslugu"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
-+msgstr ""
-+"MLS/\n"
-+"MCS opseg"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Isključi SELinux zaštitu za pyzord"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Prijava „%s“ je neophodna"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Isključi SELinux zaštitu za quota sistemsku uslugu"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Modul polise"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Isključi SELinux zaštitu za radiusd sistemsku uslugu"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Ime modula"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Isključi SELinux zaštitu za radvd sistemsku uslugu"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Verzija"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Isključi SELinux zaštitu za rdisc"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Isključi proveru"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Isključi SELinux zaštitu za readahead"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Uključi proveru"
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Dopusti da programi čitaju datoteke koje se nalaze na nestandardnim "
--#~ "mestima (default_t)"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Učitaj modul polise"
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Isključi SELinux zaštitu za restorecond"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Isključi SELinux zaštitu za rhgb sistemsku uslugu"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Isključi SELinux zaštitu za ricci"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Isključi SELinux zaštitu za ricci_modclusterd"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr ""
-+"Miloš Komarčević <kmilos@gmail.com>\n"
-+"Jovan Krunic <jovan.krunic@gmail.com>\n"
-+"Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
-+"Nikola Pajtić <salgeras@gmail.com>"
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Isključi SELinux zaštitu za rlogind sistemsku uslugu"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Ova alatka se može upotrebiti za pravljenje radnog okvira polisa, radi "
-+"ograničavanja programa i korisnika koristeći SELinux.   \n"
-+"\n"
-+"Alatka proizvodi:\n"
-+"datoteku za primoravanje vrste (te)\n"
-+"datoteku sučelja (if)\n"
-+"datoteku sa kontekstima datoteka (fc)\n"
-+"skriptu komandnog okruženja (sh) - koristi se za kompiliranje i instalaciju "
-+"polise. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Izaberite vrstu programa/korisničke uloge koju treba ograničiti"
-+
-+#: ../gui/polgen.glade:196
+-#~ msgstr ""
+-#~ "Modulo %s.pp carregado na plitica atual.\n"
+-#~ "Você deseja continuar ?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Você deve inserir um nome"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Você deve inserir um executável"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Configure o SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "As portas devem ser números ou intervalos de números de 1 a %d"
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "Você deve inserir um nome para o seu processo restrito"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Tipos USER não são executáveis permitidos"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr ""
+-#~ "Somente DAEMONS de aplicações podem utilizar um script de inicialização"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Programi</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Isključi SELinux zaštitu za rpcd sistemsku uslugu"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog deve ser um valor booleano"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Standardna init sistemska usluga su usluge koji se pokreću sa podizanjem "
-+"sistema preko init skripti.  Obično zahteva skriptu u /etc/rc.d/init.d"
  
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Isključi SELinux zaštitu za rshd"
-+#: ../gui/polgen.glade:260
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Tipos USER obtém um tipo tmp automaticamente"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Standardna init sistemska usluga"
-+
-+#: ../gui/polgen.glade:280
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr ""
+-#~ "Você deve inserir o caminho do executável para o seu processo restrito"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS sistemski demon"
-+
-+#: ../gui/polgen.glade:299
++msgstr ""
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Arquivo do tipo de reforço"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Sistemska usluga za internet servise su usluge koje pokreće xinetd"
-+
-+#: ../gui/polgen.glade:301
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "Arquivo de interface"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Sistemska usluga za internet servise (inetd)"
++msgstr ""
  
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.glade:320
+-#~ msgid "File Contexts file"
+-#~ msgstr "Arquivo do Arquivo de Contextos"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"Veb programi/skripte (CGI) CGI skripte koje pokreće veb server (apache)"
  
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Isključi SELinux zaštitu za rsync sistemsku uslugu"
-+#: ../gui/polgen.glade:322
+-#~ msgid "Setup Script"
+-#~ msgstr "Configurar Script"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Veb programi/skripte (CGI)"
++msgstr ""
  
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "Dopusti da se ssh izvršava iz inetd umesto kao sistemska usluga"
-+#: ../gui/polgen.glade:341
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Tipo de Porta\n"
+-#~ "do SELinux"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Korisnički program je bilo koji program koji biste želeli da ograničite da "
-+"je startovan od strane korisnika"
  
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Dopusti da Samba deli nfs direktorijume"
-+#: ../gui/polgen.glade:343
+-#~ msgid "Protocol"
+-#~ msgstr "Protocolo"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Korisnički program"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Nível\n"
+-#~ "MLS/MCS"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "Porta"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Korisnici prijavljivanja</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Izmeni postojeći zapis korisnika za prijavljivanje."
-+
++msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "O número da porta \"%s\" não é válido. 0 < NÚMERO_DA_PORTA < 65536 "
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "Visualização em Lista"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Postojeće korisničke uloge"
++msgstr ""
  
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL server autentifikacije"
-+#: ../gui/polgen.glade:472
+-#~ msgid "Group View"
+-#~ msgstr "Visualização de Grupo"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Ovaj korisnik će se prijaviti na mašinu samo preko terminala ili udaljenom "
-+"prijavom. Podrazumevano ovaj korisnik neće imati setuid, mrežu, sudo, niti "
-+"su."
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Proteção do Serviço do SELinux"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Minimalna uloga korisnika terminala"
++msgstr ""
  
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Dopusti sasl serveru autentifikacije da čita /etc/shadow"
-+#: ../gui/polgen.glade:493
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon acct"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Ovaj korisnik može da se prijavi na mašinu preko X sistema prozora ili "
-+"terminala. Podrazumevano ovaj korisnik neće imati setuid, mrežu, sudo, niti "
-+"su"
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Minimalna uloga korisnika X sistema prozora"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Dopusti X-Windows serveru da preslikava memorijski prostor kao izvršnu "
--#~ "datoteku sa mogućnošću pisanja"
-+#: ../gui/polgen.glade:514
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "Permitir que todos os daemons gravem corefiles em /"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez sudo, bez "
-+"su."
  
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Isključi SELinux zaštitu za saslauthd sistemsku uslugu"
-+#: ../gui/polgen.glade:516
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr ""
+-#~ "Permitir que todos os daemons tenham a habilidade de usar ttys não "
+-#~ "alocados"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Korisnička uloga"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Isključi SELinux zaštitu za scannerdaemon sistemsku uslugu"
-+#: ../gui/polgen.glade:535
+-#~ msgid "User Privs"
+-#~ msgstr "Privilégios do Usuário"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez su, može "
-+"da koristi sudo na korisničkim ulogama Root administratora"
  
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Ne dopuštaj prelaz na sysadm_t, izazvan komandama sudo i su"
-+#: ../gui/polgen.glade:537
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários gadmin do SELinux executem arquivos no "
+-#~ "diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Uloga administratorskog korisnika"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários convidados do SELinux executem arquivos "
+-#~ "no diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Root korisnici</b>"
++msgstr ""
  
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Ne dopuštaj nijednom procesu da učita module jezgra"
-+#: ../gui/polgen.glade:645
+-#~ msgid "Memory Protection"
+-#~ msgstr "Proteção de Memória"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Izaberite korisničku ulogu root administratora, ako će ovaj korisnik vršiti "
-+"administraciju mašine dok radi kao root. Ovaj korisnik neće moći da se "
-+"direktno prijavi u sistem."
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Permitir pilha de execução do java"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Korisnička uloga root administratora"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Unesite naziv programa ili korisničku ulogu koju treba ograničiti."
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Montagem"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Permitir que o mount monte qualquer arquivo"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Permitir que o mount monte qualquer diretório"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Ime"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Permitir pilha de execução do mplayer"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Unesite punu putanju izvršne datoteke koju treba ograničiti."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Permitir que o ssh execute o ssh-keysign"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Unesite jedinstveni naziv za ograničeni program ili korisničku ulogu."
-+
-+#: ../gui/polgen.glade:845
++msgstr ""
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários \"staff\" do SELinux executem arquivos no "
+-#~ "diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Izvršna datoteka"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários \"sysadm\" do SELinux executem arquivos "
+-#~ "no diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init skripta"
++msgstr ""
  
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "Ne dopuštaj nijednom procesu da menja SELinux polisu jezgra"
-+#: ../gui/polgen.glade:901
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários não restritas do SELinux executem "
+-#~ "arquivos no diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Unesite potpunu putanju do skripte za inicijalizaciju, koja startuje "
-+"ograničeni program."
  
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Isključi SELinux zaštitu za sendmail sistemsku uslugu"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Izaberite korisničke uloge koje želite da prilagodite"
+-#~ msgid "Network Configuration"
+-#~ msgstr "Configuração de Rede"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Isključi SELinux zaštitu za setrans"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Permitir que pacotes não etiquetados transitem pela rede"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+"Izaberite korisničke uloge koje će se prebaciti na ove programske domene."
  
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Isključi SELinux zaštitu za setroublesoot sistemsku uslugu"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Izaberite dodatne domene kroz koje će ova korisnička uloga prolaziti"
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários \"user\" do SELinux executem arquivos no "
+-#~ "diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Isključi SELinux zaštitu za slapd sistemsku uslugu"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr ""
+-#~ "Permitir que não restritos executem dyntrans para unconfined_execmem"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+"Izaberite programske domene na koje biste želeli da se ova korisnička uloga "
-+"prebaci."
  
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Isključi SELinux zaštitu za slrnpull sistemsku uslugu"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Izaberite korisničke uloge koje će se prebaciti na ovaj domen"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Izaberite dodatne domene koje će ovaj korisnik administrirati"
+-#~ msgid "Databases"
+-#~ msgstr "Bancos de Dados"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Isključi SELinux zaštitu za smbd sistemsku uslugu"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Permitir que usuários conectem ao soquete do mysql"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Permitir que usuários conectem ao soquete do postgres"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Permitir que clientes escrevam na memória compartilhada do X"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Permitir que contas de usuários \"xguest\" do SELinux executem arquivos "
+-#~ "no diretório pessoal ou no /tmp"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Permitir que daemons executem com o NIS"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+"Izaberite programske domene koje biste želeli ovaj korisnik administrira"
  
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za snmpd sistemsku uslugu"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Izaberite dodatne uloge za ovog korisnika"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Unesite mrežne portove koje ova uloga programa/korisnika osluškuje"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Web Applications"
+-#~ msgstr "Aplicações Web"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "Mover usuário \"staff\" do SELinux para o Domínio do Navegador Web"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "Mover usuário \"sysadm\" do SELinux para o Domínio do Navegador Web"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "Mover usuário \"user\" do SELinux para o Domínio do Navegador Web"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "Mover usuário \"xguest\" do SELinux para o Domínio do Navegador Web"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP portovi</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Isključi SELinux zaštitu za snort sistemsku uslugu"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr ""
+-#~ "Permitir que Navegadores Web \"staff\" escrevam nos diretórios pessoais"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+"Dozvoljava ograničenoj ulozi programa/korisnika da se veže na bilo koji udp "
-+"port"
  
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Isključi SELinux zaštitu za soundd sistemsku uslugu"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Desabilitar proteção do SELinux para o amanda"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Sve"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Isključi SELinux zaštitu za sound sistemsku uslugu"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Desabilitar proteção do SELinux para o amavis"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"Dozvoli ulozi programa/korisnika da pozove bindresvport sa 0. Vezivanje na "
-+"portove 600-1024"
  
--#~ msgid "Spam Protection"
--#~ msgstr "Zaštita od neželjene pošte"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon apmd"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Isključi SELinux zaštitu za spamd sistemsku uslugu"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon arpwatch"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje se "
-+"veže uloga programa/korisnika. Primer: 612, 650-660"
  
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Dopusti da spamd pristupa ličnim direktorijumima"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon auditd"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Nerezervisani portovi (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon automount"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Izaberi portove"
++msgstr ""
  
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Dopusti pristup mreži programu za uklanjanje neželjene pošte"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Desabilitar proteção do SELinux para o avahi"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"Dozvoljava ulozi programa/korisnika da se veže na bilo koji udp port > 1024"
  
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Isključi SELinux zaštitu za speedmgmt sistemsku uslugu"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon bluetooth"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP portovi</b>"
++msgstr ""
  
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon canna"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Unesite mrežne portove na koje se ova uloga programa/korisnika povezuje"
  
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Dopusti squid sistemskoj usluzi da se spoji na mrežu"
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cardmgr"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Desabilitar proteção do SELinux para o Cluster Server"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Permitir que o cdrecord leia vários conteúdos: nfs, samba, dispositivos "
+-#~ "removíveis, arquivos temporários e não confiáveis dos usuários"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Unesite spisak tcp portova ili opseg portova razdvojene zarezima na koje se "
-+"povezuje uloga programa/korisnika. Primer: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Isključi SELinux zaštitu za squid sistemsku uslugu"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ciped"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon clamd"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje se "
-+"povezuje uloga programa/korisnika. Primer: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Isključi SELinux zaštitu za ssh sistemsku uslugu"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Izaberite uobičajene karakteristike programa"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Desabilitar proteção do SELinux para o clamscan"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Desabilitar proteção do SELinux para o clvmd"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon comsat"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Piše syslog poruke\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon courier"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Napravi/rukovodi privremenim podacima u /tmp"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cpucontrol"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Koristi Pam za autentifikaciju"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cpuspeed"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Koristi nsswitch ili getpw* pozive"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Koristi dbus"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon crond"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Šalje poruke provere"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "Impressão"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "U vezi sa terminalom"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Desabilitar proteção do SELinux para o servidor cupsd"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Šalje e-poruku"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Izaberite datoteke/direktorijume koje program rukovodi"
++msgstr ""
  
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Dopusti ssh prijave kao sysadm_r:sysadm_t"
-+#: ../gui/polgen.glade:2607
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cupsd"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Desabilitar proteção do SELinux para o cupsd_lpd"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Dodajte datoteke/direktorijume koji su potrebni programu da u njih \"Piše\". "
-+"Pid datoteke, datoteke dnevnika, /var/lib datoteke ..."
  
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Dopusti da staff_r korisnici pretražuju sysadm lični direktorijum i "
--#~ "čitaju datoteke (kao što je ~/.bashrc)"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Izaberite logičke promenljive koje ovaj program koristi"
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cvs"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Univerzalni SSL tunel"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cyrus"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+"Dodaj/ukloni logičke promenljive korišćene za ovaj ograničeni program/"
-+"korisnik"
  
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Isključi SELinux zaštitu za stunnel sistemsku uslugu"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Izaberite direktorijum u kome će se generisati polise"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Direktorijum polise"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Datoteke napravljene polise"
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dbskkd"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Dopusti da se stunnel sistemska usluga samostalno izvršava, izvan xinetd"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ova alatka će generisati sledeće: \n"
-+"vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
-+"komandnog okruženja(sh)\n"
-+"Izvršite skriptu komandnog okruženja kao root korisnik da biste \n"
-+"kompajlirali/instalirali i ponovo postavili oznake na \n"
-+"datotekama/direktorijumima. \n"
-+"Koristite semanage ili useradd da mapirate Linux korisnike za "
-+"prijavljivanje \n"
-+"na korisničke uloge.\n"
-+"Postavite mašinu u dopuštajući režim (setenforce 0). \n"
-+"Prijavite se kao korisnik i testirajte ovu korisničku ulogu.\n"
-+"Koristite audit2allow -R da biste generisali dodatna pravila za te "
-+"datoteku.\n"
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dbusd"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Isključi SELinux zaštitu za swat sistemsku uslugu"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ova alatka će generisati sledeće: \n"
-+"vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
-+"komandnog okruženja(sh)\n"
-+"\n"
-+"Izvršite skriptu komandnog okruženja da biste kompajlirali/instalirali i \n"
-+"ponovo postavili oznake na datotekama/direktorijumima. \n"
-+"Postavite mašinu u dopuštajući režim (setenforce 0). \n"
-+"Izvršite/ponovo pokrenite program da biste generisali avc poruke.\n"
-+"Koristite audit2allow -R da biste generisali dodatna pravila za te "
-+"datoteku.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Desabilitar proteção do SELinux para o dccd"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Desabilitar proteção do SELinux para o dccifd"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Dodaj dijalog logičkih promenljivih"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Desabilitar proteção do SELinux para o dccm"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Naziv logičke vrednosti"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ddt"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Uloga"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon devfsd"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Postojeći_korisnik"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dhcpc"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Program"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dhcpd"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s mora biti direktorijum"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dictd"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Morate izabrati korisnika"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Permitir que o sysadm_t inicie daemons diretamente"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Izaberite izvršnu datoteku koju biste želeli da ograničite."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Desabilitar proteção do SELinux para o Evolution"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Izaberite init skriptu koju biste želeli da ograničite."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "Jogos"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Izaberite datoteku(e) koju ograničeni program pravi ili u nju piše"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Isključi SELinux zaštitu za sxid sistemsku uslugu"
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Desabilitar proteção do SELinux para jogos"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Izaberite direktorijum(e) koji ograničeni program poseduje ili u njega piše"
  
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Isključi SELinux zaštitu za syslogd sistemsku uslugu"
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Desabilitar proteção do SELinux para os navegadores web"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Izaberite direktorijum u kome ćete praviti datoteke polise"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Isključi SELinux zaštitu za sistemske cron poslove"
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Desabilitar proteção do SELinux para o Thunderbird"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Vrsta %s_t je već određena u trenutnoj polisi.\n"
-+"Da li želite da nastavite?"
  
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Isključi SELinux zaštitu za tcp sistemsku uslugu"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon distccd"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Potvrdi ime"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Isključi SELinux zaštitu za telnet sistemsku uslugu"
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dmesg"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Modul %s.pp je već učitan u trenutnu polisu.\n"
-+"Da li želite da nastavite?"
  
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za tftpd sistemsku uslugu"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Morate uneti ime"
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dnsmasq"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Isključi SELinux zaštitu za transproxy sistemsku uslugu"
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon dovecot"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Morate uneti izvršni program"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Isključi SELinux zaštitu za udev sistemsku uslugu"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon entropyd"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Podesite SELinux"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Isključi SELinux zaštitu za uml sistemsku uslugu"
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Desabilitar proteção do SELinux para o fetchmail"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon fingerd"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Portovi moraju biti brojevi ili opsezi brojeva od 1 do %d "
++msgstr ""
  
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Dopusti da se xinetd izvršava kao neograničen, uključujući tu sve servise "
--#~ "koje startuje, a koji nemaju izričito određen prelaz domena"
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon freshclam"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Morate uneti ime vašeg ograničenog procesa/korisnika"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Dopusti da se rc skripta neograničeno izvršava, uključujući tu sve "
--#~ "sistemske usluge koje rc startuje, a koji nemaju izričito određen prelaz "
--#~ "domena"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "KORISNIČKE vrste nisu dozvoljene izvršne datoteke"
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon fsdaemon"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Dopusti da se rpm izvršava neograničeno"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Samo programi SISTEMSKIH USLUGA mogu koristiti init skriptu"
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon gpm"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Dopusti da se privilegovane alatke, kao što su hotplug i insmod, "
--#~ "izvršavaju neograničeno"
-+#: ../gui/polgen.py:306
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon gss"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon hal"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog mora biti logička vrednost"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Isključi SELinux zaštitu za updfstab sistemsku uslugu"
-+#: ../gui/polgen.py:327
+-#~ msgid "Compatibility"
+-#~ msgstr "Compatibilidade"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Não auditar coisas que nós sabemos que estão violadas mas que não são "
+-#~ "riscos de segurança"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon hostname"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "KORISNIČKE vrste automatski dobijaju tmp vrstu"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Isključi SELinux zaštitu za uptimed sistemsku uslugu"
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon hotplug"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Morate uneti putanju izvršne datoteke za vaš ograničeni proces"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Dopusti da user_r koristi sysadm_r preko su, sudo, ili userhelper. U "
--#~ "protivnom, samo staff_r može tako da radi"
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon howl"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Datoteka za vrstu primoravanja"
++msgstr ""
  
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Dozvoli korisnicima izvršavanje mount naredbe"
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon cups hplip"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Datoteka sprege"
++msgstr ""
  
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Dopusti običnim korisnicima direktan pristup mišu (samo dopusti X serveru)"
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Desabilitar proteção do SELinux para o httpd rotatelogs"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Datoteka za kontekste datoteka"
++msgstr ""
  
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Dopusti korisnicima da izvršavaju dmesg komandu"
-+#: ../gui/polgen.py:851
+-#~ msgid "HTTPD Service"
+-#~ msgstr "Serviço HTTPD"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Skripta za postavke"
++msgstr ""
  
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Dopusti korisnicima da upravljaju mrežnim sučeljima (takođe je potrebno "
--#~ "da je USERCTL=true)"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Desabilitar proteção do SELinux para o http suexec"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon hwclock"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon i18n"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Mrežni port"
++msgstr ""
  
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Dopusti normalnom korisniku da izvršava ping"
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon imazesrv"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux vrsta\n"
-+"porta"
  
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "Dopusti korisniku da čita/piše u noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Desabilitar proteção do SELinux para os daemons filhos do inetd"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protokol"
++msgstr ""
  
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Dopusti da korisnici čitaju/pišu na usb uređaje"
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon inetd"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"nivo"
  
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Dopusti korisnicima da izvršavaju TCP servere (da se povezuju na portove "
--#~ "i primaju veze sa istih domena ili spoljnih korisnika)  isključivanje ove "
--#~ "opcije dovodi do pasivnog načina pada FTP-a i može uzrokovati promene "
--#~ "drugih protokola"
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon innd"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon iptables"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Broj porta „%s“ nije ispravan.  0 < PORT_NUMBER < 65536 "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ircd"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Prikaz liste"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon irqbalance"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Grupni pregled"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon iscsi"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -244618,36 +191413,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Zaštita SELinux servisa"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon jabberd"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Onemogući SELinux zaštitu za acct sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Administrator"
++msgstr ""
  
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Dopusti korisniku da prati tty datoteke"
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon kadmind"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+"Dopusti svim sistemskim uslugama da upisuju datoteke jezgra na / direktorijum"
  
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Isključi SELinux zaštitu za uucpd sistemsku uslugu"
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon klogd"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+"Dopusti svim sistemskim uslugama mogućnost da koriste nerezervisane tty "
-+"terminale"
  
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Isključi SELinux zaštitu za vmware sistemsku uslugu"
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon krb5kdc"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -244655,155 +191451,136 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Ovlašćenja korisnika"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Isključi SELinux zaštitu za watchdog sistemsku uslugu"
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Desabilitar proteção do SELinux para os daemons ktalk"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da gadmin SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
  
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Isključi SELinux zaštitu za winbind sistemsku uslugu"
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon kudzu"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da gostujući SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
  
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Isključi SELinux zaštitu za xdm sistemsku uslugu"
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon locate"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Zaštita memorije"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon lpd"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Dopusti javi izvršni stek"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon lrrd"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon lvm"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Dopusti da mount montira bilo koju datoteku"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon mailman"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Dopusti da mount montira bilo koji direktorijum"
-+
++msgstr ""
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr ""
+-#~ "Permitir que o evolution e o thunderbird leiam os arquivos dos usuários"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Dopusti mplayeru izvršni stek"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Dopusti da ssh izvršava ssh-keysign"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Dopusti da se xdm prijavljuje kao sysadm_r:sysadm_t"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da staff SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Isključi SELinux zaštitu za xen sistemsku uslugu"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da sysadm SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
--#~ msgid "XEN"
--#~ msgstr "XEN"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Dopusti da neograničeni SELinux korisnički nalozi izvršavaju datoteke u "
-+"svojim ličnim direktorijumima ili u /tmp direktorijumu"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Dopusti da xen čita/piše po fizičkim uređajima (diskovima)"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Mrežna podešavanja"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Dopusti da neoznačeni paketi putuju mrežom"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Isključi SELinux zaštitu za xfs sistemsku uslugu"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da user SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Isključi SELinux zaštitu za xen kontrolu"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Dopusti da neograničenim da se prebace u unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Baze podataka"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Dopusti korisniku da se poveže na mysql soket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Dopusti korisniku da se poveže na postgres soket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Dopusti klijentima da upisuju u deljenu memoriju X servera"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Isključi SELinux zaštitu za ypbind sistemsku uslugu"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Dopusti da xguest SELinux korisnički nalozi izvršavaju datoteke u svojim "
-+"ličnim direktorijumima ili u /tmp direktorijumu"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za lozinke"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Dozvoli sistemskim uslugama da se pokreću sa NIS servisom"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -244811,1146 +191588,1452 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Veb programi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Prebacivanje staff SELinux korisnika na Web Browser domen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Prebacivanje sysadm SELinux korisnika na Web Browser domen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Prebacivanje user SELinux korisnika na Web Browser domen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Prebacivanje xguest SELinux korisnika na Web Browser domen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Dopusti osoblju Web Browsera da upisuje u lične direktorijume"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Isključi SELinux zaštitu za amandu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Isključi SELinux zaštitu za amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Isključi SELinux zaštitu za apmd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Isključi SELinux zaštitu za arpwatch sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Isključi SELinux zaštitu za auditd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Isključi SELinux zaštitu za automount sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Isključi SELinux zaštitu za avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Isključi SELinux zaštitu za bluetooth sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Isključi SELinux zaštitu za canna sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Isključi SELinux zaštitu za cardmgr sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Isključi SELinux zaštitu za Cluster server"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Isključi SELinux zaštitu za ypserv sistemsku uslugu"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Dopusti da cdrecord čita različit sadržaj. nfs, samba, removable devices, "
-+"user temp i datoteke sa nepouzdanim sadržajem"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za prenos"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Isključi SELinux zaštitu za ciped sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Isključi SELinux zaštitu za clamd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Isključi SELinux zaštitu za clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Isključi SELinux zaštitu za clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Isključi SELinux zaštitu za comsat sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Isključi SELinux zaštitu za courier sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Isključi SELinux zaštitu za cpucontrol sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Isključi SELinux zaštitu za cpuspeed sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Isključi SELinux zaštitu za crond sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Štampanje"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Isključi SELinux zaštitu za cupsd pozadinski server"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Isključi SELinux zaštitu za cupsd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Isključi SELinux zaštitu za cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Isključi SELinux zaštitu za cvs sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Isključi SELinux zaštitu za cyrus sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Isključi SELinux zaštitu za dbskk sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Isključi SELinux zaštitu za dbusd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Isključi SELinux zaštitu za dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Isključi SELinux zaštitu za dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Isključi SELinux zaštitu za dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Isključi SELinux zaštitu za ddt sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Isključi SELinux zaštitu za devfsd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Isključi SELinux zaštitu za dhcpc sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Isključi SELinux zaštitu za dhcpd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Isključi SELinux zaštitu za dictd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Dopusti da sysadm_t direktno pokreće sistemske usluge"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Isključi SELinux zaštitu za Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Igre"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Isključi SELinux zaštitu za igre"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Isključi SELinux zaštitu za veb čitače"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Isključi SELinux zaštitu za Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Isključi SELinux zaštitu za distccd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Isključi SELinux zaštitu za dmesg sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Isključi SELinux zaštitu za dnsmasq sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Isključi SELinux zaštitu za dovecot sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Isključi SELinux zaštitu za entropyd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Isključi SELinux zaštitu za fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Isključi SELinux zaštitu za fingerd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Isključi SELinux zaštitu za freshclam sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Isključi SELinux zaštitu za fsdaemon sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Isključi SELinux zaštitu za gpm sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Isključi SELinux zaštitu za gss sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Isključi SELinux zaštitu za Hal sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Usaglašenost"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Dopusti da SELinux webadm korisnik upravlja ličnim direktorijumima "
--#~ "korisnika bez privilegija"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Ne proveravaj stvari za koje se zna su pokvarene, ali koje nisu rizične po "
-+"bezbednost"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Dopusti da SELinux webadm korisnik može da čita iz ličnih direktorijuma "
--#~ "korisnika bez privilegija"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Isključi SELinux zaštitu za hostname sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Isključi SELinux zaštitu za hotplug sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Isključi SELinux zaštitu za howl sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Isključi SELinux zaštitu za cups hplip sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Isključi SELinux zaštitu za httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD servis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Isključi SELinux zaštitu za http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Isključi SELinux zaštitu za hwclock sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Isključi SELinux zaštitu za i18n sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Isključi SELinux zaštitu za imazesrv sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Isključi SELinux zaštitu za potomke inetd sistemske usluge"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Isključi SELinux zaštitu za inetd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Isključi SELinux zaštitu za innd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Isključi SELinux zaštitu za iptables sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Isključi SELinux zaštitu za ircd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Isključi SELinux zaštitu za irqbalance sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Isključi SELinux zaštitu za iscsi sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Isključi SELinux zaštitu za jabberd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Isključi SELinux zaštitu za kadmind sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Isključi SELinux zaštitu za klogd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Isključi SELinux zaštitu za krb5kdc sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Isključi SELinux zaštitu za ktalk sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Isključi SELinux zaštitu za kudzu sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Isključi SELinux zaštitu za locate sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Isključi SELinux zaštitu za lpd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Isključi SELinux zaštitu za lrrd sistemsku uslugu"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Isključi SELinux zaštitu za lvm sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon mdadm"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Isključi SELinux zaštitu za mailman"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon monopd"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Dopusti evolutionu i thunderbirdu da čitaju datoteke korisnika"
-+
++msgstr ""
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Permitir que o navegador mozilla leia os arquivos dos usuários"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Isključi SELinux zaštitu za mdadm sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon mrtg"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Isključi SELinux zaštitu za monopd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon mysqld"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Dopusti da mozilla čitač čita datoteke korisnika"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nagios"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Isključi SELinux zaštitu za mrtg sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Name Service"
+-#~ msgstr "Serviço de Nomes"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Isključi SELinux zaštitu za mysqld sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon named"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Isključi SELinux zaštitu za nagios sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nessusd"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Servis za imenovanje"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Desabilitar proteção do SELinux para o NetworkManager"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Isključi SELinux zaštitu za named sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nfsd "
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Isključi SELinux zaštitu za nessusd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Isključi SELinux zaštitu za NetworkManager"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nmbd"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Isključi SELinux zaštitu za nfsd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nrpe"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nscd"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Isključi SELinux zaštitu za nmbd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon nsd"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Isključi SELinux zaštitu za nrpe sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ntpd"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Isključi SELinux zaštitu za nscd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Desabilitar proteção do SELinux para o oddjob"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Isključi SELinux zaštitu za nsd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Desabilitar proteção do SELinux para o oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Isključi SELinux zaštitu za ntpd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon openvpn"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Isključi SELinux zaštitu za oddjob"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon pam"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Isključi SELinux zaštitu za oddjob_mkhomedir"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Desabilitar proteção do SELinux para o pegasus"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Isključi SELinux zaštitu za openvpn sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon perdition"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Isključi SELinux zaštitu za pam sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon portmap"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Isključi SELinux zaštitu za pegasus"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon portslave"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Isključi SELinux zaštitu za perdition sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Desabilitar proteção do SELinux para o postfix"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Isključi SELinux zaštitu za portmap sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon postgresql"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Isključi SELinux zaštitu za portslave sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Isključi SELinux zaštitu za postfix"
-+
++msgstr ""
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Permitir que o pppd seja executado para um usuário regular"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Isključi SELinux zaštitu za postgresql sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Desabilitar proteção do SELinux para o pptp"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon prelink"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Dopusti pppd da bude dostupan za korišćenje običnim korisnicima"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon privoxy"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Isključi SELinux zaštitu za pptp"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ptal"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Isključi SELinux zaštitu za prelink sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon pxe"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Isključi SELinux zaštitu za privoxy sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Desabilitar proteção do SELinux para o pyzord"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Isključi SELinux zaštitu za ptal sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon quota"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Isključi SELinux zaštitu za pxe sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon radiusd"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Isključi SELinux zaštitu za pyzord"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon radvd"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Isključi SELinux zaštitu za quota sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Desabilitar proteção do SELinux para o rdisc"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Isključi SELinux zaštitu za radiusd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Desabilitar proteção do SELinux para o readahead"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Isključi SELinux zaštitu za radvd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Permitir que programas leiam arquivos em localizações não padrões "
+-#~ "(default_t)"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Isključi SELinux zaštitu za rdisc"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Desabilitar proteção do SELinux para o restorecond"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Isključi SELinux zaštitu za readahead"
++msgstr ""
  
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Da li ste sigurni da želite da obrišete %s „%s“?"
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon rhgb"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Dopusti da programi čitaju datoteke koje se nalaze na nestandardnim mestima "
-+"(default_t)"
  
--#~ msgid "Delete %s"
--#~ msgstr "Obriši %s"
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Desabilitar proteção do SELinux para o ricci"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Isključi SELinux zaštitu za restorecond"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Desabilitar proteção do SELinux para o ricci_modclusterd"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Isključi SELinux zaštitu za rhgb sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon rlogind"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Isključi SELinux zaštitu za ricci"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon rpcd"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Isključi SELinux zaštitu za ricci_modclusterd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Desabilitar proteção do SELinux para o rshd"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Isključi SELinux zaštitu za rlogind sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Isključi SELinux zaštitu za rpcd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon rsync"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Isključi SELinux zaštitu za rshd"
-+
++msgstr ""
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr ""
+-#~ "Permitir que o ssh seja executado a partir do inetd ao invés de ser "
+-#~ "executado como um daemon"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
-+
++msgstr ""
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Permitir que o Samba compartilhe diretórios nfs"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Isključi SELinux zaštitu za rsync sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Servidor de autenticação SASL"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Dopusti da se ssh izvršava iz inetd umesto kao sistemska usluga"
-+
++msgstr ""
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Permitir que o servidor de autenticação sasl leia o /etc/shadow"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Dopusti da Samba deli nfs direktorijume"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Permitir que o servidor X-Windows mapeie uma região de memória como "
+-#~ "executável e gravável"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL server autentifikacije"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon saslauthd"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Dopusti sasl serveru autentifikacije da čita /etc/shadow"
++msgstr ""
  
--#~ msgid "Add %s"
--#~ msgstr "Dodaj %s"
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon scannerdaemon"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Dopusti X-Windows serveru da preslikava memorijski prostor kao izvršnu "
-+"datoteku sa mogućnošću pisanja"
  
--#~ msgid "Modify %s"
--#~ msgstr "Izmeni %s"
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Não permitir que a transição para sysadm_t, sudo e su tenha efeito"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Isključi SELinux zaštitu za saslauthd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Não permitir que qualquer processo carregue módulos do kernel"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Isključi SELinux zaštitu za scannerdaemon sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr ""
+-#~ "Não permitir que qualquer processo modifique a política do SELinux para o "
+-#~ "kernel"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Ne dopuštaj prelaz na sysadm_t, izazvan komandama sudo i su"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon sendmail"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Ne dopuštaj nijednom procesu da učita module jezgra"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Desabilitar proteção do SELinux para o setrans"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Ne dopuštaj nijednom procesu da menja SELinux polisu jezgra"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon setroublesoot"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Isključi SELinux zaštitu za sendmail sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon slapd"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Isključi SELinux zaštitu za setrans"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon slrnpull"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Isključi SELinux zaštitu za setroublesoot sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon smbd"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Isključi SELinux zaštitu za slapd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon snmpd"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Isključi SELinux zaštitu za slrnpull sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon snort"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Isključi SELinux zaštitu za smbd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon soundd"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Isključi SELinux zaštitu za snmpd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon sound"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Isključi SELinux zaštitu za snort sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Spam Protection"
+-#~ msgstr "Proteção contra spam "
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Isključi SELinux zaštitu za soundd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon spamd"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Isključi SELinux zaštitu za sound sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Permitir que o spamd acesse os diretórios pessoais"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Zaštita od neželjene pošte"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Isključi SELinux zaštitu za spamd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Permitir que o daemon do Spam Assasin tenha acesso a  rede"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Dopusti da spamd pristupa ličnim direktorijumima"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon speedmgmt"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Dopusti pristup mreži programu za uklanjanje neželjene pošte"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Isključi SELinux zaštitu za speedmgmt sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
-+
++msgstr ""
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Permitir que o daemon do squid se conecte a rede"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Dopusti squid sistemskoj usluzi da se spoji na mrežu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon squid"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Isključi SELinux zaštitu za squid sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ssh"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Isključi SELinux zaštitu za ssh sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permitir logins do ssh como sysadm_r:sysadm_t"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Dopusti ssh prijave kao sysadm_r:sysadm_t"
++msgstr ""
  
--#~ msgid "Permissive"
--#~ msgstr "Dopuštanje"
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Permitir que usuários staff_r pesquisem o diretório pessoal do sysadm e "
+-#~ "leiam os arquivos (como o ~/.bashrc)"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Dopusti da staff_r korisnici pretražuju sysadm lični direktorijum i čitaju "
-+"datoteke (kao što je ~/.bashrc)"
  
--#~ msgid "Enforcing"
--#~ msgstr "Primoravanje"
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Túnel SSL Universal"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Univerzalni SSL tunel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Isključi SELinux zaštitu za stunnel sistemsku uslugu"
--#~ msgid "Disabled"
--#~ msgstr "Isključeno"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"Dopusti da se stunnel sistemska usluga samostalno izvršava, izvan xinetd"
--#~ msgid "Status"
--#~ msgstr "Status"
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Isključi SELinux zaštitu za swat sistemsku uslugu"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Menjanje vrste polise će prouzrokovati menjanje oznaka za ceo sistem "
--#~ "datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo "
--#~ "traje i to vreme zavisi od veličine sistema datoteka.  Želite li da "
--#~ "nastavite?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Isključi SELinux zaštitu za sxid sistemsku uslugu"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "Isključivanje SELinux-a zahteva ponovno podizanje sistema.  Nije "
--#~ "preporučljivo.  Ako kasnije odlučite da uključite SELinux, sistem će "
--#~ "morati da promeni oznake.  Ako samo hoćete da vidite da li SELinux "
--#~ "izaziva probleme na vašem sistemu, možete preći u dopuštajući način rada, "
--#~ "koji će samo samo beležiti poruke u dnevnik, ali ne i sprovoditi SELinux "
--#~ "polisu.    Želite li da nastavite?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Isključi SELinux zaštitu za syslogd sistemsku uslugu"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Uključivanje SELinux-a će prouzrokovati menjanje oznaka za ceo sistem "
--#~ "datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo "
--#~ "traje i to vreme zavisi od veličine sistema datoteka.  Želite li da "
--#~ "nastavite?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Isključi SELinux zaštitu za sistemske cron poslove"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Isključi SELinux zaštitu za tcp sistemsku uslugu"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Autorska prava 2006 Red Het, Inc.\n"
--#~ "Autorska prava 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Isključi SELinux zaštitu za telnet sistemsku uslugu"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Dodaj SELinux mapiranje prijave"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Isključi SELinux zaštitu za tftpd sistemsku uslugu"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Dodaj SELinux mrežne portove"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Isključi SELinux zaštitu za transproxy sistemsku uslugu"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux vrsta"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Isključi SELinux zaštitu za udev sistemsku uslugu"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Isključi SELinux zaštitu za uml sistemsku uslugu"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "Nivo"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Dopusti da se xinetd izvršava kao neograničen, uključujući tu sve servise "
-+"koje startuje, a koji nemaju izričito određen prelaz domena"
  
--#~ msgid "File Specification"
--#~ msgstr "Specifikacija datoteke"
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon stunnel"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Dopusti da se rc skripta neograničeno izvršava, uključujući tu sve sistemske "
-+"usluge koje rc startuje, a koji nemaju izričito određen prelaz domena"
  
--#~ msgid "File Type"
--#~ msgstr "Vrsta datoteke"
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Permitir que o daemon stunnel seja executado como autônomo, fora do xinetd"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Dopusti da se rpm izvršava neograničeno"
++msgstr ""
  
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "sve datoteke\n"
--#~ "običan fajl\n"
--#~ "direktorijum\n"
--#~ "uređaj za karaktere\n"
--#~ "uređaj blokova\n"
--#~ "soket\n"
--#~ "simbolička veza\n"
--#~ "imenovana cev\n"
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon swat"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Dopusti da se privilegovane alatke, kao što su hotplug i insmod, izvršavaju "
-+"neograničeno"
  
--#~ msgid "MLS"
--#~ msgstr "MLS"
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon sxid"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Isključi SELinux zaštitu za updfstab sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon syslogd"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Isključi SELinux zaštitu za uptimed sistemsku uslugu"
++msgstr ""
  
--#~ msgid "Add SELinux User"
--#~ msgstr "Dodaj SELinux korisnika"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Desabilitar proteção do SELinux para os trabalhos cron do sistema"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Dopusti da user_r koristi sysadm_r preko su, sudo, ili userhelper. U "
-+"protivnom, samo staff_r može tako da radi"
  
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux administracija"
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon tcp"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Dozvoli korisnicima izvršavanje mount naredbe"
++msgstr ""
  
--#~ msgid "Add"
--#~ msgstr "Dodaj"
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon telnet"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Dopusti običnim korisnicima direktan pristup mišu (samo dopusti X serveru)"
  
--#~ msgid "_Properties"
--#~ msgstr "_Svojstva"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon tftpd"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Dopusti korisnicima da izvršavaju dmesg komandu"
++msgstr ""
  
--#~ msgid "_Delete"
--#~ msgstr "_Obriši"
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon transproxy"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Dopusti korisnicima da upravljaju mrežnim sučeljima (takođe je potrebno da "
-+"je USERCTL=true)"
  
--#~ msgid "Select Management Object"
--#~ msgstr "Izaberite upravljački objekat"
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon udev"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Dopusti normalnom korisniku da izvršava ping"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon uml"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Dopusti korisniku da čita/piše u noextattrfile (FAT, CDROM, FLOPPY)"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permitir que o xinetd seja executado de forma não restrita, incluindo "
+-#~ "quaisquer serviços que ele inicie que não tenham uma transição de domínio "
+-#~ "explicitamente definida"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Dopusti da korisnici čitaju/pišu na usb uređaje"
++msgstr ""
  
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Izaberite:</b>"
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Permitir que scripts rc sejam executados de forma não restrita, incluindo "
+-#~ "quaisquer daemons iniciados por um script rc que não tenham uma transição "
+-#~ "de domínio explicitamente definida"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Dopusti korisnicima da izvršavaju TCP servere (da se povezuju na portove i "
-+"primaju veze sa istih domena ili spoljnih korisnika)  isključivanje ove "
-+"opcije dovodi do pasivnog načina pada FTP-a i može uzrokovati promene drugih "
-+"protokola"
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Permitir que o rpm seja executado de forma não restrita"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Dopusti korisniku da prati tty datoteke"
-+
++msgstr ""
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Permitir que utilitários privilegiados como o hotplug e o insmod sejam "
+-#~ "executados de maneira não restrita"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Isključi SELinux zaštitu za uucpd sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon updfstab"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Isključi SELinux zaštitu za vmware sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon uptimed"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Isključi SELinux zaštitu za watchdog sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Permitir que o user_r alcance o sysadm_r via su, sudo ou userhelper. Caso "
+-#~ "contrário, somente o staff_r poderá fazer isso"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Isključi SELinux zaštitu za winbind sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Permitir que os usuários executem o comando mount"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Isključi SELinux zaštitu za xdm sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Permitir que usuários regulares tenham acesso direto ao mouse (somente "
+-#~ "permite o servidor X)"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Dopusti da se xdm prijavljuje kao sysadm_r:sysadm_t"
-+
++msgstr ""
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Permitir que usuários executem o comando dmesg"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Isključi SELinux zaštitu za xen sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Permitir que os usuários controlem as interfaces de rede (também "
+-#~ "necessita do USERCTL=true)"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
-+
++msgstr ""
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Permitir que os usuários normais executem o ping"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Dopusti da xen čita/piše po fizičkim uređajima (diskovima)"
-+
++msgstr ""
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr ""
+-#~ "Permitir que os usuários leiam/escrevam noextattrfile (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Isključi SELinux zaštitu za xfs sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Permitir que os usuários leiam e escrevam em dispositivos usb"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Isključi SELinux zaštitu za xen kontrolu"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Permitir que os usuários executem servidores TCP (vinculem portas e "
+-#~ "aceitem conexões do mesmo domínio e de usuários externos). Desabilitar "
+-#~ "esta opção força o modo passivo do FTP e pode modificar outros protocolos"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Isključi SELinux zaštitu za ypbind sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Permitir que os usuários vejam as estatísticas de ttyfiles"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za lozinke"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon uucpd"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon vmware"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon watchdog"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon winbind"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon xdm"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Permitir que o xdm realize logins como sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon xen"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Permitir que o xen leia/escreva em dispositivos de discos físicos"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon xfs"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Desabilitar proteção do SELinux para o xen control"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ypbind"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o NIS Password Daemon"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ypserv"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o NIS Transfer Daemon"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permitir que o usuário webadm do SELinux gerencie diretórios pessoais de "
+-#~ "usuários sem privilégios"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Permitir que o usuário webadm do SELinux leia diretórios pessoais de "
+-#~ "usuários sem privilégios"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Você está certo de que deseja remover %s \"%s\"?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Remover %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Adicionar %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Modificar %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Permissivo"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Reforçado"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "A mudança de política fará com que todo o sistema de arquivos seja "
+-#~ "reetiquetado na próxima inicialização. Isto pode levar muito tempo "
+-#~ "dependendo do tamanho do sistema de arquivos. Você deseja continuar?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Desabilitar o SELinux requer a reinicialização do sistema. Isso não é "
+-#~ "recomendado. Se depois você optar por habilitar o SELinux novamente, o "
+-#~ "sistema necessitará de ser reetiquetado. Se você somente deseja ver se o "
+-#~ "SELinux está causando algum problema para o seu sistema, altere-o para o "
+-#~ "modo permissivo, o qual somente irá registrar erros e não forçará a "
+-#~ "política do SELinux. O modo permissivo não requer a reinicialização do "
+-#~ "sistema. Você deseja continuar?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Habilitar o SELinux fará com que todo o sistema de arquivos seja "
+-#~ "reetiquetado na próxima inicialização. Isto pode levar muito tempo "
+-#~ "dependendo do tamanho do sistema de arquivos. Você deseja continuar?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c) 2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Adicionar Mapeamento de Login do SELinux"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Adicionar Portas de Rede do SELinux"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "Tipo SELinux"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "Nível MLS/MCS\n"
+-#~ "do SELinux"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Especificação do Arquivo"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Tipo do Arquivo"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "todos os arquivos\n"
+-#~ "arquivos regulares\n"
+-#~ "diretórios\n"
+-#~ "dispositivos de caractere\n"
+-#~ "dispositivos de bloco\n"
+-#~ "soquetes\n"
+-#~ "ligações simbólicas\n"
+-#~ "pipe do named\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Adicionar Usuário do SELinux"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "Administração do SELinux"
+-
+-#~ msgid "Add"
+-#~ msgstr "Adicionar"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Propriedades"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Remover"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Selecionar Objeto de Gerenciamento"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Selecione:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Modo Reforçado Padrão do Sistema"
+-
+-#~ msgid ""
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
+-#~ msgstr ""
+-#~ "Desabilitado\n"
+-#~ "Permissivo\n"
+-#~ "Reforçado\n"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Isključi SELinux zaštitu za ypserv sistemsku uslugu"
-+
++msgstr ""
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Modo Reforçado Atual"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za prenos"
++msgstr ""
  
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Podrazumevani sistemski režim primoravanja"
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Tipo de Política Padrão do Sistema:"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Dopusti da SELinux webadm korisnik upravlja ličnim direktorijumima korisnika "
-+"bez privilegija"
  
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Tekući režim primoravanja"
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Selecione se você quiser reetiquetar todo o sistema de arquivos na "
+-#~ "próxima inicialização. A reetiquetagem pode levar bastante tempo, "
+-#~ "dependendo do tamanho do seu sistema de arquivos. Se você estiver mudando "
+-#~ "os tipos das políticas ou alterando de desabilitado para reforçado, a "
+-#~ "reetiquetagem é requerida."
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Dopusti da SELinux webadm korisnik može da čita iz ličnih direktorijuma "
-+"korisnika bez privilegija"
  
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Podrazumevana sistemska vrsta polise:"
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Reetiquetar na próxima inicialização."
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Da li ste sigurni da želite da obrišete %s „%s“?"
++msgstr ""
  
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Izaberite da li želite da ponovo označite celokupan sistem datoteka pri "
--#~ "sledećem podizanju sistema.  Ponovno označavanje može trajati jako dugo, "
--#~ "u zavisnosti od veličine sistema.  Ako menjate vrste polisa ili idete sa "
--#~ "isključenog na primoravanje, ponovno označavanje je neophodno."
+-#~ msgid "label37"
+-#~ msgstr "label37"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Obriši %s"
++msgstr ""
  
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Ponovo označi pri sledećem pokretanju."
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Reverter as configurações boleanas para o valor padrão do sistema"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Dodaj %s"
++msgstr ""
  
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Vrati logičke promenljive na podrazumevane sistemske postavke"
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Alternar entre as customizações e todas as Boleanas "
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Izmeni %s"
++msgstr ""
  
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Prebaci između Prilagođenih i Svih logičkih promenljivih"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Filter"
+-#~ msgstr "Filtro"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Dopuštanje"
++msgstr ""
  
--#~ msgid "Filter"
--#~ msgstr "Filtar"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Primoravanje"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Isključeno"
-+
++msgstr ""
+-#~ msgid "Add File Context"
+-#~ msgstr "Adicionar Contexto do Arquivo"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Status"
++msgstr ""
  
--#~ msgid "Add File Context"
--#~ msgstr "Dodaj kontekst datoteke"
+-#~ msgid "Modify File Context"
+-#~ msgstr "Modificar Contexto do Arquivo"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Menjanje vrste polise će prouzrokovati menjanje oznaka za ceo sistem "
-+"datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo traje "
-+"i to vreme zavisi od veličine sistema datoteka.  Želite li da nastavite?"
  
--#~ msgid "Modify File Context"
--#~ msgstr "Izmeni kontekst datoteke"
+-#~ msgid "Delete File Context"
+-#~ msgstr "Remover Contexto do Arquivo"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -245960,79 +193043,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Isključivanje SELinuxa zahteva ponovno podizanje sistema.  Nije "
-+"preporučljivo.  Ako kasnije odlučite da uključite SELinux, sistem će morati "
-+"da promeni oznake.  Ako samo hoćete da vidite da li SELinux izaziva probleme "
-+"na vašem sistemu, možete preći u dopuštajući način rada, koji će samo samo "
-+"beležiti poruke u dnevnik, ali ne i sprovoditi SELinux polisu.    Želite li "
-+"da nastavite?"
  
--#~ msgid "Delete File Context"
--#~ msgstr "Obriši kontekst datoteke"
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Alternar entre todas as customizações do contexto do arquivo"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Uključivanje SELinuxa će prouzrokovati menjanje oznaka za ceo sistem "
-+"datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo traje "
-+"i to vreme zavisi od veličine sistema datoteka.  Želite li da nastavite?"
-+
+-#~ msgid "label38"
+-#~ msgstr "label38"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
++msgstr ""
  
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Prebaci između svih i prilagođenih konteksta datoteka"
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Adicionar Mapeamento de Usuário do SELinux"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Autorska prava 2006 Red Hat, Inc.\n"
-+"Autorska prava 2006 Dan Walsh <dwalsh@redhat.com>"
  
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Dodaj SELinux korisničko mapiranje"
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Modificar Mapeamento do Usuário do SELinux"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Dodaj SELinux mapiranje prijave"
-+
++msgstr ""
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Remover Mapeamento do Usuário do SELinux"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Dodaj SELinux mrežne portove"
-+
++msgstr ""
+-#~ msgid "label39"
+-#~ msgstr "label39"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux vrsta"
++msgstr ""
  
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Izmeni SELinux korisničko mapiranje"
+-#~ msgid "Add Translation"
+-#~ msgstr "Adicionar Tradução"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++msgid "File Specification"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Nivo"
  
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Obriši SELinux korisničko mapiranje"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Specifikacija datoteke"
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Modify Translation"
+-#~ msgstr "Modificar Tradução"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Vrsta datoteke"
++msgstr ""
  
--#~ msgid "Add Translation"
--#~ msgstr "Dodaj prevod"
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Delete Translation"
+-#~ msgstr "Remover Tradução"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -246043,3417 +193112,4866 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr@latin.po policycor
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"sve datoteke\n"
-+"običan fajl\n"
-+"direktorijum\n"
-+"uređaj za karaktere\n"
-+"uređaj blokova\n"
-+"soket\n"
-+"simbolička veza\n"
-+"imenovana cev\n"
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
++msgstr ""
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Modificar Usuário do SELinux"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Dodaj SELinux korisnika"
-+
-+#: ../gui/system-config-selinux.glade:1271
++msgstr ""
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux administracija"
-+
-+#: ../gui/system-config-selinux.glade:1314
++msgstr ""
+-#~ msgid "Add Network Port"
+-#~ msgstr "Adicionar Porta de Rede"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Dodaj"
-+
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Editar Porta de Rede"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Svojstva"
-+
-+#: ../gui/system-config-selinux.glade:1358
++msgstr ""
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Remover Porta de Rede"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Obriši"
-+
-+#: ../gui/system-config-selinux.glade:1449
++msgstr ""
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Alternar entre as customizações de todas as Portas "
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Izaberite upravljački objekat"
-+
-+#: ../gui/system-config-selinux.glade:1466
++msgstr ""
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Izaberite:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
++msgstr ""
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Gerar novo módulo de política"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Podrazumevani sistemski režim primoravanja"
++msgstr ""
  
--#~ msgid "Modify Translation"
--#~ msgstr "Izmeni prevod"
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Load policy module"
+-#~ msgstr "Carregar módulo de política"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Isključeno\n"
-+"Dopuštanje\n"
-+"Primoravanje\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Remover módulo carregável de política"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Tekući režim primoravanja"
-+
-+#: ../gui/system-config-selinux.glade:1611
++msgstr ""
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Habilita/Desabilita regras adicionais do audit, que normalmente não são "
+-#~ "reportadas nos arquivos de log."
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Podrazumevana sistemska vrsta polise:"
++msgstr ""
  
--#~ msgid "Delete Translation"
--#~ msgstr "Obriši prevod"
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Izaberite da li želite da ponovo označite celokupan sistem datoteka pri "
-+"sledećem podizanju sistema.  Ponovno označavanje može trajati jako dugo, u "
-+"zavisnosti od veličine sistema.  Ako menjate vrste polisa ili idete sa "
-+"isključenog na primoravanje, ponovno označavanje je neophodno."
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Nível de Sensibilidade"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Ponovo označi pri sledećem pokretanju."
-+
-+#: ../gui/system-config-selinux.glade:1754
++msgstr ""
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "O usuário \"%s\" do SELinux é requerido"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "oznaka37"
-+
-+#: ../gui/system-config-selinux.glade:1791
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Requer valor"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Vrati logičke promenljive na podrazumevane sistemske postavke"
-+
-+#: ../gui/system-config-selinux.glade:1807
++msgstr ""
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Prebaci između prilagođenih i svih logičkih promenljivih"
-+
-+#: ../gui/system-config-selinux.glade:1825
++msgstr ""
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Permite que aplicações/usuários sejam vinculados a qualquer porta tcp > "
+-#~ "1024 "
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Pokrećem čarobnjaka za zaključavanje logičkih vrednosti"
-+
-+#: ../gui/system-config-selinux.glade:1826
++msgstr ""
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Permite que regras de aplicações/usuários restritas sejam vinculados a "
+-#~ "uma porta tcp qualquer"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Zaključavanje..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Insira uma lista de portas tcp, separadas por vírgulas ou especifique um "
+-#~ "intervalo, nas quais a regra de aplicação/usuário está vinculada. "
+-#~ "Examplo: 612, 650-660"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filtar"
-+
-+#: ../gui/system-config-selinux.glade:1945
++msgstr ""
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Assistente de Criação de Políticas do SELinux"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "oznaka50"
-+
-+#: ../gui/system-config-selinux.glade:1982
++msgstr ""
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Portas não reservadas (> 1024)"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Dodaj kontekst datoteke"
-+
-+#: ../gui/system-config-selinux.glade:1998
++msgstr ""
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Use este botão de seleção se a sua aplicação chama o bindresvport com 0."
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Izmeni kontekst datoteke"
-+
-+#: ../gui/system-config-selinux.glade:2014
++msgstr ""
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Reforçado\n"
+-#~ "Permissivo\n"
+-#~ "Desabilitado\n"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Obriši kontekst datoteke"
-+
-+#: ../gui/system-config-selinux.glade:2030
++msgstr ""
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Prebaci između svih i prilagođenih konteksta datoteka"
-+
-+#: ../gui/system-config-selinux.glade:2150
++msgstr ""
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "oznaka38"
++msgstr ""
  
--#~ msgid "Modify SELinux User"
--#~ msgstr "Izmenim SELinux korisnika"
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid "label28"
+-#~ msgstr "label28"
+-
+-#~ msgid "label30"
+-#~ msgstr "label30"
+-
+-#~ msgid "label31"
+-#~ msgstr "label31"
+-
+-#~ msgid "label32"
+-#~ msgstr "label32"
+-
+-#~ msgid "label33"
+-#~ msgstr "label33"
+-
+-#~ msgid "label34"
+-#~ msgstr "label34"
+-
+-#~ msgid "label35"
+-#~ msgstr "label35"
+-
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
+-
+-#~ msgid "value"
+-#~ msgstr "valor"
+-
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Você deve ser root para executar %s."
+-
+-#~ msgid "Other"
+-#~ msgstr "Outros"
+-
+-#~ msgid ""
+-#~ "Select XWindows login user, if this is a user who will login to a machine "
+-#~ "via X"
+-#~ msgstr ""
+-#~ "Selecione o usuário para login no XWindows, se este é um usuário que irá "
+-#~ "autenticar em uma máquina via X"
+-
+-#~ msgid "XWindows Login User"
+-#~ msgstr "Usuário para Login do XWindows"
+-
+-#~ msgid ""
+-#~ "Select Terminal Login User, if this user will login to a machine only via "
+-#~ "a terminal or remote login"
+-#~ msgstr ""
+-#~ "Selecione o Usuário para Login no Terminal, se este usuário irá "
+-#~ "autenticar em um máquina apenas via terminal ou login remoto"
+-
+-#~ msgid "Terminal Login User"
+-#~ msgstr "Usuário para Login no Terminal"
+-
+-#~ msgid "Name of application to be confined"
+-#~ msgstr "Nome da aplicação a ser restrita"
+-
+-#~ msgid "Incoming Network Port Connections"
+-#~ msgstr "Conexões de Portas de Entrada da Rede"
+-
+-#~ msgid "Outgoing Network Port Connections"
+-#~ msgstr "Conexões de Portas de Saída da Rede"
+-
+-#~ msgid ""
+-#~ "Application uses nsswitch or translates UID's (daemons that run as non "
+-#~ "root)"
+-#~ msgstr ""
+-#~ "A aplicação utiliza o nsswitch ou traduz UID's (daemons que não são "
+-#~ "executados como root)"
+-
+-#~ msgid "Files and Directories"
+-#~ msgstr "Arquivos e Diretórios"
+-
+-#~ msgid "Generate policy in this directory"
+-#~ msgstr "Gerar política neste diretório"
+-
+-#~ msgid "Login"
+-#~ msgstr "Login"
+-
+-#~ msgid "Allow direct login to the console device. Requiered for System 390"
+-#~ msgstr ""
+-#~ "Permitir login direto ao dispositivo do console. Necessário para o System "
+-#~ "390"
+-
+-#~ msgid "Allow cvs daemon to read shadow"
+-#~ msgstr "Permitir que o daemon do cvs leia shadow"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their heap memory executable.  Doing "
+-#~ "this is a really bad idea. Probably indicates a badly coded executable, "
+-#~ "but could indicate an attack. This executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Permitir que executáveis não restritos possam fazer com que a sua memória "
+-#~ "heap seja executável. Fazer isso é uma má idéia. Provavelmente indica um "
+-#~ "código ruim executável, mas pode indicar um ataque. Este executável deve "
+-#~ "ser reportado ao bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to map a memory region as both executable "
+-#~ "and writable, this is dangerous and the executable should be reported in "
+-#~ "bugzilla"
+-#~ msgstr ""
+-#~ "Permitir que executáveis não restritos mapeiem uma região da memória como "
+-#~ "executável e gravável, isto é perigoso e o executável deve ser reportado "
+-#~ "ao bugzilla"
+-
+-#~ msgid ""
+-#~ "Allow all unconfined executables to use libraries requiring text "
+-#~ "relocation that are not labeled textrel_shlib_t"
+-#~ msgstr ""
+-#~ "Permitir que executáveis não restritos possam utilizar bibliotecas que "
+-#~ "requerem realocação de texto que não estão etiquetadas como "
+-#~ "textrel_shlib_t"
+-
+-#~ msgid ""
+-#~ "Allow unconfined executables to make their stack executable.  This should "
+-#~ "never, ever be neessary. Probably indicates a badly coded executable, but "
+-#~ "could indicate an attack. This executable should be reported in bugzilla"
+-#~ msgstr ""
+-#~ "Permitir que executáveis não restritos tornem a sua pilha executável. "
+-#~ "Isso nunca deveria ser necessário. Provavelmente indica um código ruim "
+-#~ "executável, mas pode indicar um ataque. Este executável deve ser "
+-#~ "reportado ao bugzilla"
+-
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
+-
+-#~ msgid "Allow ftpd to full access to the system"
+-#~ msgstr "Permitir que o ftpd tenha acesso completo ao sistema"
+-
+-#~ msgid ""
+-#~ "Allow ftpd to upload files to directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir que ftpd faça o upload de arquivos para diretórios etiquetados "
+-#~ "como public_content_rw_t"
+-
+-#~ msgid "Allow ftp servers to use cifs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Permitir que servidores ftp utilizem o cifs usado por serviços de "
+-#~ "transferência de arquivos públicos"
+-
+-#~ msgid "Allow ftp servers to use nfs used for public file transfer services"
+-#~ msgstr ""
+-#~ "Permitir que servidores ftp utilizem o nfs usado por serviços de "
+-#~ "transferência de arquivos públicos"
+-
+-#~ msgid "Allow gpg executable stack"
+-#~ msgstr "Permitir pilha de execução do gpg"
+-
+-#~ msgid "Allow gssd to read temp directory"
+-#~ msgstr "Permitir que o gssd leia o diretório temporário"
+-
+-#~ msgid ""
+-#~ "Allow httpd daemon to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir que o daemon httpd grave arquivos nos diretórios etiquetados "
+-#~ "como public_content_rw_t"
+-
+-#~ msgid "Allow Apache to communicate with avahi service"
+-#~ msgstr "Permitir que o Apache comunique com o serviço do avahi"
+-
+-#~ msgid "Allow Apache to use mod_auth_pam"
+-#~ msgstr "Permitir que o Apache use o mod_auth_pam"
+-
+-#~ msgid ""
+-#~ "Allow httpd scripts to write files in directories labeled "
+-#~ "public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir que os scripts do httpd gravem arquivos nos diretórios "
+-#~ "etiquetados como public_content_rw_t"
+-
+-#~ msgid "Allow daemons to use kerberos files"
+-#~ msgstr "Permitir que os daemons utilizem arquivos do kerberos"
+-
+-#~ msgid ""
+-#~ "Allow nfs servers to modify public files used for public file transfer "
+-#~ "services"
+-#~ msgstr ""
+-#~ "Permitir que servidores nfs modifiquem arquivos públicos utilizados por "
+-#~ "serviços de transferência de arquivos públicos"
+-
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Poli-instanciação"
+-
+-#~ msgid "Enable polyinstantiated directory support"
+-#~ msgstr "Habilitar suporte a diretórios poli-instanciados"
+-
+-#~ msgid "Allow sysadm_t to debug or ptrace applications"
+-#~ msgstr "Permitir que o sysadm_t faça a depuração ou ptrace de aplicações"
+-
+-#~ msgid ""
+-#~ "Allow rsync to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir que o rsync grave arquivos nos diretórios etiquetados como "
+-#~ "public_content_rw_t"
+-
+-#~ msgid ""
+-#~ "Allow Samba to write files in directories labeled public_content_rw_t"
+-#~ msgstr ""
+-#~ "Permitir que o Samba grave arquivos nos diretórios etiquetados como "
+-#~ "public_content_rw_t"
+-
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
+-
+-#~ msgid "Allow zebra daemon to write it configuration files"
+-#~ msgstr "Permitir que o daemon zebra grave arquivos de configuração"
+-
+-#~ msgid ""
+-#~ "Allow system cron jobs to relabel filesystem for restoring file contexts"
+-#~ msgstr ""
+-#~ "Permitir que trabalhos de sistema do cron reetiquetem os sistemas de "
+-#~ "arquivos para restaurar contextos de arquivos"
+-
+-#~ msgid "Enable extra rules in the cron domain to support fcron"
+-#~ msgstr "Habilitar regras extras no domínio do cron para suportar o fcron"
+-
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon ftpd"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Dodaj SELinux korisničko mapiranje"
++msgstr ""
  
--#~ msgid "Add Network Port"
--#~ msgstr "Dodaj mrežni port"
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Allow ftpd to run directly without inetd"
+-#~ msgstr "Permitir que o ftpd seja executado diretamente sem o inetd"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Izmeni SELinux korisničko mapiranje"
-+
-+#: ../gui/system-config-selinux.glade:2219
++msgstr ""
+-#~ msgid "Allow ftp to read/write files in the user home directories"
+-#~ msgstr ""
+-#~ "Permitir que o ftp leia/grave arquivos no diretório pessoal dos usuários"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Obriši SELinux korisničko mapiranje"
-+
-+#: ../gui/system-config-selinux.glade:2337
++msgstr ""
+-#~ msgid ""
+-#~ "This should be enabled when all programs are compiled with ProPolice/SSP "
+-#~ "stack smashing protection.  All domains will be allowed to read from /dev/"
+-#~ "urandom"
+-#~ msgstr ""
+-#~ "Isto deve ser habilitado quando todos os programas são compilados com a "
+-#~ "proteção de quebra de pilha ProPolice/SSP. Todos os domínios estarão "
+-#~ "aptos a ler de /dev/urandom"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "oznaka39"
-+
-+#: ../gui/system-config-selinux.glade:2374
++msgstr ""
+-#~ msgid "Allow HTTPD to support built-in scripting"
+-#~ msgstr "Permitir que o HTTPD suporte scripts embutidos"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Dodaj korisnika"
-+
-+#: ../gui/system-config-selinux.glade:2390
++msgstr ""
+-#~ msgid "Allow HTTPD to send mail"
+-#~ msgstr "Permitir que o HTTPD envie e-mail"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Izmeni korisnika"
-+
-+#: ../gui/system-config-selinux.glade:2406
++msgstr ""
+-#~ msgid "Allow HTTPD scripts and modules to network connect to databases"
+-#~ msgstr ""
+-#~ "Permitir que scripts e módulos do HTTPD conectem a bancos de dados "
+-#~ "através da rede"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Obriši korisnika"
-+
-+#: ../gui/system-config-selinux.glade:2524
++msgstr ""
+-#~ msgid "Allow HTTPD scripts and modules to connect to the network"
+-#~ msgstr "Permitir que scripts e módulos do HTTPD conectem a rede"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "oznaka41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Dodaj prevod"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Izmeni prevod"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Obriši prevod"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "oznaka40"
-+
-+#: ../gui/system-config-selinux.glade:2748
++msgstr ""
+-#~ msgid "Allow httpd to act as a relay"
+-#~ msgstr "Permitir que o HTTPD atue como relay"
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Dodaj mrežni port"
-+
-+#: ../gui/system-config-selinux.glade:2764
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon httpd"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Uredi mrežni port"
-+
-+#: ../gui/system-config-selinux.glade:2780
++msgstr ""
+-#~ msgid "Allow HTTPD cgi support"
+-#~ msgstr "Permitir que o HTTPD suporte cgi"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Obriši mrežni port"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++msgstr ""
+-#~ msgid "Allow HTTPD to run as a ftp server"
+-#~ msgstr "Permitir que o HTTPD seja executado como um servidor ftp"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Prebaci između prilagođenih i svih portova"
-+
-+#: ../gui/system-config-selinux.glade:2954
++msgstr ""
+-#~ msgid "Allow HTTPD to read home directories"
+-#~ msgstr "Permitir que o HTTPD leia diretórios pessoais"
+-
+-#~ msgid ""
+-#~ "Allow HTTPD to run SSI executables in the same domain as system CGI "
+-#~ "scripts"
+-#~ msgstr ""
+-#~ "Permitir que o HTTPD execute executáveis SSI no mesmo domínio que os "
+-#~ "scripts CGI do sistema"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "oznaka42"
-+
-+#: ../gui/system-config-selinux.glade:2991
++msgstr ""
+-#~ msgid ""
+-#~ "Unify HTTPD to communicate with the terminal.  Needed for handling "
+-#~ "certificates"
+-#~ msgstr ""
+-#~ "Unificar o HTTPD para comunicar com o terminal. Necessário para lidar com "
+-#~ "certificados"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Napravi novi modul polise"
-+
-+#: ../gui/system-config-selinux.glade:3007
++msgstr ""
+-#~ msgid "Unify HTTPD handling of all content files"
+-#~ msgstr "Unificar o tratamento do HTTPD para todos os arquivos do conteúdo"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Učitaj modul polise"
-+
-+#: ../gui/system-config-selinux.glade:3023
++msgstr ""
+-#~ msgid "Allow named to overwrite master zone files"
+-#~ msgstr "Permitir que o named sobrescreva arquivos da zona mestre"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Ukloni učitavajuće module polise"
++msgstr ""
  
--#~ msgid "Edit Network Port"
--#~ msgstr "Uredi mrežni port"
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Allow NFS to share any file/directory read only"
+-#~ msgstr ""
+-#~ "Permitir que o NFS compartilhe qualquer arquivo/diretório somente leitura"
+-
+-#~ msgid "Allow NFS to share any file/directory read/write"
+-#~ msgstr ""
+-#~ "Permitir que o NFS compartilhe qualquer arquivo/diretório com direitos de "
+-#~ "leitura/escrita"
+-
+-#~ msgid "Allow openvpn service access to users home directories"
+-#~ msgstr ""
+-#~ "Permitir que o serviço openvpn acesse o diretório pessoal dos usuários"
+-
+-#~ msgid "Allow pppd daemon to insert modules into the kernel"
+-#~ msgstr "Permitir que o daemon pppd insira módulos no kernel"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Uključi/isključi dodatna pravila provere, koja se obično ne beleže u "
-+"datoteke dnevnika."
  
--#~ msgid "Delete Network Port"
--#~ msgstr "Obriši mrežni port"
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon pppd"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "oznaka44"
++msgstr ""
  
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Prebaci između prilagođenih i svih portova"
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon mozilla ppp"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Promeni režim procesa u dozvoljavajući."
++msgstr ""
  
--#~ msgid "Generate new policy module"
--#~ msgstr "Napravi novi modul polise"
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "Allow programs to read untrusted content without relabel"
+-#~ msgstr ""
+-#~ "Permitir que programas leiam conteúdos não confiáveis sem reetiquetar"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Promeni režim procesa u primoravajući."
++msgstr ""
  
--#~ msgid "Load policy module"
--#~ msgstr "Učitaj modul polise"
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "Allow Samba to share users home directories"
+-#~ msgstr "Permitir que o Samba compartilhe diretórios pessoais dos usuários"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Domen procesa"
++msgstr ""
  
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Ukloni učitavajuće module polise"
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "oznaka59"
++msgstr ""
  
+-#~ msgid "Allow spammassasin to access the network"
+-#~ msgstr "Permitir que o spammassasin acesse a rede"
+-
+-#~ msgid "Use lpd server instead of cups"
+-#~ msgstr "Usar o servidor lpd ao invés do cups"
+-
+-#~ msgid "Support NFS home directories"
+-#~ msgstr "Suporte aos diretórios pessoais do NFS"
+-
+-#~ msgid "Allow users to login with CIFS home directories"
+-#~ msgstr "Permitir que os usuários façam o login com diretórios pessoais CIFS"
+-
 -#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
+-#~ "Allow web applications to write untrusted content to disk (implies read)"
 -#~ msgstr ""
--#~ "Uključi/isključi dodatna audit pravila, koja se obično ne beleže u "
--#~ "datoteke dnevnika."
+-#~ "Permitir que aplicações web gravem conteúdo não confiável no disco "
+-#~ "(implica em direito de leitura)"
+-
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "Desabilitar proteção do SELinux para o daemon zebra"
+-
+-#~ msgid "Allow httpd to access samba/cifs file systems"
+-#~ msgstr "Permitir que o httpd acesse sistemas de arquivos samba/cifs"
+-
+-#~ msgid "Allow httpd to access nfs file systems"
+-#~ msgstr "Permitir que o httpd acesse sistemas de arquivos nfs"
+-
+-#~ msgid ""
+-#~ "Allow samba to act as the domain controller, add users, groups and change "
+-#~ "passwords"
+-#~ msgstr ""
+-#~ "Permitir que o samba atue como controlador de domínio, adicione usuários, "
+-#~ "grupos e altere senhas"
+-
+-#~ msgid "Allow Samba to share any file/directory read only"
+-#~ msgstr ""
+-#~ "Permitir que o Samba compartilhe qualquer arquivo/diretório somente "
+-#~ "leitura"
+-
+-#~ msgid "Allow Samba to share any file/directory read/write"
+-#~ msgstr ""
+-#~ "Permitir que o Samba compartilhe qualquer arquivo/diretório com direitos "
+-#~ "de leitura/escrita"
+-
+-#~ msgid ""
+-#~ "Allow Samba to run unconfined scripts in /var/lib/samba/scripts directory"
+-#~ msgstr ""
+-#~ "Permitir que o Samba execute scripts não restritos no diretório /var/lib/"
+-#~ "samba/scripts"
+-
+-#~ msgid "Label Prefix"
+-#~ msgstr "Prefixo da Etiqueta"
+-
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "Nível MLS/MCS"
+-
+-#~ msgid "Group/ungroup network ports by SELinux type."
+-#~ msgstr "Agrupar/desagrupar portas de rede pelo tipo do SELinux."
+-
+-#~ msgid ""
+-#~ "Enable additional audit rules, that are normally not reported in the log "
+-#~ "files."
+-#~ msgstr ""
+-#~ "Habilitar regras adicionais do audit, que normalmente não são reportadas "
+-#~ "nos arquivos de log."
+-
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr ""
+-#~ "Prefixo de\n"
+-#~ "Etiquetagem"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "Nível\n"
+-#~ "MLS/MCS"
+-
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Requer 2 ou mais argumentos"
+-
+-#~ msgid "%s not defined"
+-#~ msgstr "%s não definido"
+-
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s não é válido para objetos %s\n"
+-
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "intervalo não suportado em máquinas não-MLS"
+-
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Valor inválido %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Para carregar este pacote de políticas criado recentemente no kernel\n"
+-#~ "é necessário que você execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Erro de Opções: %s "
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux korisnik „%s“ je neophodan"
--#~ msgid "Sensitvity Level"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
- #~ msgstr "Nivo osetljivosti"
++msgstr ""
+diff --git a/policycoreutils/po/ro.po b/policycoreutils/po/ro.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/ro.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
 -
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux korisnik „%s“ je neophodan"
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
 -
--#~ msgid "Requires value"
--#~ msgstr "Zahteva vrednost"
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
 -
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Neispravan prefiks %s"
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
 -
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "Dozvoli ulozi programa/korisnika da se veže na bilo koji tcp port > 1024"
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
 -
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "Dozvoljava ograničenoj ulozi programa/korisnika da se veže na bilo koji "
--#~ "tcp port"
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Unesite spisak tcp portova ili opseg portova razdvojene zarezima na koje "
--#~ "se veže uloga programa/korisnika. Primer: 612, 650-660"
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
 -
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "Druid za pravljenje SELinux polisa"
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
 -
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Nerezervisani portovi  (> 1024)"
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
 -
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "Koristite ovo dugme za proveru ako vaš program poziva bindresvport sa 0."
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
 -
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Primoravanje\n"
--#~ "Dopuštanje\n"
--#~ "Isključeno\n"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr.po policycoreutils-2.0.85/po/sr.po
---- nsapolicycoreutils/po/sr.po        2011-02-17 15:11:25.985720665 -0500
-+++ policycoreutils-2.0.85/po/sr.po    2011-02-18 16:03:41.444976263 -0500
-@@ -1,26 +1,44 @@
--# translation of policycoreutils.HEAD.sr.po to Serbian
- # Serbian translations for policycoreutils
- # Copyright (C) 2006 Red Hat, Inc.
- # This file is distributed under the same license as the policycoreutils package.
--#
- # Miloš Komarčević <kmilos@gmail.com>, 2006.
- # Jovan Krunic <jovan.krunic@gmail.com>, 2008.
- # Nikola Pajtić <salgeras@gmail.com>, 2008.
- # Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
-+#
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/ru.po b/policycoreutils/po/ru.po
+index bf98db7..b2ae081 100644
+--- a/policycoreutils/po/ru.po
++++ b/policycoreutils/po/ru.po
+@@ -1,22 +1,25 @@
+-# translation of policycoreutils.HEAD.ru.po to
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
+-# Andrew Martynov <andrewm@inventa.ru>, 2006, 2007.
+-# Yulia Poyarkova <ypoyarko@redhat.com>, 2006.
++# Translators:
+ # Anatoliy Guskov <anatoliy.guskov@gmail.com>, 2008.
+-# Yulia Poyarkova <yulia.poyarkova@redhat.com>, 2008.
++# Andrew Martynov <andrewm@inventa.ru>, 2006, 2007.
++# Yulia <ypoyarko@redhat.com>, 2006, 2010.
  msgid ""
  msgstr ""
--"Project-Id-Version: policycoreutils.HEAD.sr\n"
-+"Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils.HEAD.ru\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-04-07 21:19-0400\n"
--"Last-Translator: Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
--"Language-Team: Serbian <fedora-trans-sr@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2009-03-23 23:04+0100\n"
-+"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
-+"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-09-10 17:53+1000\n"
+-"Last-Translator: Yulia Poyarkova <yulia.poyarkova@redhat.com>\n"
+-"Language-Team: \n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Russian <trans-ru@lists.fedoraproject.org>\n"
++"Language: ru\n"
  "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Type: text/plain; charset=KOI8-R\n"
++"Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
--"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
--"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 -"X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+#, fuzzy
-+msgid "SELinux Management"
-+msgstr "SELinux fcontext"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+#, fuzzy
-+msgid "Generate SELinux policy modules"
-+msgstr "Направи нови модул полисе"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Алат за прављење SELinux полиса"
++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -111,9 +129,8 @@
- msgstr "Не могу да успоставим semanage везу"
+@@ -24,150 +27,147 @@ msgid ""
+ "  where: <script> is the name of the init script to run,\n"
+ "         <args ...> are the arguments to that script."
+ msgstr ""
+-"éÓÐÏÌØÚÏ×ÁÎÉÅ: run_init <ÓÃÅÎÁÒÉÊ> <ÁÒÇÕÍÅÎÔÙ ...>\n"
+-"  ÇÄÅ: <ÓÃÅÎÁÒÉÊ> - ÜÔÏ ÉÍÑ ÚÁÐÕÓËÁÅÍÏÇÏ ÓÃÅÎÁÒÉÑ ÉÎÉÃÉÁÌÉÚÁÃÉÉ,\n"
+-"       <ÁÒÇÕÍÅÎÔÙ ...>  - ÐÅÒÅÄÁ×ÁÅÍÙÅ ÓÃÅÎÁÒÉÀ ÁÒÇÕÍÅÎÔÙ."
++"Использование: run_init <сценарий> <аргументы ...>\n"
++"  где <сценарий> &mdash; имя запускаемого сценария инициализации,\n"
++"       <аргументы ...>  &mdash; передаваемые сценарию аргументы."
  
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Не могу да поставим MLS опсег за %s"
-+msgstr "Не могу да испитам статус MLS омогућавања"
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+ msgid "failed to initialize PAM\n"
+-msgstr "ÓÂÏÊ ÉÎÉÃÉÁÌÉÚÁÃÉÉ PAM\n"
++msgstr "сбой инициализации PAM\n"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ Ó×ÅÄÅÎÉÊ ÕÞÅÔÎÏÊ ÚÁÐÉÓÉ\n"
++msgstr "не удалось получить сведения учётной записи\n"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+-msgstr "ðÁÒÏÌØ:"
++msgstr "Пароль:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ×ÁÛÕ ÚÁÐÉÓØ × ÔÅÎÅ×ÏÍ ÆÁÊÌÅ ÐÁÒÏÌÅÊ.\n"
++msgstr "Не удалось найти вашу запись в теневом файле паролей.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+ msgid "getpass cannot open /dev/tty\n"
+-msgstr "getpass ÎÅ ÍÏÖÅÔ ÏÔËÒÙÔØ /dev/tty\n"
++msgstr "getpass не может открыть /dev/tty\n"
+ #: ../run_init/run_init.c:275
+ #, c-format
+ msgid "run_init: incorrect password for %s\n"
+-msgstr "run_init: ÎÅ×ÅÒÎÙÊ ÐÁÒÏÌØ ÄÌÑ %s\n"
++msgstr "run_init: неверный пароль для %s\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s\n"
++msgstr "Невозможно открыть файл %s\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+ msgid "No context in file %s\n"
+-msgstr "îÅÔ ËÏÎÔÅËÓÔÁ × ÆÁÊÌÅ %s\n"
++msgstr "Нет контекста в файле %s\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+ msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+ msgstr ""
+-"éÚ×ÉÎÉÔÅ, run_init ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÏ ÔÏÌØËÏ ÄÌÑ ÑÄÒÁ Ó SELinux.\n"
++"Извините, run_init может быть использовано только для ядра с SELinux.\n"
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr "ÓÂÏÊ ÐÒÏ×ÅÒËÉ ÐÏÄÌÉÎÎÏÓÔÉ.\n"
++msgstr "сбой проверки подлинности.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÉÓÐÏÌÎÅÎÉÑ ÄÌÑ %s.\n"
++msgstr "Невозможно задать контекст исполнения для %s.\n"
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+-msgstr "********************* ÷áöîï ************************\n"
++msgstr "********************* ВАЖНО ************************\n"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr "äÌÑ ÁËÔÉ×ÁÃÉÉ ÐÁËÅÔÁ ÐÏÌÉÔÉËÉ ×ÙÐÏÌÎÉÔÅ:"
++msgstr "Для активации пакета политики выполните:"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
  msgid "global"
-@@ -129,7 +146,8 @@
- msgid "Level"
- msgstr "Ниво"
+-msgstr ""
++msgstr "глобальное"
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÕÐÒÁ×ÌÅÎÉÅ semanage"
++msgstr "Не удалось создать дескриптор semanage"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "ðÏÌÉÔÉËÁ SELinux ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔ ÕÐÒÁ×ÌÅÎÉÅ ÉÌÉ ÈÒÁÎÉÌÉÝÅ ÎÅÄÏÓÔÕÐÎÏ."
++msgstr "Политика SELinux не поддерживает управление или хранилище недоступно."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÈÒÁÎÉÌÉÝÅ ÐÏÌÉÔÉËÉ."
++msgstr "Невозможно прочитать хранилище политики."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ semanage ÓÏÅÄÉÎÅÎÉÅ"
++msgstr "Невозможно установить соединение semanage"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Превод"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÄÉÁÐÁÚÏΠMLS ÄÌÑ %s"
++msgstr "Не удалось проверить активный статус MLS"
  
-@@ -159,764 +177,766 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr "æÕÎËÃÉÏÎÁÌØÎÏÓÔØ ÅÝÅ ÎÅ ÒÅÁÌÉÚÏ×ÁÎÁ"
++msgstr "Функциональность еще не реализована"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Semanage трансакција је већ у току"
++msgstr "Транзакция semanage уже выполняется"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
- msgstr "Не могу да покренем semanage трансакцију"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÞÁÔØ semanage ÔÒÁÎÚÁËÃÉÀ"
++msgstr "Невозможно начать semanage транзакцию"
  
- #: ../semanage/seobject.py:309
--#, fuzzy
+ #: ../semanage/seobject.py:274
  msgid "Could not commit semanage transaction"
--msgstr "Не могу да покренем semanage трансакцију"
-+msgstr "Не могу да предам semanage трансакцију"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÏÔÐÒÁ×ÉÔØ ÔÒÁÎÚÁËÃÉÀ semanage"
++msgstr "Не удалось отправить транзакцию semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Semanage трансакција није у току"
++msgstr "Транзакция semanage не выполняется"
  
- #: ../semanage/seobject.py:325
--#, fuzzy
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
--msgstr "Не могу да попишем SELinux кориснике"
-+msgstr "Не могу да попишем SELinux модуле"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ÍÏÄÕÌÅÊ SELinux"
++msgstr "Не удалось получить список модулей SELinux"
  
- #: ../semanage/seobject.py:336
+ #: ../semanage/seobject.py:304
 -#, fuzzy
- msgid "Permissive Types"
--msgstr "Допуштање"
-+msgstr "Врсте допуштања"
+ msgid "Modules Name"
+-msgstr "éÍÑ ÍÏÄÕÌÑ"
++msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr "÷ÅÒÓÉÑ"
++msgstr "Версия"
+-#: ../semanage/seobject.py:307
+-#, fuzzy
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr "÷ÙËÌÀÞÅÎÏ"
++msgstr "Выключено"
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ)"
++msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ)"
++msgstr ""
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ)"
++msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+@@ -184,12 +184,12 @@ msgstr ""
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Нисам могао да поставим допустиви домен %s (инсталација модула није успела)"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÚÁÄÁÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÓÔÁÎÏ×ËÉ ÍÏÄÕÌÑ)"
++msgstr "Не удалось задать разрешающий домен %s (ошибка установки модуля)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Ð\9dиÑ\81ам Ð¼Ð¾Ð³Ð°Ð¾ Ð´Ð° Ñ\83клоним Ð´Ð¾Ð¿Ñ\83Ñ\81Ñ\82иви Ð´Ð¾Ð¼ÐµÐ½ %s (Ñ\83клаÑ\9aаÑ\9aе Ð½Ð¸Ñ\98е Ñ\83Ñ\81пело)"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÒÁÚÒÅÛÁÀÝÉÊ ÄÏÍÅΠ%s (ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ)"
++msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ñ\80азÑ\80еÑ\88аÑ\8eÑ\89ий Ð´Ð¾Ð¼ÐµÐ½ %s (оÑ\88ибка Ñ\83далениÑ\8f)"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -200,185 +200,190 @@ msgstr "
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr "Не могу да направим кључ за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s"
++msgstr "Невозможно создать ключ для %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr "Не могу да проверим да ли је одређено пресликавање пријаве за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅÎÏ ÌÉ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr "Невозможно проверить, определено ли сопоставление входа для %s"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
+ #: ../semanage/seobject.py:492
  #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Пресликавање пријаве за %s је већ одређено"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
  msgid "Linux Group %s does not exist"
--msgstr "Linux корисник %s не постоји"
-+msgstr "Linux група %s не постоји"
+-msgstr "Linux-ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
++msgstr "Linux-группа %s не существует"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
  msgid "Linux User %s does not exist"
- msgstr "Linux корисник %s не постоји"
+-msgstr "Linux-ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
++msgstr "Linux-пользователь %s не существует"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr "Не могу да направим празно пресликавање пријаве за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr "Невозможно создать сопоставление входа для %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr "Не могу да поставим име за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÉÍÑ ÄÌÑ %s"
++msgstr "Невозможно задать имя для %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr "Не могу да поставим MLS опсег за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÄÉÁÐÁÚÏΠMLS ÄÌÑ %s"
++msgstr "Невозможно задать диапазон MLS для %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr "Не могу да поставим SELinux корисника за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux ÄÌÑ %s"
++msgstr "Невозможно задать пользователя SELinux для %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr "Не могу да додам пресликавање пријаве за %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "Додај SELinux корисничко мапирање"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr "Невозможно добавить сопоставление входа для %s"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "Захтева seuser или serange"
+-msgstr "îÅÏÂÈÏÄÉÍ seuser ÉÌÉ serange"
++msgstr "Необходим seuser или serange"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
  msgid "Login mapping for %s is not defined"
- msgstr "Пресликавање пријаве за %s није одређено "
+-msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎÏ"
++msgstr "Сопоставление входа для %s не определено"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr "Не могу да испитам seuser-а за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ seuser ÄÌÑ %s"
++msgstr "Невозможно запросить seuser для %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "Не могу да изменим пресликавање пријаве за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr "Невозможно изменить сопоставление входа для %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "Пресликавање пријаве за %s је одређено у полиси, не може се брисати"
+ msgstr ""
+-"óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÏÐÒÅÄÅÌÅÎÏ × ÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎÏ"
++"Сопоставление входа для %s определено в политике и не может быть удалено"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "Не могу да обришем пресликавање пријаве за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr "Невозможно удалить сопоставление входа для %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr "Не могу да попишем пресликавања пријаве"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÓÏÐÏÓÔÁ×ÌÅÎÉÊ ×ÈÏÄÁ"
++msgstr "Невозможно выполнить перечисление сопоставлений входа"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "Пријавно име"
+-msgstr "éÍÑ ×ÈÏÄÁ"
++msgstr "Имя входа"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux корисник"
+-msgstr "ðÏÌØÚÏ×ÔÅÌØ SELinux"
++msgstr "Пользователь SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS опсег"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Не могу да додам контекст датотеке за %s"
-+msgstr "Морате додати барем једну улогу за %s"
+-msgstr "äÉÁÐÁÚÏΠMLS/MCS"
++msgstr "Диапазон MLS/MCS"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr "Не могу да проверим да ли је одређен SELinux корисник %s"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÏÌØÚÏ×ÁÔÅÌØ SELinux %s"
++msgstr "Не удалось проверить, определен ли пользователь SELinux %s"
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
+ #, python-format
+ msgid "Could not query user for %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
++msgstr "Невозможно запросить пользователя %s"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:722
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux корисник %s је већ одређен"
+ msgid "You must add at least one role for %s"
+-msgstr "îÅÏÂÈÏÄÉÍÏ ÄÏÂÁ×ÉÔØ ËÁË ÍÉÎÉÍÕÍ ÏÄÎÕ ÒÏÌØ ÄÌÑ %s"
++msgstr "Необходимо добавить как минимум одну роль для %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr "Не могу да направим SELinux корисника за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux ÄÌÑ %s"
++msgstr "Невозможно создать пользователя SELinux для %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr "Не могу да додам улогу %s за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÒÏÌØ %s ÄÌÑ %s"
++msgstr "Невозможно добавить роль %s для %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr "Не могу да поставим MLS ниво за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÕÒÏ×ÅÎØ MLS ÄÌÑ %s"
++msgstr "Невозможно задать уровень MLS для %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr "Не могу да додам префикс %s за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÅÆÉËÓ %s ÄÌÑ %s"
++msgstr "Невозможно добавить префикс %s для %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr "Не могу да издвојим кључ за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚ×ÌÅÞØ ËÌÀÞ ÄÌÑ %s"
++msgstr "Невозможно извлечь ключ для %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr "Не могу да додам SELinux корисника %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
++msgstr "Невозможно добавить пользователя SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr "Захтева префикс, улоге, ниво или опсег"
+-msgstr "îÅÏÂÈÏÄÉÍ ÐÒÅÆÉËÓ, ÒÏÌØ, ÕÒÏ×ÅÎØ ÉÌÉ ÄÉÁÐÁÚÏÎ"
++msgstr "Необходим префикс, роль, уровень или диапазон"
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
+ #: ../semanage/seobject.py:789
  msgid "Requires prefix or roles"
- msgstr "Захтева префикс или улоге"
+-msgstr "îÅÏÂÈÏÄÉÍ ÐÒÅÆÉËÓ ÉÌÉ ÒÏÌØ"
++msgstr "Необходим префикс или роль"
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr "SELinux корисник %s није одређен"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Не могу да испитам корисника за %s"
+-msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "SELinux пользователь %s не определен"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr "Не могу да изменим SELinux корисника %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
++msgstr "Невозможно изменить SELinux пользователя %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux корисник %s је одређен у полиси, не може се брисати"
+-msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "SELinux пользователь %s определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr "Не могу да обришем SELinux корисника %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
++msgstr "Невозможно удалить пользователя SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr "Не могу да попишем SELinux кориснике"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÅÊ SELinux"
++msgstr "Невозможно выполнить перечисление пользователей SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr "Не могу да попишем улоге за корисника %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÒÏÌÅÊ ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
++msgstr "Невозможно выполнить перечисление ролей пользователя %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr "Означавање"
+-msgstr ""
++msgstr "Разметка"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr "MLS/"
+@@ -386,27 +391,28 @@ msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
- msgstr "Префикс"
+-msgstr "ðÒÅÆÉËÓ"
++msgstr "Префикс"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
- msgstr "MCS ниво"
+-msgstr "MCS õÒÏ×ÅÎØ"
++msgstr "MCS Уровень"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr "MCS опсег"
+-msgstr "MCS äÉÁÐÁÚÏÎ"
++msgstr "MCS Диапазон"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux улоге"
+-msgstr "òÏÌÉ SELinux"
++msgstr "Роли SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "Неопходан је udp или tcp протокол"
+-msgstr "îÅÏÂÈÏÄÉÍÏ ÚÁÄÁÎÉÅ tcp ÉÌÉ udp ÐÒÏÔÏËÏÌÁ"
++msgstr "Необходимо задание tcp или udp протокола"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr "Неопходан је порт"
+-msgstr "îÅÏÂÈÏÄÉÍÏ ÚÎÁÞÅÎÉÅ ÐÏÒÔÁ"
++msgstr "Необходимо значение порта"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:975
+ msgid "Invalid Port"
+@@ -415,134 +421,134 @@ msgstr ""
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
- msgstr "Не могу да направим кључ за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s/%s"
++msgstr "Невозможно создать ключ для %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
- msgstr "Неопходна је врста"
+-msgstr "ôÒÅÂÕÅÔÓÑ ÚÁÄÁÎÉÅ ÔÉÐÁ"
++msgstr "Требуется задание типа"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "Не могу да проверим да ли је порт %s/%s одређен"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÏÒÔ %s/%s"
++msgstr "Невозможно проверить, определен ли порт %s/%s"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
  msgid "Port %s/%s already defined"
- msgstr "Порт %s/%s је већ одређен"
+-msgstr "ðÏÒÔ %s/%s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "Порт %s/%s уже определен"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr "Не могу да направим порт за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÐÏÒÔ ÄÌÑ %s/%s"
++msgstr "Невозможно создать порт для %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr "Не могу да направим контекст %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ %s/%s"
++msgstr "Невозможно создать контекст %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr "Не могу да поставим корисника у контексту порта за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
++msgstr "Невозможно задать пользователя в контексте порта для %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr "Не могу да поставим улогу у контексту порта за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
++msgstr "Невозможно задать роль в контексте порта для %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr "Не могу да поставим врсту у контексту порта за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
++msgstr "Невозможно задать тип в контексте порта для %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Не могу да поставим mls поља у контексту порта за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÐÏÒÔÁ ÄÌÑ %s/%s"
++msgstr "Невозможно задать поля mls в контексте порта для %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr "Не могу да поставим контекст порт за %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÐÏÒÔÁ ÄÌÑ %s/%s"
++msgstr "Невозможно задать контекст порта для %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr "Не могу да додам порт %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÏÒÔ %s/%s"
++msgstr "Невозможно добавить порт %s/%s"
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
  msgid "Requires setype or serange"
- msgstr "Захтева setype или serange"
+-msgstr "îÅÏÂÈÏÄÉÍ setype ÉÌÉ serange"
++msgstr "Необходим setype или serange"
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
+ #: ../semanage/seobject.py:1049
  msgid "Requires setype"
- msgstr "Захтева setype"
+-msgstr "îÅÏÂÈÏÄÉÍ setype"
++msgstr "Необходим setype"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
+ #: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
  #, python-format
  msgid "Port %s/%s is not defined"
- msgstr "Порт %s/%s није одређен"
+-msgstr "ðÏÒÔ %s/%s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "Порт %s/%s не определен"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr "Не могу да испитам порт %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÐÏÒÔ %s/%s"
++msgstr "Невозможно запросить порт %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr "Не могу да изменим порт %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÏÒÔ %s/%s"
++msgstr "Невозможно изменить порт %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
  msgid "Could not list the ports"
- msgstr "Не могу да излистам портове"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ÐÏÒÔÏ×"
++msgstr "Не удалось получить список портов"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
+ #: ../semanage/seobject.py:1101
  #, python-format
  msgid "Could not delete the port %s"
- msgstr "Не могу да обришем порт %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÒÔ %s"
++msgstr "Невозможно удалить порт %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Порт %s/%s је одређен у полиси, не може се брисати"
+-msgstr "ðÏÒÔ %s/%s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "Порт %s/%s определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr "Не могу да обришем порт %s/%s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÒÔ %s/%s"
++msgstr "Невозможно удалить порт %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr "Не могу да излистам портове"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÏÒÔÏ×"
++msgstr "Невозможно выполнить перечисление портов"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "Врста SELinux порта"
+-msgstr "ôÉРÐÏÒÔÁ SELinux"
++msgstr "Тип порта SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr "Proto"
+-msgstr ""
++msgstr "Протокол"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "Број портова"
+-msgstr "îÏÍÅÒ ðÏÒÔÁ"
++msgstr "Номер Порта"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
  msgid "Node Address is required"
--msgstr "Неопходан је порт"
-+msgstr "Неопходна је адреса чвора"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Неопходан је порт"
-+msgstr "Неопходна је мрежна маска чвора"
+-msgstr "ôÒÅÂÕÅÔÓÑ ÁÄÒÅÓ ÕÚÌÁ"
++msgstr "Требуется адрес узла"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "Ð\9dепознаÑ\82 Ð¸Ð»Ð¸ Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\98Ñ\83Ñ\9bи Ð¿Ñ\80оÑ\82окол"
+-msgstr "ðÒÏÔÏËÏÌ ÏÔÓÕÔÓÔ×ÕÅÔ ÉÌÉ ÎÅÉÚ×ÅÓÔÅÎ"
++msgstr "Ð\9fÑ\80оÑ\82окол Ð¾Ñ\82Ñ\81Ñ\83Ñ\82Ñ\81Ñ\82вÑ\83еÑ\82 Ð¸Ð»Ð¸ Ð½ÐµÐ¸Ð·Ð²ÐµÑ\81Ñ\82ен"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
  msgid "SELinux Type is required"
- msgstr "SELinux врста је неопходна"
+-msgstr "ôÒÅÂÕÅÔÓÑ SELinux Type"
++msgstr "Требуется SELinux Type"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+ #: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+@@ -550,186 +556,184 @@ msgstr "
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr "Не могу да направим кључ за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÌÀÞ ÄÌÑ %s"
++msgstr "Невозможно создать ключ для %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+ #, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "Не могу да проверим да ли је порт %s/%s одређен"
-+msgstr "Не могу да проверим да ли је адреса %s одређена"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Порт %s/%s је већ одређен"
-+msgstr "Адреса %s је већ одређена"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÁÄÒÅÓ %s"
++msgstr "Не удалось проверить, определен ли адрес %s"
  
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
+ #: ../semanage/seobject.py:1262
+ #, python-format
  msgid "Could not create addr for %s"
--msgstr "Не могу да направим кључ за %s"
-+msgstr "Не могу да направим адресу за %s"
+-msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÁÄÒÅÓ ÄÌÑ %s"
++msgstr "Не удалось создать адрес для %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr "Не могу да направим контекст за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ ÄÌÑ %s"
++msgstr "Невозможно создать контекст для %s"
  
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
+ #: ../semanage/seobject.py:1272
+ #, python-format
  msgid "Could not set mask for %s"
--msgstr "Не могу да поставим име за %s"
-+msgstr "Не могу да поставим маску за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÍÁÓËÕ %s"
++msgstr "Не удалось задать маску %s"
  
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
+ #: ../semanage/seobject.py:1276
+ #, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "Не могу да поставим корисника у контексту датотеке за %s"
-+msgstr "Не могу да поставим корисника у контексту адресе за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать пользователя в контексте адреса для %s"
  
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
+ #: ../semanage/seobject.py:1280
+ #, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "Не могу да поставим улогу у контексту датотеке за %s"
-+msgstr "Не могу да поставим улогу у контексту адресе за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать роль в контексте адреса для %s"
  
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
+ #: ../semanage/seobject.py:1284
+ #, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "Не могу да поставим врсту у контексту датотеке за %s"
-+msgstr "Не могу да поставим врсту у контексту адресе за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать тип в контексте адреса для %s"
  
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
+ #: ../semanage/seobject.py:1289
+ #, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "Не могу да поставим mls поља у контексту датотеке за %s"
-+msgstr "Не могу да поставим mls поља у контексту адресе за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÁÄÒÅÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать поля mls в контексте адреса для %s"
  
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
+ #: ../semanage/seobject.py:1293
+ #, python-format
  msgid "Could not set addr context for %s"
--msgstr "Не могу да поставим контекст датотеке за %s"
-+msgstr "Не могу да поставим контекст адресе за %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ addr ÄÌÑ %s"
++msgstr "Не удалось задать контекст addr для %s"
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
+ #: ../semanage/seobject.py:1297
+ #, python-format
  msgid "Could not add addr %s"
--msgstr "Не могу да додам порт %s/%s"
-+msgstr "Не могу да додам адресу %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÄÏÂÁ×ÉÔØ addr %s"
++msgstr "Не удалось добавить addr %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+ #, python-format
  msgid "Addr %s is not defined"
--msgstr "Порт %s/%s није одређен"
-+msgstr "Адреса %s није одређена"
+-msgstr "Addr %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "Addr %s не определен"
  
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
+ #: ../semanage/seobject.py:1326
+ #, python-format
  msgid "Could not query addr %s"
--msgstr "Не могу да испитам порт %s/%s"
-+msgstr "Не могу да испитам адресу %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÐÒÏÓÉÔØ addr %s"
++msgstr "Не удалось запросить addr %s"
  
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
+ #: ../semanage/seobject.py:1336
+ #, python-format
  msgid "Could not modify addr %s"
--msgstr "Не могу да изменим порт %s/%s"
-+msgstr "Не могу да изменим адресу %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÉÚÍÅÎÉÔØ addr %s"
++msgstr "Не удалось изменить addr %s"
  
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
+ #: ../semanage/seobject.py:1364
+ #, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Порт %s/%s је одређен у полиси, не може се брисати"
-+msgstr "Адреса %s је одређена у полиси, не може се брисати"
+-msgstr "Addr %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "Addr %s определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
+ #: ../semanage/seobject.py:1368
+ #, python-format
  msgid "Could not delete addr %s"
--msgstr "Не могу да обришем %s"
-+msgstr "Не могу да обришем адресу %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÕÄÁÌÉÔØ addr %s"
++msgstr "Не удалось удалить addr %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
+ msgid "Could not deleteall node mappings"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s"
++msgstr ""
+ #: ../semanage/seobject.py:1394
  msgid "Could not list addrs"
--msgstr "Не могу да излистам портове"
-+msgstr "Не могу да излистам адресе"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË addr"
++msgstr "Не удалось получить список addr"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "Не могу да проверим да ли је сучеље %s одређено"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Сучеље %s је већ одређено"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr "Невозможно проверить, определен ли интерфейс %s"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr "Не могу да направим сучеље за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÎÔÅÒÆÅÓ ÄÌÑ %s"
++msgstr "Не удалось создать интерфейс для %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr "Не могу да поставим корисника у контексту сучеља за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать пользователя в контексте интерфейса для %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr "Не могу да поставим улогу у контексту сучеља за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать роль в контексте интерфейса для %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr "Не могу да поставим врсту у контексту сучеља за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s."
++msgstr "Не удалось задать тип в контексте интерфейса для %s."
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr "Не могу да поставим mls поља у контексту сучеља за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ mls × ËÏÎÔÅËÓÔÅ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
++msgstr "Не удалось задать поля mls в контексте интерфейса для %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr "Не могу да поставим контекст сучеља за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÉÎÔÅÒÆÅÊÓÁ ÄÌÑ %s"
++msgstr "Невозможно задать контекст интерфейса для %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr "Не могу да поставим контекст поруке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÓÏÏÂÝÅÎÉÑ ÄÌÑ %s"
++msgstr "Невозможно задать контекст сообщения для %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr "Не могу да додам сучеље %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr "Невозможно добавить интерфейс %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
- msgstr "Сучеље %s није одређено"
+-msgstr "éÎÔÅÒÆÅÊÓ %s yt ÏÐÒÅÄÅÌÅÎ"
++msgstr "Интерфейс %s yt определен"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr "Не могу да испитам сучеље %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr "Невозможно запросить интерфейс %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr "Не могу да изменим сучеље %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr "Невозможно изменить интерфейс %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Спрега %s је одређена у полиси, не може се брисати"
+-msgstr "éÎÔÅÒÆÅÊÓ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "Интерфейс %s определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr "Не могу да обришем сучеље %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr "Невозможно удалить интерфейс %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÉÎÔÅÒÆÅÊÓ %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "Не могу да попишем сучеља"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÉÎÔÅÒÆÅÊÓÏ×"
++msgstr "Невозможно выполнить перечисление интерфейсов"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr "SELinux сучеље"
+-msgstr "éÎÔÅÒÆÅÊÓ SELinux"
++msgstr "Интерфейс SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
- msgstr "Контекст"
+-msgstr "ëÏÎÔÅËÓÔ"
++msgstr "Контекст"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr ""
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -737,28 +741,28 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux-ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr "Не могу да поставим корисника у контексту датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно задать пользователя в контексте файла для %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr "Не могу да поставим улогу у контексту датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÒÏÌØ × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно задать роль в контексте файла для %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "Не могу да поставим mls поља у контексту датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÐÏÌÑ msl × ËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно задать поля msl в контексте файла для %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr "Неисправна спецификација датотеке"
+-msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÆÁÊÌÁ"
++msgstr "Неверная спецификация файла"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -775,82 +779,82 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr "Не могу да проверим да ли је одређен контекст датотеке за %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Контекст датотеке за %s је већ одређен"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно проверить, определен ли контекст файла для %s"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr "Не могу да направим контекст датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно создать контекст файла для %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr "Не могу да поставим врсту у контексту датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÔÉРנËÏÎÔÅËÓÔÅ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно задать тип в контексте файла для %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr "Не могу да поставим контекст датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно задать контекст файла для %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr "Не могу да додам контекст датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно добавить контекст файла для %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr "Захтева setype, serange или seuser"
+-msgstr "îÅÏÂÈÏÄÉÍ setyp, serange ÉÌÉ seuser"
++msgstr "Необходим setyp, serange или seuser"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr "Контекст датотеке за %s није одређен"
+-msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "Контекст файла для %s не определен"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr "Не могу да испитам контекст датотеке за %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно запросить контекст файла для %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr "Не могу да изменим контекст датотеке %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно изменить контекст файла для %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
- msgstr "Не могу да излистам контексте датотека"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÓÐÉÓÏË ËÏÎÔÅËÓÔÏ× ÆÁÊÌÏ×"
++msgstr "Не удалось получить список контекстов файлов"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
- msgstr "Не могу да обришем контекст датотеке %s"
+-msgstr "îÅ ÕÄÁÌÅÔÓÑ ÕÄÁÌÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Не удаётся удалить контекст файла для %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "Контекст датотеке за %s је одређен у полиси, не може се брисати"
+-msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "Контекст файла для %s определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr "Не могу да обришем контекст датотеке %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s"
++msgstr "Невозможно удалить контекст файла для %s"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr "Не могу да попишем контексте датотека"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ËÏÎÔÅËÓÔÏ× ÆÁÊÌÏ×"
++msgstr "Невозможно выполнить перечисление контекстов файлов"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr "Не могу да попишем локалне контексте датотека"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔÏÂÒÁÚÉÔØ ËÏÎÔÅËÓÔ ÌÏËÁÌØÎÙÈ ÆÁÊÌÏ×"
++msgstr "Невозможно отобразить контекст локальных файлов"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
+-msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ SELinux"
++msgstr "Контекст файла SELinux"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "type"
- msgstr "врста"
+-msgstr "ÔÉÐ"
++msgstr "тип"
+ #: ../semanage/seobject.py:1949
+ msgid ""
+@@ -859,418 +863,416 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ SELinux"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
  #, python-format
  msgid "Could not check if boolean %s is defined"
- msgstr "Не могу да проверим да ли је одређен логички израз %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ, ÏÐÒÅÄÅÌÅΠÌÉ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
++msgstr "Невозможно проверить, определен ли переключатель %s"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
  #, python-format
  msgid "Boolean %s is not defined"
- msgstr "Логички израз %s није одређен"
+-msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++msgstr "Переключатель %s не определен"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1994
  #, python-format
  msgid "Could not query file context %s"
- msgstr "Не могу да испитам контекст датотеке %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ ËÏÎÔÅËÓÔ ÆÁÊÌÁ %s"
++msgstr "Невозможно запросить контекст файла %s"
  
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
+ #: ../semanage/seobject.py:1999
+ #, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "Морате унети вредност"
-+msgstr "Ð\9cоÑ\80аÑ\82е Ð½Ð°Ð²ÐµÑ\81Ñ\82и Ñ\98еднÑ\83 Ð¾Ð´ Ñ\81ледеÑ\9bиÑ\85 Ð²Ñ\80едноÑ\81Ñ\82и: %s"
+-msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÚÎÁÞÅÎÉÅ: %s"
++msgstr "Ð\9dеобÑ\85одимо Ñ\83казаÑ\82Ñ\8c Ð·Ð½Ð°Ñ\87ение: %s"
  
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
+ #: ../semanage/seobject.py:2004
+ #, python-format
  msgid "Could not set active value of boolean %s"
--msgstr "Не могу да обришем логички израз %s"
-+msgstr "Не могу да поставим активну вредност логичке %s"
+-msgstr "îÅ ÕÄÁÅÔÓÑ ÚÁÄÁÔØ ÁËÔÉ×ÎÏÅ ÚÎÁÞÅÎÉÅ ÐÅÒÅËÌÀÞÁÔÅÌÑ %s"
++msgstr "Не удалось задать активное значение переключателя %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
  msgid "Could not modify boolean %s"
- msgstr "Не могу да изменим логички израз %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
++msgstr "Невозможно изменить переключатель %s"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Ð\9bоÑ\88 Ñ\84оÑ\80маÑ\82 %s: Ð·Ð°Ð¿Ð¸Ñ\81 %s"
+-msgstr "îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ %s: úÁÐÉÓØ %s"
++msgstr "Ð\9dевеÑ\80нÑ\8bй Ñ\84оÑ\80маÑ\82 %s: Ð\97апиÑ\81Ñ\8c %s"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
+ #: ../semanage/seobject.py:2048
  #, python-format
  msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Логички израз %s је одређен у полиси, не може се брисати"
+-msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ %s ÎÅ ÏÐÒÅÄÅÌÅΠנÐÏÌÉÔÉËÅ É ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÁÌÅÎ"
++msgstr "Переключатель %s не определен в политике и не может быть удален"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2052
  #, python-format
  msgid "Could not delete boolean %s"
- msgstr "Не могу да обришем логички израз %s"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌØ %s"
++msgstr "Невозможно удалить переключатель %s"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
  msgid "Could not list booleans"
- msgstr "Не могу да попишем логичке изразе"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ ÐÅÒÅÞÉÓÌÅÎÉÅ ÐÅÒÅËÌÀÞÁÔÅÌÅÊ"
++msgstr "Невозможно выполнить перечисление переключателей"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
- msgstr "непознато"
+-msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ"
++msgstr "неизвестный"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
- msgstr "искључено"
+-msgstr "×ÙËÌ."
++msgstr "выкл."
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "on"
- msgstr "укључено"
+-msgstr "×ËÌ."
++msgstr "вкл."
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
- msgstr "SELinux логичка"
+-msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ SELinux"
++msgstr "Переключатель SELinux"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "óÔÁÔÕÓ"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "Опис"
+-msgstr "ïÐÉÓÁÎÉÅ"
++msgstr "Описание"
  
-@@ -957,7 +977,7 @@
- msgstr "Не могу да очистим окружење\n"
+ #: ../newrole/newrole.c:201
+ #, c-format
+ msgid "failed to set PAM_TTY\n"
+-msgstr "ÓÂÏÊ ÕÓÔÁÎÏ×ËÉ PAM_TTY\n"
++msgstr "сбой установки PAM_TTY\n"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Грешка при иницијализацији могућности, одустајем.\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "newrole: переполнение хеш-таблицы настроек имен служб\n"
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr "newrole:  %s:  ÏÛÉÂËÁ × ÓÔÒÏËÅ %lu.\n"
++msgstr "newrole:  %s:  ошибка в строке %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "ÎÅ ÕÄÁÅÔÓÑ ÎÁÊÔÉ ËÏÒÒÅËÔÎÕÀ ÚÁÐÉÓØ × ÆÁÊÌÅ passwd.\n"
++msgstr "не удается найти корректную запись в файле passwd.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+ msgid "Out of memory!\n"
+-msgstr "îÅÄÏÓÔÁÔÏÞÎÏ ÐÁÍÑÔÉ!\n"
++msgstr "Недостаточно памяти!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "ïÛÉÂËÁ!  ïÂÏÌÏÞËÁ ÎÅ ×ÅÒÎÁ.\n"
++msgstr "Ошибка!  Оболочка не верна.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+ msgid "Unable to clear environment\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÞÉÓÔÉÔØ ÏËÒÕÖÅÎÉÅ\n"
++msgstr "Невозможно очистить окружение\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+ msgid "Error changing uid, aborting.\n"
+-msgstr "ïÛÉÂËÁ ÓÍÅÎÙ uid, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++msgstr "Ошибка смены uid, аварийное завершение.\n"
+ #: ../newrole/newrole.c:612
+ #, c-format
+ msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ KEEPCAPS, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++msgstr "Ошибка сброса KEEPCAPS, аварийное завершение.\n"
+ #: ../newrole/newrole.c:635
+ #, c-format
+ msgid "Error connecting to audit system.\n"
+-msgstr "ïÛÉÂËÁ ÓÏÅÄÉÎÅÎÉÑ Ó ÓÉÓÔÅÍÏÊ ÁÕÄÉÔÁ.\n"
++msgstr "Ошибка соединения с системой аудита.\n"
+ #: ../newrole/newrole.c:641
+ #, c-format
+ msgid "Error allocating memory.\n"
+-msgstr "ïÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ ÐÁÍÑÔÉ.\n"
++msgstr "Ошибка выделения памяти.\n"
+ #: ../newrole/newrole.c:648
+ #, c-format
+ msgid "Error sending audit message.\n"
+-msgstr "ïÛÉÂËÁ ÏÔÐÒÁ×ËÉ ÓÏÏÂÝÅÎÉÑ ÁÕÄÉÔÁ.\n"
++msgstr "Ошибка отправки сообщения аудита.\n"
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÒÅÖÉÍ ÂÌÏËÉÒÏ×ÏË (enforcing).\n"
++msgstr "Не удалось определить строгий режим.\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "ïÛÉÂËÁ!  îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s.\n"
++msgstr "Ошибка!  Невозможно открыть %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÔÅËÕÝÉÊ ËÏÎÔÅËÓÔ ÄÌÑ %s, ÍÅÔËÁ tty ÎÅ ÉÚÍÅÎÑÅÔÓÑ.\n"
++"%s!  Невозможно получить текущий контекст для %s, метка tty не изменяется.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÎÏ×ÙÊ ËÏÎÔÅËÓÔ ÄÌÑ %s, ÍÅÔËÁ tty ÎÅ ÉÚÍÅÎÑÅÔÓÑ.\n"
++"%s!  Невозможно получить новый контекст для %s, метка tty не изменяется.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!  îÅ×ÏÚÍÏÖÎÏ ÚÁÄÁÔØ ÎÏ×ÙÊ ËÏÎÔÅËÓÔ ÄÌÑ %s\n"
++msgstr "%s!  Невозможно задать новый контекст для %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+ msgid "%s changed labels.\n"
+-msgstr "%s ÉÚÍÅÎÉÌÏ ÍÅÔËÉ.\n"
++msgstr "%s изменило метки.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "÷ÎÉÍÁÎÉÅ! îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ËÏÎÔÅËÓÔ ÄÌÑ %s\n"
++msgstr "Внимание! Невозможно восстановить контекст для %s\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+ msgid "Error: multiple roles specified\n"
+-msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÒÏÌÅÊ\n"
++msgstr "Ошибка: указано несколько ролей\n"
+ #: ../newrole/newrole.c:843
+ #, c-format
+ msgid "Error: multiple types specified\n"
+-msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÔÉÐÏ×\n"
++msgstr "Ошибка: указано несколько типов\n"
+ #: ../newrole/newrole.c:850
+ #, c-format
+ msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr "éÚ×ÉÎÉÔÅ, -l ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ Ó ÐÏÄÄÅÒÖËÏÊ SELinux MLS.\n"
++msgstr "Извините, -l может быть использована с поддержкой SELinux MLS.\n"
+ #: ../newrole/newrole.c:855
+ #, c-format
+ msgid "Error: multiple levels specified\n"
+-msgstr "ïÛÉÂËÁ: ÕËÁÚÁÎÏ ÎÅÓËÏÌØËÏ ÕÒÏ×ÎÅÊ\n"
++msgstr "Ошибка: указано несколько уровней\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr "ïÛÉÂËÁ: ÷Ù ÎÅ ÍÏÖÅÔÅ ÉÚÍÅÎÑÔØ ÕÒÏ×ÅÎØ × ÎÅÂÅÚÏÐÁÓÎÏÍ ÔÅÒÍÉÎÁÌÅ\n"
++msgstr "Ошибка: Вы не можете изменять уровень в небезопасном терминале\n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÔÉРÐÏ ÕÍÏÌÞÁÎÉÀ.\n"
++msgstr "Невозможно получить тип по умолчанию.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ ÎÏ×ÏÇÏ ËÏÎÔÅËÓÔÁ.\n"
++msgstr "сбой получения нового контекста.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+ msgid "failed to set new role %s\n"
+-msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÊ ÒÏÌÉ %s\n"
++msgstr "сбой задания новой роли %s\n"
+ #: ../newrole/newrole.c:915
+ #, c-format
+ msgid "failed to set new type %s\n"
+-msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÇÏ ÔÉÐÁ %s\n"
++msgstr "сбой задания нового типа %s\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "ÓÂÏÊ ÐÏÓÔÒÏÅÎÉÑ ÎÏ×ÏÇÏ ÄÉÁÐÁÚÏÎÁ Ó ÕÒÏ×ÎÅÍ %s\n"
++msgstr "сбой построения нового диапазона с уровнем %s\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+ msgid "failed to set new range %s\n"
+-msgstr "ÓÂÏÊ ÚÁÄÁÎÉÑ ÎÏ×ÏÇÏ ÄÉÁÐÁÚÏÎÁ %s\n"
++msgstr "сбой задания нового диапазона %s\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "ÓÂÏÊ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ ÎÏ×ÏÇÏ ËÏÎÔÅËÓÔÁ × ÓÔÒÏËÕ\n"
++msgstr "сбой преобразования нового контекста в строку\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+ msgid "%s is not a valid context\n"
+-msgstr "%s ÎÅ Ñ×ÌÑÅÔÓÑ ×ÅÒÎÙÍ ËÏÎÔÅËÓÔÏÍ\n"
++msgstr "%s не является верным контекстом\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÄÅÌÉÔØ ÐÁÍÑÔØ ÄÌÑ new_context"
++msgstr "Невозможно выделить память для new_context"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÎÁÂÏÒ ÐÕÓÔÙÈ ÓÉÇÎÁÌÏ×\n"
++msgstr "Невозможно получить набор пустых сигналов\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÏÂÒÁÂÏÔÞÉË SIGHUP\n"
++msgstr "Невозможно получить обработчик SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+ msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr "éÚ×ÉÎÉÔÅ. newrole ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÄÌÑ ÑÄÒÁ Ó SELinux.\n"
++msgstr "Извините. newrole может быть использована только для ядра с SELinux.\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "ÓÂÏÊ ÐÏÌÕÞÅÎÉÑ ÓÔÁÒÏÇÏ_ËÏÎÔÅËÓÔÁ.\n"
++msgstr "сбой получения старого_контекста.\n"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "÷ÎÉÍÁÎÉÅ!  îÅ ÕÄÁÅÔÓÑ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï tty.\n"
++msgstr "Внимание!  Не удалось получить информацию о tty.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ ÓÌÕÖÂÙ PAM.\n"
++msgstr "ошибка чтения конфигурации службы PAM.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+ msgid "newrole: incorrect password for %s\n"
+-msgstr "newrole: ÎÅ×ÅÒÎÙÊ ÐÁÒÏÌØ %s\n"
++msgstr "newrole: неверный пароль %s\n"
+ #: ../newrole/newrole.c:1160
+ #, c-format
+ msgid "newrole: failure forking: %s"
+-msgstr "newrole: ÓÂÏÊ ×ÙÐÏÌÎÅÎÉÑ fork: %s"
++msgstr "newrole: сбой выполнения fork: %s"
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ÍÅÔËÕ tty...\n"
++msgstr "Невозможно восстановить метку tty...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "ïÛÉÂËÁ ËÏÒÒÅËÔÎÏÇÏ ÚÁËÒÙÔÉÑ tty\n"
++msgstr "Ошибка корректного закрытия tty\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁËÒÙÔØ ÄÅÓËÒÉÐÔÏÒÙ.\n"
++msgstr "Невозможно закрыть дескрипторы.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+ msgid "Error allocating shell's argv0.\n"
+-msgstr "ïÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ argv0 ÏÂÏÌÏÞËÉ.\n"
++msgstr "Ошибка выделения argv0 оболочки.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÏÓÓÔÁÎÏ×ÉÔØ ÏËÒÕÖÅÎÉÅ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ\n"
++msgstr "Невозможно восстановить окружение, аварийное завершение\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr "ÓÂÏÊ ÚÁÐÕÓËÁ ÏÂÏÌÏÞËÉ\n"
++msgstr "сбой запуска оболочки\n"
+ #: ../load_policy/load_policy.c:22
+ #, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "ÉÓÐÏÌØÚÏ×ÁÎÉÅ:  %s [-qi]\n"
++msgstr "использование:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr "%s:  ðÏÌÉÔÉËÁ ÕÖÅ ÚÁÇÒÕÖÅÎÁ, ÉÓÈÏÄÎÁÑ ÚÁÇÒÕÚËÁ ÚÁÐÒÏÛÅÎÁ\n"
++msgstr "%s:  Политика уже загружена, исходная загрузка запрошена\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-"%s:  îÅ ÕÄÁÅÔÓÑ ÚÁÇÒÕÚÉÔØ ÚÁÐÒÏÛÅÎÎÕÀ ÐÏÌÉÔÉËÕ É ÒÅÖÉÍ ÐÒÉÎÕÖÄÅÎÉÑ:  %s\n"
++msgstr "%s:  не удалось загрузить запрошенную политику и строгий режим:  %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s:  îÅ×ÏÚÍÏÖÎÏ ÚÁÇÒÕÚÉÔØ ÐÏÌÉÔÉËÕ:  %s\n"
++msgstr "%s:  Невозможно загрузить политику:  %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+-msgstr "ôÒÅÂÕÅÔÓÑ ËÁË ÍÉÎÉÍÕÍ ÏÄÎÁ ËÁÔÅÇÏÒÉÑ"
++msgstr "Требуется как минимум одна категория"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr "îÅÌØÚÑ ÉÚÍÅÎÉÔØ ÕÒÏ×ÅÎØ ÞÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ ÉÓÐÏÌØÚÕÑ  '+' ÎÁ %s"
++msgstr "Нельзя изменить уровень чувствительности используя  '+' на %s"
+ #: ../scripts/chcat:110
+ #, c-format
+ msgid "%s is already in %s"
+-msgstr "%s ÕÖÅ × %s"
++msgstr "%s уже в %s"
+ #: ../scripts/chcat:188 ../scripts/chcat:198
+ #, c-format
+ msgid "%s is not in %s"
+-msgstr "%s ÎÅ × %s"
++msgstr "%s не в %s"
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+-msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÂßÅÄÉÎÉÔØ +/- Ó ÄÒÕÇÉÍÉ ÔÉÐÁÍÉ ËÁÔÅÇÏÒÉÊ"
++msgstr "Невозможно объединить +/- с другими типами категорий"
+ #: ../scripts/chcat:319
+ msgid "Can not have multiple sensitivities"
+-msgstr "îÅÌØÚÑ ÉÍÅÔØ ÎÅÓËÏÌØËÏ ÕÒÏ×ÎÅÊ ÞÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ"
++msgstr "Нельзя иметь несколько уровней чувствительности"
+ #: ../scripts/chcat:325
+ #, c-format
+ msgid "Usage %s CATEGORY File ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s ëáôåçïòéñ æÁÊÌ ..."
++msgstr "Использование %s КАТЕГОРИЯ Файл ..."
+ #: ../scripts/chcat:326
+ #, c-format
+ msgid "Usage %s -l CATEGORY user ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l ëáôåçïòéñ ÐÏÌØÚÏ×ÁÔÅÌØ ..."
++msgstr "Использование %s -l КАТЕГОРИЯ пользователь ..."
+ #: ../scripts/chcat:327
+ #, c-format
+ msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s [[+|-]ëáôåçïòéñ],...]q æÁÊÌ ..."
++msgstr "Использование %s [[+|-]КАТЕГОРИЯ],...]q Файл ..."
+ #: ../scripts/chcat:328
+ #, c-format
+ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l [[+|-]ëáôåçïòéñ],...]q ÐÏÌØÚÏ×ÁÔÅÌØ ..."
++msgstr "Использование %s -l [[+|-]КАТЕГОРИЯ],...]q пользователь ..."
+ #: ../scripts/chcat:329
+ #, c-format
+ msgid "Usage %s -d File ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -d æÁÊÌ ..."
++msgstr "Использование %s -d Файл ..."
+ #: ../scripts/chcat:330
+ #, c-format
+ msgid "Usage %s -l -d user ..."
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -l -d ÐÏÌØÚÏ×ÁÔÅÌØ ..."
++msgstr "Использование %s -l -d пользователь ..."
+ #: ../scripts/chcat:331
+ #, c-format
+ msgid "Usage %s -L"
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -L"
++msgstr "Использование %s -L"
+ #: ../scripts/chcat:332
+ #, c-format
+ msgid "Usage %s -L -l user"
+-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ %s -L -l ÐÏÌØÚÏ×ÁÔÅÌØ"
++msgstr "Использование %s -L -l пользователь"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "éÓÐÏÌØÚÕÊÔÅ -- ÞÔÏÂÙ ÕËÁÚÁÔØ ÚÁ×ÅÒÛÅÎÉÅ ÓÐÉÓËÁ ÐÁÒÁÍÅÔÒÏ×. îÁ ÐÒÉÍÅÒ"
++msgstr "Используйте -- чтобы указать завершение списка параметров. На пример"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1280,1146 +1282,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
-@@ -1291,1715 +1311,2242 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Грешка опција %s "
+-msgstr "ïÛÉÂËÁ ÐÁÒÁÍÅÔÒÏ× %s "
++msgstr "Ошибка параметров %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "преводи нису подржани на машинама које нису MLS"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "îÅ ÕÄÁÅÔÓÑ ÏÔËÒÙÔØ %s: ÐÅÒÅ×ÏÄÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÎÁ ÍÁÛÉÎÁÈ ÂÅÚ MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "õÒÏ×ÅÎØ"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "ðÅÒÅ×ÏÄ"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "ðÅÒÅ×ÏÄÙ ÎÅ ÍÏÇÕÔ ×ËÌÀÞÁÔØ ÐÒÏÂÅÌÙ '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "îÅÄÏÐÕÓÔÉÍÙÊ ÕÒÏ×ÅÎØ '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ÕÖÅ ÏÐÒÅÄÅÌÅΠנÐÅÒÅ×ÏÄÅ"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s ÎÅ ÏÐÒÅÄÅÌÅÎÏ × ÐÅÒÅ×ÏÄÅ"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ×ÈÏÄÁ ÄÌÑ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎÏ"
 -
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "ÄÏÂÁ×ÉÔØ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux ÐÏÌØÚÏ×ÁÔÅÌØ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "îÅÏÂÈÏÄÉÍÏ ÚÎÁÞÅÎÉÅ ÐÏÒÔÁ"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "áÄÒÅÓ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "éÎÔÅÒÆÅÊÓ %s ÕÖÅ ÏÐÒÅÄÅÌÅÎ"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "ïÛÉÂËÁ ÉÎÉÃÉÁÌÉÚÁÃÉÉ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "ïÛÉÂËÁ ÎÁÓÔÒÏÊËÉ ×ÏÚÍÏÖÎÏÓÔÅÊ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "ïÛÉÂËÁ ÕÓÔÁÎÏ×ËÉ KEEPCAPS, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ ×ÏÚÍÏÖÎÏÓÔÅÊ, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "ïÛÉÂËÁ ÓÂÒÏÓÁ ×ÏÚÍÏÖÎÏÓÔÉ SETUID, Á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ.\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "ïÛÉÂËÁ ÏÓ×ÏÂÏÖÄÅÎÉÑ ×ÏÚÍÏÖÎÏÓÔÅÊ\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "ÐÅÒÅ×ÏÄÙ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÍÁÛÉΠÂÅÚ MLS"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
 -#~ msgid "Boolean"
--#~ msgstr "Логичка вредност"
--
+-#~ msgstr "ðÅÒÅËÌÀÞÁÔÅÌØ"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
 -#~ msgid "all"
--#~ msgstr "све"
--
+-#~ msgstr "×ÓÅ"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 -#~ msgid "Customized"
--#~ msgstr "Прилагођен"
--
--#~ msgid "File Labeling"
--#~ msgstr "Означавање датотека"
--
+-#~ msgstr "ðÒÏÉÚ×ÏÌØÎÙÊ"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "File\n"
 -#~ "Specification"
 -#~ msgstr ""
--#~ "Спецификације\n"
--#~ "датотеке"
--
+-#~ "ïÐÒÅÄÅÌÅÎÉÅ\n"
+-#~ "ÆÁÊÌÏ×"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
 -#~ msgid ""
 -#~ "Selinux\n"
 -#~ "File Type"
 -#~ msgstr ""
--#~ "Selinux\n"
--#~ "Врста датотеке"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Врста\n"
--#~ "датотеке"
--
--#~ msgid "User Mapping"
--#~ msgstr "Мапирање корисника"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "Пријавно\n"
--#~ "име"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
 -#~ "SELinux\n"
--#~ "корисник"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS опсег"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "Пријава „%s“ је неопходна"
--
--#~ msgid "Policy Module"
--#~ msgstr "Модул полисе"
--
--#~ msgid "Module Name"
--#~ msgstr "Име модула"
--
--#~ msgid "Version"
--#~ msgstr "Верзија"
--
--#~ msgid "Disable Audit"
--#~ msgstr "Искључи Audit"
--
--#~ msgid "Enable Audit"
--#~ msgstr "Укључи Audit"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "Учитај модул полисе"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Ред Хет 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "Miloš Komarčević <kmilos@gmail.com>, 2007."
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "Алат за прављење SELinux полиса"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "Ова алатка се може употребити за прављење радног оквира полиса, ради "
--#~ "ограничавања програма и корисника користећи SELinux.   \n"
--#~ "\n"
--#~ "Алатка производи:\n"
--#~ "датотеку за приморавање врсте (te)\n"
--#~ "датотеку сучеља (if)\n"
--#~ "датотеку са контекстима датотека (fc)\n"
--#~ "скрипту командног окружења (sh) - користи се за компилирање и инсталацију "
--#~ "полисе. "
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "Изаберите врсту програма/корисничке улоге коју треба ограничити"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Програми</b>"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "Стандардна инит системска услуга су услуге који се покрећу са подизањем "
--#~ "система преко инит скрипти.  Обично захтева скрипту у /etc/rc.d/init.d"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "Стандардна инит системска услуга"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "Системска услуга за интернет сервисе су услуге које покреће xinetd"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "Системска услуга за интернет сервисе (inetd)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "Веб програми/скрипте (CGI) CGI скрипте које покреће веб сервер (apache)"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "Веб програми/скрипте (CGI)"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "Кориснички програм је било који програм који бисте желели да ограничите "
--#~ "да је стартован од стране корисника"
--
--#~ msgid "User Application"
--#~ msgstr "Кориснички програм"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Корисници пријављивања</b>"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "Измени постојећи запис корисника за пријављивање."
--
--#~ msgid "Existing User Roles"
--#~ msgstr "Постојеће корисничке улоге"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "Овај корисник ће се пријавити на машину само преко терминала или удаљеном "
--#~ "пријавом. Подразумевано овај корисник неће имати setuid, мрежу, sudo, "
--#~ "нити su."
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "Минимална улога корисника терминала"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "Овај корисник може да се пријави на машину преко Икс система прозора или "
--#~ "терминала. Подразумевано овај корисник неће имати setuid, мрежу, sudo, "
--#~ "нити su"
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "Минимална улога корисника Икс система прозора"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "Корисник са потпуном мрежом, без setuid програма без пролаза, без sudo, "
--#~ "без su."
--
--#~ msgid "User Role"
--#~ msgstr "Корисничка улога"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "Корисник са потпуном мрежом, без setuid програма без пролаза, без su, "
--#~ "може да користи sudo на корисничким улогама Root администратора"
--
--#~ msgid "Admin User Role"
--#~ msgstr "Улога администраторског корисника"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Root корисници</b>"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "Изаберите корисничку улогу Root администратора, ако ће овај корисник "
--#~ "вршити администрацију машине док ради као root. Овај корисник неће моћи "
--#~ "да се директно пријави у систем."
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "Корисничка улога Root администратора"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "Унесите назив програма или корисничку улогу коју треба ограничити."
--
--#~ msgid "Name"
--#~ msgstr "Име"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "Унесите пуну путању извршне датотеке коју треба ограничити."
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr ""
--#~ "Унесите јединствени назив за ограничени програм или корисничку улогу."
--
--#~ msgid "Executable"
--#~ msgstr "Извршна датотека"
--
--#~ msgid "Init script"
--#~ msgstr "Инит скрипта"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "Унесите потпуну путању до скрипте за иницијализацију, која стартује "
--#~ "ограничени програм."
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "Изаберите корисничке улоге које желите да прилагодите"
--
+-#~ "ôÉРæÁÊÌÁ"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
 -#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
+-#~ "File\n"
+-#~ "Type"
 -#~ msgstr ""
--#~ "Изаберите корисничке улоге које ће се пребацити на ове програмске домене."
--
--#~ msgid "Select additional domains to which this user role will transition"
+-#~ "æÁÉÌ\n"
+-#~ "ôÉÐ"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
+-#~ msgid "User Mapping"
+-#~ msgstr "óÏÐÏÓÔÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÅÊ"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
 -#~ msgstr ""
--#~ "Изаберите додатне домене кроз које ће ова корисничка улога пролазити"
+-#~ "ìÏÇÉÎ\n"
+-#~ "éÍÑ"
 -
 -#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
+-#~ "SELinux\n"
+-#~ "User"
 -#~ msgstr ""
--#~ "Изаберите програмске домене на које бисте желели да се ова корисничка "
--#~ "улога пребаци."
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "Изаберите корисничке улоге које ће се пребацити на овај домен"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "Изаберите додатне домене које ће овај корисник администрирати"
+-#~ "SELinux\n"
+-#~ "ðÏÌØÚÏ×ÁÔÅÌØ"
 -
--#~ msgid "Select the domains that you would like this user administer."
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
 -#~ msgstr ""
--#~ "Изаберите програмске домене које бисте желели овај корисник администрира"
+-#~ "äÉÁÐÁÚÏÎ\n"
+-#~ "MLS/MCS"
 -
--#~ msgid "Select additional roles for this user"
--#~ msgstr "Изаберите додатне улоге за овог корисника"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "ôÒÅÂÕÅÔÓÑ Á×ÔÏÒÉÚÁÃÉÑ '%s'"
 -
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "Унесите мрежне портове које ова улога програма/корисника ослушкује"
+-#~ msgid "Policy Module"
+-#~ msgstr "íÏÄÕÌØ ÐÏÌÉÔÉËÉ"
 -
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP портови</b>"
+-#~ msgid "Disable Audit"
+-#~ msgstr "÷ÙËÌÀÞÉÔØ ÁÕÄÉÔ"
 -
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr ""
--#~ "Дозвољава ограниченој улози програма/корисника да се веже на било који "
--#~ "udp порт"
+-#~ msgid "Enable Audit"
+-#~ msgstr "÷ËÌÀÞÉÔØ ÁÕÄÉÔ"
 -
--#~ msgid "All"
--#~ msgstr "Све"
+-#~ msgid "Load Policy Module"
+-#~ msgstr "úÁÇÒÕÚÉÔØ ÍÏÄÕÌØ ÐÏÌÉÔÉËÉ"
 -
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "Дозволи улози програма/корисника да позове bindresvport са 0. Везивање на "
--#~ "портове 600-1024"
+-#~ msgid "..."
+-#~ msgstr "..."
 -
 -#~ msgid "600-1024"
 -#~ msgstr "600-1024"
 -
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Унесите списак udp портова или опсег портова раздвојене зарезима на које "
--#~ "се веже улога програма/корисника. Пример: 612, 650-660"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "Нерезервисани портови (>1024)"
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>ðÒÉÌÏÖÅÎÉÑ</b>"
 -
--#~ msgid "Select Ports"
--#~ msgstr "Изабери портове"
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>ðÏÌØÚÏ×ÁÔÅÌÉ root</b>"
 -
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "Дозвољава улози програма/корисника да се веже на било који udp порт > 1024"
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP ðÏÒÔÙ</b>"
 -
 -#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP портови</b>"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr ""
--#~ "Унесите мрежне портове на које се ова улога програма/корисника повезује"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Унесите списак tcp портова или опсег портова раздвојене зарезима на које "
--#~ "се повезује улога програма/корисника. Пример: 612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Унесите списак udp портова или опсег портова раздвојене зарезима на које "
--#~ "се повезује улога програма/корисника. Пример: 612, 650-660"
--
--#~ msgid "Select common application traits"
--#~ msgstr "Изаберите уобичајене карактеристике програма"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "Пише syslog поруке\t"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "Направи/руководи привременим подацима у /tmp"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "Користи Pam за аутентификацију"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "Користи nsswitch или getpw* позиве"
--
--#~ msgid "Uses dbus"
--#~ msgstr "Користи dbus"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "Шаље поруке контроле"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "У вези са терминалом"
--
--#~ msgid "Sends email"
--#~ msgstr "Шаље е-поруку"
+-#~ msgstr "<b>UDP ðÏÒÔÙ</b>"
 -
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "Изаберите датотеке/директоријуме које програм руководи"
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "äÏÂÁ×ÉÔØ ÄÉÁÌÏÇ ÄÌÑ ÐÅÒÅËÌÀÞÁÔÅÌÅÊ"
 -
 -#~ msgid ""
 -#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
 -#~ "Files, Log Files, /var/lib Files ..."
 -#~ msgstr ""
--#~ "Додајте датотеке/директоријуме који су потребни програму да у њих \"Пише"
--#~ "\". Pid датотеке, датотеке дневника, /var/lib датотеке ..."
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "Изаберите логичке променљиве које овај програм користи"
--
+-#~ "äÏÂÁ×ÉÔØ ÆÁÊÌÙ É ËÁÔÁÌÏÇÉ, × ËÏÔÏÒÙÅ ÐÒÉÌÏÖÅÎÉÅ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØ "
+-#~ "ÚÁÐÉÓØ. æÁÊÌÙ PID, ÖÕÒÎÁÌÙ, /var/lib"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
 -#~ msgid "Add/Remove booleans used for this confined application/user"
 -#~ msgstr ""
--#~ "Додај/уклони логичке променљиве коришћене за овај ограничени програм/"
--#~ "корисник"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "Изаберите директоријум у коме ће се генерисати полисе"
--
--#~ msgid "Policy Directory"
--#~ msgstr "Директоријум полисе"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "Датотеке направљене полисе"
+-#~ "äÏÂÁ×ÉÔØ/ ÕÄÁÌÉÔØ ÐÅÒÅËÌÀÞÁÔÅÌÉ, ÉÓÐÏÌØÚÕÅÍÙÅ ÄÌÑ ÜÔÏÇÏ ÐÒÉÌÏÖÅÎÉÑ/ "
+-#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
+-#~ msgid "Admin User Role"
+-#~ msgstr "òÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ"
 -
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "Ова алатка ће генерисати следеће: \n"
--#~ "врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
--#~ "командног окружења(sh)\n"
--#~ "Извршите скрипту командног окружења као root корисник да бисте \n"
--#~ "компајлирали/инсталирали и поново поставили ознаке на \n"
--#~ "датотекама/директоријумима. \n"
--#~ "Користите semanage или useradd да мапирате Linux кориснике за "
--#~ "пријављивање \n"
--#~ "на корисничке улоге.\n"
--#~ "Поставите машину у допуштајући режим (setenforce 0). \n"
--#~ "Пријавите се као корисник и тестирајте ову корисничку улогу.\n"
--#~ "Користите audit2allow -R да бисте генерисали додатна правила за te "
--#~ "датотеку.\n"
+-#~ msgid "All"
+-#~ msgstr "÷ÓÅ"
 -
 -#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
 -#~ msgstr ""
--#~ "Ова алатка ће генерисати следеће: \n"
--#~ "врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
--#~ "командног окружења(sh)\n"
--#~ "\n"
--#~ "Извршите скрипту командног окружења да бисте компајлирали/инсталирали и \n"
--#~ "поново поставили ознаке на датотекама/директоријумима. \n"
--#~ "Поставите машину у допуштајући режим (setenforce 0). \n"
--#~ "Извршите/поново покрените програм да бисте генерисали avc поруке.\n"
--#~ "Користите audit2allow -R да бисте генерисали додатна правила за te "
--#~ "датотеку.\n"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "Додај дијалог логичких променљивих"
+-#~ "òÁÚÒÅÛÉÔØ ÐÒÉÌÏÖÅÎÉÀ/ ÐÏÌØÚÏ×ÁÔÅÌÀ ÏÓÕÝÅÓÔ×ÌÑÔØ ×ÙÚÏ× bindresvport Ó 0. "
+-#~ "éÓÐÏÌØÚÕÅÔÓÑ ÐÏÒÔ 600-1024"
 -
 -#~ msgid "Boolean Name"
--#~ msgstr "Назив логичке вредности"
--
--#~ msgid "Role"
--#~ msgstr "Улога"
--
--#~ msgid "Existing_User"
--#~ msgstr "Постојећи_корисник"
--
--#~ msgid "Application"
--#~ msgstr "Програм"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s мора бити директоријум"
--
--#~ msgid "You must select a user"
--#~ msgstr "Морате изабрати корисника"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "Изаберите извршну датотеку коју бисте желели да ограничите."
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "Изаберите инит скрипту коју бисте желели да ограничите."
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "Изаберите датотеку(е) коју ограничени програм прави или у њу пише"
+-#~ msgstr "éÍÑ ÐÅÒÅËÌÀÞÁÔÅÌÑ"
 -
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "óÏÚÄÁ×ÁÔØ É ÏÂÒÁÂÁÔÙ×ÁÔØ ×ÒÅÍÅÎÎÙÅ ÆÁÊÌÙ × ËÁÔÁÌÏÇÅ /tmp"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
 -#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Изаберите директоријум(е) који ограничени програм поседује или у њега пише"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "Изаберите директоријум у коме ћете правити датотеке полисе"
--
+-#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË TCP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, Ë "
+-#~ "ËÏÔÏÒÙÍ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØÓÑ ÐÏÄËÌÀÞÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
 -#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Врста %s_t је већ одређена у тренутној полиси.\n"
--#~ "Да ли желите да наставите?"
--
--#~ msgid "Verify Name"
--#~ msgstr "Потврди име"
--
+-#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË UDP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, ÄÌÑ "
+-#~ "ËÏÔÏÒÙÈ ÂÕÄÅÔ ×ÙÐÏÌÎÅÎÏ ÓÏÐÏÓÔÁ×ÌÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
 -#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
 -#~ msgstr ""
--#~ "Модул %s.pp је већ учитан у тренутну полису.\n"
--#~ "Да ли желите да наставите?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "Морате унети име"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "Морате унети извршни програм"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "Подесите SELinux"
--
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "Портови морају бити бројеви или опсези бројева од 1 до %d "
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "Морате унети име вашег ограниченог процеса/корисника"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "Типови корисника нису дозвољене извршне датотеке"
+-#~ "÷×ÅÄÉÔÅ ÓÐÉÓÏË UDP-ÐÏÒÔÏ× ÉÌÉ ÄÉÁÐÁÚÏÎÏ× ÐÏÒÔÏ×, ÒÁÚÄÅÌÅÎÎÙÈ ÚÁÐÑÔÏÊ, Ë "
+-#~ "ËÏÔÏÒÙÍ ÂÕÄÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØÓÑ ÐÏÄËÌÀÞÅÎÉÅ. ðÒÉÍÅÒ: 612, 650-660"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "õËÁÖÉÔÅ ÓÅÔÅ×ÙÅ ÐÏÒÔÙ, Ë ËÏÔÏÒÙÍ ÐÏÄËÌÀÞÁÅÔÓÑ ÒÏÌØ ÐÒÉÌÏÖÅÎÉÑ/ "
+-#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr ""
+-#~ "õËÁÖÉÔÅ ÓÅÔÅ×ÙÅ ÐÏÒÔÙ, ËÏÔÏÒÙÅ ÒÏÌØ ÐÒÉÌÏÖÅÎÉÑ/ ÐÏÌØÚÏ×ÁÔÅÌÑ ÂÕÄÅÔ "
+-#~ "ÐÒÏÓÌÕÛÉ×ÁÔØ"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
+-#~ msgid "Executable"
+-#~ msgstr "éÓÐÏÌÎÑÅÍÙÊ ËÏÍÐÏÎÅÎÔ"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#~ msgid "Existing User Roles"
+-#~ msgstr "óÕÝÅÓÔ×ÕÀÝÉÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "óÇÅÎÅÒÉÒÏ×ÁÎÎÙÅ ÆÁÊÌÙ ÐÏÌÉÔÉËÉ"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
+-#~ msgid "Init script"
+-#~ msgstr "CÃÅÎÁÒÉÊ init"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "÷ÚÁÉÍÏÄÅÊÓÔ×ÕÅÔ Ó ÔÅÒÍÉÎÁÌÏÍ"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "äÅÍÏΠéÎÔÅÒÎÅÔ-ÓÌÕÖ (inetd)"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "initd ÚÁÐÕÓËÁÅÔÓÑ ÄÅÍÏÎÏÍ xinetd"
 -
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "Само програми-системске услуге могу користити инит скрипту"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "éÚÍÅÎÉÔØ ÓÕÝÅÓÔ×ÕÀÝÕÀ ÚÁÐÉÓØ Á×ÔÏÒÉÚÁÃÉÉ ÐÏÌØÚÏ×ÁÔÅÌÑ."
 -
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog мора бити логичка вредност"
+-#~ msgid "Name"
+-#~ msgstr "éÍÑ"
 -
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "Типови корисника аутоматски добијају tmp врсту"
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
 -
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "Морате унети путању извршне датотеке за ваш ограничени процес"
+-#~ msgid "Policy Directory"
+-#~ msgstr "ëÁÔÁÌÏÇ ÐÏÌÉÔÉËÉ"
 -
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Датотека за врсту приморавања"
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
 -
--#~ msgid "Interface file"
--#~ msgstr "Датотека спреге"
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "òÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ root"
 -
--#~ msgid "File Contexts file"
--#~ msgstr "Датотека за контексте датотека"
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "õÔÉÌÉÔÁ ÇÅÎÅÒÁÃÉÉ ÐÏÌÉÔÉËÉ SELinux"
 -
--#~ msgid "Setup Script"
--#~ msgstr "Скрипта за поставке"
+-#~ msgid "Select Ports"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ðÏÒÔÙ"
 -
 -#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
 -#~ msgstr ""
--#~ "SELinux порт\n"
--#~ "Врста"
--
--#~ msgid "Protocol"
--#~ msgstr "Протокол"
+-#~ "÷ÙÂÅÒÉÔÅ ÒÏÌØ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ root, ÅÓÌÉ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ ÔÁËÖÅ "
+-#~ "ÁÄÍÉÎÉÓÔÒÉÒÕÅÔ ÓÉÓÔÅÍÕ × ÒÅÖÉÍÅ root. ðÒÉ ÜÔÏÍ ÐÏÌØÚÏ×ÁÔÅÌØ ÎÅ ÓÍÏÖÅÔ "
+-#~ "Á×ÔÏÒÉÚÏ×ÁÔØÓÑ × ÓÉÓÔÅÍÅ ÎÁÐÒÑÍÕÀ."
 -
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
+-#~ msgid "Select additional domains that this user role will administer"
 -#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "Ниво"
--
--#~ msgid "Port"
--#~ msgstr "Порт"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "Број порта „%s“ није исправан.  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "Приказ листе"
+-#~ "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÄÏÍÅÎÙ, ËÏÔÏÒÙÍÉ ÂÕÄÅÔ ÕÐÒÁ×ÌÑÔØ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ"
 -
--#~ msgid "Group View"
--#~ msgstr "Групни преглед"
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr ""
+-#~ "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÄÏÍÅÎÙ, × ËÏÔÏÒÙÈ ÄÏÌÖÎÁ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ ÜÔÁ ÒÏÌØ"
 -
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Заштита SELinux сервиса"
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÒÏÌÉ ÄÌÑ ÜÔÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ"
 -
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "Онемогући SELinux заштиту за acct системску услугу"
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ÐÅÒÅËÌÀÞÁÔÅÌÉ ÄÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ÐÒÉÌÏÖÅÎÉÅÍ"
 -
--#~ msgid "Admin"
--#~ msgstr "Администратор"
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ËÁÔÁÌÏÇ, × ËÏÔÏÒÏÍ ÂÕÄÅÔ ÇÅÎÅÒÉÒÏ×ÁÔØÓÑ ÐÏÌÉÔÉËÁ"
 -
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr ""
--#~ "Допусти свим системским услугама да уписују датотеке језгра на / "
--#~ "директоријум"
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ÆÁÊÌÙ É ËÁÔÁÌÏÇÉ, ËÏÔÏÒÙÍÉ ÂÕÄÅÔ ÕÐÒÁ×ÌÑÔØ ÐÒÉÌÏÖÅÎÉÅ"
 -
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
 -#~ msgstr ""
--#~ "Допусти свим системским услугама могућност да користе неалоциране tty "
--#~ "терминале"
+-#~ "÷ÙÂÅÒÉÔÅ ÄÏÍÅÎÙ ÐÒÉÌÏÖÅÎÉÊ, ÎÁ ËÏÔÏÒÙÅ ÓÌÅÄÕÅÔ ÐÅÒÅÎÅÓÔÉ ÜÔÕ ÒÏÌØ "
+-#~ "ÐÏÌØÚÏ×ÁÔÅÌÑ."
 -
--#~ msgid "User Privs"
--#~ msgstr "Овлашћења корисника"
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ÄÏÍÅÎÙ, ËÏÔÏÒÙÍÉ ÄÏÌÖÅΠÕÐÒÁ×ÌÑÔØ ÜÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ."
 -
--#, fuzzy
 -#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
+-#~ "Select the user roles that will transiton to this applications domains."
 -#~ msgstr ""
--#~ "Допусти gadmin SELinux корисничким налозима да извршавају датотеке у "
--#~ "својим личним директоријумима"
+-#~ "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ÓÌÅÄÕÅÔ ÐÅÒÅÎÅÓÔÉ × ÄÏÍÅÎÙ "
+-#~ "ÐÒÉÌÏÖÅÎÉÊ."
 -
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
+-#~ msgid "Select user roles that will transition to this domain"
 -#~ msgstr ""
--#~ "Допусти да гостујући SELinux кориснички налози извршавају датотеке у "
--#~ "својим личним директоријумима или у /tmp директоријуму"
--
--#~ msgid "Memory Protection"
--#~ msgstr "Заштита меморије"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "Допусти java-и извршни стек"
--
--#~ msgid "Mount"
--#~ msgstr "Mount"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "Допусти да mount монтира било коју датотеку"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "Допусти да mount монтира било који директоријум"
+-#~ "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ÄÏÌÖÎÙ ÂÙÔØ ÐÅÒÅÎÅÓÅÎÙ × ÜÔÏÔ ÄÏÍÅÎ"
 -
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "Допусти mplayer-у извршни стек"
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "÷ÙÂÅÒÉÔÅ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÙÅ ×Ù ÈÏÔÉÔÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ"
 -
--#~ msgid "SSH"
--#~ msgstr "SSH"
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ïÔÐÒÁ×ËÁ audit ÓÏÏÂÝÅÎÉÊ "
 -
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "Допусти да ssh извршава ssh-keysign"
+-#~ msgid "Sends email"
+-#~ msgstr "ïÔÐÒÁ×ÌÑÅÔ ÓÏÏÂÝÅÎÉÅ ÐÏ ÜÌ.ÐÏÞÔÅ"
 -
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "Допусти да staff SELinux кориснички налози извршавају датотеке у својим "
--#~ "личним директоријумима или у /tmp директоријуму"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "óÔÁÎÄÁÒÔÎÙÊ Init äÅÍÏÎ"
 -
--#, fuzzy
 -#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "Допусти да sysadm SELinux кориснички налози извршавају датотеке у својим "
--#~ "личним директоријумима или у /tmp директоријуму"
+-#~ "óÔÁÎÄÁÒÔÎÙÅ ÄÅÍÏÎÙ ÉÎÉÃÉÁÌÉÚÁÃÉÉ ÚÁÐÕÓËÁÀÔÓÑ ÐÒÉ ÚÁÇÒÕÚËÅ Ó ÐÏÍÏÝØÀ "
+-#~ "ÓÃÅÎÁÒÉÅ× init, ËÏÔÏÒÙÅ ÏÂÙÞÎÏ ÒÁÓÐÏÌÏÖÅÎÙ × /etc/rc.d/init.d"
 -
--#, fuzzy
 -#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "Допусти да неограничени SELinux кориснички налози извршавају датотеке у "
--#~ "својим личним директоријумима или у /tmp директоријуму"
--
--#~ msgid "Network Configuration"
--#~ msgstr "Мрежна подешавања"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "Допусти да неозначени пакети путују мрежом"
+-#~ "ó ÐÏÍÏÝØÀ ÜÔÏÊ ÕÔÉÌÉÔÙ ÍÏÖÎÏ ÇÅÎÅÒÉÒÏ×ÁÔØ ÉÎÆÒÁÓÔÒÕËÔÕÒÕ ÐÏÌÉÔÉËÉ, "
+-#~ "ÏÇÒÁÎÉÞÉÔØ ÒÁÂÏÔÕ ÐÒÉÌÏÖÅÎÉÊ É ÐÏÌØÚÏ×ÁÔÅÌÅÊ Ó ÐÏÍÏÝØÀ SELinux.\n"
+-#~ "\n"
+-#~ "õÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
+-#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te)\n"
+-#~ "æÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if)\n"
+-#~ "æÁÊÌ ËÏÎÔÅËÓÔÁ (fc)\n"
+-#~ "óÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh) ÄÌÑ ËÏÍÐÉÌÑÃÉÉ É ÕÓÔÁÎÏ×ËÉ ÐÏÌÉÔÉËÉ."
 -
--#, fuzzy
 -#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Допусти да user SELinux кориснички налози извршавају датотеке у својим "
--#~ "личним директоријумима или у /tmp директоријуму"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "Допусти да неограниченим да се пребаце у unconfined_execmem"
--
--#~ msgid "Databases"
--#~ msgstr "Базе података"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "Допусти кориснику да се повеже на mysql сокет"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "Допусти кориснику да се повеже на postgres сокет"
--
--#~ msgid "XServer"
--#~ msgstr "XServer"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "Допусти клијентима да уписују у дељену меморију Икс сервера"
+-#~ "üÔÁ ÕÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
+-#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te), ÆÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if), ÆÁÊÌÏ×ÙÊ ËÏÎÔÅËÓÔ "
+-#~ "(fc),\n"
+-#~ "ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh).\n"
+-#~ "\n"
+-#~ "÷ÙÐÏÌÎÉÔÅ ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ, ÞÔÏÂÙ ÓËÏÍÐÉÌÉÒÏ×ÁÔØ/ ÕÓÔÁÎÏ×ÉÔØ É ÐÒÉÓ×ÏÉÔØ "
+-#~ "ÍÅÔËÉ ÆÁÊÌÁÍ\n"
+-#~ "É ËÁÔÁÌÏÇÁÍ.\n"
+-#~ "÷ËÌÀÞÉÔÅ ÒÁÚÒÅÛÁÀÝÉÊ ÒÅÖÉÍ (setenforce 0). \n"
+-#~ "úÁÐÕÓÔÉÔÅ ÐÒÉÌÏÖÅÎÉÅ ÄÌÑ ÇÅÎÅÒÁÃÉÉ ÓÏÏÂÝÅÎÉÊ avc.\n"
+-#~ "÷ÙÐÏÌÎÉÔÅ ËÏÍÁÎÄÕ audit2allow -R, ÞÔÏÂÙ ÓÏÚÄÁÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÒÁ×ÉÌÁ "
+-#~ "ÄÌÑ ÆÁÊÌÁ te.\n"
 -
--#, fuzzy
 -#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "Допусти да xguest SELinux кориснички налози извршавају датотеке у својим "
--#~ "личним директоријумима или у /tmp директоријуму"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "Дозволи системским услугама да се покрећу са NIS сервисом"
--
--#~ msgid "Web Applications"
--#~ msgstr "Веб програми"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "Пребацивање staff SELinux корисника на Web Browser домен"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "Пребацивање sysadm SELinux корисника на Web Browser домен"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "Пребацивање user SELinux корисника на Web Browser домен"
--
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "Пребацивање xguest SELinux корисника на Web Browser домен"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "Допусти особљу Web Browser-а да уписује у личне директоријуме"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "Искључи SELinux заштиту за amanda-у"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Искључи SELinux заштиту за amavis"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Искључи SELinux заштиту за apmd системску услугу"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Искључи SELinux заштиту за arpwatch системску услугу"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Искључи SELinux заштиту за auditd системску услугу"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Искључи SELinux заштиту за automount системску услугу"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Искључи SELinux заштиту за avahi"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Искључи SELinux заштиту за bluetooth системску услугу"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Искључи SELinux заштиту за canna системску услугу"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Искључи SELinux заштиту за cardmgr системску услугу"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Искључи SELinux заштиту за Cluster сервер"
+-#~ "üÔÁ ÕÔÉÌÉÔÁ ÇÅÎÅÒÉÒÕÅÔ:\n"
+-#~ "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ (te), ÆÁÊÌ ÉÎÔÅÒÆÅÊÓÁ (if), ÆÁÊÌÏ×ÙÊ ËÏÎÔÅËÓÔ "
+-#~ "(fc),\n"
+-#~ "ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ (sh).\n"
+-#~ "\n"
+-#~ "÷ÙÐÏÌÎÉÔÅ ÓÃÅÎÁÒÉÊ ÏÂÏÌÏÞËÉ × ÒÅÖÉÍÅ root, ÞÔÏÂÙ ÓËÏÍÐÉÌÉÒÏ×ÁÔØ/ "
+-#~ "ÕÓÔÁÎÏ×ÉÔØ\n"
+-#~ "É ÐÒÉÓ×ÏÉÔØ ÍÅÔËÉ ÆÁÊÌÁÍ É ËÁÔÁÌÏÇÁÍ.\n"
+-#~ "þÔÏÂÙ ÓÏÐÏÓÔÁ×ÉÔØ ÒÏÌÉ ÐÏÌØÚÏ×ÁÔÅÌÑÍ Linux, ÉÓÐÏÌØÚÕÊÔÅ semanage ÉÌÉ "
+-#~ "useradd.\n"
+-#~ "÷ËÌÀÞÉÔÅ ÒÁÚÒÅÛÁÀÝÉÊ ÒÅÖÉÍ (setenforce 0). \n"
+-#~ "á×ÔÏÒÉÚÕÊÔÅÓØ É ÐÒÏ×ÅÒØÔÅ ÒÏÌØ ÐÏÌØÚÏ×ÁÔÅÌÑ.\n"
+-#~ "÷ÙÐÏÌÎÉÔÅ ËÏÍÁÎÄÕ audit2allow -R, ÞÔÏÂÙ ÓÏÚÄÁÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÒÁ×ÉÌÁ "
+-#~ "ÄÌÑ ÆÁÊÌÁ te.\n"
 -
 -#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
--#~ "Допусти да cdrecord чита различит садржај. nfs, samba, removable devices, "
--#~ "user temp и датотеке са непоузданим садржајем"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Искључи SELinux заштиту за ciped системску услугу"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Искључи SELinux заштиту за clamd системску услугу"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Искључи SELinux заштиту за clamscan"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Искључи SELinux заштиту за clvmd"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Искључи SELinux заштиту за comsat системску услугу"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Искључи SELinux заштиту за courier системску услугу"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Искључи SELinux заштиту за cpucontrol системску услугу"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Искључи SELinux заштиту за cpuspeed системску услугу"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Искључи SELinux заштиту за crond системску услугу"
--
--#~ msgid "Printing"
--#~ msgstr "Штампање"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "Логичка вредност"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "све"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "Прилагођен"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "Означавање датотека"
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Искључи SELinux заштиту за cupsd позадински сервер"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Искључи SELinux заштиту за cupsd системску услугу"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Искључи SELinux заштиту за cupsd_lpd"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Искључи SELinux заштиту за cvs системску услугу"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Искључи SELinux заштиту за cyrus системску услугу"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Искључи SELinux заштиту за dbskk системску услугу"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Искључи SELinux заштиту за dbusd системску услугу"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Искључи SELinux заштиту за dccd"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Искључи SELinux заштиту за dccifd"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Искључи SELinux заштиту за dccm"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Искључи SELinux заштиту за ddt системску услугу"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Искључи SELinux заштиту за devfsd системску услугу"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Искључи SELinux заштиту за dhcpc системску услугу"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Искључи SELinux заштиту за dhcpd системску услугу"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Искључи SELinux заштиту за dictd системску услугу"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "Допусти да sysadm_t директно покреће системске услуге"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Искључи SELinux заштиту за Evolution"
--
--#~ msgid "Games"
--#~ msgstr "Игре"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Искључи SELinux заштиту за игре"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Искључи SELinux заштиту за веб читаче"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Искључи SELinux заштиту за Thunderbird"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Искључи SELinux заштиту за distccd системску услугу"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Искључи SELinux заштиту за dmesg системску услугу"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Искључи SELinux заштиту за dnsmasq системску услугу"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Искључи SELinux заштиту за dovecot системску услугу"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Искључи SELinux заштиту за entropyd системску услугу"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Искључи SELinux заштиту за fetchmail"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Искључи SELinux заштиту за fingerd системску услугу"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Искључи SELinux заштиту за freshclam системску услугу"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Искључи SELinux заштиту за fsdaemon системску услугу"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Искључи SELinux заштиту за gpm системску услугу"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Искључи SELinux заштиту за gss системску услугу"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Искључи SELinux заштиту за Hal системску услугу"
--
--#~ msgid "Compatibility"
--#~ msgstr "Усаглашеност"
+-#~ "üÔÏÔ ÐÏÌØÚÏ×ÁÔÅÌØ ÍÏÖÅÔ Á×ÔÏÒÉÚÏ×ÁÔØÓÑ Ó ÐÏÍÏÝØÀ X ÉÌÉ ÔÅÒÍÉÎÁÌÁ. "
+-#~ "éÚÎÁÞÁÌØÎÏ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÎÁÓÔÒÏÅÎÙ setuid, sudo, su É ÓÅÔÅ×ÏÅ "
+-#~ "ÏËÒÕÖÅÎÉÅ."
 -
 -#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
 -#~ msgstr ""
--#~ "Не користи audit за ствари које знамо да су покварене, али које нису "
--#~ "ризичне по сигурност"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Искључи SELinux заштиту за hostname системску услугу"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Искључи SELinux заштиту за hotplug системску услугу"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Искључи SELinux заштиту за howl системску услугу"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Искључи SELinux заштиту за cups hplip системску услугу"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Искључи SELinux заштиту за httpd rotatelogs"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD сервис"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Искључи SELinux заштиту за http suexec"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Искључи SELinux заштиту за hwclock системску услугу"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Искључи SELinux заштиту за i18n системску услугу"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Искључи SELinux заштиту за imazesrv системску услугу"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Искључи SELinux заштиту за потомке inetd системске услуге"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Искључи SELinux заштиту за inetd системску услугу"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Искључи SELinux заштиту за innd системску услугу"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Искључи SELinux заштиту за iptables системску услугу"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Искључи SELinux заштиту за ircd системску услугу"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Искључи SELinux заштиту за irqbalance системску услугу"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Искључи SELinux заштиту за iscsi системску услугу"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Искључи SELinux заштиту за jabberd системску услугу"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Искључи SELinux заштиту за kadmind системску услугу"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Искључи SELinux заштиту за klogd системску услугу"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Искључи SELinux заштиту за krb5kdc системску услугу"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Искључи SELinux заштиту за ktalk системску услугу"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Искључи SELinux заштиту за kudzu системску услугу"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Искључи SELinux заштиту за locate системску услугу"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Искључи SELinux заштиту за lpd системску услугу"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Искључи SELinux заштиту за lrrd системску услугу"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Искључи SELinux заштиту за lvm системску услугу"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Искључи SELinux заштиту за mailman"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "Допусти evolution-у и thunderbird-у да читају датотеке корисника"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Искључи SELinux заштиту за mdadm системску услугу"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Искључи SELinux заштиту за monopd системску услугу"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "Допусти да mozilla читач чита датотеке корисника"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Искључи SELinux заштиту за mrtg системску услугу"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Искључи SELinux заштиту за mysqld системску услугу"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Искључи SELinux заштиту за nagios системску услугу"
--
--#~ msgid "Name Service"
--#~ msgstr "Сервис за именовање"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Искључи SELinux заштиту за named системску услугу"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Искључи SELinux заштиту за nessusd системску услугу"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Искључи SELinux заштиту за NetworkManager"
+-#~ "ðÏÌØÚÏ×ÁÔÅÌØ ÓÍÏÖÅÔ Á×ÔÏÒÉÚÏ×ÁÔØÓÑ ÔÏÌØËÏ ÕÄÁÌÅÎÎÏ ÉÌÉ × ÔÅÒÍÉÎÁÌÅ. "
+-#~ "éÚÎÁÞÁÌØÎÏ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÎÁÓÔÒÏÅÎÙ setuid, sudo, su É ÓÅÔÅ×ÏÅ "
+-#~ "ÏËÒÕÖÅÎÉÅ."
 -
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Искључи SELinux заштиту за nfsd системску услугу"
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "îÅÚÁÒÅÚÅÒ×ÉÒÏ×ÁÎÎÙÅ ðÏÒÔÙ (>1024)"
 -
--#~ msgid "Samba"
--#~ msgstr "Samba"
+-#~ msgid "User Application"
+-#~ msgstr "ðÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ðÒÉÌÏÖÅÎÉÅ"
 -
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Искључи SELinux заштиту за nmbd системску услугу"
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "éÓÐÏÌØÚÕÅÔÓÑ Pam ÄÌÑ ÁÕÔÅÎÔÉÆÉËÁÃÉÉ"
 -
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Искључи SELinux заштиту за nrpe системску услугу"
+-#~ msgid "Uses dbus"
+-#~ msgstr "éÓÐÏÌØÚÕÅÔÓÑ dbus"
 -
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Искључи SELinux заштиту за nscd системску услугу"
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "éÓÐÏÌØÚÕÀÔÓÑ nsswitch ÉÌÉ getpw* ×ÙÚÏ×Ù"
 -
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Искључи SELinux заштиту за nsd системску услугу"
+-#~ msgid "Role"
+-#~ msgstr "òÏÌØ"
 -
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Искључи SELinux заштиту за ntpd системску услугу"
+-#~ msgid "Application"
+-#~ msgstr "ðÒÉÌÏÖÅÎÉÑ"
 -
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Искључи SELinux заштиту за oddjob"
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s ÄÏÌÖÎÁ ÂÙÔØ ÄÉÒÅËÔÏÒÉÅÊ"
 -
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Искључи SELinux заштиту за oddjob_mkhomedir"
+-#~ msgid "You must select a user"
+-#~ msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ"
 -
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Искључи SELinux заштиту за openvpn системску услугу"
+-#~ msgid "Verify Name"
+-#~ msgstr "ðÒÏ×ÅÒËÁ ÉÍÅÎÉ"
 -
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Искључи SELinux заштиту за pam системску услугу"
+-#~ msgid "You must enter a name"
+-#~ msgstr "îÅÏÂÈÏÄÉÍÏ ××ÅÓÔÉ ÉÍÑ"
 -
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Искључи SELinux заштиту за pegasus"
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "îÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÒÏÌØ"
 -
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Искључи SELinux заштиту за perdition системску услугу"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "îÁÓÔÒÏÊËÁ SELinux"
 -
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Искључи SELinux заштиту за portmap системску услугу"
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "æÁÊÌ ÐÒÉÎÕÖÄÅÎÉÑ ÔÉÐÁ"
 -
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Искључи SELinux заштиту за portslave системску услугу"
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "æÁÉÌ ÉÎÔÅÒÆÅÊÓÁ"
 -
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Искључи SELinux заштиту за postfix"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "ëÏÎÔÅËÓÔ ÆÁÊÌÁ ÄÌÑ %s ÎÅ ÏÐÒÅÄÅÌÅÎ"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
 +msgstr ""
-+"Спецификације\n"
-+"датотеке"
  
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Искључи SELinux заштиту за postgresql системску услугу"
-+#: ../gui/fcontextPage.py:81
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux ðÏÒÔ\n"
+-#~ "ôÉÐ"
++#: ../gui/polgen.glade:537
 +msgid ""
-+"Selinux\n"
-+"File Type"
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
 +msgstr ""
-+"Selinux\n"
-+"врста датотеке"
  
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/fcontextPage.py:88
-+msgid ""
-+"File\n"
-+"Type"
+-#~ msgid "Protocol"
+-#~ msgstr "ðÒÏÔÏËÏÌ"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
 +msgstr ""
-+"Врста\n"
-+"датотеке"
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "Допусти pppd да буде доступан за коришћење обичним корисницима"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "Мапирање корисника"
  
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Искључи SELinux заштиту за pptp"
-+#: ../gui/loginsPage.py:52
-+msgid ""
-+"Login\n"
-+"Name"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "õÒÏ×ÅÎØ"
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
 +msgstr ""
-+"Пријавно\n"
-+"име"
  
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Искључи SELinux заштиту за prelink системску услугу"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
+-#~ msgid "Port"
+-#~ msgstr "ðÏÒÔ"
++#: ../gui/polgen.glade:647
 +msgid ""
-+"SELinux\n"
-+"User"
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
 +msgstr ""
-+"SELinux\n"
-+"корисник"
  
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Искључи SELinux заштиту за privoxy системску услугу"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
-+msgid ""
-+"MLS/\n"
-+"MCS Range"
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "óÌÕÖÂÁ úÁÝÉÔÙ SELinux"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
 +msgstr ""
-+"MLS/\n"
-+"MCS опсег"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Искључи SELinux заштиту за ptal системску услугу"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "Пријава „%s“ је неопходна"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Искључи SELinux заштиту за pxe системску услугу"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "Модул полисе"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Искључи SELinux заштиту за pyzord"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "Име модула"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Искључи SELinux заштиту за quota системску услугу"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Верзија"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Искључи SELinux заштиту за radiusd системску услугу"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "Искључи проверу"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Искључи SELinux заштиту за radvd системску услугу"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "Укључи проверу"
  
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Искључи SELinux заштиту за rdisc"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "Учитај модул полисе"
+-#~ msgid "Admin"
+-#~ msgstr "áÄÍÉÎ"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Искључи SELinux заштиту за readahead"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
+-#~ msgid "Memory Protection"
+-#~ msgstr "úÁÝÉÔÁ ðÁÍÑÔÉ"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "Допусти да програми читају датотеке које се налазе на нестандардним "
--#~ "местима (default_t)"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
+-#, fuzzy
+-#~ msgid "Mount"
+-#~ msgstr "íÏÎÔÉÒÏ×ÁÔØ"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Искључи SELinux заштиту за restorecond"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Искључи SELinux заштиту за rhgb системску услугу"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
 +msgstr ""
-+"Miloš Komarčević <kmilos@gmail.com>\n"
-+"Jovan Krunic <jovan.krunic@gmail.com>\n"
-+"Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
-+"Nikola Pajtić <salgeras@gmail.com>"
  
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Искључи SELinux заштиту за ricci"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Ова алатка се може употребити за прављење радног оквира полиса, ради "
-+"ограничавања програма и корисника користећи SELinux.   \n"
-+"\n"
-+"Алатка производи:\n"
-+"датотеку за приморавање врсте (te)\n"
-+"датотеку сучеља (if)\n"
-+"датотеку са контекстима датотека (fc)\n"
-+"скрипту командног окружења (sh) - користи се за компилирање и инсталацију "
-+"полисе. "
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Изаберите врсту програма/корисничке улоге коју треба ограничити"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>Програми</b>"
+-#~ msgid "Web Applications"
+-#~ msgstr "Web ðÒÉÌÏÖÅÎÉÑ"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Искључи SELinux заштиту за ricci_modclusterd"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ amanda ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:871
++msgid "Executable"
 +msgstr ""
-+"Стандардна инит системска услуга су услуге који се покрећу са подизањем "
-+"система преко инит скрипти.  Обично захтева скрипту у /etc/rc.d/init.d"
  
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Искључи SELinux заштиту за rlogind системску услугу"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "Стандардна инит системска услуга"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS системски демон"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Системска услуга за интернет сервисе су услуге које покреће xinetd"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "Системска услуга за интернет сервисе (inetd)"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ amavis ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Искључи SELinux заштиту за rpcd системску услугу"
-+#: ../gui/polgen.glade:320
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ apmd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:927
 +msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Веб програми/скрипте (CGI) CGI скрипте које покреће веб сервер (apache)"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Искључи SELinux заштиту за rshd"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "Веб програми/скрипте (CGI)"
  
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ arpwatch ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+"Кориснички програм је било који програм који бисте желели да ограничите да "
-+"је стартован од стране корисника"
  
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Искључи SELinux заштиту за rsync системску услугу"
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "Кориснички програм"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>Корисници пријављивања</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Измени постојећи запис корисника за пријављивање."
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "Постојеће корисничке улоге"
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ auditd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "Допусти да се ssh извршава из inetd уместо као системска услуга"
-+#: ../gui/polgen.glade:472
-+msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ automount ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+"Овај корисник ће се пријавити на машину само преко терминала или удаљеном "
-+"пријавом. Подразумевано овај корисник неће имати setuid, мрежу, sudo, нити "
-+"su."
-+
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "Минимална улога корисника терминала"
  
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "Допусти да Samba дели nfs директоријуме"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ avahi ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+"Овај корисник може да се пријави на машину преко Икс система прозора или "
-+"терминала. Подразумевано овај корисник неће имати setuid, мрежу, sudo, нити "
-+"su"
-+
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "Минимална улога корисника Икс система прозора"
  
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL сервер аутентификације"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ bluetooth ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+"Корисник са потпуном мрежом, без setuid програма без пролаза, без sudo, без "
-+"su."
  
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "Допусти sasl серверу аутентификације да чита /etc/shadow"
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "Корисничка улога"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ canna ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "Допусти X-Windows серверу да пресликава меморијски простор као извршну "
--#~ "датотеку са могућношћу писања"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cardmgr ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+"Корисник са потпуном мрежом, без setuid програма без пролаза, без su, може "
-+"да користи sudo на корисничким улогама Root администратора"
  
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Искључи SELinux заштиту за saslauthd системску услугу"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "Улога администраторског корисника"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root корисници</b>"
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Cluster Server ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Искључи SELinux заштиту за scannerdaemon системску услугу"
-+#: ../gui/polgen.glade:645
-+msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ciped ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+"Изаберите корисничку улогу root администратора, ако ће овај корисник вршити "
-+"администрацију машине док ради као root. Овај корисник неће моћи да се "
-+"директно пријави у систем."
-+
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Корисничка улога root администратора"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Унесите назив програма или корисничку улогу коју треба ограничити."
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "Име"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "Унесите пуну путању извршне датотеке коју треба ограничити."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "Унесите јединствени назив за ограничени програм или корисничку улогу."
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "Извршна датотека"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Инит скрипта"
  
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "Не допуштај прелаз на sysadm_t, изазван командама sudo и su"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ clamd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"Унесите потпуну путању до скрипте за иницијализацију, која стартује "
-+"ограничени програм."
  
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "Не допуштај ниједном процесу да учита модуле језгра"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Изаберите корисничке улоге које желите да прилагодите"
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ clamscan ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "Не допуштај ниједном процесу да мења SELinux полису језгра"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ clvmd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+"Изаберите корисничке улоге које ће се пребацити на ове програмске домене."
  
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Искључи SELinux заштиту за sendmail системску услугу"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Изаберите додатне домене кроз које ће ова корисничка улога пролазити"
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ comsat ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Искључи SELinux заштиту за setrans"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ courier ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+"Изаберите програмске домене на које бисте желели да се ова корисничка улога "
-+"пребаци."
  
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Искључи SELinux заштиту за setroublesoot системску услугу"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Изаберите корисничке улоге које ће се пребацити на овај домен"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Изаберите додатне домене које ће овај корисник администрирати"
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cpucontrol ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Искључи SELinux заштиту за slapd системску услугу"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cpuspeed ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
-+"Изаберите програмске домене које бисте желели овај корисник администрира"
  
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Искључи SELinux заштиту за slrnpull системску услугу"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Изаберите додатне улоге за овог корисника"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Унесите мрежне портове које ова улога програма/корисника ослушкује"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP портови</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Искључи SELinux заштиту за smbd системску услугу"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ crond ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+"Дозвољава ограниченој улози програма/корисника да се веже на било који udp "
-+"порт"
  
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Искључи SELinux заштиту за snmpd системску услугу"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ cupsd back end server ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Све"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Искључи SELinux заштиту за snort системску услугу"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cupsd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"Дозволи улози програма/корисника да позове bindresvport са 0. Везивање на "
-+"портове 600-1024"
  
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Искључи SELinux заштиту за soundd системску услугу"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ cupsd_lpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Искључи SELinux заштиту за sound системску услугу"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Унесите списак udp портова или опсег портова раздвојене зарезима на које се "
-+"веже улога програма/корисника. Пример: 612, 650-660"
  
--#~ msgid "Spam Protection"
--#~ msgstr "Заштита од нежељене поште"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cvs ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Нерезервисани портови (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ cyrus ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Изабери портове"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Искључи SELinux заштиту за spamd системску услугу"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dbskkd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"Дозвољава улози програма/корисника да се веже на било који udp порт > 1024"
  
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "Допусти да spamd приступа личним директоријумима"
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dbusd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP портови</b>"
++msgstr ""
  
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "Допусти приступ мрежи програму за уклањање нежељене поште"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ dccd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"Унесите мрежне портове на које се ова улога програма/корисника повезује"
  
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Искључи SELinux заштиту за speedmgmt системску услугу"
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ dccifd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9edccm"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9eddt"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Унесите списак tcp портова или опсег портова раздвојене зарезима на које се "
-+"повезује улога програма/корисника. Пример: 612, 650-660"
  
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "÷ÙËÌÀÞÅÎÁ\9eÚÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9edevfsd"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ\9eÄÅÍÏÎÁ\9edhcpc ÏÔËÌÀÞÅÎÁ\9e"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Унесите списак udp портова или опсег портова раздвојене зарезима на које се "
-+"повезује улога програма/корисника. Пример: 612, 650-660"
  
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "Допусти squid системској услузи да се споји на мрежу"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Изаберите уобичајене карактеристике програма"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dhcpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dictd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Evolution ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Пише syslog поруке\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "éÇÒÙ"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Направи/руководи привременим подацима у /tmp"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ games ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Користи Pam за аутентификацију"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ web ÂÒÁÕÚÅÒÏ× ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Користи nsswitch или getpw* позиве"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ Thunderbird ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Користи dbus"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ distccd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Шаље поруке провере"
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dmesg ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "У вези са терминалом"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "úÁÝÉÔÁ\9eSELinux\9eÄÌÑ ÄÅÍÏÎÁ dnsmasq ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Шаље е-поруку"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Изаберите датотеке/директоријуме које програм руководи"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Искључи SELinux заштиту за squid системску услугу"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ dovecot ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+"Додајте датотеке/директоријуме који су потребни програму да у њих \"Пише\". "
-+"Pid датотеке, датотеке дневника, /var/lib датотеке ..."
  
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Искључи SELinux заштиту за ssh системску услугу"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Изаберите логичке променљиве које овај програм користи"
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ entropyd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
  
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "Допусти ssh пријаве као sysadm_r:sysadm_t"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ fetchmail ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Додај/уклони логичке променљиве коришћене за овај ограничени програм/корисник"
  
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "Допусти да staff_r корисници претражују sysadm лични директоријум и "
--#~ "читају датотеке (као што је ~/.bashrc)"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Изаберите директоријум у коме ће се генерисати полисе"
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ fingerd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Универзални SSL тунел"
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "Директоријум полисе"
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ freshclam ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Искључи SELinux заштиту за stunnel системску услугу"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Датотеке направљене полисе"
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ fsdaemon ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr ""
--#~ "Допусти да се stunnel системска услуга самостално извршава, изван xinetd"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ова алатка ће генерисати следеће: \n"
-+"врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
-+"командног окружења(sh)\n"
-+"Извршите скрипту командног окружења као root корисник да бисте \n"
-+"компајлирали/инсталирали и поново поставили ознаке на \n"
-+"датотекама/директоријумима. \n"
-+"Користите semanage или useradd да мапирате Linux кориснике за пријављивање \n"
-+"на корисничке улоге.\n"
-+"Поставите машину у допуштајући режим (setenforce 0). \n"
-+"Пријавите се као корисник и тестирајте ову корисничку улогу.\n"
-+"Користите audit2allow -R да бисте генерисали додатна правила за te "
-+"датотеку.\n"
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ gpm ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Искључи SELinux заштиту за swat системску услугу"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ова алатка ће генерисати следеће: \n"
-+"врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
-+"командног окружења(sh)\n"
-+"\n"
-+"Извршите скрипту командног окружења да бисте компајлирали/инсталирали и \n"
-+"поново поставили ознаке на датотекама/директоријумима. \n"
-+"Поставите машину у допуштајући режим (setenforce 0). \n"
-+"Извршите/поново покрените програм да бисте генерисали avc поруке.\n"
-+"Користите audit2allow -R да бисте генерисали додатна правила за te "
-+"датотеку.\n"
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ gss ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Додај дијалог логичких променљивих"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ Hal ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Назив логичке вредности"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "óÏ×ÍÅÓÔÉÍÏÓÔØ"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Улога"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ hostname ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Постојећи_корисник"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ hotplug ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Програм"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ howl ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s мора бити директоријум"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ cups hplip ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Морате изабрати корисника"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ httpd rotatelogs ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Изаберите извршну датотеку коју бисте желели да ограничите."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "óÌÕÖÂÁ HTTPD"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Изаберите инит скрипту коју бисте желели да ограничите."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ http suexec ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Изаберите датотеку(е) коју ограничени програм прави или у њу пише"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Искључи SELinux заштиту за sxid системску услугу"
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ hwclock ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+"Изаберите директоријум(е) који ограничени програм поседује или у њега пише"
  
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Искључи SELinux заштиту за syslogd системску услугу"
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ i18n ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Изаберите директоријум у коме ћете правити датотеке полисе"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Искључи SELinux заштиту за системске cron послове"
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ imazesrv ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Врста %s_t је већ одређена у тренутној полиси.\n"
-+"Да ли желите да наставите?"
  
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Искључи SELinux заштиту за tcp системску услугу"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ inetd child ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Потврди име"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Искључи SELinux заштиту за telnet системску услугу"
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ inetd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Модул %s.pp је већ учитан у тренутну полису.\n"
-+"Да ли желите да наставите?"
  
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Искључи SELinux заштиту за tftpd системску услугу"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Морате унети име"
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ innd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Искључи SELinux заштиту за transproxy системску услугу"
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ iptables ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Морате унети извршни програм"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Искључи SELinux заштиту за udev системску услугу"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ircd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Подесите SELinux"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Искључи SELinux заштиту за uml системску услугу"
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ irqbalance ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ iscsi ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Портови морају бити бројеви или опсези бројева од 1 до %d "
++msgstr ""
  
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Допусти да се xinetd извршава као неограничен, укључујући ту све сервисе "
--#~ "које стартује, а који немају изричито одређен прелаз домена"
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ jabberd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Морате унети име вашег ограниченог процеса/корисника"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "Допусти да се rc скрипта неограничено извршава, укључујући ту све "
--#~ "системске услуге које rc стартује, а који немају изричито одређен прелаз "
--#~ "домена"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "КОРИСНИЧКЕ врсте нису дозвољене извршне датотеке"
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
  
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "Допусти да се rpm извршава неограничено"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Само програми СИСТЕМСКИХ УСЛУГА могу користити инит скрипту"
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ kadmind ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr ""
--#~ "Допусти да се привилеговане алатке, као што су hotplug и insmod, "
--#~ "извршавају неограничено"
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ klogd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ krb5kdc ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ktalk ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog мора бити логичка вредност"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Искључи SELinux заштиту за updfstab системску услугу"
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ kudzu ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ locate ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "КОРИСНИЧКЕ врсте аутоматски добијају tmp врсту"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Искључи SELinux заштиту за uptimed системску услугу"
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lrrd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Морате унети путању извршне датотеке за ваш ограничени процес"
++msgstr ""
  
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "Допусти да user_r користи sysadm_r преко su, sudo, или userhelper. У "
--#~ "противном, само staff_r може тако да ради"
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ lvm ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Датотека за врсту приморавања"
++msgstr ""
  
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "Дозволи корисницима извршавање mount наредбе"
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ mailman ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Датотека спреге"
++msgstr ""
  
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr ""
--#~ "Допусти обичним корисницима директан приступ мишу (само допусти Икс "
--#~ "серверу)"
-+#: ../gui/polgen.py:850
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mdadm ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Датотека за контексте датотека"
++msgstr ""
  
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "Допусти корисницима да извршавају dmesg команду"
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ monopd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Скрипта за поставке"
++msgstr ""
  
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "Допусти корисницима да управљају мрежним сучељима (такође је потребно да "
--#~ "је USERCTL=true)"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mrtg ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ mysqld ÏÔËÌÀÞÅÎÁ"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nagios ÏÔËÌÀÞÅÎÁ"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Мрежни порт"
++msgstr ""
  
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "Допусти нормалном кориснику да извршава ping"
+-#~ msgid "Name Service"
+-#~ msgstr "óÌÕÖÂÁ éÍÅÎ"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux врста\n"
-+"порта"
  
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "Допусти кориснику да чита/пише у noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ named ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Протокол"
++msgstr ""
  
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "Допусти да корисници читају/пишу на usb уређаје"
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nessusd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"ниво"
  
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "Допусти корисницима да извршавају TCP сервере (да се повезују на портове "
--#~ "и примају везе са истих домена или спољних корисника)  искључивање ове "
--#~ "опције доводи до пасивног начина пада FTP-а и може узроковати промене "
--#~ "других протокола"
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NetworkManager ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Порт"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nfsd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Број порта „%s“ није исправан.  0 < PORT_NUMBER < 65536 "
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Приказ листе"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nmbd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Групни преглед"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nrpe ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -249500,36 +198018,37 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Заштита SELinux сервиса"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nscd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Онемогући SELinux заштиту за acct системску услугу"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ nsd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Администратор"
++msgstr ""
  
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "Допусти кориснику да прати tty датотеке"
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ntpd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+"Допусти свим системским услугама да уписују датотеке језгра на / директоријум"
  
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "Искључи SELinux заштиту за uucpd системску услугу"
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ oddjob ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+"Допусти свим системским услугама могућност да користе нерезервисане tty "
-+"терминале"
  
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Искључи SELinux заштиту за vmware системску услугу"
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ oddjob_mkhomedir ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -249537,3853 +198056,2318 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sr.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Овлашћења корисника"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Искључи SELinux заштиту за watchdog системску услугу"
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ openvpn ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да gadmin SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Искључи SELinux заштиту за winbind системску услугу"
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ pam ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да гостујући SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Искључи SELinux заштиту за xdm системску услугу"
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pegasus ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Заштита меморије"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ perdition ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Допусти java-и извршни стек"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ portmap ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Mount"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ portslave ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Допусти да mount монтира било коју датотеку"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ postfix ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Допусти да mount монтира било који директоријум"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ postgresql ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Допусти mplayer-у извршни стек"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pptp ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Допусти да ssh извршава ssh-keysign"
++msgstr ""
  
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "Допусти да се xdm пријављује као sysadm_r:sysadm_t"
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ prelink ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да staff SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Искључи SELinux заштиту за xen системску услугу"
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ privoxy ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да sysadm SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "XEN"
--#~ msgstr "XEN"
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ptal ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Допусти да неограничени SELinux кориснички налози извршавају датотеке у "
-+"својим личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "Допусти да xen чита/пише по физичким уређајима (дисковима)"
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ pxe ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Мрежна подешавања"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ pyzord ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Допусти да неозначени пакети путују мрежом"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Искључи SELinux заштиту за xfs системску услугу"
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ quota ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да user SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Искључи SELinux заштиту за xen контролу"
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ radiusd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Допусти да неограниченим да се пребаце у unconfined_execmem"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ radvd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Базе података"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ rdisc ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Допусти кориснику да се повеже на mysql сокет"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ readahead ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Допусти кориснику да се повеже на postgres сокет"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ restorecond ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rhgb ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Допусти клијентима да уписују у дељену меморију Икс сервера"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Искључи SELinux заштиту за ypbind системску услугу"
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ricci ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Допусти да xguest SELinux кориснички налози извршавају датотеке у својим "
-+"личним директоријумима или у /tmp директоријуму"
  
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Искључи SELinux заштиту за NIS системску услугу за лозинке"
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ricci_modclusterd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rlogind ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Дозволи системским услугама да се покрећу са NIS сервисом"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rpcd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Веб програми"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ rshd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Пребацивање staff SELinux корисника на Web Browser домен"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Пребацивање sysadm SELinux корисника на Web Browser домен"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ rsync ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Пребацивање user SELinux корисника на Web Browser домен"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Пребацивање xguest SELinux корисника на Web Browser домен"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Допусти особљу Web Browser-а да уписује у личне директоријуме"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Искључи SELinux заштиту за amanda-у"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Искључи SELinux заштиту за amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Искључи SELinux заштиту за apmd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Искључи SELinux заштиту за arpwatch системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Искључи SELinux заштиту за auditd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Искључи SELinux заштиту за automount системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Искључи SELinux заштиту за avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Искључи SELinux заштиту за bluetooth системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Искључи SELinux заштиту за canna системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Искључи SELinux заштиту за cardmgr системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Искључи SELinux заштиту за Cluster сервер"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Искључи SELinux заштиту за ypserv системску услугу"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Допусти да cdrecord чита различит садржај. nfs, samba, removable devices, "
-+"user temp и датотеке са непоузданим садржајем"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Искључи SELinux заштиту за NIS системску услугу за пренос"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Искључи SELinux заштиту за ciped системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Искључи SELinux заштиту за clamd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Искључи SELinux заштиту за clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Искључи SELinux заштиту за clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Искључи SELinux заштиту за comsat системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Искључи SELinux заштиту за courier системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Искључи SELinux заштиту за cpucontrol системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Искључи SELinux заштиту за cpuspeed системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Искључи SELinux заштиту за crond системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Штампање"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Искључи SELinux заштиту за cupsd позадински сервер"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Искључи SELinux заштиту за cupsd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Искључи SELinux заштиту за cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Искључи SELinux заштиту за cvs системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Искључи SELinux заштиту за cyrus системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Искључи SELinux заштиту за dbskk системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Искључи SELinux заштиту за dbusd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Искључи SELinux заштиту за dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Искључи SELinux заштиту за dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Искључи SELinux заштиту за dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Искључи SELinux заштиту за ddt системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Искључи SELinux заштиту за devfsd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Искључи SELinux заштиту за dhcpc системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Искључи SELinux заштиту за dhcpd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Искључи SELinux заштиту за dictd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Допусти да sysadm_t директно покреће системске услуге"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Искључи SELinux заштиту за Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Игре"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Искључи SELinux заштиту за игре"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Искључи SELinux заштиту за веб читаче"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Искључи SELinux заштиту за Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Искључи SELinux заштиту за distccd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Искључи SELinux заштиту за dmesg системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Искључи SELinux заштиту за dnsmasq системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Искључи SELinux заштиту за dovecot системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Искључи SELinux заштиту за entropyd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Искључи SELinux заштиту за fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Искључи SELinux заштиту за fingerd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Искључи SELinux заштиту за freshclam системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Искључи SELinux заштиту за fsdaemon системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Искључи SELinux заштиту за gpm системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Искључи SELinux заштиту за gss системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Искључи SELinux заштиту за Hal системску услугу"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "Усаглашеност"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "Допусти да SELinux webadm корисник управља личним директоријумима "
--#~ "корисника без привилегија"
++msgstr ""
++
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Не проверавај ствари за које се зна су покварене, али које нису ризичне по "
-+"безбедност"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "Допусти да SELinux webadm корисник може да чита из личних директоријума "
--#~ "корисника без привилегија"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Искључи SELinux заштиту за hostname системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Искључи SELinux заштиту за hotplug системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Искључи SELinux заштиту за howl системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Искључи SELinux заштиту за cups hplip системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Искључи SELinux заштиту за httpd rotatelogs"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD сервис"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Искључи SELinux заштиту за http suexec"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Искључи SELinux заштиту за hwclock системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Искључи SELinux заштиту за i18n системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Искључи SELinux заштиту за imazesrv системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Искључи SELinux заштиту за потомке inetd системске услуге"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Искључи SELinux заштиту за inetd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Искључи SELinux заштиту за innd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Искључи SELinux заштиту за iptables системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Искључи SELinux заштиту за ircd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Искључи SELinux заштиту за irqbalance системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Искључи SELinux заштиту за iscsi системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Искључи SELinux заштиту за jabberd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Искључи SELinux заштиту за kadmind системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Искључи SELinux заштиту за klogd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Искључи SELinux заштиту за krb5kdc системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Искључи SELinux заштиту за ktalk системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Искључи SELinux заштиту за kudzu системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Искључи SELinux заштиту за locate системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Искључи SELinux заштиту за lpd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Искључи SELinux заштиту за lrrd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Искључи SELinux заштиту за lvm системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Искључи SELinux заштиту за mailman"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Допусти evolution-у и thunderbird-у да читају датотеке корисника"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Искључи SELinux заштиту за mdadm системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Искључи SELinux заштиту за monopd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Допусти да mozilla читач чита датотеке корисника"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Искључи SELinux заштиту за mrtg системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Искључи SELinux заштиту за mysqld системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Искључи SELinux заштиту за nagios системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Сервис за именовање"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Искључи SELinux заштиту за named системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Искључи SELinux заштиту за nessusd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Искључи SELinux заштиту за NetworkManager"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Искључи SELinux заштиту за nfsd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Искључи SELinux заштиту за nmbd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Искључи SELinux заштиту за nrpe системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Искључи SELinux заштиту за nscd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Искључи SELinux заштиту за nsd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Искључи SELinux заштиту за ntpd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Искључи SELinux заштиту за oddjob"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Искључи SELinux заштиту за oddjob_mkhomedir"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Искључи SELinux заштиту за openvpn системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Искључи SELinux заштиту за pam системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Искључи SELinux заштиту за pegasus"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Искључи SELinux заштиту за perdition системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Искључи SELinux заштиту за portmap системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Искључи SELinux заштиту за portslave системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Искључи SELinux заштиту за postfix"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Искључи SELinux заштиту за postgresql системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Допусти pppd да буде доступан за коришћење обичним корисницима"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Искључи SELinux заштиту за pptp"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Искључи SELinux заштиту за prelink системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Искључи SELinux заштиту за privoxy системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Искључи SELinux заштиту за ptal системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Искључи SELinux заштиту за pxe системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Искључи SELinux заштиту за pyzord"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Искључи SELinux заштиту за quota системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Искључи SELinux заштиту за radiusd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Искључи SELinux заштиту за radvd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Искључи SELinux заштиту за rdisc"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Искључи SELinux заштиту за readahead"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "Да ли сте сигурни да желите да обришете %s „%s“?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"Допусти да програми читају датотеке које се налазе на нестандардним местима "
-+"(default_t)"
--#~ msgid "Delete %s"
--#~ msgstr "Обриши %s"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Искључи SELinux заштиту за restorecond"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Искључи SELinux заштиту за rhgb системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Искључи SELinux заштиту за ricci"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Искључи SELinux заштиту за ricci_modclusterd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Искључи SELinux заштиту за rlogind системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Искључи SELinux заштиту за rpcd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Искључи SELinux заштиту за rshd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Искључи SELinux заштиту за rsync системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Допусти да се ssh извршава из inetd уместо као системска услуга"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Допусти да Samba дели nfs директоријуме"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL сервер аутентификације"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Допусти sasl серверу аутентификације да чита /etc/shadow"
--#~ msgid "Add %s"
--#~ msgstr "Додај %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Допусти X-Windows серверу да пресликава меморијски простор као извршну "
-+"датотеку са могућношћу писања"
--#~ msgid "Modify %s"
--#~ msgstr "Измени %s"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Искључи SELinux заштиту за saslauthd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Искључи SELinux заштиту за scannerdaemon системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Не допуштај прелаз на sysadm_t, изазван командама sudo и su"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Не допуштај ниједном процесу да учита модуле језгра"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Не допуштај ниједном процесу да мења SELinux полису језгра"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Искључи SELinux заштиту за sendmail системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Искључи SELinux заштиту за setrans"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Искључи SELinux заштиту за setroublesoot системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Искључи SELinux заштиту за slapd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Искључи SELinux заштиту за slrnpull системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Искључи SELinux заштиту за smbd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Искључи SELinux заштиту за snmpd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Искључи SELinux заштиту за snort системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Искључи SELinux заштиту за soundd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Искључи SELinux заштиту за sound системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Заштита од нежељене поште"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Искључи SELinux заштиту за spamd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Допусти да spamd приступа личним директоријумима"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Допусти приступ мрежи програму за уклањање нежељене поште"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Искључи SELinux заштиту за speedmgmt системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Допусти squid системској услузи да се споји на мрежу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Искључи SELinux заштиту за squid системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Искључи SELinux заштиту за ssh системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Допусти ssh пријаве као sysadm_r:sysadm_t"
--#~ msgid "Permissive"
--#~ msgstr "Допуштање"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Допусти да staff_r корисници претражују sysadm лични директоријум и читају "
-+"датотеке (као што је ~/.bashrc)"
--#~ msgid "Enforcing"
--#~ msgstr "Приморавање"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Универзални SSL тунел"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Искључи SELinux заштиту за stunnel системску услугу"
--#~ msgid "Disabled"
--#~ msgstr "Искључено"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+"Допусти да се stunnel системска услуга самостално извршава, изван xinetd"
--#~ msgid "Status"
--#~ msgstr "Статус"
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Искључи SELinux заштиту за swat системску услугу"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Мењање врсте полисе ће проузроковати мењање ознака за цео систем датотека "
--#~ "при следећем подизању система. Мењање ознака прилично дуго траје и то "
--#~ "време зависи од величине система датотека.  Желите ли да наставите?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Искључи SELinux заштиту за sxid системску услугу"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "Искључивање SELinux-а захтева поновно подизање система.  Није "
--#~ "препоручљиво.  Ако касније одлучите да укључите SELinux, систем ће морати "
--#~ "да промени ознаке.  Ако само хоћете да видите да ли SELinux изазива "
--#~ "проблеме на вашем систему, можете прећи у допуштајући начин рада, који ће "
--#~ "само само бележити поруке у дневник, али не и спроводити SELinux "
--#~ "полису.    Желите ли да наставите?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Искључи SELinux заштиту за syslogd системску услугу"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "Укључивање SELinux-а ће проузроковати мењање ознака за цео систем "
--#~ "датотека при следећем подизању система. Мењање ознака прилично дуго траје "
--#~ "и то време зависи од величине система датотека.  Желите ли да наставите?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Искључи SELinux заштиту за системске cron послове"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Искључи SELinux заштиту за tcp системску услугу"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Ауторска права 2006 Ред Хет, Инц.\n"
--#~ "Ауторска права 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Искључи SELinux заштиту за telnet системску услугу"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "Додај SELinux мапирање пријаве"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Искључи SELinux заштиту за tftpd системску услугу"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "Додај SELinux мрежне портове"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Искључи SELinux заштиту за transproxy системску услугу"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux врста"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Искључи SELinux заштиту за udev системску услугу"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Искључи SELinux заштиту за uml системску услугу"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "Ниво"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Допусти да се xinetd извршава као неограничен, укључујући ту све сервисе "
-+"које стартује, а који немају изричито одређен прелаз домена"
--#~ msgid "File Specification"
--#~ msgstr "Спецификација датотеке"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Допусти да се rc скрипта неограничено извршава, укључујући ту све системске "
-+"услуге које rc стартује, а који немају изричито одређен прелаз домена"
--#~ msgid "File Type"
--#~ msgstr "Врста датотеке"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Допусти да се rpm извршава неограничено"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "све датотеке\n"
--#~ "обичан фајл\n"
--#~ "директоријум\n"
--#~ "уређај за карактере\n"
--#~ "уређај блокова\n"
--#~ "сокет\n"
--#~ "симболичка веза\n"
--#~ "именована цев\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Допусти да се привилеговане алатке, као што су hotplug и insmod, извршавају "
-+"неограничено"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Искључи SELinux заштиту за updfstab системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Искључи SELinux заштиту за uptimed системску услугу"
--#~ msgid "Add SELinux User"
--#~ msgstr "Додај SELinux корисника"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Допусти да user_r користи sysadm_r преко su, sudo, или userhelper. У "
-+"противном, само staff_r може тако да ради"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux администрација"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Дозволи корисницима извршавање mount наредбе"
++msgstr ""
  
--#~ msgid "Add"
--#~ msgstr "Додај"
+-#~ msgid "SASL authentication server"
+-#~ msgstr "ÓÅÒ×ÅÒ Á×ÔÏÒÉÚÁÃÉÉ SASL"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Допусти обичним корисницима директан приступ мишу (само допусти Икс серверу)"
--#~ msgid "_Properties"
--#~ msgstr "_Својства"
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Допусти корисницима да извршавају dmesg команду"
--#~ msgid "_Delete"
--#~ msgstr "_Обриши"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Допусти корисницима да управљају мрежним сучељима (такође је потребно да је "
-+"USERCTL=true)"
--#~ msgid "Select Management Object"
--#~ msgstr "Изаберите управљачки објекат"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Допусти нормалном кориснику да извршава ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Допусти кориснику да чита/пише у noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Допусти да корисници читају/пишу на usb уређаје"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Изаберите:</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Допусти корисницима да извршавају TCP сервере (да се повезују на портове и "
-+"примају везе са истих домена или спољних корисника)  искључивање ове опције "
-+"доводи до пасивног начина пада FTP-а и може узроковати промене других "
-+"протокола"
 +
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Допусти кориснику да прати tty датотеке"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Искључи SELinux заштиту за uucpd системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Искључи SELinux заштиту за vmware системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Искључи SELinux заштиту за watchdog системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Искључи SELinux заштиту за winbind системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Искључи SELinux заштиту за xdm системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Допусти да се xdm пријављује као sysadm_r:sysadm_t"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Искључи SELinux заштиту за xen системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ saslauthd ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Допусти да xen чита/пише по физичким уређајима (дисковима)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Искључи SELinux заштиту за xfs системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Искључи SELinux заштиту за xen контролу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Искључи SELinux заштиту за ypbind системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Искључи SELinux заштиту за NIS системску услугу за лозинке"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Искључи SELinux заштиту за ypserv системску услугу"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Искључи SELinux заштиту за NIS системску услугу за пренос"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "Подразумевани системски режим приморавања"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Допусти да SELinux webadm корисник управља личним директоријумима корисника "
-+"без привилегија"
  
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Текући режим приморавања"
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ scannerdaemon ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Допусти да SELinux webadm корисник може да чита из личних директоријума "
-+"корисника без привилегија"
  
--#~ msgid "System Default Policy Type: "
--#~ msgstr "Подразумевана системска врста полисе:"
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sendmail ÏÔËÌÀÞÅÎÁ"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Да ли сте сигурни да желите да обришете %s „%s“?"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "Изаберите да ли желите да поново означите целокупан систем датотека при "
--#~ "следећем подизању система.  Поновно означавање може трајати јако дуго, у "
--#~ "зависности од величине система.  Ако мењате врсте полиса или идете са "
--#~ "искљученог на приморавање, поновно означавање је неопходно."
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "Обриши %s"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Поново означи при следећем покретању."
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "Додај %s"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "Врати логичке променљиве на подразумеване системске поставке"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "Измени %s"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "Пребаци између Прилагођених и Свих логичких променљивих"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "Допуштање"
--#~ msgid "Filter"
--#~ msgstr "Филтар"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Приморавање"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Искључено"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "Статус"
--#~ msgid "Add File Context"
--#~ msgstr "Додај контекст датотеке"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Мењање врсте полисе ће проузроковати мењање ознака за цео систем датотека "
-+"при следећем подизању система. Мењање ознака прилично дуго траје и то време "
-+"зависи од величине система датотека.  Желите ли да наставите?"
--#~ msgid "Modify File Context"
--#~ msgstr "Измени контекст датотеке"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"Искључивање SELinux-а захтева поновно подизање система.  Није препоручљиво.  "
-+"Ако касније одлучите да укључите SELinux, систем ће морати да промени "
-+"ознаке.  Ако само хоћете да видите да ли SELinux изазива проблеме на вашем "
-+"систему, можете прећи у допуштајући начин рада, који ће само само бележити "
-+"поруке у дневник, али не и спроводити SELinux полису.    Желите ли да "
-+"наставите?"
--#~ msgid "Delete File Context"
--#~ msgstr "Обриши контекст датотеке"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"Укључивање SELinux-а ће проузроковати мењање ознака за цео систем датотека "
-+"при следећем подизању система. Мењање ознака прилично дуго траје и то време "
-+"зависи од величине система датотека.  Желите ли да наставите?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "Пребаци између свих и прилагођених контекста датотека"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+msgstr ""
-+"Ауторска права 2006 Red Hat, Inc.\n"
-+"Ауторска права 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "Додај SELinux корисничко мапирање"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "Додај SELinux мапирање пријаве"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "Додај SELinux мрежне портове"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux врста"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Измени SELinux корисничко мапирање"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+"SELinux MLS/MCS\n"
-+"Ниво"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Обриши SELinux корисничко мапирање"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "Спецификација датотеке"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "Врста датотеке"
--#~ msgid "Add Translation"
--#~ msgstr "Додај превод"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
-+msgstr ""
-+"све датотеке\n"
-+"обичан фајл\n"
-+"директоријум\n"
-+"уређај за карактере\n"
-+"уређај блокова\n"
-+"сокет\n"
-+"симболичка веза\n"
-+"именована цев\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "Додај SELinux корисника"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux администрација"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "Додај"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "_Својства"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "_Обриши"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "Изаберите управљачки објекат"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>Изаберите:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "Подразумевани системски режим приморавања"
--#~ msgid "Modify Translation"
--#~ msgstr "Измени превод"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
-+msgstr ""
-+"Искључено\n"
-+"Допуштање\n"
-+"Приморавање\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "Текући режим приморавања"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "Подразумевана системска врста полисе:"
--#~ msgid "Delete Translation"
--#~ msgstr "Обриши превод"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
-+msgstr ""
-+"Изаберите да ли желите да поново означите целокупан систем датотека при "
-+"следећем подизању система.  Поновно означавање може трајати јако дуго, у "
-+"зависности од величине система.  Ако мењате врсте полиса или идете са "
-+"искљученог на приморавање, поновно означавање је неопходно."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "Поново означи при следећем покретању."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "ознака37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "Врати логичке променљиве на подразумеване системске поставке"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "Пребаци између прилагођених и свих логичких променљивих"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "Покрећем чаробњака за закључавање логичких вредности"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Закључавање..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Филтар"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "ознака50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Додај контекст датотеке"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Измени контекст датотеке"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Обриши контекст датотеке"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Пребаци између свих и прилагођених контекста датотека"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "ознака38"
--#~ msgid "Modify SELinux User"
--#~ msgstr "Изменим SELinux корисника"
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Додај SELinux корисничко мапирање"
--#~ msgid "Add Network Port"
--#~ msgstr "Додај мрежни порт"
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Измени SELinux корисничко мапирање"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Обриши SELinux корисничко мапирање"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "ознака39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Додај корисника"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Измени корисника"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Обриши корисника"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "ознака41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Додај превод"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Измени превод"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Обриши превод"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "ознака40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Додај мрежни порт"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Уреди мрежни порт"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Обриши мрежни порт"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Пребаци између прилагођених и свих портова"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "ознака42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Направи нови модул полисе"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Учитај модул полисе"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Уклони учитавајуће модуле полисе"
--#~ msgid "Edit Network Port"
--#~ msgstr "Уреди мрежни порт"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
 +msgstr ""
-+"Укључи/искључи додатна правила провере, која се обично не бележе у датотеке "
-+"дневника."
--#~ msgid "Delete Network Port"
--#~ msgstr "Обриши мрежни порт"
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "ознака44"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "Пребаци између прилагођених и свих портова"
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Промени режим процеса у дозвољавајући."
--#~ msgid "Generate new policy module"
--#~ msgstr "Направи нови модул полисе"
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Промени режим процеса у приморавајући."
--#~ msgid "Load policy module"
--#~ msgstr "Учитај модул полисе"
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Домен процеса"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "Уклони учитавајуће модуле полисе"
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "ознака59"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr ""
--#~ "Укључи/искључи додатна audit правила, која се обично не бележе у датотеке "
--#~ "дневника."
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux корисник „%s“ је неопходан"
--#~ msgid "Sensitvity Level"
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
- #~ msgstr "Ниво осетљивости"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux корисник „%s“ је неопходан"
--
--#~ msgid "Requires value"
--#~ msgstr "Захтева вредност"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Неисправан префикс %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "Дозволи улози програма/корисника да се веже на било који tcp порт > 1024"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr ""
--#~ "Дозвољава ограниченој улози програма/корисника да се веже на било који "
--#~ "tcp порт"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "Унесите списак tcp портова или опсег портова раздвојене зарезима на које "
--#~ "се веже улога програма/корисника. Пример: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "Друид за прављење SELinux полиса"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "Нерезервисани портови  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr ""
--#~ "Користите ово дугме за проверу ако ваш програм позива bindresvport са 0."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Приморавање\n"
--#~ "Допуштање\n"
--#~ "Искључено\n"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils-2.0.85/po/sv.po
---- nsapolicycoreutils/po/sv.po        2011-02-17 15:11:25.293732093 -0500
-+++ policycoreutils-2.0.85/po/sv.po    2011-02-18 16:03:41.444976263 -0500
-@@ -1,21 +1,41 @@
- # Swedish messages for policycoreutils.
--# Copyright © 2001-2008 Free Software Foundation, Inc.
-+# Copyright © 2001-2010 Free Software Foundation, Inc.
-+# This file is distributed under the same license as the policycoreutils package.
- # Christian Rose <menthos@menthos.com>, 2006.
- # Magnus Larsson <fedoratrans@gmail.com>, 2007, 2008.
-+# Göran Uddeborg <goeran@uddeborg.se>, 2008-2010.
- #
--#
-+# $Revision: 1.35 $
- msgid ""
- msgstr ""
- "Project-Id-Version: policycoreutils\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-01-27 19:18-0500\n"
--"Last-Translator: Christian Rose <menthos@menthos.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-13 20:37+0200\n"
-+"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
- "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
-+"Language: sv\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Konfigurera SELinux i en grafisk miljö"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux-hantering"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Generera SELinux-policymoduler"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Genereringsverktyg för SELinuxpolicy"
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -86,7 +106,7 @@
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr ""
-+msgstr "För att göra denna policy aktiv, kör:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
-@@ -105,25 +125,25 @@
- msgstr "Kunde inte sätta upp en semanage-uppkoppling"
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "Kunde inte sätta MLS-intervall för %s"
-+msgstr "Kunde inte testa status för aktivering av MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "globalt"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Kan inte öppna %s: översättningar stöds inte på maskiner som inte har MLS"
-+"Kan inte öppna %s: översättningar stöds inte på maskiner som inte har MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "Nivå"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "Översättning"
-@@ -149,777 +169,775 @@
- #: ../semanage/seobject.py:290
- msgid "Not yet implemented"
--msgstr ""
-+msgstr "Inte implementerat ännu"
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "En semanagetransaktion pågår redan"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "Kunde inte starta semanage-transaktion"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "Kunde inte starta semanage-transaktion"
-+msgstr "Kunde inte verkställa semanage-transaktion"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Ingen semanagetransaktion pågår"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "Kan inte lista SELinux användare"
-+msgstr "Kan inte lista SELinux-moduler"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "Tillåtande"
-+msgstr "Tillåtande typer"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
-+"Det gick inte att sätta tillåtande domän %s (modulinstallationen "
-+"misslyckades)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
-+"Det gick inte att ta bort tillåtande domän %s (borttagning misslyckades)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Kunde inte skapa en nyckel för %s"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Kunde inte kontrollera om inloggningskartläggning för %s är definierad"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "Inloggningskartläggning för %s är redan definierad"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Linuxanvändaren %s finns inte"
-+msgstr "Linuxgruppen %s finns inte"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linuxanvändaren %s finns inte"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Kunde inte skapa inloggningskartläggning för %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "Kunde inte sätta namn för %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "Kunde inte sätta MLS-intervall för %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Kunde inte sätta SELinux användare för %s"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Kunde inte lägga till inloggningskartläggning för %s"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "lägg till SELinux användarmappning"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Kräver seuser eller serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "Inloggningskartläggning för %s är inte definierad"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Kunde inte fråga seuser efter %s"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Kunde inte ändra inloggnings-kartläggning för %s"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
- "Inloggningskartläggning för %s är definierad i policy, kan inte tas bort"
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Kunde inte ta bort inloggningkartläggning för %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Kunde inte lista inloggningsmappningar"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr "Inloggningsnamn"
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
--msgstr "SELinux-användare"
-+msgstr "SELinux-anv."
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr "MLS/MCS-intervall"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "Kunde inte lägga till filkontext för %s"
-+msgstr "Du måste lägga till åtminstone en roll för %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Kunde inte kontrollera om SELinux användare %s är definierad"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux användare %s är redan definierad"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Kunde inte skapa SELinux användare för %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Kunde inte lägga till roll %s för %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Kunde inte sätta MLS nivå för %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Kunde inte lägga till prefix %s för %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Kunde inte få ut nyckel för %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Kunde inte lägga till SELinux användare %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Kräver prefix, roller, nivå eller område"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Kräver prefix eller roller"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux användare %s är inte definierad"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Kan inte fråga användare för %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Kan inte modifiera SELinux användare %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux använda %s är definierad i policy, kan inte tas bort"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Kan inte ta bort SELinux användare %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Kan inte lista SELinux användare"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Kan inte lista roller för användare %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "Märkning"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "Prefix"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS-nivå"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS-intervall"
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr "SELinux-roller"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Protokoll udp eller tcp krävs"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Port krävs"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Kunde inte skapa en nyckel för %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Typ krävs"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Kunde inte kontrollera om port %s/%s är definierad"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Port %s/%s redan definierad"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Kunde inte skapa port för %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Kunde inte skapa kontext för %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Kunde inte sätta användare i port-kontext för %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Kunde inte sätta roll i port-kontext för %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Kunde inte sätta typ i port-kontext för %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Kunde inte sätta mls-fält i port-kontext för %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Kunde inte sätta port-kontext för %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Kunde inte lägga till port %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Kräver setype eller serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Kräver setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Port %s/%s är inte definierad"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Kunde inte fråga port %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Kunde inte modifiera port %s/%s"
--#: ../semanage/seobject.py:921
--#, fuzzy
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
--msgstr "Kunde inte lista portar"
-+msgstr "Kunde inte lista portarna"
--#: ../semanage/seobject.py:937
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
-+#, python-format
- msgid "Could not delete the port %s"
--msgstr "Kan inte ta bort port %s/%s"
-+msgstr "Kan inte ta bort port %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "Port %s/%s är definierad i policy, kan inte tas bort"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Kan inte ta bort port %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Kunde inte lista portar"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux-porttyp"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "Proto"
- msgstr "Proto"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
- msgid "Port Number"
- msgstr "Portnummer"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "Port krävs"
-+msgstr "Nodadress krävs"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Port krävs"
-+msgstr "Nodnätmask krävs"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "Okänt eller saknat protokoll"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux Type krävs"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Kunde inte skapa nyckel för %s"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "Kunde inte kontrollera om port %s/%s är definierad"
-+msgstr "Kunde inte kontrollera om adressen %s är definierad"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Port %s/%s redan definierad"
-+msgstr "Adressen %s är redan definierad"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "Kunde inte skapa en nyckel för %s"
-+msgstr "Kunde inte skapa en adress för %s"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Kunde inte skapa-kontext för %s"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "Kunde inte sätta namn för %s"
-+msgstr "Kunde inte sätta mask för %s"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "Kunde inte sätta användare i filkontext för %s"
-+msgstr "Kunde inte sätta användare i adresskontext för %s"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "Kunde inte sätta roll i filkontext för %s"
-+msgstr "Kunde inte sätta roll i adresskontext för %s"
  
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ setrans ÏÔËÌÀÞÅÎÁ"
++#: ../gui/semanagePage.py:126
 +#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "Kunde inte sätta typ i filkontext för %s"
-+msgstr "Kunde inte sätta typ i adresskontext för %s"
++msgid "Delete %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ setroubleshoot ÏÔËÌÀÞÅÎÁ"
++#: ../gui/semanagePage.py:134
 +#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "Kunde inte sätta mls-fält i filkontext för %s"
-+msgstr "Kunde inte sätta mls-fält i adresskontext för %s"
++msgid "Add %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ slapd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/semanagePage.py:148
 +#, python-format
- msgid "Could not set addr context for %s"
--msgstr "Kunde inte sätta filkontext för %s"
-+msgstr "Kunde inte sätta adresskontext för %s"
++msgid "Modify %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "Kunde inte lägga till port %s/%s"
-+msgstr "Kunde inte lägga till adress %s"
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ slrnpull ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "Port %s/%s är inte definierad"
-+msgstr "Adressen %s är inte definierad"
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ smbd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "Kunde inte fråga port %s/%s"
-+msgstr "Kunde inte fråga adress %s"
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ snmpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "Kunde inte modifiera port %s/%s"
-+msgstr "Kunde inte modifiera adress %s"
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ snort ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Port %s/%s är definierad i policy, kan inte tas bort"
-+msgstr "Adress %s är definierad i policy, kan inte tas bort"
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ soundd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "Kunde inte ta bort gränssnittet %s"
-+msgstr "Kunde inte ta bort adress %s"
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sound ÏÔËÌÀÞÅÎÁ"
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Kunde inte lista portar"
-+msgstr "Kunde inte lista adresser"
+-#~ msgid "Spam Protection"
+-#~ msgstr "úÁÝÉÔÁ ÏÔ óÐÁÍÁ"
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Kunde inte kontrollera om gränssnittet %s är definierat"
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ spamd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Gränssnittet %s är redan definierat"
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ speedmgmt ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Kunde inte skapa gränssnitt för %s"
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "Kunde inte sätta använda i gränssnitts-kontext för %s"
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ squid ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "Kunde inte sätta roll i gränssnittskontext för %s"
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ssh ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "Kan inte sätta typ i gränssnitts-kontext för %s"
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ stunnel ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "Kan inte sätta mls-fält i gränssnittskontext för %s"
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ swat ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "Kan inte sätta gränssnittskontext för %s"
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ sxid ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "Kan inte sätta meddelande-kontext för %s"
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ syslogd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Kunde inte lägga till gränssnittet %s"
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÓÉÓÔÅÍÙ ÚÁÄÁÎÉÊ cron jobs ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Gränssnittet %s är inte definierat"
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ tcp ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Kunde inte fråga gränssnittet %s"
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ telnet ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Kunde inte ändra gränssnittet %s"
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ tftpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "Gränssnitt %s är definierad i policy, kan inte tas bort"
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ transproxy ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Kunde inte ta bort gränssnittet %s"
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ udev ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "Kunde inte lista gränssnitt"
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uml ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux-gränssnitt"
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ updfstab ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "Kontext"
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uptimed ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "Kunde inte sätta användare i filkontext för %s"
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ uucpd ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "Kunde inte sätta roll i filkontext för %s"
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ vmware ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "Kunde inte sätta mls-fält i filkontext för %s"
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ watchdog ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
  
--#: ../semanage/seobject.py:1436
--#, fuzzy
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr ""
--"Fil\n"
--"Specifikation"
-+msgstr "Ogiltig filspecifikation"
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ winbind ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "Kan inte kontrollera om fil-kontext för %s är definierat"
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xdm ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Filkontext för %s redan definierat"
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xen ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Kunde inte skapa filkontext för %s"
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "Kunde inte sätta typ i filkontext för %s"
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ xfs ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "Kunde inte sätta filkontext för %s"
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ xen ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Kunde inte lägga till filkontext för %s"
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÏÍÏÎÁ ypbind ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Kräver setype, serange eller seuser"
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NIS Password Daemon ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Filkontext för %s är inte definierad"
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ ÄÅÍÏÎÁ ypserv ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Kunde inte fråga filkontext för %s"
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "úÁÝÉÔÁ SELinux ÄÌÑ NIS Transfer Daemon ÏÔËÌÀÞÅÎÁ"
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Kunde inte modifiera filkontext för %s"
+-#~ msgid "Delete %s"
+-#~ msgstr "õÄÁÌÉÔØ %s"
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
  
--#: ../semanage/seobject.py:1560
--#, fuzzy
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "Kunde inte lista filkontext"
-+msgstr "Kunde inte lista filkontexten"
+-#~ msgid "Add %s"
+-#~ msgstr "äÏÂÁÉÔØ %s"
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
-+#, python-format
- msgid "Could not delete the file context %s"
--msgstr "Kunde inte radera filkontext för %s"
-+msgstr "Kunde inte radera filkontexten %s"
+-#~ msgid "Modify %s"
+-#~ msgstr "éÚÍÅÎÉÔØ %s"
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "Filkontext för %s är definierad i policy, kan inte tas bort"
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>÷ÙÂÏÒ:</b>"
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Kunde inte radera filkontext för %s"
+-#~ msgid "Add"
+-#~ msgstr "äÏÂÁ×ÉÔØ"
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Kunde inte lista filkontext"
+-#~ msgid "Add Network Port"
+-#~ msgstr "äÏÂÁ×ÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Kunde inte lista lokalt filkontext"
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "äÏÂÁ×ÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ SELinux"
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux-kontext"
+-#~ msgid "Add SELinux User"
+-#~ msgstr "äÏÂÁ×ÉÔØ ðÏÌØÚÏ×ÁÔÅÌÑ SELinux"
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "typ"
+-#~ msgid "Delete Network Port"
+-#~ msgstr "õÄÁÌÉÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Kunde inte kontrollera om flaggan %s är definierad"
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ SELinux %s"
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Flaggan %s är inte definierad"
+-#~ msgid "Edit Network Port"
+-#~ msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ óÅÔÅ×ÏÊ ðÏÒÔ"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Kunde inte fråga filkontext %s"
+-#~ msgid "File Type"
+-#~ msgstr "ôÉРæÁÊÌÁ"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "Du måste ange ett prefix"
-+msgstr "Du måste ange ett av följande värden: %s"
+-#~ msgid "Filter"
+-#~ msgstr "æÉÌØÔÅÒ"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "Kunde inte ta bort flagga %s"
-+msgstr "Kunde inte sätta aktivt värde på booleanen %s"
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÈÒÁÎÉÌÉÝÅ ÐÏÌÉÔÉËÉ."
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Kunde inte modifiera flagga %s"
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "Felaktigt format %s: Post %s"
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "Flagga %s är definierad i policy, kan inte tas bort"
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ SELinux ÐÏÌØÚÏ×ÁÔÅÌÑ %s"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Kunde inte ta bort flagga %s"
+-#~ msgid "SELinux Administration"
+-#~ msgstr "áÄÍÉÎÉÓÔÒÉÒÏ×ÁÎÉÅ SELinux"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Kunde inte lista flaggor"
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "õÒÏ×ÅÎØ"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
--msgstr ""
-+msgstr "okänt"
+-#~ msgid "SELinux Type"
+-#~ msgstr "ôÉРSELinux"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr ""
-+msgstr "av"
+-#~ msgid "_Delete"
+-#~ msgstr "_õÄÁÌÉÔØ"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
+-#~ msgid "_Properties"
+-#~ msgstr "_ó×ÏÊÓÔ×Ï"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
 -#, fuzzy
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr "Cron"
-+msgstr "på"
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "õÒÏ×ÅÎØ þÕ×ÓÔ×ÉÔÅÌØÎÏÓÔÉ"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux-boolean"
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "ÎÅÏÂÈÏÄÉÍ SELinux ÐÏÌØÚÏ×ÁÔÅÌØ '%s' "
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/si.po b/policycoreutils/po/si.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/si.po
++++ b/policycoreutils/po/si.po
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
--msgstr ""
-+msgstr "Beskrivning"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
- #: ../newrole/newrole.c:198
- #, c-format
-@@ -929,12 +947,12 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
-+msgstr "newrole: hashtabell för konfiguration av tjänstenamn spillde över\n"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
--msgstr ""
-+msgstr "newrole:  %s:  fel på rad %lu.\n"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
  
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -957,7 +975,7 @@
- msgstr "Kan inte rensa miljön\n"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
- msgstr "Fel vid initiering av kapabiliteter, avbryter.\n"
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr ""
  
-@@ -1069,7 +1087,7 @@
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr ""
-+msgstr "Fel: du får inte lov att byta nivåer på en osäker terminal\n"
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
  
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1137,14 +1155,14 @@
- msgstr "kunde inte få tag i old_context.\n"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
  
- #: ../newrole/newrole.c:1140
--#, fuzzy, c-format
-+#, c-format
- msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Fel! Kunde inte få tag i tty-information.\n"
-+msgstr "Varning!  Kunde inte få tag i tty-information.\n"
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
  
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr ""
-+msgstr "fel vid inläsning av PAM-tjänstekonfiguration.\n"
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
  
- #: ../newrole/newrole.c:1196
- #, c-format
-@@ -1186,19 +1204,19 @@
- msgstr "kunde ej exek skal\n"
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
  
- #: ../load_policy/load_policy.c:22
--#, fuzzy, c-format
-+#, c-format
- msgid "usage:  %s [-qi]\n"
--msgstr "användning:  %s [-q]\n"
-+msgstr "användning:  %s [-qi]\n"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr ""
-+msgstr "%s:  Policyn är redan inläst och initial inläsning begärd\n"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
  
- #: ../load_policy/load_policy.c:80
--#, fuzzy, c-format
-+#, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s: Kan inte läsa in policy: %s\n"
-+msgstr "%s:  Kan inte läsa in policy och tvingande läge är begärt:  %s\n"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
  
- #: ../load_policy/load_policy.c:90
- #, c-format
-@@ -1289,1002 +1307,2211 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Flaggfel %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "översättningar stöds inte på maskiner som inte har MLS"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Boolean"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "alla"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Anpassad"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Filmärkning"
--#~ msgid "Boolean"
--#~ msgstr "Boolean"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Fil\n"
-+"Specifikation"
--#, fuzzy
--#~ msgid "all"
--#~ msgstr "Alla"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"Filtyp"
--#~ msgid "File Labeling"
--#~ msgstr "Filmärkning"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Fil\n"
-+"Typ"
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "Fil\n"
--#~ "Specifikation"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Användarmappning"
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "Filkontext"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Inloggnings-\n"
-+"namn"
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "Fil\n"
--#~ "Typ"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"Användare"
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "Användare"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS-intervall"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS-intervall"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Inloggning '%s' krävs"
--#~ msgid "Login '%s' is required"
--#~ msgstr "Inloggning '%s' krävs"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Policymodul"
--#~ msgid "Policy Module"
--#~ msgstr "Policymodul"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Modulnamn"
--#~ msgid "Module Name"
--#~ msgstr "Modulnamn"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Version"
--#~ msgid "Version"
--#~ msgstr "Version"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Avaktivera granskning"
--#~ msgid "Load Policy Module"
--#~ msgstr "Läsa in policymodul"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Aktivera granskning"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Läsa in policymodul"
--#~ msgid "GPL"
--#~ msgstr "GPL"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "translator-credits"
--#~ msgstr "Magnus Larsson"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>Program</b>"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>Användare</b>"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+"Christian Rose\n"
-+"Magnus Larsson\n"
-+"Göran Uddeborg"
--#, fuzzy
--#~ msgid "User Role"
--#~ msgstr "Roll"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Detta verktyg kan användas för att generera policyramverk, till att stänga "
-+"in program eller användare med SELinux.   \n"
-+"\n"
-+"Verktyget genererar:\n"
-+"Fil med typupprätthållande (te)\n"
-+"Fil med gränssnitt (if)\n"
-+"Fil med filkontexter (tf)\n"
-+"Skalskript (sh) - används för att kompilera och installera policyn. "
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Välj typ av program-/användarroller som skall stängas inne"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Program</b>"
--#, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Användare</b>"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Standard initdemon är demoner som startas vid uppstart via initskript.  "
-+"Vanligen krävs ett skript i /etc/rc.d/init.d"
--#, fuzzy
--#~ msgid "Root Admin User Role"
--#~ msgstr "Root-användare"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Standard initdemon"
--#~ msgid "Name"
--#~ msgstr "Namn"
-+#: ../gui/polgen.glade:280
++msgstr ""
++
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS-systemdemonen"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:299
++msgstr ""
++
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "Internettjänstedemoner är demoner som startas av xinetd"
--#~ msgid "Executable"
--#~ msgstr "Körbar"
-+#: ../gui/polgen.glade:301
++msgstr ""
++
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internettjänstedemon (inetd)"
--#~ msgid "Init script"
--#~ msgstr "Init-skript"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "Webbprogram/-skript (CGI) CGI-skript startade av webbservern (apache)"
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP-portar</b>"
-+#: ../gui/polgen.glade:322
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Webbprogram/-skript (CGI)"
--#~ msgid "All"
--#~ msgstr "Alla"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Användarprogram är alla program som du skulle vilja stänga in som startas av "
-+"en användare"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Användarprogram"
--#~ msgid "Select Ports"
--#~ msgstr "Välj portar"
-+#: ../gui/polgen.glade:389
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Inloggningsanvändare</b>"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP-portar</b>"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Modifiera en existerande inloggningsanvändarpost."
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Fel vid skickande av granskningsmeddelande.\n"
++msgstr ""
++
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Existerande användarroller"
--#, fuzzy
--#~ msgid "Boolean Name"
--#~ msgstr "Boolean"
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Denna användare kommer logga in på en maskin endast via en terminal eller "
-+"fjärrinloggning.  Som standard kommer denna användare inte ha setuid, inte "
-+"nätverk, inte su, inte sudo."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Minimal terminalanvändarroll"
--#~ msgid "Role"
--#~ msgstr "Roll"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Denna användare kan logga in på en maskin via X eller terminal.  Som "
-+"standard kommer denna användare inte ha setuid, inte nätverk, inte sudo, "
-+"inte su"
 +
-+#: ../gui/polgen.glade:495
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Minimal X-Windows-användarroll"
--#~ msgid "Application"
--#~ msgstr "Program"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Användare med fullständig nätverksåtkomst, inte setuid-program utan "
-+"övergång, inte sudo, inte su."
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Du måste ange ett namn"
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Användarroll"
--#~ msgid "You must enter a name"
--#~ msgstr "Du måste ange ett namn"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Användare med fullständig nätverksåtkomst, inga setuid-program utan "
-+"övergångar, inte su, kan göra sudo till rootadminstratörsroller"
--#~ msgid "You must enter a executable"
--#~ msgstr "Du måste ange ett körbart program"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Admininstrativ användarroll"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Typ-upprätthållande fil"
-+#: ../gui/polgen.glade:583
++msgstr ""
++
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Rootanvändare</b>"
--#~ msgid "Interface file"
--#~ msgstr "Gränssnittsfil"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Välj root/administratöranvändarroll om denna användare kommer användas för "
-+"att administrera maskinen när han/hon kör som root.  Denna användare kommer "
-+"inte att kunna logga in direkt till systemet."
 +
-+#: ../gui/polgen.glade:647
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Root-administrativ användarroll"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Ange namn på programmet eller användarrollen som skall stängas in"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Namn"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "Ange fullständig sökväg för programmet som skall stängas in."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Ange ett unikt namn på den innestängda program- eller användarrollen."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Körbar"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init-skript"
--#~ msgid "File Contexts file"
--#~ msgstr "Filkontextsfil"
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Ange fullständig sökväg till init-skript som används för att starta det "
-+"innestängda programmet."
--#~ msgid "Protocol"
--#~ msgstr "Protokoll"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Välj användarroller som du vill anpassa"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "Nivå"
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "Välj användarrollerna som kan övergå till detta programs domäner."
--#~ msgid "Port"
--#~ msgstr "Port"
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Välj ytterligare domäner till vilka denna användarroll skall övergå"
--#~ msgid "Group View"
--#~ msgstr "Gruppvy"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
 +msgstr ""
-+"Väl programdomänerna som du till vilka du vill att denna användarroll skall "
-+"kunna övergå."
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux-tjänstskydd"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Välj användarroller som skall övergå till denna domän"
--#~ msgid "Admin"
--#~ msgstr "Admin"
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Välj ytterligare domäner som denna användarroll kommer administrera"
--#~ msgid "Memory Protection"
--#~ msgstr "Minesskydd"
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Välj domänerna som du vill att denna användare skall administrera."
--#~ msgid "Mount"
--#~ msgstr "Montera"
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Välj ytterligare roller för denna användare"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "Ange nätverksportar som program-/användarrollen lyssnar på"
--#~ msgid "Network Configuration"
--#~ msgstr "Nätverkinställningar"
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP-portar</b>"
--#~ msgid "Databases"
--#~ msgstr "Databaser"
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"Tillåter innestängd program-/användarroll att binda till alla udp-portar"
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Alla"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"Tillåt program-/användarroll att anropa binresvport med 0.  Binder till port "
-+"600-1024"
--#~ msgid "Web Applications"
--#~ msgstr "Webbprogram"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "Avaktivera SELinux-skydd för amavis"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
 +msgstr ""
-+"Ange en kommaseparerad lista av udp-portar eller intervall av portar som "
-+"program-/användarrollen binder till.  Exempel: 612, 650-660"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för apmd-demonen"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Oreserverade portar (>1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Välj portar"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "Tillåter program-/användarroll att binda till alla udp-portar > 1024"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP-portar</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Ange nätverksportar som program-/användarrollen ansluter till"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "Avaktivera SELinux-skydd för arpwatch-demonen"
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Ange en kommaseparerad lista av tcp-portar eller intervall av portar som "
-+"program-/användarrollen ansluter till.  Exempel: 612, 650-660"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för auditd-demonen"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Ange en kommaseparerad lista av udp-portar eller intervall av portar som "
-+"program-/användarrollen ansluter till.  Exempel: 612, 650-660"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "Avaktivera SELinux-skydd för automount-demonen"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Välj vanliga programegenskaper"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "Avaktivera SELinux-skydd för avahi"
-+#: ../gui/polgen.glade:2202
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Skriver syslog-meddelanden\t"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "Avaktivera SELinux-skydd för bluetooth-demonen"
-+#: ../gui/polgen.glade:2221
++msgstr ""
++
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Skapa/hantera temporärfiler i /tmp"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "Avaktivera SELinux-skydd för canna-demonen"
-+#: ../gui/polgen.glade:2240
++msgstr ""
++
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Använder Pam för autentisering"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cardmgr-demonen"
-+#: ../gui/polgen.glade:2259
++msgstr ""
++
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Använder nsswitch- eller getpw*-anrop"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Avaktivera SELinux-skydd för Cluster-servern"
-+#: ../gui/polgen.glade:2278
++msgstr ""
++
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Använder dbus"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ciped-demonen"
-+#: ../gui/polgen.glade:2297
++msgstr ""
++
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Skickar granskningsmeddelanden"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för clamd-demonen"
-+#: ../gui/polgen.glade:2316
++msgstr ""
++
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Interagerar med terminalen"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "Avaktivera SELinux-skydd för clamscan"
-+#: ../gui/polgen.glade:2335
++msgstr ""
++
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Skicka epost"
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "Avaktivera SELinux-skydd för clvmd"
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Välj filer/kataloger som programmet hanterar"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "Avaktivera SELinux-skydd för comsat-demonen"
-+#: ../gui/polgen.glade:2607
++msgstr ""
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Lägg till filer/kataloger som program kommer behöva \"write\" till.  Pid-"
-+"filer, loggfiler, /var/lib-filer ..."
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "Avaktivera SELinux-skydd för courier-demonen"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Välj booleaner som programmet använder"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cpucontrol-demonen"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Lägg till/ta bort booleaner som används för detta innestängda program/"
-+"användare"
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cpuspeed-demonen"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Välj katalog att generera policy i"
--#~ msgid "Cron"
--#~ msgstr "Cron"
-+#: ../gui/polgen.glade:2882
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Policykatalog"
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "Avaktivera SELinux-skydd för crond-demonen"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Genererade policyfiler"
--#~ msgid "Printing"
--#~ msgstr "Utskrift"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Detta verktyg kommer generera följande: \n"
-+"Typupprätthållande(te), filkontext(fc), gränssnitt(if), skalskript(sh)\n"
-+"Kör skalskriptet som root för att kompilera/installera och etikettera "
-+"filer/\n"
-+"kataloger.  \n"
-+"Använd semanage eller useradd för att koppla Linuxinloggningsanvändare till\n"
-+"användarroller.\n"
-+"Sätt maskinen i tillåtande läge (setenforce 0). \n"
-+"Logga in som användaren och prova denna användarrroll.\n"
-+"Använd audit2allow -R för att generera ytterligare regler till te-filen.\n"
--#, fuzzy
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "Avaktivera SELinux-skydd för cupsd-demonen"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +msgstr ""
-+"Detta verktyg kommer generera följande: \n"
-+"Typupprätthållande(te), filkontext(fc), gränssnitt(if), skalskript(sh)\n"
-+"\n"
-+"Kör skalskriptet för att kompilera/installera och etikettera om\n"
-+"filer/kataloger.\n"
-+"Sätt maskinen i tillåtande läge (setenforce 0). \n"
-+"Kör/starta om programmet för att generera avc-meddelanden.\n"
-+"Använd audit2allow -R för att generera ytterligare regler till te-filen.\n"
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Dialog för booleantillägg"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Booleans namn"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Roll"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Existerande_användare"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Program"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s måste vara en katalog"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Du måste välja en användare"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Välj exekverbar fil som skall stängas in."
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Välj initskript som skall stängas in."
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Välj fil(er) som instängda program skapar eller skriver"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "Välj katalog(er) som det istängda programmet äger och skriver till"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Välj katalog att generera policyfiler i"
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cupsd-demonen"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Typen %s_t är redan definierade i den nuvarande policyn.\n"
-+"Vill du fortsätta?"
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "Avaktivera SELinux-skydd för cupsd_lpd"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Verifiera namn"
--#~ msgid "CVS"
--#~ msgstr "CVS"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Modul %s.pp är redan inläst i den nuvarande policyn.\n"
-+"Vill du fortsätta?"
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cvs-demonen"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Du måste ange ett namn"
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cyrus-demonen"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Du måste ange ett körbart program"
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dbskkd-demonen"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Konfigurera SELinux"
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dbusd-demonen"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Portar måste vara tal eller intervall av tal från 1 till %d "
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "Avaktivera SELinux-skydd för dccd"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Du måste ange ett namn för din instängda process/användare"
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "Avaktivera SELinux-skydd för dccifd"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "ANVÄNDARtyper är inte tillåta på exekverbara program"
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "Avaktivera SELinux-skydd för dccm"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Endast DEMONprogram kan använda ett initskript"
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ddt-demonen"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog måste vara ett booleskt värde "
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för devfsd-demonen"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "ANVÄNDARtyper får automatiskt en tmp-typ"
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dhcpc-demonen"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+"Du måste ange sökvägen till det exekverbara programmet för din instängda "
-+"process"
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dhcpd-demonen"
-+#: ../gui/polgen.py:848
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Typupprätthållandefil"
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dictd-demonen"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Gränssnittsfil"
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "Avaktivera SELinux-skydd för spel"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Filkontextsfil"
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "Avaktivera SELinux-skydd för webbläsare"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Uppstartsskript"
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Avaktivera SELinux-skydd för Thunderbird"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Nätverkport"
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för distccd-demonen"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux-\n"
-+"porttyp"
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dmesg-demonen"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Protokoll"
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dnsmasq-demonen"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS-\n"
-+"Nivå"
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "Avaktivera SELinux-skydd för dovecot-demonen"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Port"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Portnummer \"%s\" är inte giltigt.  0 < PORTNUMMER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Listvy"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Gruppvy"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -253431,26 +200415,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux-tjänstskydd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Avaktivera SELinuxskydd för acct-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Admin"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Tillåt alla demoner att skriva minnesdumpfiler i /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Tillåt alla demoner att kunna använda oallokerade tty:er"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -253459,166 +200443,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Användarpriviliger"
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för entropyd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot gadmin att köra filer i hemkatalogen eller /tmp"
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "Avaktivera SELinux-skydd för fetchmail"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot guest att köra filer i hemkatalogen eller /tmp"
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för fingerd-demonen"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Minesskydd"
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "Avaktivera SELinux-skydd för freshclam-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Tillåt javas exekverbara stack"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "Avaktivera SELinux-skydd för fsdaemon-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Montera"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "Avaktivera SELinux-skydd för gpm-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Tillåt mount att montera alla filer"
--#~ msgid "NFS"
--#~ msgstr "NFS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Tillåt mount att montera på alla kataloger"
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "Avaktivera SELinux-skydd för gss-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Tillåt mplayers exekverbara stack"
--#, fuzzy
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Avaktivera SELinux-skydd för hal-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
--#~ msgid "Compatibility"
--#~ msgstr "Kompatibilitet"
++msgstr ""
++
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Tillåt ssh att köra ssh-keysign"
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "Avaktivera SELinux-skydd för hostname-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot staff att köra filer i hemkatalogen eller /tmp"
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "Avaktivera SELinux-skydd för hotplug-demonen"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot sysadm att köra filer i hemkatalogen eller /tmp"
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "Avaktivera SELinux-skydd för howl-demonen"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot unconfined att köra filer i hemkatalogen eller /"
-+"tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Nätverkinställningar"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Tillåt oetiketterade paket att åka i nätverket"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot user att köra filer i hemkatalogen eller /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "Tillåt unconfied att dyntrans till unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Databaser"
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "Avaktivera SELinux-skydd för cups hplip-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Tillåt user att ansluta till mysql-uttag"
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "Avaktivera SELinux-skydd för httpd rotatelogs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Tillåt user att ansluta till postgres-uttag"
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD-tjänst"
++msgstr ""
++
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "Avaktivera SELinux-skydd för http suexec"
++msgstr ""
++
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Tillåt klienter att skriva till X:s delade minne"
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "Avaktivera SELinux-skydd för hwclock-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Tillåt SELinuxanvändarkontot xguest att köra filer i hemkatalogen eller /tmp"
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "Avaktivera SELinux-skydd för i18n-demonen"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Tillåt demoner att köra med NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -253626,1362 +200563,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Webbprogram"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Överför SELinuxanvändaren staff till webbläsardomänen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Överför SELinuxanvändaren sysadm till webbläsardomänen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Överför SELinuxanvändaren user till webbläsardomänen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Överför SELinuxanvändaren xguest till webbläsardomänen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Tillåt staff-webbläsare att skriva till hemkatalogen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Avaktivera SELinux-skydd för amanda"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Avaktivera SELinux-skydd för amavis"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Avaktivera SELinux-skydd för apmd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Avaktivera SELinux-skydd för arpwatch-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Avaktivera SELinux-skydd för auditd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Avaktivera SELinux-skydd för automount-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Avaktivera SELinux-skydd för avahi"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Avaktivera SELinux-skydd för bluetooth-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Avaktivera SELinux-skydd för canna-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Avaktivera SELinux-skydd för cardmgr-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Avaktivera SELinux-skydd för Cluster-servern"
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "Avaktivera SELinux-skydd för imazesrv-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Tillåt cdrecord att läsa olika innehåll.  nfs, samba, löstagbara enheter, "
-+"användartemporära och filer med ej betrott innehåll"
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "Avaktivera SELinux-skydd för inetd child-demonerna"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Avaktivera SELinux-skydd för ciped-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Avaktivera SELinux-skydd för clamd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Avaktivera SELinux-skydd för clamscan"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Avaktivera SELinux-skydd för clvmd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Avaktivera SELinux-skydd för comsat-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Avaktivera SELinux-skydd för courier-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Avaktivera SELinux-skydd för cpucontrol-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Avaktivera SELinux-skydd för cpuspeed-demonen"
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för inetd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för innd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Avaktivera SELinux-skydd för crond-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Utskrift"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Avaktivera SELinux-skydd för cupsds bakändeserver"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Avaktivera SELinux-skydd för cupsd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Avaktivera SELinux-skydd för cupsd_lpd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Avaktivera SELinux-skydd för cvs-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Avaktivera SELinux-skydd för cyrus-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Avaktivera SELinux-skydd för dbskkd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Avaktivera SELinux-skydd för dbusd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Avaktivera SELinux-skydd för dccd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Avaktivera SELinux-skydd för dccifd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Avaktivera SELinux-skydd för dccm"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Avaktivera SELinux-skydd för ddt-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Avaktivera SELinux-skydd för devfsd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Avaktivera SELinux-skydd för dhcpc-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Avaktivera SELinux-skydd för dhcpd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Avaktivera SELinux-skydd för dictd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Tillåt sysadm_t att starta demoner direkt"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Avaktivera SELinux-skydd för Evolution"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Spel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Avaktivera SELinux-skydd för spel"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Avaktivera SELinux-skydd för webbläsare"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Avaktivera SELinux-skydd för Thunderbird"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Avaktivera SELinux-skydd för distccd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Avaktivera SELinux-skydd för dmesg-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Avaktivera SELinux-skydd för dnsmasq-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Avaktivera SELinux-skydd för dovecot-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Avaktivera SELinux-skydd för entropyd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Avaktivera SELinux-skydd för fetchmail"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Avaktivera SELinux-skydd för fingerd-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Avaktivera SELinux-skydd för freshclam-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Avaktivera SELinux-skydd för fsdaemon-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Avaktivera SELinux-skydd för gpm-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Avaktivera SELinux-skydd för gss-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Avaktivera SELinux-skydd för Hal-demonen"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Kompatibilitet"
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "Avaktivera SELinux-skydd för iptables-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Granska inte saker som vi vet är trasiga men som inte är säkerhetsrisker"
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ircd-demonen"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Avaktivera SELinux-skydd för hostname-demonen"
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "Avaktivera SELinux-skydd för irqbalance-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Avaktivera SELinux-skydd för hotplug-demonen"
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "Avaktivera SELinux-skydd för iscsi-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Avaktivera SELinux-skydd för howl-demonen"
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för jabberd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Avaktivera SELinux-skydd för cups hplip-demonen"
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
++msgstr ""
++
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Avaktivera SELinux-skydd för httpd rotatelogs"
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "Avaktivera SELinux-skydd för kadmind-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD-tjänst"
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för klogd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Avaktivera SELinux-skydd för http suexec"
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "Avaktivera SELinux-skydd för krb4kdc-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Avaktivera SELinux-skydd för hwclock-demonen"
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "Avaktivera SELinux-skydd för ktalk-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Avaktivera SELinux-skydd för i18n-demonen"
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "Avaktivera SELinux-skydd för kudzu-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Avaktivera SELinux-skydd för imazesrv-demonen"
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "Avaktivera SELinux-skydd för locate-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Avaktivera SELinux-skydd för inetd child-demonerna"
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för lpd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Avaktivera SELinux-skydd för inetd-demonen"
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för lrrd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Avaktivera SELinux-skydd för innd-demonen"
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "Avaktivera SELinux-skydd för lvm-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Avaktivera SELinux-skydd för iptables-demonen"
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "Avaktivera SELinux-skydd för mailman"
++msgstr ""
++
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Avaktivera SELinux-skydd för ircd-demonen"
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "Avaktivera SELinux-skydd för madm-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Avaktivera SELinux-skydd för irqbalance-demonen"
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för monopd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Avaktivera SELinux-skydd för iscsi-demonen"
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "Avaktivera SELinux-skydd för mrtg-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Avaktivera SELinux-skydd för jabberd-demonen"
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "Avaktivera SELinux-skydd för mysqld-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nagios-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Avaktivera SELinux-skydd för kadmind-demonen"
--#~ msgid "Name Service"
--#~ msgstr "Namntjänst"
++msgstr ""
++
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Avaktivera SELinux-skydd för klogd-demonen"
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "Avaktivera SELinux-skydd för named-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Avaktivera SELinux-skydd för krb4kdc-demonen"
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nessusd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Avaktivera SELinux-skydd för ktalk-demonen"
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "Avaktivera SELinux-skydd för NetworkManager"
++msgstr ""
++
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Avaktivera SELinux-skydd för kudzu-demonen"
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nfsd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Avaktivera SELinux-skydd för locate-demonen"
--#~ msgid "Samba"
--#~ msgstr "Samba"
++msgstr ""
++
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Avaktivera SELinux-skydd för lpd-demonen"
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nmbd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Avaktivera SELinux-skydd för lrrd-demonen"
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nrpe-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Avaktivera SELinux-skydd för lvm-demonen"
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nscd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Avaktivera SELinux-skydd för mailman"
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för nsd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Tillåt evolution och thunderbird att läsa användarfiler"
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ntpd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Avaktivera SELinux-skydd för madm-demonen"
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "Avaktivera SELinux-skydd för oddjob"
++msgstr ""
++
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Avaktivera SELinux-skydd för monopd-demonen"
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "Avaktivera SELinux-skydd för oddjob_mkhomedir"
++msgstr ""
++
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Tillåt mozillawebbläsaren att läsa användarfiler"
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "Avaktivera SELinux-skydd för openvpn-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Avaktivera SELinux-skydd för mrtg-demonen"
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "Avaktivera SELinux-skydd för pam-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Avaktivera SELinux-skydd för mysqld-demonen"
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "Avaktivera SELinux-skydd för pegasus"
++msgstr ""
++
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Avaktivera SELinux-skydd för nagios-demonen"
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "Avaktivera SELinux-skydd för perdition-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Namntjänst"
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "Avaktivera SELinux-skydd för portmap-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Avaktivera SELinux-skydd för named-demonen"
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "Avaktivera SELinux-skydd för portslave-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Avaktivera SELinux-skydd för nessusd-demonen"
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "Avaktivera SELinux-skydd för postfix"
++msgstr ""
++
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Avaktivera SELinux-skydd för NetworkManager"
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "Avaktivera SELinux-skydd för postgresql-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Avaktivera SELinux-skydd för nfsd-demonen"
--#~ msgid "pppd"
--#~ msgstr "pppd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "Avaktivera SELinux-skydd för pptp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Avaktivera SELinux-skydd för nmbd-demonen"
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "Avaktivera SELinux-skydd för prelink-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Avaktivera SELinux-skydd för nrpe-demonen"
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "Avaktivera SELinux-skydd för privoxy-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Avaktivera SELinux-skydd för nscd-demonen"
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ptal-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Avaktivera SELinux-skydd för nsd-demonen"
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "Avaktivera SELinux-skydd för pxe-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Avaktivera SELinux-skydd för ntpd-demonen"
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "Avaktivera SELinux-skydd för pyzord"
++msgstr ""
++
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Avaktivera SELinux-skydd för oddjob"
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "Avaktivera SELinux-skydd för quota-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Avaktivera SELinux-skydd för oddjob_mkhomedir"
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för radiusd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Avaktivera SELinux-skydd för openvpn-demonen"
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för radvd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Avaktivera SELinux-skydd för pam-demonen"
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "Avaktivera SELinux-skydd för rdisc"
++msgstr ""
++
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Avaktivera SELinux-skydd för pegasus"
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "Avaktivera SELinux-skydd för readahead"
++msgstr ""
++
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Avaktivera SELinux-skydd för perdition-demonen"
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "Avaktivera SELinux-skydd för restorecond"
++msgstr ""
++
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Avaktivera SELinux-skydd för portmap-demonen"
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "Avaktivera SELinux-skydd för rhgb-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Avaktivera SELinux-skydd för portslave-demonen"
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "Avaktivera SELinux-skydd för ricci"
++msgstr ""
++
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Avaktivera SELinux-skydd för postfix"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "Avaktivera SELinux-skydd för ricci_modclusterd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Avaktivera SELinux-skydd för postgresql-demonen"
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "Avaktivera SELinux-skydd för rlogind-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för rpcd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Tillåt att pppd körs för en vanlig användare"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "Avaktivera SELinux-skydd för rshd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Avaktivera SELinux-skydd för pptp"
--#~ msgid "rsync"
--#~ msgstr "rsync"
++msgstr ""
++
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Avaktivera SELinux-skydd för prelink-demonen"
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "Avaktivera SELinux-skydd för rsync-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Avaktivera SELinux-skydd för privoxy-demonen"
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL autentiseringsserver"
++msgstr ""
++
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Avaktivera SELinux-skydd för ptal-demonen"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för saslauthd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Avaktivera SELinux-skydd för pxe-demonen"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "Avaktivera SELinux-skydd för scannerdaemon-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Avaktivera SELinux-skydd för pyzord"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "Avaktivera SELinux-skydd för sendmail-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Avaktivera SELinux-skydd för quota-demonen"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "Avaktivera SELinux-skydd för setrans"
++msgstr ""
++
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Avaktivera SELinux-skydd för radiusd-demonen"
--#, fuzzy
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "Avaktivera SELinux-skydd för setroublesoot-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Avaktivera SELinux-skydd för radvd-demonen"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för slapd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Avaktivera SELinux-skydd för rdisc"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "Avaktivera SELinux-skydd för slrnpull-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Avaktivera SELinux-skydd för readahead"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för smbd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "Tillåt program att läsa filer på icke-standardplatser (default_t)"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för snmpd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Avaktivera SELinux-skydd för restorecond"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "Avaktivera SELinux-skydd för snort-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Avaktivera SELinux-skydd för rhgb-demonen"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för soundd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Avaktivera SELinux-skydd för ricci"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "Avaktivera SELinux-skydd för sound-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Avaktivera SELinux-skydd för ricci_modclusterd"
--#, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "skräppostskydd"
++msgstr ""
++
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Avaktivera SELinux-skydd för rlogind-demonen"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för spamd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Avaktivera SELinux-skydd för rpcd-demonen"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "Avaktivera SELinux-skydd för speedmgmt-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Avaktivera SELinux-skydd för rshd"
--#~ msgid "Squid"
--#~ msgstr "Squid"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "Avaktivera SELinux-skydd för squid-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Avaktivera SELinux-skydd för rsync-demonen"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ssh-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Tillåt ssh att köra från inetd istället för som en demon"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "Universiell SSL-tunnel"
++msgstr ""
++
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Tillåt Samba att dela nfs-kataloger"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "Avaktivera SELinux-skydd för stunnel-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL autentiseringsserver"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "Avaktivera SELinux-skydd för swat-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Tillåt sasl-autentiseringsservern att läsa /etc/shadow"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "Avaktivera SELinux-skydd för sxid-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Tillåt X-Windowsservern att mappa en minnesregion både som körbar och "
-+"skrivbar"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för syslogd-demonen"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Avaktivera SELinux-skydd för saslauthd-demonen"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "Avaktivera SELinux-skydd för systemets cron-jobb"
++msgstr ""
++
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Avaktivera SELinux-skydd för scannerdaemon-demonen"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "Avaktivera SELinux-skydd för tcp-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Tillåt inte övergångar till sysadm_t, sudo och su påverkas"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "Avaktivera SELinux-skydd för telnet-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Tillåt inte några processer att läsa in kärnmoduler"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för tftpd-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Tillåt inte några processer att ändra kärnans SELinuxpolicy"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "Avaktivera SELinux-skydd för transproxy-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Avaktivera SELinux-skydd för sendmail-demonen"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "Avaktivera SELinux-skydd för udev-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Avaktivera SELinux-skydd för setrans"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "Avaktivera SELinux-skydd för uml-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Avaktivera SELinux-skydd för setroubleshoot-demonen"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "Avaktivera SELinux-skydd för updfstab-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Avaktivera SELinux-skydd för slapd-demonen"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "Avaktivera SELinux-skydd för uptimed-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Avaktivera SELinux-skydd för slrnpull-demonen"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "Avaktivera SELinux-skydd för vmware-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Avaktivera SELinux-skydd för smbd-demonen"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "Avaktivera SELinux-skydd för watchdog-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Avaktivera SELinux-skydd för snmpd-demonen"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "Avaktivera SELinux-skydd för winbind-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Avaktivera SELinux-skydd för snort-demonen"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "Avaktivera SELinux-skydd för xdm-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Avaktivera SELinux-skydd för soundd-demonen"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "Avaktivera SELinux-skydd för xen-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Avaktivera SELinux-skydd för sound-demonen"
--#~ msgid "XEN"
--#~ msgstr "XEN"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Skräppostskydd"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "Avaktivera SELinux-skydd för xfs-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Avaktivera SELinux-skydd för spamd-demonen"
--#, fuzzy
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "Avaktivera SELinux-skydd för xen-constrol"
++msgstr ""
++
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Tillåt spamd att komma åt hemkataloger"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ypbind-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Tillåt Spam Assassin-demonen att komma åt nätverket"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "Avaktivera SELinux-skydd för NIS-lösenord-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Avaktivera SELinux-skydd för speedmgmt-demonen"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ypserv-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "Avaktivera SELinux-skydd för NIS Transfer-demonen"
++msgstr ""
++
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Tillåt squid-demonen att ansluta till nätverket"
--#~ msgid "Delete %s"
--#~ msgstr "Radera %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Avaktivera SELinux-skydd för squid-demonen"
--#~ msgid "Add %s"
--#~ msgstr "Lägg till %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Avaktivera SELinux-skydd för ssh-demonen"
--#~ msgid "Modify %s"
--#~ msgstr "Modifiera %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Tillåt ssh-inloggningar som sysadm_r:sysadm_t"
--#~ msgid "Permissive"
--#~ msgstr "Tillåtande"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Tillåt staff_r-användare att söka i sysadm-hemkatalogen och läsa filer "
-+"(såsom ~/.bashrc)"
--#~ msgid "Enforcing"
--#~ msgstr "Upprätthållande"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Universiell SSL-tunnel"
--#~ msgid "Disabled"
--#~ msgstr "Avaktiverad"
++msgstr ""
++
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Avaktivera SELinux-skydd för stunnel-demonen"
--#~ msgid "Status"
--#~ msgstr "Status"
++msgstr ""
++
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Tillåt stunnel-demonen att köra fristående, utanför xinetd"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Avaktivera SELinux-skydd för swat-demonen"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Avaktivera SELinux-skydd för sxid-demonen"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux-typ"
++msgstr ""
++
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Avaktivera SELinux-skydd för syslogd-demonen"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Avaktivera SELinux-skydd för systemets cron-jobb"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "Nivå"
++msgstr ""
++
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Avaktivera SELinux-skydd för tcp-demonen"
--#~ msgid "File Type"
--#~ msgstr "Filtyp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Avaktivera SELinux-skydd för telnet-demonen"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "alla filer\n"
--#~ "vanliga filer\n"
--#~ "kataloger\n"
--#~ "teckenenhet\n"
--#~ "blockenhet\n"
--#~ "uttag\n"
--#~ "symbolisk länk\n"
--#~ "namngivet rör\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Avaktivera SELinux-skydd för tftpd-demonen"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Avaktivera SELinux-skydd för transproxy-demonen"
--#~ msgid "Add SELinux User"
--#~ msgstr "Lägga till SELinux-användare"
++msgstr ""
++
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Avaktivera SELinux-skydd för udev-demonen"
--#~ msgid "Add"
--#~ msgstr "Lägg till"
++msgstr ""
++
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Avaktivera SELinux-skydd för uml-demonen"
--#~ msgid "_Properties"
--#~ msgstr "_Egenskaper"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Tillåt xinetd att köra obegränsad, inklusive alla tjänster den startar som "
-+"inte har en domänövergång uttryckligen definierad"
--#~ msgid "_Delete"
--#~ msgstr "_Ta bort"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Tillåt rc-skript att köra obegränsade, inklusive alla demnoer som startas av "
-+"ett rc-skript och som inte har en domänövergång uttryckligen definierad"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>Val:</b>"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Tillåt rpm att köra obegränsad"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "Nuvarande upprätthållande-läge"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Tillåt priviligerade verktyg som hotplug och insmod att köra obegränsade"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "Märk om vid nästa omstart."
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Avaktivera SELinux-skydd för updfstab-demonen"
--#~ msgid "label37"
--#~ msgstr "label37"
++msgstr ""
++
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Avaktivera SELinux-skydd för uptimed-demonen"
--#~ msgid "Filter"
--#~ msgstr "Filter"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Tillåt user_r att nå sysadm_r via su, sudo eller userhelper.  Annars kan "
-+"endast staff_r göra det"
--#~ msgid "label50"
--#~ msgstr "label50"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Tillåt användare att köra kommandot mount"
--#~ msgid "label38"
--#~ msgstr "label38"
++msgstr ""
++
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "Tillåt vanliga användare direkt musåtkomst (tillåt endast X-servern)"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Modifiera SELinux användarmappning"
++msgstr ""
++
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Tillåt användare att köra kommandot dmesg"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Ta bort SELinux-användarmappning"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Tillåt användare att styra nätverksgränssnitt (kräver också USERCTL=true)"
--#~ msgid "label39"
--#~ msgstr "label39"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Tillåt vanliga användare att köra ping"
--#~ msgid "Add Translation"
--#~ msgstr "Lägg till översättning"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "Tillåt användare skriva/läsa noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgid "Delete Translation"
--#~ msgstr "Ta bort översättning"
++msgstr ""
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Tillåt användare skriva/läsa usb-enheter"
--#~ msgid "label41"
--#~ msgstr "label41"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Tillåt användare att köra TCP-servrar (binda till portar och acceptera "
-+"anslutningar från samma domän och användare utanför).  Avaktivering av detta "
-+"framtvingar passivt läge i FTP och kan ändra andra protokoll"
--#~ msgid "Modify SELinux User"
--#~ msgstr "Modifiera SELinux-användare"
++
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Tillåt användare att ta status på ttyfiler"
--#~ msgid "label40"
--#~ msgstr "label40"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Avaktivera SELinux-skydd för uucpd-demonen"
--#~ msgid "Add Network Port"
--#~ msgstr "Lägg till nätverkport"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Avaktivera SELinux-skydd för vmware-demonen"
--#~ msgid "label42"
--#~ msgstr "label42"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Avaktivera SELinux-skydd för watchdog-demonen"
--#~ msgid "Load policy module"
--#~ msgstr "Läs in policymodul"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Avaktivera SELinux-skydd för winbind-demonen"
--#~ msgid "label44"
--#~ msgstr "label44"
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Avaktivera SELinux-skydd för xdm-demonen"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux-användare \"%s\" krävs"
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Tillåt xdm-inloggning som sysadm_r:sysadm_t"
--#~ msgid "Requires value"
--#~ msgstr "Kräver värde"
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Avaktivera SELinux-skydd för xen-demonen"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Ogiltigt prefix %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
--#~ msgid "label25"
--#~ msgstr "label25"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Tillåt xen att läsa/skriva fysiska diskenheter"
--#~ msgid "label26"
--#~ msgstr "label26"
++msgstr ""
++
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Avaktivera SELinux-skydd för xfs-demonen"
--#~ msgid "label28"
--#~ msgstr "label28"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Avaktivera SELinux-skydd för xen-styrning"
--#~ msgid "label30"
--#~ msgstr "label30"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Avaktivera SELinux-skydd för ypbind-demonen"
--#~ msgid "label31"
--#~ msgstr "label31"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Avaktivera SELinux-skydd för NIS-lösenord-demonen"
--#~ msgid "label32"
--#~ msgstr "label32"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Avaktivera SELinux-skydd för ypserv-demonen"
--#~ msgid "label33"
--#~ msgstr "label33"
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Avaktivera SELinux-skydd för NIS Transfer-demonen"
--#~ msgid "label34"
--#~ msgstr "label34"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Tillåt SELinux webadm-användare att hantera opriviligerade användares "
-+"hemkataloger"
--#~ msgid "label35"
--#~ msgstr "label35"
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Tillåt SELinux webadm-användare att läsa opriviligierade användares "
-+"hemkataloger"
--#, fuzzy
--#~ msgid "label51"
--#~ msgstr "label25"
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Är du säker på att du vill ta bort %s \"%s\"?"
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "Upprätthållande\n"
--#~ "Tillåtande\n"
--#~ "Avaktiverad\n"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Radera %s"
--#~ msgid "value"
--#~ msgstr "värde"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Lägg till %s"
--#~ msgid "You must be root to run %s."
--#~ msgstr "Du måste vara root för att köra %s."
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Modifiera %s"
--#~ msgid "Other"
--#~ msgstr "Andra"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Tillåtande"
--#~ msgid "Files and Directories"
--#~ msgstr "Filer och katalog"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "Upprätthållande"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Avaktiverad"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 +
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Status"
--#~ msgid "FTP"
--#~ msgstr "FTP"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Att byta policytyp kommer medföra en ometikettering av hela filsystemet vid "
-+"nästa omstart.  Ometikettering tar en lång tid, beroende på storleken på "
-+"filsystemet.  Vill du fortsätta?"
--#~ msgid "Polyinstatiation"
--#~ msgstr "Polyinstansiering"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -254991,81 +201521,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Att byta till att ha SELinux avstängt kräver en omstart.  Det rekommenderas "
-+"inte.  Om du senare bestämmer dig för att slå på SELinux igen kommer "
-+"systemet behöva etikettera om.  Om du bara vill se om SELinux orsakar ett "
-+"problem på ditt system kan du gå till tillåtande läge vilket endast kommer "
-+"logga fel och inte påtvinga SELinux policy.  Tillåtande läge kräver inte en "
-+"omstart.  Vil du fortsätta?"
--#~ msgid "Zebra"
--#~ msgstr "Zebra"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Att byta till att ha SELinux påslaged kommer medföra en ometikettering av "
-+"hela filsystemet vid nästa omstart.  Ometikettering tar en lång tid, "
-+"beroende på storleken på filsystemet.  Vill du fortsätta?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Disable SELinux protection for ftpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för ftpd-demonen"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright © 2006 Red Hat, Inc.\n"
-+"Copyright © 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Disable SELinux protection for httpd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för httpd-demonen"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Lägg till SELinux-inloggningsmappning"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Lägg till SELinux-nätverksportar"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux-typ"
--#~ msgid "Disable SELinux protection for pppd daemon"
--#~ msgstr "Avaktivera SELinux-skydd för pppd-demonen"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Nivå"
--#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
--#~ msgstr "Avaktivera SELinux-skydd för mozilla ppp-demonen"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Filspecifikation"
--#~ msgid "Spam Assassin"
--#~ msgstr "Spam Assassin"
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Filtyp"
--#~ msgid "Disable SELinux protection for zebra daemon"
--#~ msgstr "Avaktivera SELinux-skydd för zebra-demonen"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -255076,2813 +201572,1484 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/sv.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"alla filer\n"
-+"vanliga filer\n"
-+"kataloger\n"
-+"teckenenhet\n"
-+"blockenhet\n"
-+"uttag\n"
-+"symbolisk länk\n"
-+"namngivet rör\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Lägga till SELinux-användare"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux-administration"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Lägg till"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Egenskaper"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "_Ta bort"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Välj hanteringsobjekt"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Val:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Tvingande läge systemstandard"
--#~ msgid "MLS/MCS Level"
--#~ msgstr "MLS/MCS-nivå"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Avslaget\n"
-+"Tillåtande\n"
-+"Tvingande\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Nuvarande upprätthållande-läge"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Policytyp systemstandard: "
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS-nivå"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Väl om du vill etikettera om hela filsystemet vid nästa omstart.  "
-+"Ometikettering kan ta väldigt lång tid, beroende på sotrleken av "
-+"filsystemet.  Om du ändrar policytyper eller går från avslaget till "
-+"tvingande behövs en ometikettering."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Märk om vid nästa omstart."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Återställ booleansk inställning till systemstandard"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Växla mellan anpassad och alla booleaner"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Kör gude för nedlåsningsbooleaner"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "Lås ned..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "Filter"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "Lägg till filkontext"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "Modifiera filkontext"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "Ta bort filkontext"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Växla mellan alla och anpassade filkontext"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "Lägg till SELinux-användarmappning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "Modifiera SELinux användarmappning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "Ta bort SELinux-användarmappning"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "Lägg till användare"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "Modifiera användare"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "Radera användare"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Lägg till översättning"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Modifiera översättning"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Ta bort översättning"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "Lägg till nätverkport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "Redigera nätverksport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "Ta bort nätverksport"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Växla mellan anpassad och alla portar"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "Generera ny policymodul"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "Läs in policymodul"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "Ta bort inläsningsbar policymodul"
--#~ msgid "Requires 2 or more arguments"
--#~ msgstr "Kräver 2 eller fler argument"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"Aktivera/avaktivera ytterligare granskningsregler, som normalt inte "
-+"rapporteras till loggfilerna."
--#~ msgid "%s not defined"
--#~ msgstr "%s är inte definierad"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "%s not valid for %s objects\n"
--#~ msgstr "%s inte giltig för %s objekt\n"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "Ändra processläge till tillåtande."
--#~ msgid "range not supported on Non MLS machines"
--#~ msgstr "intervall stöds inte av icke-MLS maskiner"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "Ändra processläge till tvingande."
--#~ msgid "Invalid value %s"
--#~ msgstr "Ogiltigt värde %s"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "Processdomän"
--#~ msgid ""
--#~ "In order to load this newly created policy package into the kernel,\n"
--#~ "you are required to execute \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
--#~ msgstr ""
--#~ "För att ladda detta nya policy-paket in i kärnan,\n"
--#~ "måste du köra \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "Options Error: %s "
--#~ msgstr "Flaggfel: %s "
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux-användare \"%s\" krävs"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils-2.0.85/po/ta.po
---- nsapolicycoreutils/po/ta.po        2011-02-17 15:11:24.904738516 -0500
-+++ policycoreutils-2.0.85/po/ta.po    2011-02-18 16:03:41.445976270 -0500
-@@ -1,30 +1,44 @@
--# translation of ta.po to Tamil
-+# translation of policycoreutils.HEAD.ta.po to Tamil
++msgstr ""
+diff --git a/policycoreutils/po/sk.po b/policycoreutils/po/sk.po
+index 9ab9c27..006b192 100644
+--- a/policycoreutils/po/sk.po
++++ b/policycoreutils/po/sk.po
+@@ -1,22 +1,22 @@
+ # SOME DESCRIPTIVE TITLE.
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  #
- # Felix <ifelix@redhat.com>, 2006.
- # I felix <ifelix@redhat.com>, 2007.
-+# I. Felix <ifelix@redhat.com>, 2009, 2010.
-+# I Felix <ifelix@redhat.com>, 2010.
++# Translators:
  msgid ""
  msgstr ""
--"Project-Id-Version: ta\n"
-+"Project-Id-Version: policycoreutils.HEAD.ta\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-09-24 17:51+0530\n"
--"Last-Translator: I felix <ifelix@redhat.com>\n"
--"Language-Team: Tamil <fedora-trans-ta@redhat.com>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 13:13+0530\n"
-+"Last-Translator: I Felix <ifelix@redhat.com>\n"
-+"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
-+"Language: ta\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-01-25 03:00+0100\n"
+-"Last-Translator: Mike Karas <zoliqe@gmail.com>\n"
+-"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Slovak (http://www.transifex.net/projects/p/fedora/language/"
++"sk/)\n"
+ "Language: sk\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
--"X-Generator: KBabel 1.11.4\n"
--"Plural-Forms: nplurals=2; plural=(n!=1);\n"
--"\n"
--"\n"
--"\n"
--"\n"
--"\n"
--"\n"
-+"X-Generator: Lokalize 1.0\n"
-+"Plural-Forms: nplurals=2; plural=(n!=1);\\n\n"
- "\n"
+-"X-Poedit-Language: Slovak\n"
+-"X-Poedit-Country: SLOVAKIA\n"
++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinuxஐ ஒரு வரைகலை அமைவில் கட்டமைக்கவும்"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux மேலாண்மை"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux கொள்கை தொகுதியை உருவாக்கவும்"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux பாலிசி உற்பத்தி கருவி"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -95,7 +109,7 @@
+@@ -83,11 +83,8 @@ msgid "Could not set exec context to %s.\n"
+ msgstr "Nemožno nastaviť exec kontext pre %s.\n"
  
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr ""
-+msgstr "இந்த பாலிசி தொகுப்பை செயல்படுத்த,செயலாற்றுகிறது:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
-@@ -114,25 +128,25 @@
- msgstr "semanage இணைப்பினை ஏற்படுத்த முடியவில்லை"
- #: ../semanage/seobject.py:70
+ #: ../audit2allow/audit2allow:230
 -#, fuzzy
- msgid "Could not test MLS enabled status"
- msgstr "MLS வரையறையை %sக்கு அமைக்க முடியவில்லை"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "கொலபல்"
+ msgid "******************** IMPORTANT ***********************\n"
+ msgstr ""
+-"\n"
+-"******************** DÔLEŽITÉ ***********************\n"
  
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+@@ -98,9 +95,8 @@ msgid "global"
  msgstr ""
--"%sஐ திறக்க முடியவில்லை: MLS இல்லா கணினிகளில் மொழிபெயர்ப்பிற்கு துணை புரிவதில்லை"
-+"%sஐ திறக்க முடியவில்லை: MLS -இல்லா கணினிகளில் மொழிபெயர்ப்பிற்கு துணைப்புரிவதில்லை: %s"
  
- #: ../semanage/seobject.py:239
- msgid "Level"
- msgstr "நிலை"
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Nemožno začať semanage prenos"
++msgstr ""
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "மொழிபெயர்ப்பு"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+@@ -116,9 +112,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Nemožno vytvoriť spojenie na semanage"
  
-@@ -158,774 +172,771 @@
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Nemožno nastavit MLS rozsah pre %s"
++msgstr ""
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
--msgstr ""
-+msgstr "அமுலுக்கு கொண்டு வரப்படவில்லை"
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
--msgstr ""
-+msgstr "Semanage பரிமாற்றம் ஏற்கனவே செயலில் உள்ளது"
+@@ -133,28 +128,26 @@ msgid "Could not start semanage transaction"
+ msgstr "Nemožno začať semanage prenos"
  
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage பரிமாற்றத்தை ஆரம்பிக்க முடியவில்லை"
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "semanage பரிமாற்றத்தை ஆரம்பிக்க முடியவில்லை"
-+msgstr "semanage பரிமாற்றத்தை ஒத்துக் கொள்ள முடியவில்லை"
+-msgstr "Nemožno začať semanage prenos"
++msgstr ""
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
--msgstr ""
-+msgstr "Semanage பரிமாற்றம் இல்லை"
+ msgstr ""
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "SELinux பயனர்களை பட்டியலிட முடியவில்லை"
-+msgstr "SELinux தொகுதிகளை பட்டியலிட முடியவில்லை"
+-msgstr "Nemožno listovať SELinux užívateľmi"
++msgstr ""
  
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "ஏற்கத்தக்கது"
-+msgstr "ஏற்கத்தக்க வகைகள்"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "தாராளமான செயற்களம் %s ஐ அமைக்க முடியவில்லை(முறைமையை நிறுவ முடியவில்லை)"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "ஏற்றத்தக்க செயற்கள %sஐ நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
+@@ -164,9 +157,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%sக்கு அனுமதி ஒப்பீடு குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Nemožno pridať rolu %s pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "அனுமதி ஒப்பீடு %sக்கு ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
+@@ -213,9 +206,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Nemožno skontrolovať či mapovanie loginu pre %s je definované"
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:492
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
  msgid "Linux Group %s does not exist"
--msgstr "லினக்ஸ் பயனர் %s இல்லை"
-+msgstr "லினக்ஸ் குழு %s ஏற்கனவே இல்லை"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "லினக்ஸ் பயனர் %s இல்லை"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s க்கு அனுமதி ஒப்பீடு உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%sக்கு பெயர் அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "MLS வரையறையை %sக்கு அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "SELinux பயனரை %sக்கு அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%sக்கு அனுமதி ஒப்பீடு சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux பயனர் ஒப்பீட்டை சேர்த்தல்"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser அல்லது serange தேவைப்படுகிறது"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%sக்கு அனுமதி ஒப்பீடு குறிப்பிடப்படவில்லை"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "seuser %sக்கு வினா எழுப்ப முடியவில்லை"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%sக்கு அனுமதி ஒப்பீடுகளை மாற்ற முடியவில்லை"
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "அனுமதி ஒப்பீடு %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
+-msgstr "Linuxový užívateľ %s neexistuje"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%sக்கு அனுமதி ஒப்பீடுகளை அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "அனுமதி ஒப்பீடுகளை பட்டியலிட முடியவில்லை"
+@@ -282,16 +275,20 @@ msgid "Could not list login mappings"
+ msgstr "Nemožno listovať mapovaniami loginov"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "புகுபதிவு பெயர்"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux பயனர்"
+-msgstr "SELinux typ je požadovaný"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS வரையறை"
+ msgstr ""
  
--#: ../semanage/seobject.py:594
+@@ -309,9 +306,9 @@ msgid "Could not query user for %s"
+ msgstr "Nemožno overiť užívateľa pre %s"
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
--msgstr "%sக்கு கோப்பு சூழலை சேர்க்க முடியவில்லை"
-+msgstr "%sக்காக ஒரு சூழலையாவது சேர்க்கவும்"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux பயனர் %s குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux பயனர் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr " SELinux பயனரை %sக்கு உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "%s க்கு %s பாத்திரத்தை சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%sக்கு MLS நிலையை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "%s க்கு %sல் முன்னொட்டினை சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%sக்கு விசையை பிரிக்க முடியவில்லை"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux பயனர் %sஐ சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "முன்னொட்டு, பாத்திரங்கள், நிலை அல்லது வரையறை தேவைப்படுகிறது"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "முன்னொட்டு அல்லது பாத்திரம் தேவைப்படுகிறது"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux பயனர் %s குறிப்பிடப்படவில்லை"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%sக்கு பயனரை வினா எழுப்ப முடியவில்லை"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux பயனர் %sஐ மாற்ற முடியவில்லை"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux பயனர் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux பயனர் %sஐ அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux பயனர்களை பட்டியலிட முடியவில்லை"
+-msgstr "Nemožno pridať kontext súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "பயனர் %sக்கு பாத்திரங்களை பட்டியலிட முடியவில்லை"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "பெயரிடல்"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "முன்னொட்டு"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS நிலை"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS வரையறை"
+@@ -401,6 +398,7 @@ msgid "MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux பங்குகள்"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "நெறிமுறை udp அல்லது tcp தேவைப்படுகிறது"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "துறை தேவைப்படுகிறது"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%sக்கு விசையை உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "வகை தேவைப்படுகிறது"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "துறை %s/%s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "துறை %s/%s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s க்கு துறையை உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%sக்கு சூழலை உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s க்கு துறை சூழலில் பயனரை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s க்கு துறை சூழலில் பாத்திரங்களை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s க்கு துறை சூழலில் வகையை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s க்கு துறை சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s க்கு துறை சூழலை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "துறை %s/%sயை சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype அல்லது serange தேவைப்படுகிறது"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype தேவைப்படுகிறது"
+ msgstr ""
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "துறை %s/%s குறிப்பிடப்படவில்லை"
+@@ -413,9 +411,8 @@ msgid "Port is required"
+ msgstr "Port je požadovaný"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "துறை %s/%sஐ வினா எழுப்ப முடியாது"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Neplatný prefix %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "துறை %s/%sஐ மாற்ற முடியவில்லை"
+@@ -502,14 +499,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Nemožno zmeniť port %s/%s"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
- msgstr "துறைகளை பட்டியலிட முடியவில்லை"
+-msgstr "Nemožno listovať portami"
++msgstr ""
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
--msgstr "துறைகளை அழிக்க முடியவில்லை %s/%s"
-+msgstr "%s துறையை அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "துறை %s/%s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
+-msgstr "Nemožno zmazať port %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "துறைகளை அழிக்க முடியவில்லை %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "துறைகளை பட்டியலிட முடியவில்லை"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux துறை வகை"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -533,14 +529,13 @@ msgstr ""
  msgid "Proto"
- msgstr "Proto"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "துறை எண்"
+ msgstr ""
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
--msgstr "துறை தேவைப்படுகிறது"
-+msgstr "முனை முகவரி தேவைப்படுகிறது"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "துறை தேவைப்படுகிறது"
-+msgstr "முனை நெட்மாஸ்க் தேவைப்படுகிறது"
+-msgstr "Port je požadovaný"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "தெரியாத அல்லது விடுபட்ட பிரோக்டகால்"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux வகை தேவைப்படுகிறது"
+@@ -561,14 +556,14 @@ msgstr "Nemožno vytvoriť kľúč pre %s"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "துறை %s/%s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
-+msgstr "addr %s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "துறை %s/%s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
-+msgstr "Addr %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
+-msgstr "Nemožno skontrolovať či port %s/%s je definovaný"
++msgstr ""
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
--msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
-+msgstr "%sகாக addr உருவாக்க முடியவில்லை"
+-msgstr "Nemožno vytvoriť kľúč pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s க்கு சூழலை உருவாக்க முடியவில்லை"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -577,74 +572,72 @@ msgid "Could not create context for %s"
+ msgstr "Nemožno vytvoriť kontext pre %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
--msgstr "%sக்கு பெயர் அமைக்க முடியவில்லை"
-+msgstr "%sகாக மாஸ்க்கை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastaviť meno pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "%s க்கு கோப்பு சூழலில் பயனரை அமைக்க முடியவில்லை"
-+msgstr "%s க்கு addr சூழலில் பயனரை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastaviť užívateľa v kontexte súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "%s க்கு கோப்பு சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
-+msgstr "%s க்கு addr சூழலில் சுழலை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastaviť rolu v kontexte súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "%s க்கு கோப்பு சூழலில் வகையை அமைக்க முடியவில்லை"
-+msgstr "%s க்கு addr சூழலில் வகையை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastaviť typ v kontexte súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "%sக்கு கோப்பு சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
-+msgstr "%sக்கு addr சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastaviť mls pole v kontexte súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
--msgstr "%s க்கு கோப்பு சூழலை அமைக்க முடியவில்லை"
-+msgstr "%s க்கு addr சூழலை அமைக்க முடியவில்லை"
+-msgstr "Nemožno nastavit kontext súboru pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
--msgstr "துறை %s/%sயை சேர்க்க முடியவில்லை"
-+msgstr "addr %sயை சேர்க்க முடியவில்லை"
+-msgstr "Nemožno pridať port %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "துறை %s/%s குறிப்பிடப்படவில்லை"
-+msgstr "addr %s குறிப்பிடப்படவில்லை"
+-msgstr "Por %s/%s nie je definovaný"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "துறை %s/%sஐ வினா எழுப்ப முடியாது"
-+msgstr "addr %sஐ வினா எழுப்ப முடியாது"
+-msgstr "Nemožno overiť port %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "துறை %s/%sஐ மாற்ற முடியவில்லை"
-+msgstr "addr %sஐ மாற்ற முடியவில்லை"
+-msgstr "Nemožno zmeniť port %s/%s"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "துறை %s/%s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
-+msgstr "addr %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
+-msgstr "Port %s/%s je definovaný v pravidlách, nemôže byť zmazaný"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
-+msgstr "addr %s ஐ அழிக்க முடியவில்லை"
+-msgstr "Nemožno zmazať rozhranie %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "துறைகளை பட்டியலிட முடியவில்லை"
-+msgstr "addrs பட்டியலிட முடியவில்லை"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "இடைமுகம் %s குறிப்பிடப்பட்டால் சோதிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "இடைமுகம் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%sக்கு இடைமுகம் உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s க்கு இடைமுக சூழலில் பயனரை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s க்கு இடைமுக சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s க்கு இடைமுக சூழலில் வகையை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s க்கு இடைமுக சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s க்கு இடைமுக சூழலை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s க்கு செய்தி சூழலை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "இடைமுகத்தை சேர்க்க முடியவில்லை %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "இடைமுகம் %s குறிப்பிடப்படவில்லை"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "இடைமுகம் %sஐ வினா எழுப்ப முடியவில்லை"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "இடைமுகம் %sஐ மாற்ற முடியவில்லை"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "இடைமுகம் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியாது"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "இடைமுகங்களை பட்டியலிட முடியவில்லை"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux முகப்பு"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "சூழல்"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s க்கு கோப்பு சூழலில் பயனரை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s க்கு கோப்பு சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%sக்கு கோப்பு சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
+ msgid "Could not deleteall node mappings"
+-msgstr "Nemožno zmazať mapovanie loginu pre %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
+ #: ../semanage/seobject.py:1394
 -#, fuzzy
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
--msgstr "கோப்பு குறிப்பிடல்"
-+msgstr "தவறான கோப்பு குறிப்பிடல்"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s க்கு கோப்பு சூழல் குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%sலின் கோப்பு சூழல் ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s க்கு கோப்பு சூழலை உருவாக்க முடியவில்லை"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s க்கு கோப்பு சூழலில் வகையை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s க்கு கோப்பு சூழலை அமைக்க முடியவில்லை"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%sக்கு கோப்பு சூழலை சேர்க்க முடியவில்லை"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange அல்லது seuser தேவைப்படுகிறது"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%sக்கு கோப்பு சூழல் குறிப்பிடப்படவில்லை"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%sக்கு கோப்பு சூழலை வினா எழுப்ப முடியாது"
+ msgid "Could not list addrs"
+-msgstr "Nemožno listovať portami"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "%sக்கு கோப்பு சூழலை மாற்ற முடியாது"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -718,9 +711,8 @@ msgid "Could not delete interface %s"
+ msgstr "Nemožno zmazať rozhranie %s"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1574
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "கோப்பு சூழல் பட்டியலிட முடியவில்லை."
+ msgid "Could not delete all interface  mappings"
+-msgstr "Nemožno zmazať rozhranie %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -735,9 +727,9 @@ msgid "Context"
+ msgstr ""
+ #: ../semanage/seobject.py:1663
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
- msgid "Could not delete the file context %s"
- msgstr "%sக்கு கோப்பு சூழலை அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "கோப்பு சூழல் %sக்கு பாலிசியில் குறிக்கப்பட்டுள்ளது, அழிக்க முடியாது"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%sக்கு கோப்பு சூழலை அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "கோப்பு சூழல் பட்டியலிட முடியவில்லை."
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "உள்ளமை கோப்பு சூழல்களை பட்டியலிட முடியவில்லை."
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "வகை"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "பூலியன் %s குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "பூலியன் %s குறிப்பிடப்படவில்லை"
+ msgid "Equivalence class for %s already exists"
+-msgstr "Kontext súboru pre %s je už definovaný"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not query file context %s"
- msgstr "கோப்பு சூழல் %sஐ வினா எழுப்ப முடியாது"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
-+msgstr "பின்வரும் மதிப்புகளில் ஏதேனும் ஒன்றை நீங்கள் குறிப்பிட்டாக வேண்டும்: %s"
+@@ -745,9 +737,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:1678
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "பூலியன் %sஐ அழிக்க முடியவில்லை"
-+msgstr "பூலியன் %sனுடைய மதிப்பினை செயலில் அமைக்க இயலாது"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "பூலியன் %sஐ மாற்ற முடியவில்லை"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "%s தவறான முறை: %sஐ பதிவு செய்யவும்"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "பூலியன் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியாது"
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linuxový užívateľ %s neexistuje"
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "பூலியன் %sஐ அழிக்க முடியவில்லை"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "பூலியன்களை பட்டியலிட முடியவில்லை"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
--msgstr ""
-+msgstr "தெரியாத"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
--msgstr ""
-+msgstr "ஆஃப்"
--#: ../semanage/seobject.py:1780
--#, fuzzy
-+#: ../semanage/seobject.py:1776
- msgid "on"
--msgstr "Cron"
-+msgstr "ஆன்"
+@@ -826,14 +818,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Nemožno zmeniť kontext súboru pre %s"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux பூலியன்"
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
+ msgid "Could not list the file contexts"
+-msgstr "Nemožno listovať kontextami súboru"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
--msgstr ""
-+msgstr "விளக்கம்"
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete the file context %s"
+-msgstr "Nemožno zmazať kontext súboru pre %s"
++msgstr ""
  
- #: ../newrole/newrole.c:198
- #, c-format
-@@ -935,12 +946,12 @@
- #: ../newrole/newrole.c:287
- #, c-format
- msgid "newrole: service name configuration hashtable overflow\n"
--msgstr ""
-+msgstr "புதிய பங்கு: சேவை பெயர் கட்டமைப்பு வழிகிறது\n"
+ #: ../semanage/seobject.py:1878
+ #, python-format
+@@ -890,14 +881,14 @@ msgid "Could not query file context %s"
+ msgstr "Nemožno overiť kontext súboru %s"
  
- #: ../newrole/newrole.c:297
- #, c-format
- msgid "newrole:  %s:  error on line %lu.\n"
--msgstr ""
-+msgstr "புதிய பங்கு:  %s:  கோட்டில் பிழை %lu.\n"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "Musíte zadať prefix"
++msgstr ""
  
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -963,9 +974,9 @@
- msgstr "சூழலை துடைக்க முடியவில்லை\n"
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "Nemožno zmazať logickú hodnotu %s"
++msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "capabilityகளை துவக்குவதில் பிழை, வெளியேறுகிறது.\n"
-+msgstr "தகுதியனவைகளை துவக்குவதில் பிழை, வெளியேறுகிறது.\n"
+ #: ../semanage/seobject.py:2007
+ #, python-format
+@@ -947,7 +938,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1075,7 +1086,7 @@
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr ""
-+msgstr "பிழை: ஒரு பாதுகாப்பில்லாத முனைய மட்டங்களை மாற்ற உங்களுக்கு அனுமதி இல்லை \n"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
  
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1143,14 +1154,14 @@
- msgstr "பழைய சூழலை எடுக்க முடியவில்லை.\n"
+@@ -1137,9 +1129,9 @@ msgid "failed to get old_context.\n"
+ msgstr "zlyhanie získania old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "பிழை!  tty விவரத்தினை எடுக்க முடியவில்லை.\n"
-+msgstr "எச்சரிக்கை!  tty தகவலை சரியாக்க இயலவில்லை.\n"
- #: ../newrole/newrole.c:1161
- #, c-format
- msgid "error on reading PAM service configuration.\n"
--msgstr ""
-+msgstr "PAM சேவை கட்டமைப்பினை வாசிப்பதில் பிழை.\n"
+-msgstr "Chyba: Nemožno získať informáciu o tty.\n"
++msgstr ""
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1098
  #, c-format
-@@ -1192,19 +1203,20 @@
- msgstr "ஷெல்லை செயல்படுத்த முடியவில்லை\n"
+@@ -1186,9 +1178,9 @@ msgid "failed to exec shell\n"
+ msgstr "zlyhanie spustenia shell-u\n"
  
  #: ../load_policy/load_policy.c:22
 -#, fuzzy, c-format
 +#, c-format
  msgid "usage:  %s [-qi]\n"
- msgstr "பயன்பாடு:  %s [-q]\n"
+-msgstr "použitie:  %s [-bq]\n"
++msgstr ""
  
  #: ../load_policy/load_policy.c:71
  #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr ""
-+msgstr "%s:  பாலிசி ஏற்கனவே ஏற்றப்பட்டுவிட்டது மற்றும் முதல் ஏற்றம் தேவைப்படுகிறது \n"
+@@ -1196,9 +1188,9 @@ msgid "%s:  Policy is already loaded and initial load requested\n"
+ msgstr ""
  
  #: ../load_policy/load_policy.c:80
 -#, fuzzy, c-format
 +#, c-format
  msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:  பாலிசியை ஏற்ற முடியவில்லை:  %s\n"
+-msgstr "%s:  Nemožno načítať politiku:  %s\n"
 +msgstr ""
-+"%s:  பாலிசியை ஏற்ற முடியவில்லை மற்றும் வலியுறுத்துகிற முறைமையை கோரப்படுகிறது: %s\n"
  
  #: ../load_policy/load_policy.c:90
  #, c-format
-@@ -1295,1103 +1307,2255 @@
+@@ -1284,180 +1276,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "விருப்பங்கள் பிழை %s "
+ msgstr "Chyba volieb %s"
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "non-MLS கணினிகளில் மொழிபெயர்க்க முடியாது"
--
--#~ msgid "Boolean"
--#~ msgstr "பூலியன்"
--
--#, fuzzy
--#~ msgid "all"
--#~ msgstr "அனைத்து"
--
--#~ msgid "File Labeling"
--#~ msgstr "கோப்பு பெயரிடல்"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "கோப்பு\n"
--#~ "குறிப்பிடல்"
--
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "கோப்பு சூழல்"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "கோப்பு\n"
--#~ "வகை"
--
--#~ msgid "User Mapping"
--#~ msgstr "பயனர் ஒப்பிடல்"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "புகுபதிவு\n"
--#~ "பெயர்"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "பயனர்"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS வரையறை"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "புகுபதிவு '%s' தேவைப்படுகிறது"
--
--#~ msgid "Policy Module"
--#~ msgstr "கொள்கை தொகுதி"
--
--#~ msgid "Module Name"
--#~ msgstr "தொகுதி பெயர்"
--
--#~ msgid "Version"
--#~ msgstr "பதிப்பு"
--
--#~ msgid "Disable Audit"
--#~ msgstr "Audit செயல்நீக்கவும்"
--
--#~ msgid "Enable Audit"
--#~ msgstr "Auditஐ செயல்படுத்தவும்"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "கொள்கை தொகுதியை ஏற்றவும்"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "translator-credits"
--#~ msgstr "I. Felix <ifelix25@gmail.com>"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>பயன்பாடுகள்</b>"
--
--#~ msgid "User Application"
--#~ msgstr "பயனர் பயன்பாடு"
--
--#, fuzzy
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>பயனர்கள்</b>"
--
--#, fuzzy
--#~ msgid "User Role"
--#~ msgstr "பங்கு"
--
--#, fuzzy
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>பயனர்கள்</b>"
--
--#, fuzzy
--#~ msgid "Root Admin User Role"
--#~ msgstr "ரூட் பயனர்"
--
--#~ msgid "Name"
--#~ msgstr "பெயர்"
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "Executable"
--#~ msgstr "இயங்கக்கூடியது"
--
--#~ msgid "Init script"
--#~ msgstr "Init script"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP துறைகள்</b>"
--
--#~ msgid "All"
--#~ msgstr "அனைத்து"
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "பதிவு செய்யப்பட்ட துறைகள் (>1024)"
--
--#~ msgid "Select Ports"
--#~ msgstr "துறைகளை தேர்ந்தெடுக்கவும்"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP துறைகள்</b>"
--
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "தணிக்கை செய்தியை அனுப்புவதில் பிழை.\n"
--
--#~ msgid "Policy Directory"
--#~ msgstr "கொள்கை அடைவு"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "உருவாக்கப்பட்ட கொள்கை கோப்புகள்"
--
--#, fuzzy
--#~ msgid "Boolean Name"
--#~ msgstr "பூலியன்"
--
--#~ msgid "Role"
--#~ msgstr "பங்கு"
--
--#~ msgid "Application"
--#~ msgstr "பயன்பாடு"
--
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
--
--#~ msgid "You must enter a name"
--#~ msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "நீங்கள் ஒரு இயக்கத்தக்கத்தை உள்ளிட வேண்டும்"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinuxஐ கட்டமைக்கவும்"
--
 -#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "வகை enforcment கோப்பு"
--
--#~ msgid "Interface file"
--#~ msgstr "முகப்பு கோப்பு"
--
--#~ msgid "File Contexts file"
--#~ msgstr "கோப்பு சூழல்கள் கோப்பு"
--
--#~ msgid "Setup Script"
--#~ msgstr "அமைவு உரை"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux துறை\n"
--#~ "வகை"
--
--#~ msgid "Protocol"
--#~ msgstr "நெறிமுறை"
--
 -#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
 -#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "நிலை"
--
--#~ msgid "Port"
--#~ msgstr "துறை"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "துறை எண் \"%s\" தவறானது.  0 < PORT_NUMBER < 65536 "
--
--#~ msgid "Group View"
--#~ msgstr "குழு பார்வை"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux சேவை பாதுகாப்பு"
--
--#~ msgid "Admin"
--#~ msgstr "நிர்வாகம்"
--
--#~ msgid "User Privs"
--#~ msgstr "பயனர் Privs"
--
--#~ msgid "Memory Protection"
--#~ msgstr "நினைவக பாதுகாப்பு"
--
--#~ msgid "Mount"
--#~ msgstr "ஏற்றம்"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Network Configuration"
--#~ msgstr "பிணைய கட்டமைப்பு"
--
--#~ msgid "Databases"
--#~ msgstr "தரவுத்தளங்கள்"
--
--#~ msgid "XServer"
--#~ msgstr "XServer"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Web Applications"
--#~ msgstr "இணைய பயன்பாடுகள்"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "amandaக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ "Nepodarilo sa otvoriť %s: preklady nie sú podporované na nie-MLS strojoch"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "பூலியன்"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "அனைத்தும்"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "திருத்தியமைக்கப்பட்ட"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "கோப்பு பெயரிடல்"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "amavisக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "avahiக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "bluetooth daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "Cluster சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Cron"
--#~ msgstr "Cron"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Printing"
--#~ msgstr "அச்சடித்தல்"
--
--#, fuzzy
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "cupsd backend சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "cupsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "cupsd_lpdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "cvs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "cyrus daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "dbskkd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "dbusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "dccdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "dccifdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "dccmக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "ddt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "devfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "dhcpc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "dhcpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "dictd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "Evolutionக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Games"
--#~ msgstr "விளையாட்டுகள்"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "விளையாட்டுகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "இணைய உலாவிகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "Thunderbirdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "fetchmailக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#, fuzzy
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "hal daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Compatibility"
--#~ msgstr "உகந்தவை"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "hostname daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD சேவை"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexecக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "inetd child daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"கோப்பு\n"
-+"குறிப்பிடல்"
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"கோப்பு வகை"
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"கோப்பு\n"
-+"வகை"
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "பயனர் ஒப்பிடல்"
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"புகுபதிவு\n"
-+"பெயர்"
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"பயனர்"
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailmanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS வரையறை"
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "புகுபதிவு '%s' தேவைப்படுகிறது"
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "கொள்கை தொகுதி"
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "தொகுதி பெயர்"
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "பதிப்பு"
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Audit செயல்நீக்கவும்"
--#~ msgid "Name Service"
--#~ msgstr "பெயர் சேவை"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Auditஐ செயல்படுத்தவும்"
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "named daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "கொள்கை தொகுதியை ஏற்றவும்"
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "NetworkManagerக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Samba"
--#~ msgstr "சம்பா"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "I. Felix <ifelix@redhat.com>"
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "பயன்பாட்டின் வகையினை தேர்ந்தெடுக்கவும்/ பயனர் பங்கு எல்லைக்குள் இருக்க வேண்டும்"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>பயன்பாடுகள்</b>"
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"நிலையான Init டிமானானது டீமான்களை பூட் வழியாக init ஸ்க்ரிப்ட்டுகளாக துவக்குகிறது.  "
-+"பொதுவாக ஒரு ஒரு/etc/rc.d/init.d இல் ஸ்க்ரிப்ட் தேவைப்படுகிறது"
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "நிலையான Init டீமன்"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS System Daemon"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "இணையத்தள டீமான்களானது  xinetd டீமானின் படி துவக்குகிறது"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Internet Services Daemon (inetd)"
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+"தள பயன்பாடுகள்/ஸ்கிரிப்ட் (CGI) CGI தள சேவையகத்தால் ஸ்கிரிப்ட் துவக்கப்படுகிறத் (apache)"
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:322
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "தள பயன்பாடுகள்/ஸ்கிரிப்ட் (CGI)"
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjobக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"ஒரு பயனரால் நீங்கள் வரையறுக்கப்பட்ட விரும்புவதை எதாவது பயனர் பயன்பாட்டால் துவக்குகிறது"
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedirக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "பயனர் பயன்பாடு"
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:389
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>புகுப்பதிவு பயனர்கள்</b>"
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "ஓரு உள்ளிருக்கும் பயனர் உட்புகு பதிவை மாற்றியமை."
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasusக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "உள்ளிருக்கும் பயனர்களின் பங்குகள்"
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"இந்த பயனர் ஒரு கணினிக்குள் உட்புக ஒரு முனையம் அல்லது தொலை உள்நுழை வழியாக மட்டுமே "
-+"நுழைய முடியும்.  முன்னிருப்பின்படி இந்த பயனர் setuid, networking, su, sudo "
-+"போன்றவற்றை பெற்றிருக்கவில்லை."
 +
-+#: ../gui/polgen.glade:474
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "குறைந்த முனைய பயனர் பங்கு"
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap daemon க்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"இந்த பயனி ஒரு கணினியில் X அல்லது முனையம் வழியாக உட்புகு. இந்த பயனருக்கு முன்னிருப்பின் "
-+"படி setuid, பிணையம், sudo, su போன்றவை இல்லை"
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "குறைந்தபட்ச X சாளரத்தில் பயனர் பங்கு"
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfixக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"பயனர் முழு பிணையத்துடன், மற்றொன்று மாறக்கூடிய setuid பயன்பாடுகள், sudo, su "
-+"பெற்றிருக்கவில்லை."
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr " பயனர் பங்கு"
--#~ msgid "pppd"
--#~ msgstr "pppd"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"பயனர் முழு பிணையத்துடன், மற்றொன்று மாறக்கூடிய setuid பயன்பாடுகள், su,can sudo க்கு "
-+"Root Administration Roles  பெற்றிருக்கவில்லை."
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptpக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Admin பயனர் பங்கு"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>ரூட் பயனர்கள்</b>"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:645
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Preklady nemôžu obsahovať medzery '%s'"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"ரூட் நிர்வாக பயனர் பங்கை தேர்ந்தெடு, ரூட்டாக இயங்கும் போது இந்த பயனர் கணினியை நிர்வாகிக்க "
-+"பயன்படுகிறது. இந்த பயனர் நேரடியாக கணினிக்குள் உட்புக முடியவில்லை."
  
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:647
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Neplatná úroveň '%s'"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "ரூட் நிர்வாக பயனர் பங்கு"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "பயன்பாட்டின் பெயர் அல்லது கட்டுப்படுத்தப்பட்ட பயனரின் பங்கை உள்ளீடு"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s je už definované v prekladoch"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nie je definované v prekladoch"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Mapovanie loginu pre %s je už definované"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "பெயர்"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Nemožno pridať SELinux užívateľa %s"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "வரையறுக்கப்பட்டு ஏற்றுக் கொள்ளத்தக்க முழுப் பாதையை உள்ளிடு."
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++msgstr ""
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux užívateľ %s je už definovaný"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
++msgstr ""
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Port je požadovaný"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "வரையறுக்கப்பட்ட பயன்பாடு அல்லது பயனர் பங்கிற்கான யுனிக் பெயரை உள்ளிடவும்"
-+
-+#: ../gui/polgen.glade:845
++msgstr ""
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s je už definovaný"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "இயங்கக்கூடியது"
-+
-+#: ../gui/polgen.glade:873
++msgstr ""
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Rozhranie %s je už definované"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init script"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:901
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Chyba pri inite možností, končím.\n"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "init ஸ்கிரிப்பட்டுக்கு வரையறுக்கப்பட்ட பயன்பாட்டைத் துவக்க முழு பாதையை உள்ளிடவும்."
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "திருத்தியமைக்க நீங்கள் விரும்பும் பயனர் பங்குகளை தேர்ந்தெடு"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Chyba nastavovaní možností, končím.\n"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Chyba nastavovania KEEPCAPS, končím\n"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Chyba pri zahadzovaní možností, končím.\n"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Chyba zahadzovania SETUID možnosti, končím\n"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Chyba pri uvoľňovaní caps\n"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "preklady nie sú podporované na nie-MLS strojoch"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "SELinux typ je požadovaný"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "SELinux typ je požadovaný"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Chyba odosielania audit správy.\n"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "இந்த பயன்பாடுகளின் செயற்களங்களுக்கு மற்றொன்றுக்கு மாறாத பயனர் பங்குகளை தேர்ந்தெடு."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "எந்த பயனர் பங்கு கூடுதல் செயற்களத்திற்கு மாறாமதவற்றை தேர்ந்தெடு "
++msgstr ""
  
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzordக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Musíte zadať rolu"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+"நீங்கள் விரும்பும் இந்த பயனரின் மாறாத பங்கிற்கான பயன்பாடுகளின் செயகளங்களை தேர்ந்தெடு."
  
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "பயனர் பங்கினை தேர்ந்தெடுத்து இந்த செயற்களத்தை பரிமாற்றவும்"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "செயல்முறைப்படுத்த இந்த பயனருக்கு கூடுதல் செயற்கள பங்கினை நேர்ந்தெடுக்கவும்"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Musíte zadať rolu"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Musíte zadať rolu"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "இந்த பயனர் நிர்வாகி நீங்கள் விரும்பும் செயற்களத்தை தேர்ந்தெடு."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "இந்த பயனருக்கு கூடுதல் பங்கினை தேர்ந்தெடுக்கவும்"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "பிணைய துறைகளையும் அதன் பயன்பாடுகளையும் உள்ளிடவும்/ பயனரின் பங்கு கவனிப்பது"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Vytváranie súboru vynútenia typov: %s.te"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Rozhranie %s nie je definované"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Kontext súboru pre %s nie je definovaný"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux užívateľ %s nie je definovaný"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Zostavujem pravidlá"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP துறைகள்</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "வரையறுக்கப்பட்ட பயன்பாடு/பயனர் பங்கை பிணைக்கும் எதாவது udp துறையை அனுமதிக்கவும்"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++msgstr ""
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Autentifikácia %s.\n"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux typ je požadovaný"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "அனைத்து"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Nemožno pridať SELinux užívateľa %s"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+"வரையறுக்கப்பட்ட பயன்பாடு/பயனர் பங்கை  bindresvport உடன் 0. துறை 600-1024க்கு பிணைக்க "
-+"அனுமதிக்கவும்"
  
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Nemožno zmeniť SELinux užívateľa %s"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdiscக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Nemožno zmazať SELinux užívateľa %s"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"udp துறைகள் அல்லது அந்த பயன்பாட்டின் வரம்பு துறைகள்/பயனர் பங்கு பிணைப்புக்கு ஒரு கமாவால் "
-+"பிரிக்கப்பட்ட பட்டியலை உள்ளிடவும். எடுத்துக்காட்டு: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readaheadக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Nemožno zmeniť SELinux užívateľa %s"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "பதிவு செய்யப்பட்ட துறைகள் (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Nemožno načítať pravidlo z pamäte."
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "துறைகளை தேர்ந்தெடுக்கவும்"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "விண்ணப்பங்களை அனுமதிக்கவும்/ஏதாவது udp துறைகளை பயனர் பங்குடன் இணைக்கிறது > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++msgstr ""
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux typ je požadovaný"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Požaduje hodnotu"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP துறைகள்</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "அந்த விண்ணப்பத்திற்காக பிணைய துறைகளை உள்ளிடவும்/ பயனர்கள் பங்கு இணைக்கிறது"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecondக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Vyžaduje 2 alebo viac parametrov"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+"tcp துறைகள் அல்லது வரம்புகள் துறையின் பயன்பாடு/பயனர் பங்கு இணைப்புகள் பட்டியலிருந்து "
-+"பிரிக்க ஒரு கமாவை உள்ளிடவும். எடுத்துக்காட்டு: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:2111
+-#~ msgid "%s not defined"
+-#~ msgstr "%s nie je definované"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s nie je platné pre %s objekty\n"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "rozsah nie je podporovaný na nie-MLS strojoch"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+" udp துறைகள் அல்லது வரம்புகள் துறையின் பயன்பாடு/பயனர் பங்கு இணைப்புகள் பட்டியலிருந்து "
-+"பிரிக்க ஒரு கமாவை உள்ளிடவும். எடுத்துக்காட்டு: 612, 650-660"
  
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricciக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "பொதுவான பயன்பாடுகளின் தனித்தன்மையை தேர்ந்தெடு"
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Neplatná hodnota %s"
+-
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "Pre načítanie novo vytvoreného balíka pravidiel do jadra,\n"
+-#~ "musíte spustiť \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Chyba volieb: %s"
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "syslog செய்திகளை எழுதவும்\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "உருவாக்கு/தற்காலிக கோப்புகளினுள் /tmpஐ கையாளவும்"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Pam கான அங்கீகாரத்தை பயன்படுத்து"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch அல்லது getpw* அழைப்புகளை பயன்படுத்து"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbusன் பயன்கள்"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "தணிக்கை செய்திகளை அனுப்பு"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "முனையத்துடன் செயலாற்றுகிறது"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "மின்னஞ்சலை அனுப்புகிறது"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "கோப்புகள்/அடைவுகள் பயன்பாட்டை மேலாண்மை செய்வதை நேர்ந்தெடு"
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"கோப்புகள்/பயன்பாட்டிற்குத் தேவையான அடைவுகளுக்கு \"Write\" . Pid Files, Log Files, /"
-+"var/lib Filesஐ சேர் ..."
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "பயன்பாட்டை பயன்படுத்தும் பூலியன்களைத் தேர்ந்தெடு"
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "சேர்/வரையறுக்கப்பட்ட  பயன்பாட்டு பூலியன்களை பயன்படுத்தும் இதை நீக்கவும்/பயனர்"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "உருவாக்கும் பாலிசியில் அடைவைத் தேர்ந்தெடு"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "கொள்கை அடைவு"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "உருவாக்கப்பட்ட கொள்கை கோப்புகள்"
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "பூலியன் உரையாடலை சேர்க்கவும்"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "பூலியன் பெயர்"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "பங்கு"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "வெளியேறுகிற பயனர் (_U)"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "பயன்பாடு"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s ஒரு அடைவாகும்"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "நீங்கள் ஒரு பெயரை தேர்ந்தெடுக்க வேண்டும்"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "செயல்படக்கூடிய வரையறுக்கப்பட்ட கோப்பை தேர்ந்தெடு"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "வரையறுக்கப்பட்ட init ஸ்கிரிப்ட் கோப்பை தேர்ந்தெடு."
--#~ msgid "rsync"
--#~ msgstr "rsync"
-+#: ../gui/polgengui.py:474
++msgstr ""
++
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"கோப்பு(கள்) அதை வரையறுக்கப்பட்ட பயன்பாட்டை உருவாக்குங்கள் அல்லது எழுதுக்கள் போன்றவற்றை "
-+"தேர்ந்தெடு"
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:481
++
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "அடைவு(கள்) சொந்த வரையறுக்கப்பட்ட பயன்பாடு மற்றும் இதற்குள் எழுத தேர்ந்தெடு"
++msgstr ""
++
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "பாலிசி கோப்புகளுக்கு உருவாக்கும் அடைவை தேர்ந்தெடு"
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL அங்கீகார சேவையகம்"
-+#: ../gui/polgengui.py:554
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"ஏற்கனவே %s _t வரையறுக்கப்பட்ட தற்போதைய பாலிசி வகை.\n"
-+"நீங்கள் தொடர விரும்புகிறீர்களா?"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "பெயரை சரிபார்"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"மாதிரி %s.pp தற்போதைய பாலிசியை ஏற்கனவே ஏற்றுகிறது.\n"
-+"நீங்கள் தொடர விரும்புகிறீர்களா?"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setransக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "நீங்கள் ஒரு இயக்கத்தக்கத்தை உள்ளிட வேண்டும்"
--#, fuzzy
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroublesoot daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinuxஐ கட்டமைக்கவும்"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "துறைகள் எண்ணாக இருக்க வேண்டும் அல்லது எண்களிலிருந்து 1 க்கு %d "
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "நீங்கள் வரையறுக்கப்பட்ட செயல்பாட்டிற்கு ஒரு பெயரை உள்ளிட வேண்டும்/பயனர்"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER வகைகள் ஏற்றுக் கொள்ளுவதற்கு அனுமதிக்கப்படவில்லை"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "DAEMON பயன்பாடுகளை init ஸ்கிரிப்ட்டை மட்டும் பயன்படுத்து"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "_syslog பூலியன் மதிப்பை பயன்படுத்து (_s)"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER வகைகள் தானாகவே ஒரு tmp வகையை பெறுகிறது"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "வரையறுக்கப்பட்ட செயல்பாட்டுக்கு நிறைவேற்றக்கூடிய பாதை நீங்கள் உள்ளிடவும்"
--#, fuzzy
--#~ msgid "Spam Protection"
--#~ msgstr "ஸ்பேம் பாதுகாப்பு"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "வகை enforcment கோப்பு"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "முகப்பு கோப்பு"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "கோப்பு சூழல்கள் கோப்பு"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "அமைவு உரை"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "பிணைய துறை"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux துறை\n"
-+"வகை"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "உலகளாவிய SSL குகை"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "நெறிமுறை"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"நிலை"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "துறை"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "துறை எண் \"%s\" தவறானது.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "பட்டியல் பார்வை"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "குழு பார்வை"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -257930,26 +203097,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux சேவை பாதுகாப்பு"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "SELinux பாதுகாப்பான acct டீமனை செயல்நீக்கு"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "நிர்வாகம்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "அனைத்து டீமன்களையும் கோர் கோப்புகளை எழுத அனுமதிக்கவும் / "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "அனைத்து டீமன்களையும் திறமையுடன் ஒதுக்கப்படாத ttysஐ பயன்படுத்த அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -257958,155 +203125,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "பயனர் Privs"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux பயனர் கணக்குக்கு செயலாற்றக்கூடிய கோப்புகளை முகப்பு அடைவு அல்லது /tmpஐ "
-+"அனுமதி"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"guest SELinuxபயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள கோப்புகளைஅனுமதி "
-+"அல்லது /tmp"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "system cron பணிக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "நினைவக பாதுகாப்பு"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "நிறைவேற்றக்கூடிய ஸ்டாக் ஜாவாவை அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "ஏற்றம்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "எந்த கோப்பையும் ஏறுவதற்கு அனுமதிக்கிறது"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "எந்த அடைவையும் ஏறுவதற்கு அனுமதிக்கிறது"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "நிறைவேற்றக்கூடிய mplayer ஜாவாவை அனுமதி "
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh லிருந்து ssh-keysignக்கு இயங்க அனுமதிக்கிறது"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"staff SELinux பயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள கோப்புகளைஅனுமதி "
-+"அல்லது /tmp"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux பயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள "
-+"கோப்புகளைஅனுமதி அல்லது /tmp"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"வரையறுக்கப்படாத SELinux பயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள "
-+"கோப்புகளைஅனுமதி அல்லது /tmp"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "பிணைய கட்டமைப்பு"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "இணையத்தில் அட்டவணைப்படுத்தப்படாத பாக்கெட்டிகளை அனுமதி"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"பயனர் SELinux பயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள கோப்புகளைஅனுமதி "
-+"அல்லது /tmp"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "வரையறுக்கப்படாத dyntrans க்கு unconfined_execmemஐ அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "தரவுத்தளங்கள்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "mysql சாக்கெட்டுடன் இணைக்க பயனரை அனுமதிக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "postgres சாக்கெட்டுடன் இணைக்க பயனரை அனுமதிக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "X பகிரப்பட்ட நினைவகத்தை எழுத க்ளையன்டை அனுமதி"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux பயனர் கணக்குக்கு முகப்பு அடைவுகளிலுள்ள செயல்பாட்டிலுள்ள "
-+"கோப்புகளைஅனுமதி அல்லது /tmp "
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "NIS உடன் டோமோன்ஸ் இயக்க அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -258114,1109 +203245,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "இணைய பயன்பாடுகள்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Transition staff SELinux பயனருக்கு Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Transition sysadm SELinux பயனருக்கு Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Transition user SELinux பயனருக்கு Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Transition xguest SELinux பயனருக்கு Web Browser Domain"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "staff Web Browsers க்கு முகப்பு அடைவுகளை எழுத அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "amandaக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "amavisக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "avahiக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "bluetooth daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Cluster சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord க்கு பல்வேறு உள்ளடகத்தை nfs, samba,removable devices, user temp மற்றும் "
-+"நம்பமுடியாத உள்ளடக்க கோப்புகளை வாசிக்க அனுமதிக்கவும்"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "அச்சடித்தல்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "cupsd பின் முனை சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "cupsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "cupsd_lpdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "cvs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "cyrus daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "dbskkd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "dbusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "dccdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "dccifdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "dccmக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "ddt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "devfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "dhcpc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "dhcpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "dictd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "sysadm_t நேரடியாக டீமனைத் துவக்க அனுமதிக்கிறது (_t )"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Evolutionக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "விளையாட்டுகள்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "விளையாட்டுகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "இணைய உலாவிகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Thunderbirdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "fetchmailக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr " Hal டீமனுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "உகந்தவை"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"பாதுகாப்பு எச்சரிக்கைகள் இல்லாத ஆனால் உடையும் என நமக்கு தெரிந்த பொருட்களை சோதிக்க கூடாது"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "hostname daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD சேவை"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexecக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "inetd child daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailmanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "தோற்றுவித்தல் மற்றும் தன்டர்பார்ட்டுக்கு பயனர் கோப்புகளை வாசிக்க அனுமதிக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "மொஹிலா உலாவிகள் பநனர் கோப்புகளை வாசிக்க அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "பெயர் சேவை"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "named daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "NetworkManagerக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "சம்பா"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjobக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedirக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasusக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap daemon க்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfixக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "pppd சரியான பயனர்களுக்காக இயக்க அனுமதிக்கிறது"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptpக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzordக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdiscக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readaheadக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "கோப்புகளிலுள்ள நிலையில்லாத இடங்களை வாசிக்க நீரல்களை அனுமதி (default_t)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecondக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "ricciக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "rshdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ssh க்கு inetd லிருந்து டீமனுக்கு பதிலாக அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Sambaவை nfs அடைவுகளை பகிர அனுமதிக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL அங்கீகார சேவையகம்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl அங்கீகரிக்கப்பட்ட சேவையகத்துக்கு read /etc/shadow அனுமதி"
--#~ msgid "XEN"
--#~ msgstr "XEN"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"X-Windows சேவையகம் வரைபடத்தை ஒரு நினைவக நிலமாக செயலாற்றக்கூடிய மற்றும் எழுதக்கூடிய "
-+"இரண்டாகவும் அனுமதிக்கவும்"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "sysadm_t, sudo மற்றும் su செயல்படுத்தப்பட்டதை மாற அனுமதிக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "ஏதாவது செயல்பாடுகளுக்கு கெர்னல் முறைமுகளை ஏற்ற அனுமதி வேண்டாம்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "கெர்னல் SELinux பாலிசி செயல்பாட்டை மாற்றியமைக்க அனுமதிக்க வேண்டாம்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "setransக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroublesoot டீமனுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "ஸ்பேம் பாதுகாப்பு"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Allow spamd க்கு முகப்பு அடைவுகளுடன் அணுக அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Spam Assassin daemon பிணையத்தை அணுக அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "squidஐ டீமனுக்கு பிணையத்துடன் இணைக்க அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh ஆக sysadm_r:sysadm_t உட்புக அனுமதி"
--#, fuzzy
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen constrolக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"staff_r பயனர்களை sysadm தேடி முகப்பு அடைவு மற்றும் கோப்புகளை வாசிக்க அனுமதி (~/."
-+"bashrc போன்று)"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "உலகளாவிய SSL குகை"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "stunnel டீமனை standaloneஆக இயக்க அனுமதி, வெளிப்புறம்  xinetd ஆக"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "system cron பணிக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS Password Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"xinetd க்கு வரையறுக்கப்படாமல் அனுமதி, திட்டவட்டமாக வரையறுக்கப்பட்ட செயற்கள மொழிபெயர்த்தல் "
-+"துவக்க சேவைகளும் இல்லை"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"வரையறுக்கப்படாமல் rc ஸ்க்ரிட்டுகளை இயக்கவும், எதாவது  டீமான் rc ஸ்க்ரிப்ட் திட்டவட்டமாக "
-+"வரையறுக்கப்பாட செயற்கள மாற்றமில்லாதவற்றையும் சேர்த்து அனுமதிக்கவும்"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS Transfer Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "rpm க்கு வரையறுக்கப்படாமல் இயக்க அனுமதி"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "%s '%s'ஐ அழிக்க வேண்டுமா?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"hotplug மற்றும் insmod போன்ற வரையறுக்கப்படாத பயனுள்ள முன்னுரிமைகளை இயக்க அனுமதிக்கவும்"
--#~ msgid "Delete %s"
--#~ msgstr "%sஐ அழிக்கவும்"
++
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Add %s"
--#~ msgstr "%sஐ சேர்க்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Modify %s"
--#~ msgstr "%sஐ மாற்றவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"user_r களை sysadm_r வழியாக su, sudo, அல்லது userhelperக்கு அனுமதி. இல்லையெனில், "
-+"staff_r மட்டும் தான் இதை செய்ய முடியும்"
--#~ msgid "Permissive"
--#~ msgstr "ஏற்கத்தக்கது"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "ஏறும் கட்டளையை செயல்படுத்த பயனர்களை அனுமதி"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "வழக்கமான பயனர்கள் நேரடி சுட்டி அணுகலை அனுமதி ( X சேவையகத்தை மட்டும் அனுமதி)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "dmesg கட்டளைகள் இயக்குவதற்கு பயனர்களை அனுமதிக்கவும்"
--#~ msgid "Enforcing"
--#~ msgstr "கட்டாயப்படுத்தல்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"பயனர்களை பிணைய இடைமுகத்தை கட்டுப்படுத்த அனுமதி (இதுவும் தேவைப்படுகிறது USERCTL=true)"
--#~ msgid "Disabled"
--#~ msgstr "செயல்நீக்கப்பட்டது"
++
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "சாதாரண பயனருக்கு செயல்படுத்தும் பிங்க்கை அனுதிக்கவும் "
--#~ msgid "Status"
--#~ msgstr "நிலை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "r/w noextattrfile (FAT, CDROM, FLOPPY)க்கு பயனர்களை அனுமதிக்கவும்"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
++msgstr ""
++
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr " rw usb சாதனங்களுக்காக பயனர்களை அனுமதி"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "காப்புரிமை (c)2006 Red Hat, Inc.\n"
--#~ "காப்புரிமை (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"பயனர்களை TCP சேவையகங்களை இயக்க அனுமதிக்கவும் (வெளியை உள்ள பயனர்கள் மற்றும் அதே செயற்கள "
-+"இணைப்பை பிணைப்பிலிருந்து துறைகளை ஏற்கிறது) இந்த வேகத்தை FTP எதிர்க்காத தொகுதிக்கு "
-+"மாற்றி நெறிமுறைகளை செயல்நீக்குகிறது"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux புகுபதிவு ஒப்பீட்டை சேர்த்தல்"
++
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "ttyகோப்புகளை துவக்க பயனரை அனுமதி "
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux பிணைய துறைகளை சேர்த்தல்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux வகை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "நிலை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "File Specification"
--#~ msgstr "கோப்பு குறிப்பிடல்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "File Type"
--#~ msgstr "கோப்பு வகை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdmஆக sysadm_r:sysadm_t உட்புக அனுமதி"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "அனைத்து கோப்புகள்\n"
--#~ "இயல்பான கோப்பு\n"
--#~ "அடைவு\n"
--#~ "எழுத்து சாதனம்\n"
--#~ "தடுப்பு சாதனம்\n"
--#~ "சாக்கெட்\n"
--#~ "குறியீடு இணைப்பு\n"
--#~ "பெயரிடப்பட்ட பைப்\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux பயனர் சேர்த்தல்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "xen க்கு பிஸிகல் வட்டு சாதனத்தை வாசிக்க/எழுத அனுமதி"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux நிர்வாகம்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Add"
--#~ msgstr "சேர்த்தல்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "xen கட்டுபாடுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "_Properties"
--#~ msgstr "பண்புகள் (_P)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "_Delete"
--#~ msgstr "அழித்தல் (_D)"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS Password Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "Select Management Object"
--#~ msgstr "மேலாண்மை பொருளை தேர்ந்தெடுக்கவும்"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>தேர்ந்தெடுத்தல்:</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS Transfer Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "கணினி முன்னிருப்பு கட்டாயப்படுத்தல் முறை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr "SELinux webadm user முகப்பு பக்கத்தை சலுகையற்ற பயனரும் மேலாண்மைபடுத்த அனுமதி"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "நடப்பு கட்டாயப்படுத்தும் முறை"
++msgstr ""
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "SELinux webadm user சலுகையில்லாத பயனர்களும் முகப்பு பக்கத்தை வாசிக்க அனுமதி"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "கணினி முன்னிருப்பு கொள்கை வகை:"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "%s '%s'ஐ அழிக்க வேண்டுமா?"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "அடுத்த மறுதுவக்கத்தில் மறு பெயரிடவும்."
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "%sஐ அழிக்கவும்"
--#~ msgid "label37"
--#~ msgstr "label37"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "%sஐ சேர்க்கவும்"
--#~ msgid "Filter"
--#~ msgstr "வடிப்பி"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "%sஐ மாற்றவும்"
--#~ msgid "label50"
--#~ msgstr "label50"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "ஏற்கத்தக்கது"
--#~ msgid "Add File Context"
--#~ msgstr "கோப்பு சூழலை சேர்த்தல்"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "கட்டாயப்படுத்தல்"
++msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "செயல்நீக்கப்பட்டது"
--#~ msgid "Modify File Context"
--#~ msgstr "கோப்பு சூழலை மாற்றவும்"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "நிலை"
--#~ msgid "Delete File Context"
--#~ msgstr "கோப்பு சூழலை அழிக்கவும்"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"பாலிசி வகையானது அடுத்த மறுபூட்டாக்கப்படும் மொத்த கோப்பு முறைமை மறுலேபிலிட்டு "
-+"செயல்படுத்த மாற்றுவதற்கு காரணமாகிறது. கணினியின் கோப்பு முறைமையின் அளவைப் பொருத்து "
-+"மறுவேபிலிடுவதை அதிக நேரத்தை எடுக்கிறது.  நீங்கள் தொடர விரும்புகிறீர்களா?"
--#~ msgid "label38"
--#~ msgstr "label38"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -259226,81 +204203,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux பயனர் ஒப்பீட்டை சேர்த்தல்"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"SELinuxஆனது அடுத்த மறுபூட்டாக்கப்படும் மொத்த கோப்பு முறைமை மறுலேபிலிட்டு செயல்படுத்த "
-+"மாற்றுகிறது. கணினியின் கோப்பு முறைமையின் அளவைப் பொருத்து மறுவேபிலிடுவதை அதிக "
-+"நேரத்தை எடுக்கிறது.  நீங்கள் தொடர விரும்புகிறீர்களா?"
 +
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux பயனர் ஒப்பீட்டை மாற்றவும்"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"காப்புரிமை (c)2006 Red Hat, Inc.\n"
-+"காப்புரிமை (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux பயனர் ஒப்பீட்டை அழிக்கவும்"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "SELinux புகுபதிவு ஒப்பீட்டை சேர்த்தல்"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "SELinux பிணைய துறைகளை சேர்த்தல்"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux வகை"
--#~ msgid "label39"
--#~ msgstr "label39"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"நிலை"
--#~ msgid "Add Translation"
--#~ msgstr "மொழிபெயர்ப்பை சேர்த்தல்"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "கோப்பு குறிப்பிடல்"
--#~ msgid "Modify Translation"
--#~ msgstr "மொழிபெயர்ப்பை மாற்றுதல்"
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "கோப்பு வகை"
--#~ msgid "Delete Translation"
--#~ msgstr "மொழிபெயர்ப்பை அழித்தல்"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -259311,2545 +204254,2253 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ta.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"அனைத்து கோப்புகள்\n"
-+"இயல்பான கோப்பு\n"
-+"அடைவு\n"
-+"எழுத்து சாதனம்\n"
-+"தடுப்பு சாதனம்\n"
-+"சாக்கெட்\n"
-+"குறியீடு இணைப்பு\n"
-+"பெயரிடப்பட்ட பைப்\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "SELinux பயனர் சேர்த்தல்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux நிர்வாகம்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "சேர்த்தல்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "பண்புகள் (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "அழித்தல் (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "மேலாண்மை பொருளை தேர்ந்தெடுக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>தேர்ந்தெடுத்தல்:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "கணினி முன்னிருப்பு கட்டாயப்படுத்தல் முறை"
--#~ msgid "label41"
--#~ msgstr "label41"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"செயல்நீக்குகிறது\n"
-+"ஏற்றத்தக்க\n"
-+"வலியுறுத்துகிறது\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "நடப்பு கட்டாயப்படுத்தும் முறை"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "கணினி முன்னிருப்பு கொள்கை வகை:"
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux பயனரை மாற்றவும்"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"அடுத்த மறுபூட்டுக்கு நீங்கள் விரும்பும் மறுலேபிலிட்டு பின் மொத்த கோப்பு முறைமையையும் "
-+"தேர்ந்தெடு. கணினியின் அளவைப் பொருத்து, மறுலேபிலிடுவது இதுக நேரத்தை எடுக்கிறது. நீங்கள் "
-+"பாலிசி வகையை  அல்லது செயல்நீக்கத்திலிருந்து வலியுறுத்தலுக்கு சென்றால், ஒரு மறுலேபில் "
-+"தேவைப்படுகிறது."
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "அடுத்த மறுதுவக்கத்தில் மறு பெயரிடவும்."
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "கணினி முன்னிருப்புக்கு பூலியன் அமைவுகளை திருப்பு"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "Toggle க்கும் திருத்தியமைக்கப்பட்ட மற்றும் அனைத்து பூலியன்களுக்கு இடையே"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "பூட்டப்பட்ட வியப்பான பூலியன்களை இயக்கு"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "பணி நிறுத்து..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "வடிப்பி"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "கோப்பு சூழலை சேர்த்தல்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "கோப்பு சூழலை மாற்றவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "கோப்பு சூழலை அழிக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "Toggle க்கும் திருத்தியமைக்கப்பட்ட அனைத்து மற்றும் கோப்பு உரைகளுக்கும் இடையே"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
--#~ msgid "label40"
--#~ msgstr "label40"
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "SELinux பயனர் ஒப்பீட்டை சேர்த்தல்"
--#~ msgid "Add Network Port"
--#~ msgstr "பிணைய துறையை சேர்த்தல்"
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "SELinux பயனர் ஒப்பீட்டை மாற்றவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "SELinux பயனர் ஒப்பீட்டை அழிக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "பயனரைச் சேர்க்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "பயனரை மாற்றவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "பயனரை அழிக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "மொழிபெயர்ப்பை சேர்த்தல்"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "மொழிபெயர்ப்பை மாற்றுதல்"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "மொழிபெயர்ப்பை அழித்தல்"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "பிணைய துறையை சேர்த்தல்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "பிணைய துறையை திருத்தவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "பிணைய துறையை அழிக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "Toggle க்கும் திருத்தியமைக்கப்பட்ட மற்றும் அனைத்து துறைகளுக்கும் இடையே"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "புதிய கொள்கை தொகுதியை உருவாக்கவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "கொள்கை தொகுதியை ஏற்றவும்"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "ஏற்றக்கூடிய கொள்கை தொகுதியை நீக்கவும்"
--#~ msgid "Edit Network Port"
--#~ msgstr "பிணைய துறையை திருத்தவும்"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+"கூடுதல் பரிசோதிக்கப்பட்ட விதிகளை செயல்படுத்து/செயல்நீக்கு, அடைவு கோப்புகளில் சாதாரணமாக "
-+"குறிப்பிடவில்லை."
--#~ msgid "Delete Network Port"
--#~ msgstr "பிணைய துறையை அழிக்கவும்"
-+#: ../gui/system-config-selinux.glade:3179
++
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
--#~ msgid "label42"
--#~ msgstr "label42"
-+#: ../gui/system-config-selinux.glade:3216
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "செயல் முறைமையை ஏற்கத்தக்கதாக மாற்றவும்."
--#~ msgid "Generate new policy module"
--#~ msgstr "புதிய கொள்கை தொகுதியை உருவாக்கவும்"
-+#: ../gui/system-config-selinux.glade:3234
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "செயல் முறைமையை வலியுறுத்தி மாற்றவும்"
--#~ msgid "Load policy module"
--#~ msgstr "கொள்கை தொகுதியை ஏற்றவும்"
-+#: ../gui/system-config-selinux.glade:3326
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "செயற்களத்தை செயல்படுத்துகிறது"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "ஏற்றக்கூடிய கொள்கை தொகுதியை நீக்கவும்"
-+#: ../gui/system-config-selinux.glade:3354
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "label44"
--#~ msgstr "label44"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux பயனர் '%s' தேவைப்படுகிறது"
- #~ msgid "Sensitvity Level"
- #~ msgstr "உணர்வுள்ள நிலை"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux பயனர் '%s' தேவைப்படுகிறது"
++msgstr ""
+diff --git a/policycoreutils/po/sl.po b/policycoreutils/po/sl.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/sl.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
 -
--#~ msgid "Requires value"
--#~ msgstr "மதிப்பு தேவைப்படுகிறது"
-+#~ msgid "Modules Name"
-+#~ msgstr "தொகுதிகள் பெயர்"
--#~ msgid "Invalid prefix %s"
--#~ msgstr "தவறான முன்னொட்டு %s"
-+#~ msgid "Could not disable module %s (remove failed)"
-+#~ msgstr "தொகுதி %sஐ செயல்நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
--#~ msgid "label25"
--#~ msgstr "label25"
-+#~ msgid "Could not enable module %s (remove failed)"
-+#~ msgstr "தொகுதி %sஐ செயல்படுத்த முடியவில்லை (நீக்க முடியவில்லை)"
--#~ msgid "label26"
--#~ msgstr "label26"
-+#~ msgid "Could not remove module %s (remove failed)"
-+#~ msgstr "தொகுதி %sஐ நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
--#~ msgid "label28"
--#~ msgstr "label28"
-+#~ msgid "dontaudit requires either 'on' or 'off'"
-+#~ msgstr "'on' அல்லது 'off' க்கு dontaudit தேவைப்படுகிறது"
--#~ msgid "label30"
--#~ msgstr "label30"
-+#~ msgid "Equivalence class for %s already exists"
-+#~ msgstr "%sலின் சமநிலை வகுப்பு ஏற்கனவே உள்ளது"
--#~ msgid "label31"
--#~ msgstr "label31"
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
 -
--#~ msgid "label32"
--#~ msgstr "label32"
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
 -
--#~ msgid "label33"
--#~ msgstr "label33"
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
 -
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "பதிவு செய்யப்படாத துறைகள்  (> 1024)"
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
 -
--#~ msgid "label34"
--#~ msgstr "label34"
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
 -
--#~ msgid "label35"
--#~ msgstr "label35"
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
 -
--#, fuzzy
--#~ msgid "label51"
--#~ msgstr "label25"
-+#~ msgid "Equivalence class for %s does not exists"
-+#~ msgstr "%sக்கு சமநிலை வகுப்பு இல்லை"
- #~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
-+#~ "\n"
-+#~ "SELinux fcontext Equivalence \n"
- #~ msgstr ""
--#~ "கட்டாயப்படுத்தல்\n"
--#~ "ஏற்கத்தக்கது\n"
--#~ "செயல்நீக்கப்பட்டது\n"
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
 -
--#~ msgid "value"
--#~ msgstr "மதிப்பு"
-+#~ "\n"
-+#~ "SELinux fcontext சமநிலை \n"
--#~ msgid "Other"
--#~ msgstr "வேறு"
-+#~ msgid "Internet Services Daemon"
-+#~ msgstr "Internet Services Daemon"
--#~ msgid "XWindows Login User"
--#~ msgstr "XWindows புகுபதிவு பயனர்"
-+#~ msgid "use_kerberos must be a boolean value "
-+#~ msgstr "use_kerberos ஒரு பூலியன் மதிப்பாக இருக்க வேண்டும்"
--#~ msgid "Terminal Login User"
--#~ msgstr "முனைய புகுபதிவு பயனர்"
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Files and Directories"
--#~ msgstr "கோப்புகள் மற்றும் அடைவுகள்"
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
 -
--#~ msgid "Login"
--#~ msgstr "புகுபதிவு"
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
 -
--#~ msgid "FTP"
--#~ msgstr "FTP"
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
 -
--#~ msgid "Zebra"
--#~ msgstr "Zebra"
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for ftpd daemon"
--#~ msgstr "ftpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for httpd daemon"
--#~ msgstr "httpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for pppd daemon"
--#~ msgstr "pppd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
--#~ msgstr "mozilla ppp daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
 -
--#~ msgid "Spam Assassin"
--#~ msgstr "Spam Assassin"
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
 -
--#~ msgid "Disable SELinux protection for zebra daemon"
--#~ msgstr "zebra daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
 -
--#~ msgid "Label Prefix"
--#~ msgstr "முன்னொட்டு பெயர்"
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
 -
--#~ msgid "MLS/MCS Level"
--#~ msgstr "MLS/MCS நிலை"
-+#~ msgid "manage_krb5_rcache must be a boolean value "
-+#~ msgstr "manage_krb5_rcache ஒரு பூலியன் மதிப்பாக இருக்க வேண்டும்"
- #~ msgid ""
--#~ "Labeling\n"
--#~ "Prefix"
-+#~ "\n"
-+#~ "%s\n"
-+#~ "\n"
-+#~ "polgen [ -m ] [ -t type ] executable\n"
-+#~ "valid Types:\n"
- #~ msgstr ""
--#~ "பெயரிடல்\n"
--#~ "முன்னொட்டு"
-+#~ "\n"
-+#~ "%s\n"
-+#~ "\n"
-+#~ "polgen [ -m ] [ -t type ] executable\n"
-+#~ "valid Types:\n"
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Level"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS நிலை"
-+#~ msgid "Executable required"
-+#~ msgstr "இயங்கக்கூடியது தேவைப்படுகிறது"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/te.po policycoreutils-2.0.85/po/te.po
---- nsapolicycoreutils/po/te.po        2011-02-17 15:11:25.474729106 -0500
-+++ policycoreutils-2.0.85/po/te.po    2011-02-18 16:03:41.445976270 -0500
-@@ -1,16 +1,17 @@
--# translation of new_policycoreutils.HEAD.te.po to Telugu
-+# translation of policycoreutils.HEAD.te.po to Telugu
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- #
--# Krishna Babu K <kkrothap@redhat.com>, 2008.
-+# Krishna Babu K <kkrothap@redhat.com>, 2008, 2009, 2010.
- msgid ""
- msgstr ""
--"Project-Id-Version: new_policycoreutils.HEAD.te\n"
-+"Project-Id-Version: policycoreutils.HEAD.te\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-03-24 13:20+0530\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 20:34+0530\n"
- "Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
- "Language-Team: Telugu <en@li.org>\n"
-+"Language: te\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-@@ -22,6 +23,28 @@
- "\n"
- "\n"
- "\n"
-+"\n"
-+"\n"
-+"\n"
-+"\n"
-+"\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "SELinuxను గ్రాఫికల్ అమర్పునందు ఆకృతీకరించుము"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux నిర్వహణ"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "SELinux పాలసీ మాడ్యూళ్ళను వుద్భవింపచేయుము"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux పాలసి ఉద్భవన సాధనం"
- #: ../run_init/run_init.c:67
- msgid ""
-@@ -112,9 +135,8 @@
- msgstr "semanage అనుసంధానంను ఎర్పరచలేక పోయింది."
- #: ../semanage/seobject.py:70
--#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "%s కొరకు MLS స్థాయిని అమర్చలేకపోయింది"
-+msgstr "MLS చేతనమైన స్థితిని పరిశీలించలేక పోయింది"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -129,7 +151,8 @@
- msgid "Level"
- msgstr "స్థాయి"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "అనువాదము"
-@@ -159,764 +182,765 @@
- #: ../semanage/seobject.py:294
- msgid "Semanage transaction already in progress"
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
 -msgstr ""
-+msgstr "Semanage వ్యవహారము యిప్పటికే పురోగతినందు వున్నది"
- #: ../semanage/seobject.py:303
- msgid "Could not start semanage transaction"
- msgstr "semanage వ్యవహారాన్ని ప్రారంభించ లేకపోయింది"
- #: ../semanage/seobject.py:309
--#, fuzzy
- msgid "Could not commit semanage transaction"
--msgstr "semanage వ్యవహారాన్ని ప్రారంభించ లేకపోయింది"
-+msgstr "semanage వ్యవహారాన్ని అప్పగించ(commit)లేక పోయింది"
- #: ../semanage/seobject.py:313
- msgid "Semanage transaction not in progress"
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
 -msgstr ""
-+msgstr "Semanage వ్యవహారము పురోగతినందు లేదు"
- #: ../semanage/seobject.py:325
--#, fuzzy
- msgid "Could not list SELinux modules"
--msgstr "SELinux వినియోగదారులను జాబితా చేయలేకపోయింది"
-+msgstr "SELinux మాడ్యూల్సును జాబితా చేయలేకపోయింది"
- #: ../semanage/seobject.py:336
--#, fuzzy
- msgid "Permissive Types"
--msgstr "అనుమతిగల"
-+msgstr "అనుమతిగల రకములు"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
 -msgstr ""
-+msgstr "అనుమతిగల డొమైన్ %sను అమర్చలేక పోయింది (మాడ్యూల్ సంస్థాపన విఫలమైంది)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
 -msgstr ""
-+msgstr "అనుమతిగల డొమైన్ %sను తొలగించలేక పోయింది (తొలగింపు విఫలమైంది)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "%s కొరకు కీను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "%s కొరకు లాగిన్ మాపింగ్ నిర్వచించబడివుంటే పరిశీలించకుండా ఉండేది"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s కొరకు లాగిన్ మాపింగ్ ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:421
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
-+#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "లినక్స్‍ వినియోగదారి %s లేడు"
-+msgstr "లినక్స్‍ సమూహము %s లేదు"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "లినక్స్‍ వినియోగదారి %s లేడు"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "%s కొరకు లాగిన్ మాపింగ్‌ను సృష్టించలేదు"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "%s కొరకు నామమును అమర్చలేక పోయింది"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "%s కొరకు MLS స్థాయిని అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "%s కొరకు SELinux వినియోగదారిని అమర్చలేక పోయింది"
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "%s కొరకు లాగిన్ మాపింగ్‌ను జతచేయ లేకపోయింది"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "SELinux వినియోగదారి మాపింగ్‌ను జతచేయి"
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "seuser లేదా serange అవసరము"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s కొరకు లాగిన్ మాపింగ్ నిర్వచించబడలేదు"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "%s కొరకు seuser ను క్వరీ చేయలేకపోయింది"
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "%s కొరకు లాగిన్ మాపింగ్‌ను సవరించ లేకపోయింది"
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/sq.po b/policycoreutils/po/sq.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/sq.po
++++ b/policycoreutils/po/sq.po
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s కొరకు లాగిన్ మాపింగ్ విధానంనందు నిర్వచించబడినది, తొలగించబడలేదు"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "%s కు లాగిన్ మాపింగ్‌ను తొలగించలేక పోయింది"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "లాగిన్ మాపింగ్స్‍‌ను జాబితా చేయలేకపోయింది"
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "లాగిన్ నామము"
+ msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux వినియోగదారి"
+ msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS వ్యాప్తి"
--#: ../semanage/seobject.py:594
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
-+#, python-format
- msgid "You must add at least one role for %s"
--msgstr "%s కొరకు దస్త్రము సందర్భంను జతచేయలేకపోయింది"
-+msgstr "%s కొరకు మీరు కనీసము వొక పాత్రను జతచేయవలెను"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "SELinux వినియోగదారి %s నిర్వచించబడివుంటే పరిశీలించకుండా ఉండేది"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux వినియోగదారి %s ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "%s కొరకు SELinux వినియోగదారిని సృష్టించ లేకపోయింది"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "పాత్ర %s ను %s కొరకు జతచేయ లేకపోయింది"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "%s కు MLS స్థాయిని అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "ప్రిఫిక్స్‍ %s ను %s కు జతచేయ లేకపోయింది"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "%s కొరకు కీను బయల్పరచ లేకపోయింది"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "SELinux వినియోగదారి %s ను జతచేయలేకపోయింది"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "ప్రిఫిక్స్‍, పాత్రలు, స్థాయి లేదా వ్యాప్తి అవసరము"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "ప్రిఫిక్స్‍ లేదా పాత్రలు అవసరము"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux వినియోగదారి %s నిర్వచించబడలేదు"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "%s కొరకు వినియోగదారిని క్వరీ చేయలేకపోయింది"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "SELinux వినియోగదారి %s ను సవరించలేదు"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux వినియోగదారి %s విధానం లో నిర్వచించబడినది, తొలగింపబడలేదు"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "SELinux వినియోగదారి %s ను తొలగించ లేకపోయింది"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "SELinux వినియోగదారులను జాబితా చేయలేకపోయింది"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "వినియోగదారి %s కొరకు పాత్రలను జాబితా చేయలేకపోయింది"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "లేబిలింగ్"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "ప్రిఫిక్స్‍"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS స్థాయి"
+ msgstr ""
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS వ్యాప్తి"
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux పాత్రలు"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "నియమం udp లేదా tcp అవసరము"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "పోర్ట్‍ అవసరము"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "%s/%s కొరకు కీను సృష్టించ లేకపోయింది"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "రకము అవసరము"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "పోర్ట్‍ %s/%s నిర్వచించివుంటే పరిశీలించకుండా ఉండేది"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "పోర్ట్‍ %s/%s ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "%s/%s కొరకు పోర్ట్‍‌ను సృష్టించ లేకపోయింది"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "%s/%s కొరకు సందర్భంను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "%s/%s కొరకు పొర్ట్‍ సందర్భంనందు వినియోగదారిని అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "%s/%s కొరకు పోర్ట్‍ సందర్భంనందు పాత్రను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "%s/%s కొరకు పోర్ట్‍ సందర్భంనందు రకంను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "%s/%s కొరకు పోర్ట్‍ సందర్భంనందు mls క్షేత్రాలను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "%s/%s కొరకు పోర్ట్‍ సందర్భంను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "పోర్ట్‍ %s/%s ను జతచేయలేకపోయింది"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "setype లేదా serange అవసరము"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "setype అవసరము"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "పోర్ట్‍ %s/%s నిర్వచించబడిలేదు"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "పోర్ట్‍ %s/%s ను క్వరీ చేయలేకపోయింది"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "పోర్ట్‍ %s/%s ను సవరించలేకపోయింది"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "పోర్ట్స్‍ ను జాబితాచేయలేకపోయింది"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "పోర్ట్‍ %s ను తోలగించలేకపోయింది"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "పోర్ట్‍ %s/%s విధానం నందు నిర్వచించబడింది, తొలగింపబడలేదు"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "పోర్ట్‍ %s/%s ను తోలగించలేకపోయింది"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "పోర్ట్స్‍ ను జాబితాచేయలేకపోయింది"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux పోర్ట్‍ రకము"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -518,7 +524,7 @@ msgstr ""
  msgid "Proto"
- msgstr "Proto"
+ msgstr ""
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "పోర్ట్‍ సంఖ్య"
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "పోర్ట్‍ అవసరము"
-+msgstr "నోడు చిరునామా అవసరమైనది"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "పోర్ట్‍ అవసరము"
-+msgstr "నోడు నెట్‌మాస్కు అవసరమైనది"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "తెలియని లేదా తప్పిపోయిన నిభందన"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux రకము అవసరము"
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "%s కొరకు కీను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
-+#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "పోర్ట్‍ %s/%s నిర్వచించివుంటే పరిశీలించకుండా ఉండేది"
-+msgstr "%s చిరునామా నిర్వచించబడివుంటే పరిశీలించలేక పోయేది"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "పోర్ట్‍ %s/%s ఇప్పటికే నిర్వచించబడివుంది"
-+msgstr "చిరునామా %s ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:1068
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
-+#, python-format
- msgid "Could not create addr for %s"
--msgstr "%s కొరకు కీను సృష్టించలేకపోయింది"
-+msgstr "%s కొరకు చిరునామాను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "%s కొరకు సందర్భంను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
- msgid "Could not set mask for %s"
--msgstr "%s కొరకు నామమును అమర్చలేక పోయింది"
-+msgstr "%s కొరకు తొడుగు(మాస్కు)ను అమర్చలేక పోయింది"
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "%s కొరకు దస్త్ర సందర్భంనందు వినియోగదారిని అమర్చలేకపోయింది"
-+msgstr "%s కొరకు చిరునామా సందర్భంనందు వినియోగదారిని అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "%s కొరకు దస్త్ర సందర్భంనందు పాత్రను అమర్చలేకపోయింది"
-+msgstr "%s కొరకు చిరునామా సందర్భంనందు పాత్రను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "%s కొరకు దస్త్ర సందర్భంనందు రకమును అమర్చలేకపోయింది"
-+msgstr "%s కొరకు చిరునామా సందర్భంనందు రకమును అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "%s కొరకు దస్త్ర సందర్భంనందు mls క్షేత్రాలను అమర్చలేకపోయింది"
-+msgstr "%s కొరకు చిరునామా సందర్భంనందు mls క్షేత్రాలను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "%s కొరకు దస్త్రము సందర్భంను అమర్చలేకపోయింది"
-+msgstr "%s కొరకు చిరునామా సందర్భంను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "పోర్ట్‍ %s/%s ను జతచేయలేకపోయింది"
-+msgstr "చిరునామా %s జతచేయలేక పోయింది"
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "పోర్ట్‍ %s/%s నిర్వచించబడిలేదు"
-+msgstr "చిరునామా %s నిర్వచించబడిలేదు"
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "పోర్ట్‍ %s/%s ను క్వరీ చేయలేకపోయింది"
-+msgstr "చిరునామా %sను క్వరీచేయలేక పోయింది"
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "పోర్ట్‍ %s/%s ను సవరించలేకపోయింది"
-+msgstr "చిరునామా %sను సవరించలేక పోయింది"
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "పోర్ట్‍ %s/%s విధానం నందు నిర్వచించబడింది, తొలగింపబడలేదు"
-+msgstr "విధానం నందు నిర్వచించబడిన చిరునామా %s, తొలగింపబడలేదు"
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "%s ను తొలగించలేకపోయింది"
-+msgstr "చిరునామా %sను తొలగించలేక పోయింది"
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "పోర్ట్స్‍ ను జాబితాచేయలేకపోయింది"
-+msgstr "చిరునామాలను జాబితా చేయలేక పోయింది"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "అంతర్‌ఫలకం %s నిర్వచించివుంటే పరిశీలించకుండా ఉండేది"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "అంతర్‌ఫలకం %s ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకంను సృష్టించ లేకపోయింది"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకం సందర్భంనందు వినియోగదారిని అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకం సందర్భంనందు పాత్రను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకం సందర్భంనందు రకమును అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకం సందర్భంనందు mls క్షేత్రములను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr "%s కొరకు అంతర్‌ఫలకం సందర్భం ను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr "%s కొరకు సందేశం సందర్భంను అమర్చ లేకపోయింది"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "అంతర్‌ఫలకం %s ను జతచేయలేకపోయింది"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "అంతర్‌ఫలకం %s నిర్వచించబడిలేదు"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "అంతర్‌ఫలకం %s ను క్వరీ చేయలేకపోయింది"
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "అంతర్‌ఫలకం %s ను సవరించలేకపోయింది"
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "అంతర్‌ఫలకం %s విధానంనందు నిర్వచించబడివుంది, తోలగింపబడలేదు"
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "అంతర్‌ఫలకం %s ను తొలగించలేకపోయింది"
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "అంతర్‌ఫలకంలను జాబీతా చేయలేకపోయింది"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux అంతర్‌ఫలకం"
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr "సందర్భము"
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr "%s కొరకు దస్త్ర సందర్భంనందు వినియోగదారిని అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr "%s కొరకు దస్త్ర సందర్భంనందు పాత్రను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr "%s కొరకు దస్త్ర సందర్భంనందు mls క్షేత్రాలను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "సరికాని దస్త్రము విశదీకరణము"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr "%s కొరకు దస్త్ర సందర్భం నిర్వచించబడివుంటే పరిశీలించకుండా ఉండేది"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "%s కొరకు దస్త్ర సందర్భం ఇప్పటికే నిర్వచించబడివుంది"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "%s కొరకు దస్త్ర సందర్భంను సృష్టించలేకపోయింది"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "%s కొరకు దస్త్ర సందర్భంనందు రకమును అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "%s కొరకు దస్త్రము సందర్భంను అమర్చలేకపోయింది"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "%s కొరకు దస్త్రము సందర్భంను జతచేయలేకపోయింది"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "setype, serange లేదా seuser అవసరము"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s కొరకు దస్త్రము సందర్భం నిర్వచించబడిలేదు"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "%s కొరకు దస్త్రము సందర్భంను క్వరీచేయలేకపోయింది"
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "దస్త్రము సందర్భంను %s కొరకు సవరించలేదు"
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "దస్త్రము సందర్భంలను జాబితా చేయలేకపోయింది"
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "దస్త్రము సందర్భం %sను తొలగించలేకపోయింది"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s కొరకు దస్త్రము సందర్భం విధానంలో నిర్వచించబడివుంది, తొలగింపబడలేదు"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "%s కొరకు దస్త్రము సందర్భంను తొలగించలేకపోయింది"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "దస్త్రము సందర్భంలను జాబితా చేయలేకపోయింది"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "స్థానిక దస్త్ర సందర్భంలను జాబితాచేయలేకపోయింది"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "రకము"
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "బూలియన్ %s నిర్వచించబడితే పరిశీలించి ఉండేదికాదు"
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "బూలియన్ %s నిర్వచించబడిలేదు"
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "దస్త్రము సందర్భం %s ను క్వరీ చేయలేకపోయింది"
--#: ../semanage/seobject.py:1677
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
-+#, python-format
- msgid "You must specify one of the following values: %s"
--msgstr "మీరు తప్పక ఒక విలువను తెలుపవలెను"
-+msgstr "ఈక్రింది విలువలలో వొకదానిని మీరు తప్పక తెలుపవలెను: %s"
--#: ../semanage/seobject.py:1681
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
-+#, python-format
- msgid "Could not set active value of boolean %s"
--msgstr "బూలియన్ %s తొలగింపలేకపోయింది"
-+msgstr "బూలియన్ %s యొక్క క్రియాశీల విలువను అమర్చలేక పోయింది"
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "బూలియన్ %s ను సవరించలేకపోయింది"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
--msgstr ""
-+msgstr "చెడ్డ రూపీకరణం %s: రికార్డు %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "బూలియన్ %s విధానంనందు నిర్వచించబడివుంది, తొలగింపబడలేదు"
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "బూలియన్ %s తొలగింపలేకపోయింది"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "బూలియన్స్‍ ను జాబితాచేయలేకపోయింది"
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "తెలియని"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "ఆఫ్"
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "ఆన్"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux బూలియన్"
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr "వివరణ"
-@@ -956,9 +980,9 @@
- msgstr "వాతావరణంను శుభ్రంచేయలేదు\n"
+ msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "సామర్ధ్యాలను సిద్దముచేయుటలో దోషము, బహిష్కరిస్తోంది.\n"
-+msgstr "సామర్థ్యాలను సిద్దముచేయుటలో దోషము, నిరర్ధకముగా ముగించింది.\n"
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1288,1667 +1312,2189 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "ఐచ్చికముల దోషము %s "
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "non-MLS మిషన్స్‍ పైన అనువాదములు మద్దతీయబడవు"
--
--#~ msgid "Boolean"
--#~ msgstr "బూలియన్"
--
--#~ msgid "all"
--#~ msgstr "అన్ని"
--
--#~ msgid "Customized"
--#~ msgstr "మలచుకొనిన"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "బూలియన్"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "అన్ని"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "మలచుకొనిన"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "దస్త్రము లేబులింగ్"
--#~ msgid "File Labeling"
--#~ msgstr "దస్త్రము లేబులింగ్"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "దస్త్రము\n"
--#~ "విశదీకరణము"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "దస్త్రము రకము"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "దస్త్రము\n"
--#~ "రకము"
--
--#~ msgid "User Mapping"
--#~ msgstr "వినియోగదారి మాపింగ్"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "లాగిన్\n"
--#~ "నామము"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "వినియోగదారి"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS వ్యాప్తి"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "లాగిన్ '%s' అవసరము"
--
--#~ msgid "Policy Module"
--#~ msgstr "విధానం మాడ్యూల్"
--
--#~ msgid "Module Name"
--#~ msgstr "మాడ్యూల్ నామము"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"దస్త్రము\n"
-+"విశదీకరణము"
--#~ msgid "Version"
--#~ msgstr "వర్షన్"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"దస్త్రము రకము"
--#~ msgid "Disable Audit"
--#~ msgstr "ఆడిట్ అచేతనంచేయుము"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"దస్త్రము\n"
-+"రకము"
--#~ msgid "Enable Audit"
--#~ msgstr "ఆడిట్ చేతనంచేయి"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "వినియోగదారి మాపింగ్"
--#~ msgid "Load Policy Module"
--#~ msgstr "విధానం మాడ్యూల్‌ను నింపుము"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"లాగిన్\n"
-+"నామము"
--#~ msgid "Polgen"
--#~ msgstr "పోల్గెన్"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"వినియోగదారి"
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS వ్యాప్తి"
--#~ msgid "GPL"
--#~ msgstr "GPL"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "లాగిన్ '%s' అవసరము"
--#~ msgid "translator-credits"
--#~ msgstr "కృష్ణబాబు <kkrothap@redhat.com> 2008"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "విధానం మాడ్యూల్"
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux పాలసి ఉద్భవన సాధనం"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "మాడ్యూల్ నామము"
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "SELinux వినియోగదారులను లేదా అనువర్తనాలను పరిమితం చేయుటకు, ఈ సాధనం విధానం ఫ్రేమ్‌వర్క్‍ "
--#~ "ఉద్భవింపచేయుటకు ఉపయోగించగలము.   \n"
--#~ "\n"
--#~ "ఆ సాధనం ఉద్భవింపచేస్తుంది:\n"
--#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము (te)\n"
--#~ "ఇంటర్ఫేస్ ఫైల్ (if)\n"
--#~ "ఫైల్ కాంటెక్స్ట్‍ దస్త్రము (fc)\n"
--#~ "షెల్ స్క్రిప్ట్‍ (sh) - నిర్వర్తించుటకు మరియు సంస్థాపించుటకు ఉపయోగపడుతుంద ."
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "వర్షన్"
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "పరిమితం చేయుటకు అనువర్తనం/వినియోగదారి పాత్ర యొక్క రకమును ఎంపికచేయుము"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "ఆడిట్ అచేతనంచేయుము"
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>అనువర్తనములు</b>"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "ఆడిట్ చేతనంచేయి"
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "ప్రామాణిక Init డెమోన్ బూట్ నందు init స్క్రిప్ట్స్‍ ద్వారా ప్రారంభమగు డెమోన్స్‍.  సాదారణంగా /etc/rc.d/"
--#~ "init.d నందు ఒక స్క్రిప్టు కావాలి"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "విధానం మాడ్యూల్‌ను నింపుము"
--#~ msgid "Standard Init Daemon"
--#~ msgstr "ప్రామాణిక Init డెమోన్‌"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "పోల్గెన్"
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "ఇంటర్నెట్ సేవల డెమోన్ xinetd ద్వారా ప్రారంభించిన డెమోన్స్‍"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "ఇంటర్నెట్ సేవల డెమోన్ (inetd)"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr ""
--#~ "వెబ్ అనువర్తనములు/స్క్రిప్ట్‍ (CGI) CGI స్క్రిప్ట్స్‍ వెబ్ సేవిక ద్వారా ప్రారంభించబడినవి (apache)"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "కృష్ణబాబు <kkrothap@redhat.com> 2008"
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "వెబ్ అనువర్తనము/స్క్రిప్ట్‍ (CGI)"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"SELinux వినియోగదారులను లేదా అనువర్తనాలను పరిమితం చేయుటకు, ఈ సాధనం విధానం ఫ్రేమ్‌వర్క్‍ "
-+"ఉద్భవింపచేయుటకు ఉపయోగించగలము.   \n"
-+"\n"
-+"ఆ సాధనం ఉద్భవింపచేస్తుంది:\n"
-+"టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము (te)\n"
-+"ఇంటర్ఫేస్ ఫైల్ (if)\n"
-+"ఫైల్ కాంటెక్స్ట్‍ దస్త్రము (fc)\n"
-+"షెల్ స్క్రిప్ట్‍ (sh) - నిర్వర్తించుటకు మరియు సంస్థాపించుటకు ఉపయోగపడుతుంద ."
++msgstr ""
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "పరిమితం చేయుటకు అనువర్తనం/వినియోగదారి పాత్ర యొక్క రకమును ఎంపికచేయుము"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>అనువర్తనములు</b>"
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr ""
--#~ "వినియోగదారుని చేత ప్రారంభించబడి మీరు పరిమితం చేయుటకు ఇష్టపడు ఏ అనువర్తనమైనా వినియోగదారుని "
--#~ "అనువర్తనమే"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"ప్రామాణిక Init డెమోన్ బూట్ నందు init స్క్రిప్ట్స్‍ ద్వారా ప్రారంభమగు డెమోన్స్‍.  సాదారణంగా /etc/rc.d/"
-+"init.d నందు ఒక స్క్రిప్టు కావాలి"
--#~ msgid "User Application"
--#~ msgstr "వినియోగదారి అనువర్తనము"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "ప్రామాణిక Init డెమోన్‌"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS సిస్టమ్ డెమోన్"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "ఇంటర్నెట్ సేవల డెమోన్ xinetd ద్వారా ప్రారంభించిన డెమోన్స్‍"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "ఇంటర్నెట్ సేవల డెమోన్ (inetd)"
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>లాగిన్ వినియోగదారులు</b>"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "వెబ్ అనువర్తనములు/స్క్రిప్ట్‍ (CGI) CGI స్క్రిప్ట్స్‍ వెబ్ సేవిక ద్వారా ప్రారంభించబడినవి (apache)"
--#~ msgid "Modify an existing login user record."
--#~ msgstr "ఉన్న లాగిన్ వినియోగదారి రికార్డ్‍‌ను సవరించుము"
-+#: ../gui/polgen.glade:322
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "వెబ్ అనువర్తనము/స్క్రిప్ట్‍ (CGI)"
--#~ msgid "Existing User Roles"
--#~ msgstr "ఉన్న వినియోగాదారి పాత్రలు"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"వినియోగదారుని చేత ప్రారంభించబడి మీరు పరిమితం చేయుటకు ఇష్టపడు ఏ అనువర్తనమైనా వినియోగదారుని అనువర్తనమే"
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "ఈ వినియోగాదారి మిషన్‌కు టెర్మినల్ లేదా దూరస్థ లాగిన్ ద్వారా లాగిన్ అవుతాడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ "
--#~ "setuid, networking, sudo, su లను కలిగివుండడు."
-+#: ../gui/polgen.glade:343
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "వినియోగదారి అనువర్తనము"
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "కనీస టెర్మినల్ వినియోగదారి పాత్ర"
-+#: ../gui/polgen.glade:389
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
++
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>లాగిన్ వినియోగదారులు</b>"
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "ఈ వినియోగాదారి మిషన్‌కు X లేదా టెర్మినల్ ద్వారా లాగిన్ కాగలడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ setuid, "
--#~ "networking, sudo, su లను కలిగివుండడు"
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "ఉన్న లాగిన్ వినియోగదారి రికార్డ్‍‌ను సవరించుము"
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "కనీస X విండోస్ వినియోగదారి పాత్ర"
++msgstr ""
++
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
++
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "ఉన్న వినియోగాదారి పాత్రలు"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేకుండా setuid లేని అనువర్తనాలు, sudo కాని, su కాని వినియోగదారి."
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"ఈ వినియోగాదారి మిషన్‌కు టెర్మినల్ లేదా దూరస్థ లాగిన్ ద్వారా లాగిన్ అవుతాడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ "
-+"setuid, networking, sudo, su లను కలిగివుండడు."
--#~ msgid "User Role"
--#~ msgstr "వినియోగదారి పాత్ర"
-+#: ../gui/polgen.glade:474
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "కనీస టెర్మినల్ వినియోగదారి పాత్ర"
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేని ఏ setuid అనువర్తనాలు లేని, su కాని, వినియోగదారి రూట్ నిర్వహణా "
--#~ "నియమాలను sudo చేయగలడు"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"ఈ వినియోగాదారి మిషన్‌కు X లేదా టెర్మినల్ ద్వారా లాగిన్ కాగలడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ setuid, "
-+"networking, sudo, su లను కలిగివుండడు"
--#~ msgid "Admin User Role"
--#~ msgstr "నిర్వహణాధికారి వినియోగదారి పాత్ర"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "కనీస X విండోస్ వినియోగదారి పాత్ర"
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>రూట్ వినియోగదారులు</b>"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేకుండా setuid లేని అనువర్తనాలు, sudo కాని, su కాని వినియోగదారి."
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "ఈ వినియోగదారిని మిషన్ రూట్‌గా నడుస్తున్నప్పుడు నిర్వహణాధికారిగా ఉపయోగించాలంటే, రూట్ వినియోగదారి పాత్రను "
--#~ "ఎంపికచేయి.  ఈ వినియోగదారి సిస్టమకు నేరుగా లాగిన్ కాలేడు."
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "వినియోగదారి పాత్ర"
--#~ msgid "Root Admin User Role"
--#~ msgstr "రూట్ నిర్వహణాదికారి వినియోగదారి పాత్ర"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేని ఏ setuid అనువర్తనాలు లేని, su కాని, వినియోగదారి రూట్ నిర్వహణా "
-+"నియమాలను sudo చేయగలడు"
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "పరిమితం చేయుటకు అనువర్తనం లేదా వినియోగదారి పాత్ర ను ప్రవేశపెట్టుము"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "నిర్వహణాధికారి వినియోగదారి పాత్ర"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>రూట్ వినియోగదారులు</b>"
--#~ msgid "Name"
--#~ msgstr "నామము"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"ఈ వినియోగదారిని మిషన్ రూట్‌గా నడుస్తున్నప్పుడు నిర్వహణాధికారిగా ఉపయోగించాలంటే, రూట్ వినియోగదారి పాత్రను "
-+"ఎంపికచేయి.  ఈ వినియోగదారి సిస్టమకు నేరుగా లాగిన్ కాలేడు."
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "పరిమితంగా ఉండుటకు నిర్వర్తనంకు పూర్తి పాత్‌ను ప్రవేశపెట్టుము."
-+#: ../gui/polgen.glade:647
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "రూట్ నిర్వహణాదికారి వినియోగదారి పాత్ర"
++msgstr ""
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "పరిమితం చేయుటకు అనువర్తనం లేదా వినియోగదారి పాత్ర ను ప్రవేశపెట్టుము"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "నామము"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "పరిమితంగా ఉండుటకు నిర్వర్తనంకు పూర్తి పాత్‌ను ప్రవేశపెట్టుము."
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "పరిమిత వినియోగదారి లేదా అనువర్తనం పాత్రకు ఏకైక నామమును ప్రవేశపెట్టుము."
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "నిర్వర్తించతగిన"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init లిపి"
--#~ msgid "..."
--#~ msgstr "..."
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "పరిమిత అనువర్తనంను ప్రారంభించుటకు ఉపయోగించు init స్క్రిప్ట్‍ కు పూర్తి పాత్ ప్రవేశపెట్టుము."
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "పరిమిత వినియోగదారి లేదా అనువర్తనం పాత్రకు ఏకైక నామమును ప్రవేశపెట్టుము."
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "మీరు మలచాలని అనుకుంటున్న వినియోగదారి పాత్రలను ఎంపికచేయుము"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "ఈ అనువర్తనాల డొమైన్స్‍‌కు బదిలీకరించబోవు వినియోగదారి దస్త్రాలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "ఈ వినియోగదారి పాత్ర బదిలీకరించబడు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
--#~ msgid "Executable"
--#~ msgstr "నిర్వర్తించతగిన"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "ఈ వినియోగదారి పాత్రను బదిలీకరణకు చేయుటకు మీరు ఇష్టపడే అనువర్తనాల డోమైన్స్‍‌ను ఎంపికచేయుము."
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "ఈ డొమైన్‌కు బదిలీకరించబడు వినియోగదారి పాత్రలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "ఈ వినియోగదారి అధికారికాబోవు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "ఈ వినియోగదారి నిర్వహించుటకు మీరు ఇష్టపడు డొమైన్స్‍‌ను ఎంపికచేయుము."
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "ఈ వినియోగదారికి అదనపు పాత్రలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర సంధానంకు నెట్వర్క్‍ పోర్ట్స్‍ ప్రవేశపెట్టుము"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP పోర్ట్స్‍</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "ఏ udp పోర్ట్‍‌కైనా బంధనం అగుటకు పరిమిత అనువర్తనం/వినియోగదారి పాత్రను అనుమతిస్తుంది"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "అన్ని"
--#~ msgid "Init script"
--#~ msgstr "Init లిపి"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"bindresvport ను 0 తో కాల్ చేయుటకు అనువర్తనం/ వినియోగదారి పాత్రని అనుమతించుము. పోర్ట్‍ 600-1024 "
-+"కు బంధనం అగుచున్నది"
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr ""
--#~ "పరిమిత అనువర్తనంను ప్రారంభించుటకు ఉపయోగించు init స్క్రిప్ట్‍ కు పూర్తి పాత్ ప్రవేశపెట్టుము."
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "మీరు మలచాలని అనుకుంటున్న వినియోగదారి పాత్రలను ఎంపికచేయుము"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"ఆ అనువర్తనం/వినియోగదారి పాత్ర బందనం అగు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను ప్రవేశపెట్టుము. "
-+"ఉదాహరణ: 612, 650-660"
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "ఈ అనువర్తనాల డొమైన్స్‍‌కు బదిలీకరించబోవు వినియోగదారి దస్త్రాలను ఎంపికచేయుము"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "నిలువఉంచని పోర్ట్స్‍  (> 1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "పోర్ట్స్‍ ఎంపికచేయి"
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "ఈ వినియోగదారి పాత్ర బదిలీకరించబడు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"ఏ udp పోర్ట్స్‍‌కు అయినా > 1024 కు బంధనం అగుటకు అనువర్తనం/వినియోగదారి పాత్ర ను అనుమతిస్తుంది"
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "ఈ వినియోగదారి పాత్రను బదిలీకరణకు చేయుటకు మీరు ఇష్టపడే అనువర్తనాల డోమైన్స్‍‌ను ఎంపికచేయుము."
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP పోర్ట్స్‍</b>"
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "ఈ డొమైన్‌కు బదిలీకరించబడు వినియోగదారి పాత్రలను ఎంపికచేయుము"
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానమగు నెట్వర్కు పోర్ట్స్‍ ప్రవేశపెట్టుము"
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "ఈ వినియోగదారి అధికారికాబోవు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
-+#: ../gui/polgen.glade:1958
++msgstr ""
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత tcp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
-+"ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "ఈ వినియోగదారి నిర్వహించుటకు మీరు ఇష్టపడు డొమైన్స్‍‌ను ఎంపికచేయుము."
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+"ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
-+"ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
--#~ msgid "Select additional roles for this user"
--#~ msgstr "ఈ వినియోగదారికి అదనపు పాత్రలను ఎంపికచేయుము"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "ఉమ్మడి అనువర్తనం స్వభావాలు ఎంపికచేయుము"
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "సిస్‌లాగ్ సందేశాలను వ్రాస్తుంది\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "/tmp నందు తాత్కాలిక దస్త్రాలను సృష్టించు/మార్చు"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "దృవీకరణకు Pam ను ఉపయోగిస్తుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "nsswitch లేదా getpw* కాల్స్‍‌ను ఉపయోగిస్తుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "dbus ను ఉపయోగిస్తుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "ఆడిట్ సందేశాలను పంపుతుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "టెర్మినల్‌తో సంప్రదిస్తుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "ఈమెయిల్ పంపుతుంది"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "ఆ అనువర్తనం నిర్వహించు దస్త్రాలను/సంచయాలను ఎంపికచేయుము"
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర సంధానంకు నెట్వర్క్‍ పోర్ట్స్‍ ప్రవేశపెట్టుము"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"ఈ అనుర్తనం \"వ్రాయు\" అవసరం కలిగిన దస్త్రములను/సంచయాలను జతచేయుము. Pid దస్త్రములు, Log "
-+"దస్త్రములు, /var/lib దస్త్రములు ..."
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP పోర్ట్స్‍</b>"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "ఆ అనువర్తనం ఉపయోగించే బూలియన్స్‍‌ను ఎంపికచేయుము"
 +
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "పరిమిత అనువర్తనం/వినియోగదారి కు ఉపయోగించు బూలియన్స్‍ జతచేయి/తొలగించుము"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "విధానం దానిలో ఉద్భవింపచేయుటకు సంచయాన్ని ఎంపికచేయుము"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "విధానం సచయం"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "ఉద్భవింపచేసిన విధానం దస్త్రాలు"
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "ఏ udp పోర్ట్‍‌కైనా బంధనం అగుటకు పరిమిత అనువర్తనం/వినియోగదారి పాత్రను అనుమతిస్తుంది"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
-+"టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
-+"నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను "
-+"రూట్‌లానిర్వర్తించుము.  \n"
-+"లినక్స్‍ లాగిన్ వినియోగదారులను వినియోగదారి పాత్రలకు మాప్ చేయుటకు semanage లేదా useradd ఉపయోగించుము.\n"
-+"మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
-+"వినియోగదారిలా లాగిన్ అవ్వుము మరియు ఈ వినియోగదారి పాత్రను పరిశీలించుము.\n"
-+"te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
--#~ msgid "All"
--#~ msgstr "అన్ని"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+"ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
-+"టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
-+"\n"
-+"నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను\n"
-+"నిర్వర్తించుము.  మీరు ఇప్పుడు మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
-+"avc సందేశాలను ఉద్భవింపచేయుటకు అనువర్తనంను నడుపుము/పునఃప్రారంభించుము.\n"
-+"te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "bindresvport ను 0 తో కాల్ చేయుటకు అనువర్తనం/ వినియోగదారి పాత్రని అనుమతించుము. పోర్ట్‍ 600-"
--#~ "1024 కు బంధనం అగుచున్నది"
-+#: ../gui/polgen.glade:3127
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
++
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "బూలియన్స్‍ డైలాగ్‌ను జతచేయుము"
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
-+#: ../gui/polgen.glade:3200
++msgstr ""
++
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "బూలియన్ నామము"
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర బందనం అగు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
--#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
-+#: ../gui/polgengui.py:177
++msgstr ""
++
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "పాత్ర"
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "నిలువఉంచని పోర్ట్స్‍  (> 1024)"
-+#: ../gui/polgengui.py:184
++msgstr ""
++
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "ఉన్న వినియోగదారి(_U)"
--#~ msgid "Select Ports"
--#~ msgstr "పోర్ట్స్‍ ఎంపికచేయి"
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "అనువర్తనము"
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr ""
--#~ "ఏ udp పోర్ట్స్‍‌కు అయినా > 1024 కు బంధనం అగుటకు అనువర్తనం/వినియోగదారి పాత్ర ను అనుమతిస్తుంది"
-+#: ../gui/polgengui.py:269
++msgstr ""
++
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s తప్పక ఒక సంచయం అవ్వాలి"
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP పోర్ట్స్‍</b>"
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
++
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "మీరు తప్పక ఒక వినియోగదారిని ఎంపికచేయాలి"
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానమగు నెట్వర్కు పోర్ట్స్‍ ప్రవేశపెట్టుము"
-+#: ../gui/polgengui.py:453
++msgstr ""
++
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "పరిమితం చేయుటకు నిర్వర్తించదగు దస్త్రమును ఎంపికచేయుము"
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత tcp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
--#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
-+#: ../gui/polgengui.py:464
++msgstr ""
++
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "పరిమితం చేయుటకు init స్క్రిప్ట్‍ దస్త్రమును ఎంపికచేయుము."
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
--#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
-+#: ../gui/polgengui.py:474
++msgstr ""
++
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "పరిమిత అనునర్తనములు సృష్టించిన లేదా వ్రాసిన దస్త్రము(లు) ఎంపికచేయుము"
--#~ msgid "Select common application traits"
--#~ msgstr "ఉమ్మడి అనువర్తనం స్వభావాలు ఎంపికచేయుము"
-+#: ../gui/polgengui.py:481
++msgstr ""
++
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "పరిమిత అనువర్తనములు కలిగివున్న మరియు వాటిలోకి వ్రాసిన సంచయము(లు) ఎంపికచేయుము"
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "సిస్‌లాగ్ సందేశాలను వ్రాస్తుంది\t"
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "విధానం దస్త్రములను దానిలోకి ఉద్బవింపచేయుటకు సంచయమును ఎంపికచేయుము"
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "/tmp నందు తాత్కాలిక దస్త్రాలను సృష్టించు/మార్చు"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"ప్రస్తుత విధానంనందు ఇప్పటికే నిర్వచించబడిన %s_t ను టైపు చేయుము.\n"
-+"మీరు కొనసాగించాలని అనుకుంటున్నారా?"
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "దృవీకరణకు Pam ను ఉపయోగిస్తుంది"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "నామమును నిర్ధారించుము"
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "nsswitch లేదా getpw* కాల్స్‍‌ను ఉపయోగిస్తుంది"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"మాడ్యూల్ %s.pp ఇప్పటికే ప్రస్తుత విధానంనందు నింపబడింది.\n"
-+"మీరు కొనసాగించాలని అనుకుంటున్నారా?"
--#~ msgid "Uses dbus"
--#~ msgstr "dbus ను ఉపయోగిస్తుంది"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
--#~ msgid "Sends audit messages"
--#~ msgstr "ఆడిట్ సందేశాలను పంపుతుంది"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "మీరు తప్పక ఒక నిర్వర్తినిని ప్రవేశపెట్టవలెను"
--#~ msgid "Interacts with the terminal"
--#~ msgstr "టెర్మినల్‌తో సంప్రదిస్తుంది"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "SELinux ను ఆకృతీకరించుము"
--#~ msgid "Sends email"
--#~ msgstr "ఈమెయిల్ పంపుతుంది"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "పోర్ట్స్‍ తప్పక సంఖ్యలు లేదా 1 నుండి %d స్థాయి లోపలి సంఖ్యలు అవ్వాలి "
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "ఆ అనువర్తనం నిర్వహించు దస్త్రాలను/సంచయాలను ఎంపికచేయుము"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "మీ పరిమిత కార్యము/వినియోగదారికి మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "ఈ అనుర్తనం \"వ్రాయు\" అవసరం కలిగిన దస్త్రములను/సంచయాలను జతచేయుము. Pid దస్త్రములు, "
--#~ "Log దస్త్రములు, /var/lib దస్త్రములు ..."
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "వినియోగదారి రకములు ఎక్సిక్యూటబుల్స్‍‌ను అనుమతించవు"
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "ఆ అనువర్తనం ఉపయోగించే బూలియన్స్‍‌ను ఎంపికచేయుము"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "డెమోన్ అనువర్తనములు మాత్రమే init స్క్రిప్ట్‍‌ను ఉపయోగించగలవు"
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "పరిమిత అనువర్తనం/వినియోగదారి కు ఉపయోగించు బూలియన్స్‍ జతచేయి/తొలగించుము"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog అనునది తప్పక బూలియన్ విలువైవుండాలి "
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "విధానం దానిలో ఉద్భవింపచేయుటకు సంచయాన్ని ఎంపికచేయుము"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER రకములు స్వయంచాలకంగా tmp రకమును పొందుతాయి"
--#~ msgid "Policy Directory"
--#~ msgstr "విధానం సచయం"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "మీ పరిమిత కార్యముకు మీరు తప్పక నిర్వర్తించదగు పాత్‌ను ప్రవేశపెట్టాలి"
--#~ msgid "Generated Policy Files"
--#~ msgstr "ఉద్భవింపచేసిన విధానం దస్త్రాలు"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
--#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
--#~ "నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను "
--#~ "రూట్‌లానిర్వర్తించుము.  \n"
--#~ "లినక్స్‍ లాగిన్ వినియోగదారులను వినియోగదారి పాత్రలకు మాప్ చేయుటకు semanage లేదా useradd "
--#~ "ఉపయోగించుము.\n"
--#~ "మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
--#~ "వినియోగదారిలా లాగిన్ అవ్వుము మరియు ఈ వినియోగదారి పాత్రను పరిశీలించుము.\n"
--#~ "te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "ఇంటర్ఫేస్ దస్త్రము"
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
--#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
--#~ "\n"
--#~ "నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను\n"
--#~ "నిర్వర్తించుము.  మీరు ఇప్పుడు మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
--#~ "avc సందేశాలను ఉద్భవింపచేయుటకు అనువర్తనంను నడుపుము/పునఃప్రారంభించుము.\n"
--#~ "te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "ఫైల్ కాంటెక్స్ట్‍ దస్త్రము"
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "బూలియన్స్‍ డైలాగ్‌ను జతచేయుము"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "అమర్పు స్క్రిప్ట్‍"
--#~ msgid "Boolean Name"
--#~ msgstr "బూలియన్ నామము"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "నెట్వర్క్ పోర్టు"
--#~ msgid "Role"
--#~ msgstr "పాత్ర"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux పోర్ట్‍\n"
-+"రకము"
--#~ msgid "Existing_User"
--#~ msgstr "ఉన్న వినియోగదారి(_U)"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "నియమం"
--#~ msgid "Application"
--#~ msgstr "అనువర్తనము"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"స్థాయి"
--#~ msgid "%s must be a directory"
--#~ msgstr "%s తప్పక ఒక సంచయం అవ్వాలి"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "పోర్ట్‍"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "పోర్ట్‍ సంఖ్య \"%s\" చెల్లునది కాదు.  0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "జాబితా దర్శనం"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "సమూహం దర్శనం"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -261897,26 +206548,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/te.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux సేవా భద్రత"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "SELinux భద్రతను acct డెమోన్‌ కొరకు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "నిర్వహణాధికారి"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "ప్రాధమికదస్త్రాలను / కు వ్రాయుటకు అన్ని డెమోన్స్‍‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "కేటాయించని ttys ను ఉపయోగించుకొను శక్తిని అన్ని డెమోన్స్‍‌కు అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -261925,164 +206576,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/te.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "వినియోగదారి Privs"
--#~ msgid "You must select a user"
--#~ msgstr "మీరు తప్పక ఒక వినియోగదారిని ఎంపికచేయాలి"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"gadmin SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid "Select executable file to be confined."
--#~ msgstr "పరిమితం చేయుటకు నిర్వర్తించదగు దస్త్రమును ఎంపికచేయుము"
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"అతిధి SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వహించుటకు "
-+"అనుమతించుము"
--#~ msgid "Select init script file to be confined."
--#~ msgstr "పరిమితం చేయుటకు init స్క్రిప్ట్‍ దస్త్రమును ఎంపికచేయుము."
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "మెమొరి భద్రత"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "జావా ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "మౌంట్"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "ఏ దస్త్రమునైనా మోంట్ చేయుటకు మౌంట్‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "ఏ సంచయంనైనా మౌంట్‌చేయుటకు మౌంట్‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "ఎమ్‌ప్లేయర్ ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "ssh ను ssh-keysign నడుపుటకు అనుమతించుము"
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "పరిమిత అనునర్తనములు సృష్టించిన లేదా వ్రాసిన దస్త్రము(లు) ఎంపికచేయుము"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"staff SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "పరిమిత అనువర్తనములు కలిగివున్న మరియు వాటిలోకి వ్రాసిన సంచయము(లు) ఎంపికచేయుము"
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"sysadm SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "విధానం దస్త్రములను దానిలోకి ఉద్బవింపచేయుటకు సంచయమును ఎంపికచేయుము"
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"పరిమితంకాని SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "ప్రస్తుత విధానంనందు ఇప్పటికే నిర్వచించబడిన %s_t ను టైపు చేయుము.\n"
--#~ "మీరు కొనసాగించాలని అనుకుంటున్నారా?"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "నెట్వర్క్‍ ఆకృతీకరణ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "నెట్వర్క్‍ నందు ప్రసారంకావటానికి లేబుల్‌లేని పాకెట్స్‍‌ను అనుమతించుము"
--#~ msgid "Verify Name"
--#~ msgstr "నామమును నిర్ధారించుము"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"వినియోగదారి SELinux వినియోగదారి ఖాతాను నివాససంచయంనందు లేదా /tmp నందు దస్త్రాలను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "మాడ్యూల్ %s.pp ఇప్పటికే ప్రస్తుత విధానంనందు నింపబడింది.\n"
--#~ "మీరు కొనసాగించాలని అనుకుంటున్నారా?"
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "పరిమితంకానిదాన్ని dyntrans నుండి unconfined_execmem లోకి అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "డాటాబేస్‌లు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "mysql సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "postgres సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "X భాగస్వామ్య మెమొరీకి వ్రాయుటకు కక్షిదారులను అనుమతించుము"
--#~ msgid "You must enter a name"
--#~ msgstr "మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"xguest SELinux వినియోగదారి ఖాతాను నివాస సంచయంనందు లేదా /tmp నందు దస్త్రములను నిర్వర్తించుటకు "
-+"అనుమతించుము"
--#~ msgid "You must enter a executable"
--#~ msgstr "మీరు తప్పక ఒక నిర్వర్తినిని ప్రవేశపెట్టవలెను"
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "డెమెన్స్‍‌ను NIS తో నడుచుటకు అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -262090,3996 +206696,3193 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/te.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "వెబ్ అనువర్తనములు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "బదిలీకరణ staff SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "బదిలీకరణ sysadm SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "బదిలీకరణ user SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "బదిలీకరణ xguest SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "staff వెబ్ బ్రౌజర్స్‍‌ను నివాససంచయాలకు వ్రాయుటకు అనుమతినివ్వుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "SELinux భద్రతను అమాండా కొరకు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "అమావిస్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "apmd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "arpwatch డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "auditd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "automount డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "ఆవాహి కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "బ్లూటూత్ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "canna డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "cardmgr డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "క్లస్టర్ సేవిక కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Configue SELinux"
--#~ msgstr "SELinux ను ఆకృతీకరించుము"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"cdrecord ను విభిన్న సారాలను చదువుటకు అనుమతించుము. nfs, samba, తిసివేయగల పరికరములు, "
-+"user temp మరియు నమ్మదగని సారపు దస్త్రములు"
--#, fuzzy
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "పోర్ట్స్‍ తప్పక సంఖ్యలు లేదా 1 నుండి %d వరకు సంఖ్యా స్థాయిలు అవ్వాలి "
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "ciped డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "clamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "clamscan కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "clvmd కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "comsat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "courier డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "cpucontrol డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "cpuspeed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "క్రాన్"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "crond డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "ముద్రణ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "SELinux భద్రతను cupsd బ్యాకెండ్ సేవికకు అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "SELinux భద్రతను cupsd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "SELinux భద్రతను cupsd_lpd కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "SELinux భద్రతను cvs డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "SELinux భద్రతను cyrus డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "SELinux భద్రతను dbskkd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "SELinux భద్రతను dbusd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "SELinux భద్రతను dccd కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "SELinux భద్రతను dccifd కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "SELinux భద్రతను dccm కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "SELinux భద్రతను ddt డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "SELinux భద్రతను devfsd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "SELinux భద్రతను dhcp డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "SELinux భద్రతను dhcpd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "SELinux భద్రతను dictd డెమోన్‌కు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "డెమోన్స్‍‌ను నేరుగా ప్రారంభించుటకు sysadm_t ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "ఎవాల్యూషన్ కొరకు SELinux భద్రతను అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "ఆటలు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "ఆటలు కొరకు SELinux భద్రతను అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "వెబ్ అన్వేషణిల కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "థండర్‌బర్డ్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "distccd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "dmesg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "dnsmasq డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "dovecot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "entropyd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "SELinux భద్రతను fetchmail కొరకు అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "fingerd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "freshclam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "fsdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "gpm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "gss డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Hal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "సారూప్యత"
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "మీ పరిమిత కార్యము/వినియోగదారికి మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "భద్రతా ఇబ్బందులు కానివి విరిగిపోతాయి అని మనకు తెలిసినా అటువంటి వాటిని ఆడిట్ చేయవద్దు"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "అతిధేయనామము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "hotplug డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "howl డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "cups hplip డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "httpd rotatelogs కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD సేవ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "http suexec కొరకు SELinux భద్రతను అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "hwclock డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "i18n డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "imazesrv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "child డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "inetd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "innd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "iptables డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "ircd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "irqbalance డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "iscsi డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "jabberd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "కేర్బరోస్"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "kadmind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "klogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "krb5kdc డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "ktalk డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "kudzu డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "locate డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "lpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "lrrd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "lvm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "mailman కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "వినియోగదారుని దస్త్రాలను చదువుటకు ఎవాల్యాషన్ మరియు థండర్‌బర్డ్‍‌ను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "mdadm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "monopd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "వినియోగదారి దస్త్రాలను చదువుటకు మొజిల్లా అన్వేషణిను అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "mrtg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "mysqld డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "nagios డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "నామపు సేవ"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "నామపు డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "nessusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "నెట్వర్క్‍‌నిర్వాహిక కొరకు SELinux భద్రతను అచేతనంచేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "nfsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "సాంబా"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "nmbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "nrpe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "nscd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "nsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "ntpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "oddjob కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "oddjob_mkhomedir కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "openvpn డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "pam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "pegasus కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "perdition డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "portmap డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "portslave డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "postfix కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "postgresql డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "సాదారణ వినియోగదారి కొరకు pppd నడుచుటకు అనుమతించుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "pptp కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "prelink డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "privoxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "ptal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "pxe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "pyzord కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "quota డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "radiusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "radvd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "rdisc కొరకు SELinux భద్రతను అచేతనం చేయుము"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "readahead కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "వినియోగదారి రకములు ఎక్సిక్యూటబుల్స్‍‌ను అనుమతించవు"
++msgstr ""
++
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+"ప్రామాణికం-కాని ప్రాంతముల (default_t) నందు దస్త్రములను చదువుటకు ప్రోగ్రామ్స్‍‌ను అనుమతించుము"
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "డెమోన్ అనువర్తనములు మాత్రమే init స్క్రిప్ట్‍‌ను ఉపయోగించగలవు"
++
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "restorecond కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog అనునది తప్పక బూలియన్ విలువైవుండాలి "
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "rhgb డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#, fuzzy
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "వినియోగదారి రకములు స్వయంచాలకంగా tmp రకమును పొందుతాయి"
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "ricci కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "మీ పరిమిత కార్యముకు మీరు తప్పక నిర్వర్తించదగు పాత్‌ను ప్రవేశపెట్టాలి"
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "ricci_modclusterd కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము"
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "rlogind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Interface file"
--#~ msgstr "ఇంటర్ఫేస్ దస్త్రము"
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "rpcd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "File Contexts file"
--#~ msgstr "ఫైల్ కాంటెక్స్ట్‍ దస్త్రము"
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "rshd కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Setup Script"
--#~ msgstr "అమర్పు స్క్రిప్ట్‍"
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux పోర్ట్‍\n"
--#~ "రకము"
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "rsync డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Protocol"
--#~ msgstr "నియమం"
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "ఒక డెమోన్‌లా నడుచుటకు బదులుగా ssh ను inetd నుండి అనుమతించుము"
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "స్థాయి"
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "సాంబాను nfs సంచయాలను పంచుకొనుటకు అనుమతించుము"
--#~ msgid "Port"
--#~ msgstr "పోర్ట్‍"
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL దృవీకరణ సేవిక"
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "పోర్ట్‍ సంఖ్య \"%s\" చెల్లునది కాదు.  0 < PORT_NUMBER < 65536 "
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "sasl దృవీకరణ సేవికను /etc/shadow చదువుటకు అనుమతించుము"
--#~ msgid "List View"
--#~ msgstr "జాబితా దర్శనం"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr ""
-+"నిర్వర్తించదగునట్లు మరియు వ్రాయదగునట్లు X-విండోస్ సేవికను మెమోరీ ప్రాంతముకు మాప్ చేయటుకు అనుమతించుము"
--#~ msgid "Group View"
--#~ msgstr "సమూహం దర్శనం"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "saslauthd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux సేవా భద్రత"
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "scannerdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "SELinux భద్రతను acct డెమోన్‌ కొరకు అచేతనంచేయుము"
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "బదిలీకరణను sysadm_t కు అనుమతించ వద్దు, sudo మరియు su ప్రభావితమయ్యాయి."
--#~ msgid "Admin"
--#~ msgstr "నిర్వహణాధికారి"
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "కెర్నల్ మాడ్యాల్స్‍ నింపుటకు ఏ కార్యమును అనుమతించవద్దు"
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "ప్రాధమికదస్త్రాలను / కు వ్రాయుటకు అన్ని డెమోన్స్‍‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "కెర్నల్ SELinux విధానాన్ని సవరించుటకు ఏ కార్యమును అనుమతించవద్దు"
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "కేటాయించని ttys ను ఉపయోగించుకొను శక్తిని అన్ని డెమోన్స్‍‌కు అనుమతించుము"
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "sendmail డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "User Privs"
--#~ msgstr "వినియోగదారి Privs"
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "setrans కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "gadmin SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "setroubleshoot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "అతిధి SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వహించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "slapd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Memory Protection"
--#~ msgstr "మెమొరి భద్రత"
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "slrnpull డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Allow java executable stack"
--#~ msgstr "జావా ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "smbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Mount"
--#~ msgstr "మౌంట్"
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "snmpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "ఏ దస్త్రమునైనా మోంట్ చేయుటకు మౌంట్‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "snort డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "ఏ సంచయంనైనా మౌంట్‌చేయుటకు మౌంట్‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "soundd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "ఎమ్‌ప్లేయర్ ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "sound డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "SSH"
--#~ msgstr "SSH"
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "స్పామ్ భద్రత"
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "ssh ను ssh-keysign నడుపుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "spamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "staff SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "నివాస సంచయాలను వాడుకొనుటకు spamd ను అనుమతించుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "sysadm SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "స్పామ్ ఎస్సాసియన్ డెమోన్ నెట్వర్క్‍ వాడుకను అనుమతించుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "పరిమితంకాని SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "speedmgmt డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Network Configuration"
--#~ msgstr "నెట్వర్క్‍ ఆకృతీకరణ"
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "నెట్వర్క్‍ నందు ప్రసారంకావటానికి లేబుల్‌లేని పాకెట్స్‍‌ను అనుమతించుము"
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "నెట్వర్క్‍‌కు అనుసంధానమగుటకు squid డెమోన్‌ను అనుమతించుము"
--#, fuzzy
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr ""
--#~ "వినియోగదారి SELinux వినియోగదారి ఖాతాలను అతని నివాససంచయంనందు లేదా /tmp నందు దస్త్రాలను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "squid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "పరిమితంకానిదాన్ని dyntrans నుండి unconfined_execmem లోకి అనుమతించుము"
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "ssh డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Databases"
--#~ msgstr "డాటాబేస్‌లు"
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "ssh లాగిన్స్‍‌ను sysadm_r:sysadm_t లా అనుమతించుము"
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "mysql సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr ""
-+"sysadm నివాస సంచయంను శోధించుటకు staff_r వినియోగదారులను అనుమతించుము మరియు దస్త్రములను "
-+"చదువుటకు (~/.bashrc వంటిని)"
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "postgres సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "సార్వజనీయ SSL టన్నెల్"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "stunnel డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Xinetd యొక్క బయట, stunnel డెమోన్ ను స్టాండ్ఎలోన్ గా నడుపుటకు అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "swat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "sxid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "syslogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "system cron jobs కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "tcp డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "telnet డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "tftpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "transproxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "udev డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "uml డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"పరిమితం కానిదానిని నడుపుటకు xinetd ను అనుమతించుము, ఇది ప్రారంభించే ఏ సేవనందైనా అది బాహ్యంగా "
-+"నిర్వచించిన డొమైన్ బదిలీకరణ కలిగివుండదు"
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "X భాగస్వామ్య మెమొరీకి వ్రాయుటకు కక్షిదారులను అనుమతించుము"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"పరిమితం కానివాటిని నడుపుటకు rc స్క్రిప్ట్స్‍‌ను అనుమతించుము, rc స్క్రిప్ట్‍‌తో ప్రారంభమైన ఏ డొమైనయినా అది "
-+"బాహ్యంగా నిర్వచించిన డొమైన్ బదిలీకరణను కలిగివుండదు"
--#, fuzzy
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr ""
--#~ "xguest SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రములను "
--#~ "నిర్వర్తించుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "పరిమితంకాని దాన్ని నడుపుటకు rpm ను అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "పరిమితంకాని వాటిని నడుపుటకు hotplug మరియు insmod వంటి సౌలభ్యాలను అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "updfstab డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "uptimed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "NIS"
--#~ msgstr "NIS"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"user_r ను sysadm_r కు su, sudo, లేదా వినియోగదారిసహాయకి ద్వారా చేరుటకు అనుమతించుము. లేకపోతే, "
-+"staff_r మాత్రమే అలా చేయగలదు "
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "డెమెన్స్‍‌ను NIS తో నడుచుటకు అనుమతించుము"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "మౌంట్ ఆదేశాన్ని నిర్వర్తించుటకు వినియోగాదారులను అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "సాదారణ వినియోగదారుల సూటి మౌస్ వాడుకను అనుమతించుము (X సేవికను మాత్రమే అనుమతించుము)"
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "dmesg ఆదేశాన్ని నడుపుటకు వినియోగాదారులను అనుమతించుము"
--#~ msgid "Web Applications"
--#~ msgstr "వెబ్ అనువర్తనములు"
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr ""
-+"నెట్వర్క్‍ అంతర్‌ఫలకాలను నియంత్రించుటకు వినియోగదారులను అనుమతించుము (USERCTL=true కూడా అవసరము)"
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "బదిలీకరణ staff SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "ping ను సాదారణ వినియోగదారి నిర్వర్తించుటకు అనుమతించుము"
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "బదిలీకరణ sysadm SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "వినియోగదారిని noextattrfile ను చ/వ్రా కు అనుమతించుము (FAT, CDROM, FLOPPY)"
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "బదిలీకరణ user SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "usb పరికరాలను చవ్రా కు వినియోగదారులను అనుమతించుము"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "బదిలీకరణ xguest SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
-+msgstr ""
-+"వినియోగదారులను TCP సేవికలు(పోర్ట్స్‍‌కు బందనమై మరియు అదే డొమాన్ నుండి అనుసంధానంను ఆమోదించు మరియు "
-+"బయట వినియోగదారులనుండి) ను నడుపుటకు అనుమతించుము  దీనిని అచేతనం చేయుట ఇతర నియమాలను మార్చుతుంది"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "staff వెబ్ బ్రౌజర్స్‍‌ను నివాససంచయాలకు వ్రాయుటకు అనుమతినివ్వుము"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "వినియోగదారిని tty దస్త్రాలను మార్చుటకు అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "uucpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "vmware డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "watchdog డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "winbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "xdm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "xdm లాగిన్స్‍‌ను sysadm_r:sysadm_t లాగా అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "xen డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
-+
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "భౌతిక డిస్కు పరికరాలను చదువుట/వ్రాయుట కు xen ను అనుమతించుము"
-+
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "xfs డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "xen control కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "ypbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "NIS సంకేతపదము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "ypserv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "NIS బదిలీకరణ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "SELinux భద్రతను అమాండా కొరకు అచేతనంచేయుము"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr ""
-+"నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను నిర్వహించుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "అమావిస్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr ""
-+"నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను చదువుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "apmd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "మీరు ఖచ్చితంగా %s '%s' ను తొలగించుదామని అనుకుంటున్నారా?"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "arpwatch డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "%s తోలగించుము"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "auditd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "%s జతచేయుము"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "automount డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "%s సవరించుము"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "ఆవాహి కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "అనుమతిగల"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "బ్లూటూత్ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "బలవంతము"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "అచేతనమైన"
-+
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "స్థితి"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "canna డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"విధానం రకమును మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు కారణమౌతుంది. "
-+"చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు కొనసాగించాలని "
-+"అనుకుంటున్నారా?"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "cardmgr డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
-+msgstr ""
-+"SELinux అచేతనంకు మారుటకు పునఃప్రారంభం అవసరము.  ఇది సిఫార్స్‍ చేయబడదు.  మీరు తర్వాత SELinux "
-+"వెనుకకు ఉంచాలని అనుకుంటే, సిస్టమ్‌కు చేర్చవలిసి ఉంటుంది.  మీరు SELinux సిస్టమ్ నందు సమస్యకు "
-+"కారణమౌతుందేమో చూడాలనుకుంటే, మీరు అనుమతిగల రీతి వెళ్ళవచ్చు ఏదైతే దోషాలను మరియు బలవంతంకాని SELinux "
-+"విధానంను లాగ్ చేస్తుందో.  అనుమతిగల రీతికి పునఃప్రారంభం అవసరంలేదు    మీరు కొనసాగిద్దామని "
-+"అనుకుంటున్నారా?"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "క్లస్టర్ సేవిక కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
-+msgstr ""
-+"SELinux చేతనంకు మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు "
-+"కారణమౌతుంది. చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు "
-+"కొనసాగించాలని అనుకుంటున్నారా?"
-+
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "cdrecord ను విభిన్న సారాలను చదువుటకు అనుమతించుము. nfs, samba, తిసివేయగల పరికరములు, "
--#~ "user temp మరియు నమ్మదగని సారపు దస్త్రములు"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"కాపీరైట్ (c)2006 Red Hat, Inc.\n"
-+"కాపీరైట్ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "ciped డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "SELinux లాగిన్ మాపింగ్‌ను జతచేయుము"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "SELinux నెట్వర్కు పోర్ట్స్‍‌ను జతచేయుము"
 +
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux రకము"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "clamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"స్థాయి"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "clamscan కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "దస్త్రము విశదీకరణము"
 +
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "దస్త్రము రకము"
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "clvmd కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+"అన్ని దస్త్రములు\n"
-+"సాదారణ దస్త్రము\n"
-+"సంచయము\n"
-+"అక్షర పరికరము\n"
-+"బ్లాక్ పరికరము\n"
-+"సాకెట్\n"
-+"సింబాలిక్ లింకు\n"
-+"నేమ్డ్‍ పైప్\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "SELinux వినియోగదారిని జతచేయుము"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux నిర్వహణ"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "జతచేయి"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "లక్షణములు(_P)"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "తొలగించు(_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "నిర్వహణ ఆబ్జక్ట్‍‌ను ఎంపికచేయుము"
 +
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>ఎంపికచేయి:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "సిస్టమ్ అప్రమేయ బలవంతపు రీతి"
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "comsat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+"అచేతనము\n"
-+"అనుమతిగల\n"
-+"బలవంతపు\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "ప్రస్తుత బలవంతపు రీతి"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "సిస్టమ్ అప్రమేయ విధాన రకము: "
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "courier డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+"తరువాతి పునఃప్రారంభంనందు మొత్తం దస్త్ర వ్యవస్థను చేర్చాలనుకుంటే ఎంపికచేయండి.  చేర్చుట అనునది చాలా "
-+"ఎక్కువ సమయం తీసుకుంటుంది, సిస్టమ్ యొక్క పరిమాణం మీద ఆదారపడి.  మీరు ఈ విధమైన విధానాలను మార్చుతుంటే "
-+"లేదా అచేతనంనుండి బలవంతపుకు వెళుతుంటే, చేరిక అవసరమౌతుంది."
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "తరువాతి పునఃప్రారంభంనందు చేర్చుము."
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "బూలియన్ అమరికను సిస్టమ్ అప్రమేయంకు తిప్పివుంచుము"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "అన్ని బూలియన్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "బూలియన్సు లాక్‌డౌన్ విజార్డును నడుపుము"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "లాక్‌డౌన్..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "వడపోత"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "దస్త్ర సందర్భంను జతచేయుము"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "దస్త్రము సందర్భంను సవరించుము"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "దస్త్ర సందర్భంను తొలగించుము"
 +
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "అన్నిటి మరియు మలుచుకొనిన దస్త్ర సందర్బం మద్య మారుము"
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "SELinux వినియోగదారి మాపింగ్‌ను జతచేయుము"
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "SELinux వినియోగదారి మాపింగ్ సవరించుము"
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "SELinux వినియోగదారి మాపింగ్ తొలగించుము"
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "వినియోగదారి జతచేయుము"
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "వినియోగదారి సవరించుము"
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "వినియోగదారి తొలగించుము"
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "అనువాదమును జతచేయుము"
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "అనువాదమును సవరించుము"
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "అనువాదమును తొలగించుము"
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "నెట్వర్క్‍ పోర్ట్‍‌ను జతచేయుము"
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "నెట్వర్క్‍ పోర్ట్‍ సరిచేయి"
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "నెట్వర్క్‍ పోర్ట్‍ తొలగించుము"
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "అన్ని పోర్ట్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "కొత్త విధానం మాడ్యూల్‌ను ఉద్భవింపచేయుము"
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "విధానం మాడ్యూల్‌ను నింపుము"
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "నింపదగు విధానం మాడ్యూల్‌ను తీసివేయుము"
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "cpucontrol డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr "అదనపు ఆడిట్ నియమాలను అచేతనం/చేతనం చేయుము, సాదారణంగా లాగ్ దస్త్రములనందు నివేదించబడని."
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "కార్యక్రమము రీతిని అనుమతించదగునదిగా మార్చుము."
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "కార్యక్రమము రీతిని బలవంతపెట్టునదిగా మార్చుము"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "డౌమైన్ ప్రోసెస్ చేయుము"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "cpuspeed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Cron"
--#~ msgstr "క్రాన్"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "crond డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Printing"
--#~ msgstr "ముద్రణ"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "SELinux భద్రతను cupsd బ్యాకెండ్ సేవికకు అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "SELinux భద్రతను cupsd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "SELinux భద్రతను cupsd_lpd కు అచేతనంచేయుము"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "SELinux భద్రతను cvs డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "SELinux భద్రతను cyrus డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "SELinux భద్రతను dbskkd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "SELinux భద్రతను dbusd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "SELinux భద్రతను dccd కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "SELinux భద్రతను dccifd కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "SELinux భద్రతను dccm కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "SELinux భద్రతను ddt డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "SELinux భద్రతను devfsd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "SELinux భద్రతను dhcp డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "SELinux భద్రతను dhcpd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "SELinux భద్రతను dictd డెమోన్‌కు అచేతనంచేయుము"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "డెమోన్స్‍‌ను నేరుగా ప్రారంభించుటకు sysadm_t ను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "ఎవాల్యూషన్ కొరకు SELinux భద్రతను అచేతనంచేయుము"
--
--#~ msgid "Games"
--#~ msgstr "ఆటలు"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "ఆటలు కొరకు SELinux భద్రతను అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "వెబ్ అన్వేషణిల కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "థండర్‌బర్డ్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "distccd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "dmesg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "dnsmasq డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "dovecot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "entropyd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "SELinux భద్రతను fetchmail కొరకు అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "fingerd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "freshclam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "fsdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "gpm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "gss డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "Hal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Compatibility"
--#~ msgstr "సారూప్యత"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr "భద్రతా ఇబ్బందులు కానివి విరిగిపోతాయి అని మనకు తెలిసినా అటువంటి వాటిని ఆడిట్ చేయవద్దు"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "అతిధేయనామము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "hotplug డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "howl డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "cups hplip డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "httpd rotatelogs కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD సేవ"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "http suexec కొరకు SELinux భద్రతను అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "hwclock డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "i18n డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "imazesrv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "child డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "inetd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "innd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "iptables డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "ircd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "irqbalance డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "iscsi డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "jabberd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Kerberos"
--#~ msgstr "కేర్బరోస్"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "kadmind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "klogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "krb5kdc డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "ktalk డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "kudzu డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "locate డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "lpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "lrrd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "lvm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "mailman కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "వినియోగదారుని దస్త్రాలను చదువుటకు ఎవాల్యాషన్ మరియు థండర్‌బర్డ్‍‌ను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "mdadm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "monopd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "వినియోగదారి దస్త్రాలను చదువుటకు మొజిల్లా అన్వేషణిను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "mrtg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "mysqld డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "nagios డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Name Service"
--#~ msgstr "నామపు సేవ"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "నామపు డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "nessusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "నెట్వర్క్‍‌నిర్వాహిక కొరకు SELinux భద్రతను అచేతనంచేయుము"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "nfsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Samba"
--#~ msgstr "సాంబా"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "nmbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "nrpe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "nscd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "nsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "ntpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "oddjob కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "oddjob_mkhomedir కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "openvpn డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "pam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "pegasus కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "perdition డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "portmap డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "portslave డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "postfix కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "postgresql డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "సాదారణ వినియోగదారి కొరకు pppd నడుచుటకు అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "pptp కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "prelink డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "privoxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "ptal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "pxe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "pyzord కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "quota డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "radiusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "radvd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "rdisc కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "readahead కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr ""
--#~ "ప్రామాణికం-కాని ప్రాంతముల (default_t) నందు దస్త్రములను చదువుటకు ప్రోగ్రామ్స్‍‌ను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "restorecond కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "rhgb డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "ricci కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "ricci_modclusterd కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "rlogind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "rpcd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "rshd కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "rsync డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "ఒక డెమోన్‌లా నడుచుటకు బదులుగా ssh ను inetd నుండి అనుమతించుము"
--
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "సాంబాను nfs సంచయాలను పంచుకొనుటకు అనుమతించుము"
--
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL దృవీకరణ సేవిక"
--
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "sasl దృవీకరణ సేవికను /etc/shadow చదువుటకు అనుమతించుము"
--
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr ""
--#~ "నిర్వర్తించదగునట్లు మరియు వ్రాయదగునట్లు X-విండోస్ సేవికను మెమోరీ ప్రాంతముకు మాప్ చేయటుకు "
--#~ "అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "saslauthd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "scannerdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "బదిలీకరణను sysadm_t కు అనుమతించ వద్దు, sudo మరియు su ప్రభావితమయ్యాయి."
--
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "కెర్నల్ మాడ్యాల్స్‍ నింపుటకు ఏ కార్యమును అనుమతించవద్దు"
--
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "కెర్నల్ SELinux విధానాన్ని సవరించుటకు ఏ కార్యమును అనుమతించవద్దు"
--
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "sendmail డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "setrans కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "setroubleshoot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "slapd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "slrnpull డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "smbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "snmpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "snort డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "soundd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "sound డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Spam Protection"
--#~ msgstr "స్పామ్ భద్రత"
--
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "spamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "నివాస సంచయాలను వాడుకొనుటకు spamd ను అనుమతించుము"
--
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "స్పామ్ ఎస్సాసియన్ డెమోన్ నెట్వర్క్‍ వాడుకను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "speedmgmt డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Squid"
--#~ msgstr "Squid"
--
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "నెట్వర్క్‍‌కు అనుసంధానమగుటకు squid డెమోన్‌ను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "squid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "ssh డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "ssh లాగిన్స్‍‌ను sysadm_r:sysadm_t లా అనుమతించుము"
--
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "sysadm నివాస సంచయంను శోధించుటకు staff_r వినియోగదారులను అనుమతించుము మరియు దస్త్రములను "
--#~ "చదువుటకు (~/.bashrc వంటిని)"
--
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "సార్వజనీయ SSL టన్నెల్"
--
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "stunnel డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "Xinetd యొక్క బయట, stunnel డెమోన్ ను స్టాండ్ఎలోన్ గా నడుపుటకు అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "swat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "sxid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "syslogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "system cron jobs కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "tcp డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "telnet డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "tftpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "transproxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "udev డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "uml డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "పరిమితం కానిదానిని నడుపుటకు xinetd ను అనుమతించుము, ఇది ప్రారంభించే ఏ సేవనందైనా అది బాహ్యంగా "
--#~ "నిర్వచించిన డొమైన్ బదిలీకరణ కలిగివుండదు"
--
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "పరిమితం కానివాటిని నడుపుటకు rc స్క్రిప్ట్స్‍‌ను అనుమతించుము, rc స్క్రిప్ట్‍‌తో ప్రారంభమైన ఏ డొమైనయినా అది "
--#~ "బాహ్యంగా నిర్వచించిన డొమైన్ బదిలీకరణను కలిగివుండదు"
--
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "పరిమితంకాని దాన్ని నడుపుటకు rpm ను అనుమతించుము"
--
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr "పరిమితంకాని వాటిని నడుపుటకు hotplug మరియు insmod వంటి సౌలభ్యాలను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "updfstab డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "uptimed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "user_r ను sysadm_r కు su, sudo, లేదా వినియోగదారిసహాయకి ద్వారా చేరుటకు అనుమతించుము. "
--#~ "లేకపోతే, staff_r మాత్రమే అలా చేయగలదు "
--
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "మౌంట్ ఆదేశాన్ని నిర్వర్తించుటకు వినియోగాదారులను అనుమతించుము"
--
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "సాదారణ వినియోగదారుల సూటి మౌస్ వాడుకను అనుమతించుము (X సేవికను మాత్రమే అనుమతించుము)"
--
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "dmesg ఆదేశాన్ని నడుపుటకు వినియోగాదారులను అనుమతించుము"
--
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr ""
--#~ "నెట్వర్క్‍ అంతర్‌ఫలకాలను నియంత్రించుటకు వినియోగదారులను అనుమతించుము (USERCTL=true కూడా "
--#~ "అవసరము)"
--
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "ping ను సాదారణ వినియోగదారి నిర్వర్తించుటకు అనుమతించుము"
--
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "వినియోగదారిని noextattrfile ను చ/వ్రా కు అనుమతించుము (FAT, CDROM, FLOPPY)"
--
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "usb పరికరాలను చవ్రా కు వినియోగదారులను అనుమతించుము"
--
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "వినియోగదారులను TCP సేవికలు(పోర్ట్స్‍‌కు బందనమై మరియు అదే డొమాన్ నుండి అనుసంధానంను ఆమోదించు మరియు "
--#~ "బయట వినియోగదారులనుండి) ను నడుపుటకు అనుమతించుము  దీనిని అచేతనం చేయుట ఇతర నియమాలను "
--#~ "మార్చుతుంది"
--
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "వినియోగదారిని tty దస్త్రాలను మార్చుటకు అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "uucpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "vmware డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "watchdog డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "winbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "xdm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "xdm లాగిన్స్‍‌ను sysadm_r:sysadm_t లాగా అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "xen డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "XEN"
--#~ msgstr "XEN"
--
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "భౌతిక డిస్కు పరికరాలను చదువుట/వ్రాయుట కు xen ను అనుమతించుము"
--
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "xfs డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "xen control కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "ypbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "NIS సంకేతపదము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "ypserv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "NIS బదిలీకరణ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr ""
--#~ "నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను నిర్వహించుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
--
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr ""
--#~ "నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను చదువుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
--
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "మీరు ఖచ్చితంగా %s '%s' ను తొలగించుదామని అనుకుంటున్నారా?"
--
--#~ msgid "Delete %s"
--#~ msgstr "%s తోలగించుము"
--
--#~ msgid "Add %s"
--#~ msgstr "%s జతచేయుము"
--
--#~ msgid "Modify %s"
--#~ msgstr "%s సవరించుము"
--
--#~ msgid "Permissive"
--#~ msgstr "అనుమతిగల"
--
--#~ msgid "Enforcing"
--#~ msgstr "బలవంతము"
--
--#~ msgid "Disabled"
--#~ msgstr "అచేతనమైన"
--
--#~ msgid "Status"
--#~ msgstr "స్థితి"
--
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "విధానం రకమును మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు "
--#~ "కారణమౌతుంది. చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు "
--#~ "కొనసాగించాలని అనుకుంటున్నారా?"
--
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux అచేతనంకు మారుటకు పునఃప్రారంభం అవసరము.  ఇది సిఫార్స్‍ చేయబడదు.  మీరు తర్వాత "
--#~ "SELinux వెనుకకు ఉంచాలని అనుకుంటే, సిస్టమ్‌కు చేర్చవలిసి ఉంటుంది.  మీరు SELinux సిస్టమ్ "
--#~ "నందు సమస్యకు కారణమౌతుందేమో చూడాలనుకుంటే, మీరు అనుమతిగల రీతి వెళ్ళవచ్చు ఏదైతే దోషాలను మరియు "
--#~ "బలవంతంకాని SELinux విధానంను లాగ్ చేస్తుందో.  అనుమతిగల రీతికి పునఃప్రారంభం అవసరంలేదు    "
--#~ "మీరు కొనసాగిద్దామని అనుకుంటున్నారా?"
--
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "SELinux చేతనంకు మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు "
--#~ "కారణమౌతుంది. చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు "
--#~ "కొనసాగించాలని అనుకుంటున్నారా?"
--
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
--
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "కాపీరైట్ (c)2006 Red Hat, Inc.\n"
--#~ "కాపీరైట్ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "SELinux లాగిన్ మాపింగ్‌ను జతచేయుము"
--
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "SELinux నెట్వర్కు పోర్ట్స్‍‌ను జతచేయుము"
--
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux రకము"
--
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
--
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "స్థాయి"
--
--#~ msgid "File Specification"
--#~ msgstr "దస్త్రము విశదీకరణము"
--
--#~ msgid "File Type"
--#~ msgstr "దస్త్రము రకము"
--
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "అన్ని దస్త్రములు\n"
--#~ "సాదారణ దస్త్రము\n"
--#~ "సంచయము\n"
--#~ "అక్షర పరికరము\n"
--#~ "బ్లాక్ పరికరము\n"
--#~ "సాకెట్\n"
--#~ "సింబాలిక్ లింకు\n"
--#~ "నేమ్డ్‍ పైప్\n"
--
--#~ msgid "MLS"
--#~ msgstr "MLS"
--
--#~ msgid "Add SELinux User"
--#~ msgstr "SELinux వినియోగదారిని జతచేయుము"
--
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux నిర్వహణ"
--
--#~ msgid "Add"
--#~ msgstr "జతచేయి"
--
--#~ msgid "_Properties"
--#~ msgstr "లక్షణములు(_P)"
--
--#~ msgid "_Delete"
--#~ msgstr "తొలగించు(_D)"
--
--#~ msgid "Select Management Object"
--#~ msgstr "నిర్వహణ ఆబ్జక్ట్‍‌ను ఎంపికచేయుము"
--
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>ఎంపికచేయి:</b>"
--
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "సిస్టమ్ అప్రమేయ బలవంతపు రీతి"
--
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "ప్రస్తుత బలవంతపు రీతి"
--
--#~ msgid "System Default Policy Type: "
--#~ msgstr "సిస్టమ్ అప్రమేయ విధాన రకము: "
--
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "తరువాతి పునఃప్రారంభంనందు మొత్తం దస్త్ర వ్యవస్థను చేర్చాలనుకుంటే ఎంపికచేయండి.  చేర్చుట అనునది "
--#~ "చాలా ఎక్కువ సమయం తీసుకుంటుంది, సిస్టమ్ యొక్క పరిమాణం మీద ఆదారపడి.  మీరు ఈ విధమైన విధానాలను "
--#~ "మార్చుతుంటే లేదా అచేతనంనుండి బలవంతపుకు వెళుతుంటే, చేరిక అవసరమౌతుంది."
--
--#~ msgid "Relabel on next reboot."
--#~ msgstr "తరువాతి పునఃప్రారంభంనందు చేర్చుము."
--
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "బూలియన్ అమరికను సిస్టమ్ అప్రమేయంకు తిప్పివుంచుము"
--
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "అన్ని బూలియన్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
--
--#~ msgid "Filter"
--#~ msgstr "వడపోత"
--
--#~ msgid "Add File Context"
--#~ msgstr "దస్త్ర సందర్భంను జతచేయుము"
--
--#~ msgid "Modify File Context"
--#~ msgstr "దస్త్రము సందర్భంను సవరించుము"
--
--#~ msgid "Delete File Context"
--#~ msgstr "దస్త్ర సందర్భంను తొలగించుము"
--
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "అన్నిటి మరియు మలుచుకొనిన దస్త్ర సందర్బం మద్య మారుము"
--
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "SELinux వినియోగదారి మాపింగ్‌ను జతచేయుము"
--
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "SELinux వినియోగదారి మాపింగ్ సవరించుము"
--
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "SELinux వినియోగదారి మాపింగ్ తొలగించుము"
--
--#~ msgid "Add Translation"
--#~ msgstr "అనువాదమును జతచేయుము"
--
--#~ msgid "Modify Translation"
--#~ msgstr "అనువాదమును సవరించుము"
--
--#~ msgid "Delete Translation"
--#~ msgstr "అనువాదమును తొలగించుము"
--
--#~ msgid "Modify SELinux User"
--#~ msgstr "SELinux వినియోగదారిని సవరించుము"
--
--#~ msgid "Add Network Port"
--#~ msgstr "నెట్వర్క్‍ పోర్ట్‍‌ను జతచేయుము"
--
--#~ msgid "Edit Network Port"
--#~ msgstr "నెట్వర్క్‍ పోర్ట్‍ సరిచేయి"
--
--#~ msgid "Delete Network Port"
--#~ msgstr "నెట్వర్క్‍ పోర్ట్‍ తొలగించుము"
--
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "అన్ని పోర్ట్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
--
--#~ msgid "Generate new policy module"
--#~ msgstr "కొత్త విధానం మాడ్యూల్‌ను ఉద్భవింపచేయుము"
--
--#~ msgid "Load policy module"
--#~ msgstr "విధానం మాడ్యూల్‌ను నింపుము"
--
--#~ msgid "Remove loadable policy module"
--#~ msgstr "నింపదగు విధానం మాడ్యూల్‌ను తీసివేయుము"
--
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr "అదనపు ఆడిట్ నియమాలను అచేతనం/చేతనం చేయుము, సాదారణంగా లాగ్ దస్త్రములనందు నివేదించబడని."
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "మృదుత్వం స్థాయి"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux వినియోగదారి '%s' అవసరము"
--
--#~ msgid "Requires value"
--#~ msgstr "విలువ అవసరము"
--
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "Invalid prefix %s"
--#~ msgstr "సరికాని ప్రిఫిక్స్‍ %s"
--
--#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
--#~ msgstr ""
--#~ "ఏ tcp పోర్ట్స్‍‌కు అయినా > 1024 కు బంధనం అగుటకు అనువర్తనం/వినియోగదారి ను అనుమతించుము"
--
--#~ msgid "Allows confined application/user role to bind to any tcp port"
--#~ msgstr "ఏ tcp పోర్ట్‍‌కైనా బంధనం అగుటకు పరిమిత అనువర్తనం/వినియోగదారి పాత్ర ను అనుమతిస్తుంది"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర బందనం అగు కామావిభజిత tcp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
--#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
--
--#~ msgid "SELinux Policy Generation Druid"
--#~ msgstr "SELinux విధానం ఉద్భవన డ్రుయిడ్"
--
--#~ msgid "Unreserved Ports  (> 1024)"
--#~ msgstr "నిలువఉంచని పోర్ట్స్‍  (> 1024)"
--
--#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
--#~ msgstr "మీ app కాల్స్‍ bindresvport 0 తో ఉంటే ఈ చెక్‌బటన్‌ను ఉపయోగించండి."
--
--#~ msgid ""
--#~ "Enforcing\n"
--#~ "Permissive\n"
--#~ "Disabled\n"
--#~ msgstr ""
--#~ "బలవంతపు\n"
--#~ "అనుమతిగల\n"
--#~ "అచేతనమైన\n"
-+#: ../gui/usersPage.py:138
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr ""
++
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
++
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr ""
++
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
++
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
++
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
++
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
++
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr ""
++
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
++
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
++
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
++
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
++
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
++
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
++
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr ""
++
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
++
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr ""
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr ""
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++
++#: ../gui/semanagePage.py:126
 +#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "SELinux వినియోగదారి '%s' అవసరము"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils-2.0.85/po/th.po
---- nsapolicycoreutils/po/th.po        2011-02-17 15:11:25.075735680 -0500
-+++ policycoreutils-2.0.85/po/th.po    2011-02-18 16:03:41.446976277 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
++msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
++
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
++
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
++
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/sr.po b/policycoreutils/po/sr.po
+index 7522cca..eb3aa31 100644
+--- a/policycoreutils/po/sr.po
++++ b/policycoreutils/po/sr.po
+@@ -1,27 +1,26 @@
+-# translation of policycoreutils.HEAD.sr.po to Serbian
+-# Serbian translations for policycoreutils
+-# Copyright (C) 2006 Red Hat, Inc.
+-# This file is distributed under the same license as the policycoreutils package.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
+-# Miloš Komarčević <kmilos@gmail.com>, 2006.
++# Translators:
++# Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
+ # Jovan Krunic <jovan.krunic@gmail.com>, 2008.
++# Miloš Komarčević <kmilos@gmail.com>, 2006.
+ # Nikola Pajtić <salgeras@gmail.com>, 2008.
+-# Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
  msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD.sr\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-07 21:19-0400\n"
+-"Last-Translator: Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
+-"Language-Team: Serbian <fedora-trans-sr@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Serbian <trans-sr@lists.fedoraproject.org>\n"
+ "Language: sr\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -116,9 +115,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Не могу да успоставим semanage везу"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Не могу да поставим MLS опсег за %s"
++msgstr "Не могу да испитам статус MLS омогућавања"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -126,36 +124,33 @@ msgstr "Још није имплементирано"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage трансакција је већ у току"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "Не могу да покренем semanage трансакцију"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Не могу да покренем semanage трансакцију"
++msgstr "Не могу да предам semanage трансакцију"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage трансакција није у току"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Не могу да попишем SELinux кориснике"
++msgstr "Не могу да попишем SELinux модуле"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Име модула"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Верзија"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Искључено"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -165,9 +160,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Не могу да додам улогу %s за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -179,24 +174,23 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Допуштање"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Допуштање"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
+ msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
++"Нисам могао да поставим допустиви домен %s (инсталација модула није успела)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "Нисам могао да уклоним допустиви домен %s (уклањање није успело)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -216,9 +210,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Не могу да проверим да ли је одређено пресликавање пријаве за %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux корисник %s не постоји"
++msgstr "Linux група %s не постоји"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -285,15 +279,20 @@ msgid "Could not list login mappings"
+ msgstr "Не могу да попишем пресликавања пријаве"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "Пријавно име"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux корисник"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "MLS/MCS опсег"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -311,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "Не могу да испитам корисника за %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Не могу да додам контекст датотеке за %s"
++msgstr "Морате додати барем једну улогу за %s"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -403,6 +402,7 @@ msgid "MCS Range"
+ msgstr "MCS опсег"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "SELinux улоге"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -415,9 +415,8 @@ msgid "Port is required"
+ msgstr "Неопходан је порт"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Неисправан префикс %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -534,18 +533,17 @@ msgstr "Врста SELinux порта"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "Број портова"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "Неопходан је порт"
++msgstr "Неопходна је адреса чвора"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "Непознат или недостајући протокол"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -562,14 +560,14 @@ msgstr "Не могу да направим кључ за %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "Не могу да проверим да ли је порт %s/%s одређен"
++msgstr "Не могу да проверим да ли је адреса %s одређена"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
- msgid "Could not set mask for %s"
- msgstr ""
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
- msgid "Could not set user in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
- msgid "Could not set role in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
- msgid "Could not set type in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
- msgid "Could not set mls fields in addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
- msgid "Could not set addr context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
- msgid "Could not add addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
- msgid "Addr %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
- msgid "Could not query addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
- msgid "Could not modify addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
- msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-msgstr "Не могу да направим кључ за %s"
++msgstr "Не могу да направим адресу за %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -578,74 +576,72 @@ msgid "Could not create context for %s"
+ msgstr "Не могу да направим контекст за %s"
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mask for %s"
+-msgstr "Не могу да поставим име за %s"
++msgstr "Не могу да поставим маску за %s"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set user in addr context for %s"
+-msgstr "Не могу да поставим корисника у контексту датотеке за %s"
++msgstr "Не могу да поставим корисника у контексту адресе за %s"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set role in addr context for %s"
+-msgstr "Не могу да поставим улогу у контексту датотеке за %s"
++msgstr "Не могу да поставим улогу у контексту адресе за %s"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set type in addr context for %s"
+-msgstr "Не могу да поставим врсту у контексту датотеке за %s"
++msgstr "Не могу да поставим врсту у контексту адресе за %s"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set mls fields in addr context for %s"
+-msgstr "Не могу да поставим mls поља у контексту датотеке за %s"
++msgstr "Не могу да поставим mls поља у контексту адресе за %s"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set addr context for %s"
+-msgstr "Не могу да поставим контекст датотеке за %s"
++msgstr "Не могу да поставим контекст адресе за %s"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not add addr %s"
+-msgstr "Не могу да додам порт %s/%s"
++msgstr "Не могу да додам адресу %s"
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is not defined"
+-msgstr "Порт %s/%s није одређен"
++msgstr "Адреса %s није одређена"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not query addr %s"
+-msgstr "Не могу да испитам порт %s/%s"
++msgstr "Не могу да испитам адресу %s"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not modify addr %s"
+-msgstr "Не могу да изменим порт %s/%s"
++msgstr "Не могу да изменим адресу %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
+ msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr "Порт %s/%s је одређен у полиси, не може се брисати"
++msgstr "Адреса %s је одређена у полиси, не може се брисати"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete addr %s"
+-msgstr "Не могу да обришем %s"
++msgstr "Не могу да обришем адресу %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Не могу да обришем пресликавање пријаве за %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Не могу да излистам портове"
++msgstr "Не могу да излистам адресе"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -719,9 +715,8 @@ msgid "Could not delete interface %s"
+ msgstr "Не могу да обришем сучеље %s"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Не могу да обришем сучеље %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -736,9 +731,9 @@ msgid "Context"
+ msgstr "Контекст"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Контекст датотеке за %s је већ одређен"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -746,9 +741,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux корисник %s не постоји"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not query file context %s"
+@@ -868,11 +863,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -891,14 +885,14 @@ msgid "Could not query file context %s"
+ msgstr "Не могу да испитам контекст датотеке %s"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "Морате унети вредност"
++msgstr "Морате навести једну од следећих вредности: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "Не могу да обришем логички израз %s"
++msgstr "Не могу да поставим активну вредност логичке %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -908,7 +902,7 @@ msgstr "Не могу да изменим логички израз %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Лош формат %s: запис %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -941,15 +935,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux логичка"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Статус"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "Опис"
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+@@ -1289,1767 +1283,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "Грешка опција %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Не могу да отворим %s: преводи нису подржани на машинама које нису MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "Ниво"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "Превод"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Преводи не смеју да садрже размаке „%s“ "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Неисправан ниво „%s“ "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s је већ одређено у преводима"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s није одређено у преводима"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Пресликавање пријаве за %s је већ одређено"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Додај SELinux корисничко мапирање"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux корисник %s је већ одређен"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Неопходан је порт"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Порт %s/%s је већ одређен"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Сучеље %s је већ одређено"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Грешка при иницијализацији могућности, одустајем.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Грешка при постављању могућности, одустајем\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Грешка при постављању KEEPCAPS, одустајем\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Грешка при одбацивању могућности, одустајем.\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Грешка при одбацивању SETUID могућности, одустајем\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Грешка при ослобађању могућности\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "преводи нису подржани на машинама које нису MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "Логичка вредност"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "све"
+-
+-#~ msgid "Customized"
+-#~ msgstr "Прилагођен"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "File Labeling"
+-#~ msgstr "Означавање датотека"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Спецификације\n"
+-#~ "датотеке"
+-
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "Врста датотеке"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Врста\n"
+-#~ "датотеке"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid "User Mapping"
+-#~ msgstr "Мапирање корисника"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Пријавно\n"
+-#~ "име"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "корисник"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS опсег"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Пријава „%s“ је неопходна"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Модул полисе"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Искључи Audit"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Укључи Audit"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Учитај модул полисе"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Ред Хет 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "Miloš Komarčević <kmilos@gmail.com>, 2007."
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Алат за прављење SELinux полиса"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "Ова алатка се може употребити за прављење радног оквира полиса, ради "
+-#~ "ограничавања програма и корисника користећи SELinux.   \n"
+-#~ "\n"
+-#~ "Алатка производи:\n"
+-#~ "датотеку за приморавање врсте (te)\n"
+-#~ "датотеку сучеља (if)\n"
+-#~ "датотеку са контекстима датотека (fc)\n"
+-#~ "скрипту командног окружења (sh) - користи се за компилирање и инсталацију "
+-#~ "полисе. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Изаберите врсту програма/корисничке улоге коју треба ограничити"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Програми</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Стандардна инит системска услуга су услуге који се покрећу са подизањем "
+-#~ "система преко инит скрипти.  Обично захтева скрипту у /etc/rc.d/init.d"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Стандардна инит системска услуга"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Системска услуга за интернет сервисе су услуге које покреће xinetd"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Системска услуга за интернет сервисе (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "Веб програми/скрипте (CGI) CGI скрипте које покреће веб сервер (apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Веб програми/скрипте (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Кориснички програм је било који програм који бисте желели да ограничите "
+-#~ "да је стартован од стране корисника"
+-
+-#~ msgid "User Application"
+-#~ msgstr "Кориснички програм"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Корисници пријављивања</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "Измени постојећи запис корисника за пријављивање."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "Постојеће корисничке улоге"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "Овај корисник ће се пријавити на машину само преко терминала или удаљеном "
+-#~ "пријавом. Подразумевано овај корисник неће имати setuid, мрежу, sudo, "
+-#~ "нити su."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "Минимална улога корисника терминала"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "Овај корисник може да се пријави на машину преко Икс система прозора или "
+-#~ "терминала. Подразумевано овај корисник неће имати setuid, мрежу, sudo, "
+-#~ "нити su"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "Минимална улога корисника Икс система прозора"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "Корисник са потпуном мрежом, без setuid програма без пролаза, без sudo, "
+-#~ "без su."
+-
+-#~ msgid "User Role"
+-#~ msgstr "Корисничка улога"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "Корисник са потпуном мрежом, без setuid програма без пролаза, без su, "
+-#~ "може да користи sudo на корисничким улогама Root администратора"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "Улога администраторског корисника"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Root корисници</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Изаберите корисничку улогу Root администратора, ако ће овај корисник "
+-#~ "вршити администрацију машине док ради као root. Овај корисник неће моћи "
+-#~ "да се директно пријави у систем."
+-
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Корисничка улога Root администратора"
+-
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "Унесите назив програма или корисничку улогу коју треба ограничити."
+-
+-#~ msgid "Name"
+-#~ msgstr "Име"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Унесите пуну путању извршне датотеке коју треба ограничити."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Унесите јединствени назив за ограничени програм или корисничку улогу."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Извршна датотека"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Инит скрипта"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Унесите потпуну путању до скрипте за иницијализацију, која стартује "
+-#~ "ограничени програм."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "Изаберите корисничке улоге које желите да прилагодите"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr ""
+-#~ "Изаберите корисничке улоге које ће се пребацити на ове програмске домене."
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr ""
+-#~ "Изаберите додатне домене кроз које ће ова корисничка улога пролазити"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Изаберите програмске домене на које бисте желели да се ова корисничка "
+-#~ "улога пребаци."
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "Изаберите корисничке улоге које ће се пребацити на овај домен"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "Изаберите додатне домене које ће овај корисник администрирати"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr ""
+-#~ "Изаберите програмске домене које бисте желели овај корисник администрира"
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Изаберите додатне улоге за овог корисника"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "Унесите мрежне портове које ова улога програма/корисника ослушкује"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP портови</b>"
+-
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Дозвољава ограниченој улози програма/корисника да се веже на било који "
+-#~ "udp порт"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "All"
+-#~ msgstr "Све"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Дозволи улози програма/корисника да позове bindresvport са 0. Везивање на "
+-#~ "портове 600-1024"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Унесите списак udp портова или опсег портова раздвојене зарезима на које "
+-#~ "се веже улога програма/корисника. Пример: 612, 650-660"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Нерезервисани портови (>1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Изабери портове"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Дозвољава улози програма/корисника да се веже на било који udp порт > 1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP портови</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Унесите мрежне портове на које се ова улога програма/корисника повезује"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Унесите списак tcp портова или опсег портова раздвојене зарезима на које "
+-#~ "се повезује улога програма/корисника. Пример: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Унесите списак udp портова или опсег портова раздвојене зарезима на које "
+-#~ "се повезује улога програма/корисника. Пример: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "Изаберите уобичајене карактеристике програма"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "Пише syslog поруке\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "Направи/руководи привременим подацима у /tmp"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "Користи Pam за аутентификацију"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "Користи nsswitch или getpw* позиве"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "Користи dbus"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Шаље поруке контроле"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "У вези са терминалом"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "Шаље е-поруку"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "Изаберите датотеке/директоријуме које програм руководи"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Додајте датотеке/директоријуме који су потребни програму да у њих \"Пише"
+-#~ "\". Pid датотеке, датотеке дневника, /var/lib датотеке ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Изаберите логичке променљиве које овај програм користи"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Додај/уклони логичке променљиве коришћене за овај ограничени програм/"
+-#~ "корисник"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "Изаберите директоријум у коме ће се генерисати полисе"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Директоријум полисе"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Датотеке направљене полисе"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Ова алатка ће генерисати следеће: \n"
+-#~ "врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
+-#~ "командног окружења(sh)\n"
+-#~ "Извршите скрипту командног окружења као root корисник да бисте \n"
+-#~ "компајлирали/инсталирали и поново поставили ознаке на \n"
+-#~ "датотекама/директоријумима. \n"
+-#~ "Користите semanage или useradd да мапирате Linux кориснике за "
+-#~ "пријављивање \n"
+-#~ "на корисничке улоге.\n"
+-#~ "Поставите машину у допуштајући режим (setenforce 0). \n"
+-#~ "Пријавите се као корисник и тестирајте ову корисничку улогу.\n"
+-#~ "Користите audit2allow -R да бисте генерисали додатна правила за te "
+-#~ "датотеку.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Ова алатка ће генерисати следеће: \n"
+-#~ "врсту приморавања(te), контекст датотеке(fc), интерфејс(if), скрипту \n"
+-#~ "командног окружења(sh)\n"
+-#~ "\n"
+-#~ "Извршите скрипту командног окружења да бисте компајлирали/инсталирали и \n"
+-#~ "поново поставили ознаке на датотекама/директоријумима. \n"
+-#~ "Поставите машину у допуштајући режим (setenforce 0). \n"
+-#~ "Извршите/поново покрените програм да бисте генерисали avc поруке.\n"
+-#~ "Користите audit2allow -R да бисте генерисали додатна правила за te "
+-#~ "датотеку.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "Додај дијалог логичких променљивих"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "Назив логичке вредности"
+-
+-#~ msgid "Role"
+-#~ msgstr "Улога"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "Постојећи_корисник"
+-
+-#~ msgid "Application"
+-#~ msgstr "Програм"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s мора бити директоријум"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "Морате изабрати корисника"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Изаберите извршну датотеку коју бисте желели да ограничите."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Изаберите инит скрипту коју бисте желели да ограничите."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "Изаберите датотеку(е) коју ограничени програм прави или у њу пише"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Изаберите директоријум(е) који ограничени програм поседује или у њега пише"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "Изаберите директоријум у коме ћете правити датотеке полисе"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Врста %s_t је већ одређена у тренутној полиси.\n"
+-#~ "Да ли желите да наставите?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "Потврди име"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Модул %s.pp је већ учитан у тренутну полису.\n"
+-#~ "Да ли желите да наставите?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Морате унети име"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Морате унети извршни програм"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Подесите SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "Портови морају бити бројеви или опсези бројева од 1 до %d "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "Морате унети име вашег ограниченог процеса/корисника"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Типови корисника нису дозвољене извршне датотеке"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "Само програми-системске услуге могу користити инит скрипту"
+-
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog мора бити логичка вредност"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Типови корисника аутоматски добијају tmp врсту"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "Морате унети путању извршне датотеке за ваш ограничени процес"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Датотека за врсту приморавања"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "Interface file"
+-#~ msgstr "Датотека спреге"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "File Contexts file"
+-#~ msgstr "Датотека за контексте датотека"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Setup Script"
+-#~ msgstr "Скрипта за поставке"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux порт\n"
+-#~ "Врста"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "Protocol"
+-#~ msgstr "Протокол"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "Ниво"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Port"
+-#~ msgstr "Порт"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Број порта „%s“ није исправан.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "List View"
+-#~ msgstr "Приказ листе"
+-
+-#~ msgid "Group View"
+-#~ msgstr "Групни преглед"
+-
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Заштита SELinux сервиса"
+-
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Онемогући SELinux заштиту за acct системску услугу"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Admin"
+-#~ msgstr "Администратор"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr ""
+-#~ "Допусти свим системским услугама да уписују датотеке језгра на / "
+-#~ "директоријум"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr ""
+-#~ "Допусти свим системским услугама могућност да користе неалоциране tty "
+-#~ "терминале"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "User Privs"
+-#~ msgstr "Овлашћења корисника"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Допусти gadmin SELinux корисничким налозима да извршавају датотеке у "
+-#~ "својим личним директоријумима"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Допусти да гостујући SELinux кориснички налози извршавају датотеке у "
+-#~ "својим личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Memory Protection"
+-#~ msgstr "Заштита меморије"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Допусти java-и извршни стек"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Допусти да mount монтира било коју датотеку"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Допусти да mount монтира било који директоријум"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Допусти mplayer-у извршни стек"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Допусти да ssh извршава ssh-keysign"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Допусти да staff SELinux кориснички налози извршавају датотеке у својим "
+-#~ "личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Допусти да sysadm SELinux кориснички налози извршавају датотеке у својим "
+-#~ "личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Допусти да неограничени SELinux кориснички налози извршавају датотеке у "
+-#~ "својим личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Network Configuration"
+-#~ msgstr "Мрежна подешавања"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Допусти да неозначени пакети путују мрежом"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Допусти да user SELinux кориснички налози извршавају датотеке у својим "
+-#~ "личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Допусти да неограниченим да се пребаце у unconfined_execmem"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Базе података"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Допусти кориснику да се повеже на mysql сокет"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Допусти кориснику да се повеже на postgres сокет"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Допусти клијентима да уписују у дељену меморију Икс сервера"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Допусти да xguest SELinux кориснички налози извршавају датотеке у својим "
+-#~ "личним директоријумима или у /tmp директоријуму"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Дозволи системским услугама да се покрећу са NIS сервисом"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Web Applications"
+-#~ msgstr "Веб програми"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "Пребацивање staff SELinux корисника на Web Browser домен"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "Пребацивање sysadm SELinux корисника на Web Browser домен"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "Пребацивање user SELinux корисника на Web Browser домен"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "Пребацивање xguest SELinux корисника на Web Browser домен"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "Допусти особљу Web Browser-а да уписује у личне директоријуме"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Искључи SELinux заштиту за amanda-у"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Искључи SELinux заштиту за amavis"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Искључи SELinux заштиту за apmd системску услугу"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Искључи SELinux заштиту за arpwatch системску услугу"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Искључи SELinux заштиту за auditd системску услугу"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Искључи SELinux заштиту за automount системску услугу"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Искључи SELinux заштиту за avahi"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Искључи SELinux заштиту за bluetooth системску услугу"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Искључи SELinux заштиту за canna системску услугу"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Искључи SELinux заштиту за cardmgr системску услугу"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Искључи SELinux заштиту за Cluster сервер"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Допусти да cdrecord чита различит садржај. nfs, samba, removable devices, "
+-#~ "user temp и датотеке са непоузданим садржајем"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Искључи SELinux заштиту за ciped системску услугу"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Искључи SELinux заштиту за clamd системску услугу"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Искључи SELinux заштиту за clamscan"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Искључи SELinux заштиту за clvmd"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Искључи SELinux заштиту за comsat системску услугу"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Искључи SELinux заштиту за courier системску услугу"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Искључи SELinux заштиту за cpucontrol системску услугу"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Искључи SELinux заштиту за cpuspeed системску услугу"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Искључи SELinux заштиту за crond системску услугу"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Printing"
+-#~ msgstr "Штампање"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Искључи SELinux заштиту за cupsd позадински сервер"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Искључи SELinux заштиту за cupsd системску услугу"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Искључи SELinux заштиту за cupsd_lpd"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Искључи SELinux заштиту за cvs системску услугу"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Искључи SELinux заштиту за cyrus системску услугу"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Искључи SELinux заштиту за dbskk системску услугу"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Искључи SELinux заштиту за dbusd системску услугу"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Искључи SELinux заштиту за dccd"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Искључи SELinux заштиту за dccifd"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Искључи SELinux заштиту за dccm"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Искључи SELinux заштиту за ddt системску услугу"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Искључи SELinux заштиту за devfsd системску услугу"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Искључи SELinux заштиту за dhcpc системску услугу"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за dhcpd системску услугу"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Искључи SELinux заштиту за dictd системску услугу"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Допусти да sysadm_t директно покреће системске услуге"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Искључи SELinux заштиту за Evolution"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Games"
+-#~ msgstr "Игре"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Искључи SELinux заштиту за игре"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Искључи SELinux заштиту за веб читаче"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Искључи SELinux заштиту за Thunderbird"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Искључи SELinux заштиту за distccd системску услугу"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Искључи SELinux заштиту за dmesg системску услугу"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Искључи SELinux заштиту за dnsmasq системску услугу"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Искључи SELinux заштиту за dovecot системску услугу"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Искључи SELinux заштиту за entropyd системску услугу"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Искључи SELinux заштиту за fetchmail"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Искључи SELinux заштиту за fingerd системску услугу"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Искључи SELinux заштиту за freshclam системску услугу"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Искључи SELinux заштиту за fsdaemon системску услугу"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Искључи SELinux заштиту за gpm системску услугу"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Искључи SELinux заштиту за gss системску услугу"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Искључи SELinux заштиту за Hal системску услугу"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Compatibility"
+-#~ msgstr "Усаглашеност"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Не користи audit за ствари које знамо да су покварене, али које нису "
+-#~ "ризичне по сигурност"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Искључи SELinux заштиту за hostname системску услугу"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Искључи SELinux заштиту за hotplug системску услугу"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Искључи SELinux заштиту за howl системску услугу"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Искључи SELinux заштиту за cups hplip системску услугу"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Искључи SELinux заштиту за httpd rotatelogs"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD сервис"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Искључи SELinux заштиту за http suexec"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Искључи SELinux заштиту за hwclock системску услугу"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Искључи SELinux заштиту за i18n системску услугу"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -266641,7 +210444,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Искључи SELinux заштиту за imazesrv системску услугу"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
@@ -266665,220 +210470,328 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Искључи SELinux заштиту за потомке inetd системске услуге"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Искључи SELinux заштиту за inetd системску услугу"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Искључи SELinux заштиту за innd системску услугу"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Искључи SELinux заштиту за iptables системску услугу"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Искључи SELinux заштиту за ircd системску услугу"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Искључи SELinux заштиту за irqbalance системску услугу"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Искључи SELinux заштиту за iscsi системску услугу"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Искључи SELinux заштиту за jabberd системску услугу"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Искључи SELinux заштиту за kadmind системску услугу"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Искључи SELinux заштиту за klogd системску услугу"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Искључи SELinux заштиту за krb5kdc системску услугу"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Искључи SELinux заштиту за ktalk системску услугу"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Искључи SELinux заштиту за kudzu системску услугу"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Искључи SELinux заштиту за locate системску услугу"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за lpd системску услугу"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Искључи SELinux заштиту за lrrd системску услугу"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Искључи SELinux заштиту за lvm системску услугу"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Искључи SELinux заштиту за mailman"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Допусти evolution-у и thunderbird-у да читају датотеке корисника"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Искључи SELinux заштиту за mdadm системску услугу"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Искључи SELinux заштиту за monopd системску услугу"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Допусти да mozilla читач чита датотеке корисника"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Искључи SELinux заштиту за mrtg системску услугу"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Искључи SELinux заштиту за mysqld системску услугу"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Искључи SELinux заштиту за nagios системску услугу"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "Сервис за именовање"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Искључи SELinux заштиту за named системску услугу"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Искључи SELinux заштиту за nessusd системску услугу"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Искључи SELinux заштиту за NetworkManager"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Искључи SELinux заштиту за nfsd системску услугу"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Искључи SELinux заштиту за nmbd системску услугу"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Искључи SELinux заштиту за nrpe системску услугу"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Искључи SELinux заштиту за nscd системску услугу"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Искључи SELinux заштиту за nsd системску услугу"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за ntpd системску услугу"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Искључи SELinux заштиту за oddjob"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Искључи SELinux заштиту за oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Искључи SELinux заштиту за openvpn системску услугу"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Искључи SELinux заштиту за pam системску услугу"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Искључи SELinux заштиту за pegasus"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Искључи SELinux заштиту за perdition системску услугу"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Искључи SELinux заштиту за portmap системску услугу"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Искључи SELinux заштиту за portslave системску услугу"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Искључи SELinux заштиту за postfix"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Искључи SELinux заштиту за postgresql системску услугу"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Допусти pppd да буде доступан за коришћење обичним корисницима"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Искључи SELinux заштиту за pptp"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Искључи SELinux заштиту за prelink системску услугу"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Искључи SELinux заштиту за privoxy системску услугу"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Искључи SELinux заштиту за ptal системску услугу"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Искључи SELinux заштиту за pxe системску услугу"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
@@ -267005,231 +210918,342 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Искључи SELinux заштиту за pyzord"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Искључи SELinux заштиту за quota системску услугу"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Искључи SELinux заштиту за radiusd системску услугу"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Искључи SELinux заштиту за radvd системску услугу"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Искључи SELinux заштиту за rdisc"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Искључи SELinux заштиту за readahead"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Допусти да програми читају датотеке које се налазе на нестандардним "
+-#~ "местима (default_t)"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Искључи SELinux заштиту за restorecond"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Искључи SELinux заштиту за rhgb системску услугу"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Искључи SELinux заштиту за ricci"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Искључи SELinux заштиту за ricci_modclusterd"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Искључи SELinux заштиту за rlogind системску услугу"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Искључи SELinux заштиту за rpcd системску услугу"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Искључи SELinux заштиту за rshd"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Искључи SELinux заштиту за rsync системску услугу"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "Допусти да се ssh извршава из inetd уместо као системска услуга"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Допусти да Samba дели nfs директоријуме"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL сервер аутентификације"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Допусти sasl серверу аутентификације да чита /etc/shadow"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Допусти X-Windows серверу да пресликава меморијски простор као извршну "
+-#~ "датотеку са могућношћу писања"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Искључи SELinux заштиту за saslauthd системску услугу"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Искључи SELinux заштиту за scannerdaemon системску услугу"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Не допуштај прелаз на sysadm_t, изазван командама sudo и su"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Не допуштај ниједном процесу да учита модуле језгра"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "Не допуштај ниједном процесу да мења SELinux полису језгра"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Искључи SELinux заштиту за sendmail системску услугу"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Искључи SELinux заштиту за setrans"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Искључи SELinux заштиту за setroublesoot системску услугу"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Искључи SELinux заштиту за slapd системску услугу"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Искључи SELinux заштиту за slrnpull системску услугу"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Искључи SELinux заштиту за smbd системску услугу"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за snmpd системску услугу"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Искључи SELinux заштиту за snort системску услугу"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Искључи SELinux заштиту за soundd системску услугу"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Искључи SELinux заштиту за sound системску услугу"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "Заштита од нежељене поште"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Искључи SELinux заштиту за spamd системску услугу"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Допусти да spamd приступа личним директоријумима"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Допусти приступ мрежи програму за уклањање нежељене поште"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Искључи SELinux заштиту за speedmgmt системску услугу"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Допусти squid системској услузи да се споји на мрежу"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Искључи SELinux заштиту за squid системску услугу"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Искључи SELinux заштиту за ssh системску услугу"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Допусти ssh пријаве као sysadm_r:sysadm_t"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Допусти да staff_r корисници претражују sysadm лични директоријум и "
+-#~ "читају датотеке (као што је ~/.bashrc)"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Универзални SSL тунел"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Искључи SELinux заштиту за stunnel системску услугу"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Допусти да се stunnel системска услуга самостално извршава, изван xinetd"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Искључи SELinux заштиту за swat системску услугу"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Искључи SELinux заштиту за sxid системску услугу"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -267239,54 +211263,69 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Искључи SELinux заштиту за syslogd системску услугу"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Искључи SELinux заштиту за системске cron послове"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Искључи SELinux заштиту за tcp системску услугу"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Искључи SELinux заштиту за telnet системску услугу"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за tftpd системску услугу"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Искључи SELinux заштиту за transproxy системску услугу"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Искључи SELinux заштиту за udev системску услугу"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Искључи SELinux заштиту за uml системску услугу"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Допусти да се xinetd извршава као неограничен, укључујући ту све сервисе "
+-#~ "које стартује, а који немају изричито одређен прелаз домена"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -267297,1823 +211336,2554 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Допусти да се rc скрипта неограничено извршава, укључујући ту све "
+-#~ "системске услуге које rc стартује, а који немају изричито одређен прелаз "
+-#~ "домена"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Допусти да се rpm извршава неограничено"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Допусти да се привилеговане алатке, као што су hotplug и insmod, "
+-#~ "извршавају неограничено"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Искључи SELinux заштиту за updfstab системску услугу"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Искључи SELinux заштиту за uptimed системску услугу"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Допусти да user_r користи sysadm_r преко su, sudo, или userhelper. У "
+-#~ "противном, само staff_r може тако да ради"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Дозволи корисницима извршавање mount наредбе"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Допусти обичним корисницима директан приступ мишу (само допусти Икс "
+-#~ "серверу)"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Допусти корисницима да извршавају dmesg команду"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Допусти корисницима да управљају мрежним сучељима (такође је потребно да "
+-#~ "је USERCTL=true)"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Допусти нормалном кориснику да извршава ping"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "Допусти кориснику да чита/пише у noextattrfile (FAT, CDROM, FLOPPY)"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Допусти да корисници читају/пишу на usb уређаје"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Допусти корисницима да извршавају TCP сервере (да се повезују на портове "
+-#~ "и примају везе са истих домена или спољних корисника)  искључивање ове "
+-#~ "опције доводи до пасивног начина пада FTP-а и може узроковати промене "
+-#~ "других протокола"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Допусти кориснику да прати tty датотеке"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Искључи SELinux заштиту за uucpd системску услугу"
+-
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Искључи SELinux заштиту за vmware системску услугу"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Искључи SELinux заштиту за watchdog системску услугу"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Искључи SELinux заштиту за winbind системску услугу"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Искључи SELinux заштиту за xdm системску услугу"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Допусти да се xdm пријављује као sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Искључи SELinux заштиту за xen системску услугу"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Допусти да xen чита/пише по физичким уређајима (дисковима)"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Искључи SELinux заштиту за xfs системску услугу"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Искључи SELinux заштиту за xen контролу"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Искључи SELinux заштиту за ypbind системску услугу"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Искључи SELinux заштиту за NIS системску услугу за лозинке"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Искључи SELinux заштиту за ypserv системску услугу"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Искључи SELinux заштиту за NIS системску услугу за пренос"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Допусти да SELinux webadm корисник управља личним директоријумима "
+-#~ "корисника без привилегија"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Допусти да SELinux webadm корисник може да чита из личних директоријума "
+-#~ "корисника без привилегија"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Да ли сте сигурни да желите да обришете %s „%s“?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Обриши %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Додај %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Измени %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Допуштање"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Приморавање"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Мењање врсте полисе ће проузроковати мењање ознака за цео систем датотека "
+-#~ "при следећем подизању система. Мењање ознака прилично дуго траје и то "
+-#~ "време зависи од величине система датотека.  Желите ли да наставите?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Искључивање SELinux-а захтева поновно подизање система.  Није "
+-#~ "препоручљиво.  Ако касније одлучите да укључите SELinux, систем ће морати "
+-#~ "да промени ознаке.  Ако само хоћете да видите да ли SELinux изазива "
+-#~ "проблеме на вашем систему, можете прећи у допуштајући начин рада, који ће "
+-#~ "само само бележити поруке у дневник, али не и спроводити SELinux "
+-#~ "полису.    Желите ли да наставите?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Укључивање SELinux-а ће проузроковати мењање ознака за цео систем "
+-#~ "датотека при следећем подизању система. Мењање ознака прилично дуго траје "
+-#~ "и то време зависи од величине система датотека.  Желите ли да наставите?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Ауторска права 2006 Ред Хет, Инц.\n"
+-#~ "Ауторска права 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Додај SELinux мапирање пријаве"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Додај SELinux мрежне портове"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux врста"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Ниво"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Спецификација датотеке"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Врста датотеке"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "све датотеке\n"
+-#~ "обичан фајл\n"
+-#~ "директоријум\n"
+-#~ "уређај за карактере\n"
+-#~ "уређај блокова\n"
+-#~ "сокет\n"
+-#~ "симболичка веза\n"
+-#~ "именована цев\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Додај SELinux корисника"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux администрација"
+-
+-#~ msgid "Add"
+-#~ msgstr "Додај"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Својства"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Обриши"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Изаберите управљачки објекат"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Изаберите:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Подразумевани системски режим приморавања"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Текући режим приморавања"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Подразумевана системска врста полисе:"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Изаберите да ли желите да поново означите целокупан систем датотека при "
+-#~ "следећем подизању система.  Поновно означавање може трајати јако дуго, у "
+-#~ "зависности од величине система.  Ако мењате врсте полиса или идете са "
+-#~ "искљученог на приморавање, поновно означавање је неопходно."
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Поново означи при следећем покретању."
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Врати логичке променљиве на подразумеване системске поставке"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Пребаци између Прилагођених и Свих логичких променљивих"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Filter"
+-#~ msgstr "Филтар"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid "Add File Context"
+-#~ msgstr "Додај контекст датотеке"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid "Modify File Context"
+-#~ msgstr "Измени контекст датотеке"
+-
+-#~ msgid "Delete File Context"
+-#~ msgstr "Обриши контекст датотеке"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Пребаци између свих и прилагођених контекста датотека"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Додај SELinux корисничко мапирање"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Измени SELinux корисничко мапирање"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Обриши SELinux корисничко мапирање"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
+-#~ msgid "Add Translation"
+-#~ msgstr "Додај превод"
+-
+-#~ msgid "Modify Translation"
+-#~ msgstr "Измени превод"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "Обриши превод"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Изменим SELinux корисника"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
+-#~ msgid "Add Network Port"
+-#~ msgstr "Додај мрежни порт"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Уреди мрежни порт"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Обриши мрежни порт"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Пребаци између прилагођених и свих портова"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Направи нови модул полисе"
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
+-#~ msgid "Load policy module"
+-#~ msgstr "Учитај модул полисе"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Уклони учитавајуће модуле полисе"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Укључи/искључи додатна audit правила, која се обично не бележе у датотеке "
+-#~ "дневника."
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Ниво осетљивости"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux корисник „%s“ је неопходан"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Requires value"
+-#~ msgstr "Захтева вредност"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Дозволи улози програма/корисника да се веже на било који tcp порт > 1024"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Дозвољава ограниченој улози програма/корисника да се веже на било који "
+-#~ "tcp порт"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Унесите списак tcp портова или опсег портова раздвојене зарезима на које "
+-#~ "се веже улога програма/корисника. Пример: 612, 650-660"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Друид за прављење SELinux полиса"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Нерезервисани портови  (> 1024)"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Користите ово дугме за проверу ако ваш програм позива bindresvport са 0."
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Приморавање\n"
+-#~ "Допуштање\n"
+-#~ "Искључено\n"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils-2.0.85/po/tr.po
---- nsapolicycoreutils/po/tr.po        2011-02-17 15:11:25.141734605 -0500
-+++ policycoreutils-2.0.85/po/tr.po    2011-02-18 16:03:41.446976277 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/sr@latin.po b/policycoreutils/po/sr@latin.po
+index 5630a6d..f36f9d6 100644
+--- a/policycoreutils/po/sr@latin.po
++++ b/policycoreutils/po/sr@latin.po
+@@ -1,27 +1,26 @@
+-# translation of policycoreutils.HEAD.sr.po to Serbian
+-# Serbian(Latin) translations for policycoreutils
+-# Copyright (C) 2006 Red Hat, Inc.
+-# This file is distributed under the same license as the policycoreutils package.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
+ #
+-# Miloš Komarčević <kmilos@gmail.com>, 2006.
++# Translators:
++# Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
+ # Jovan Krunic <jovan.krunic@gmail.com>, 2008.
++# Miloš Komarčević <kmilos@gmail.com>, 2006.
+ # Nikola Pajtić <salgeras@gmail.com>, 2008.
+-# Igor Miletic <grejigl-gnomeprevod@yahoo.ca>, 2008.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: policycoreutils.HEAD.sr\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-04-07 21:19-0400\n"
+-"Last-Translator: Igor Miletic <grejigl-gnomeprevod@yahoo.ca>\n"
+-"Language-Team: Serbian <fedora-trans-sr@redhat.com>\n"
+-"Language: sr\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: LANGUAGE <LL@li.org>\n"
++"Language: sr@latin\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+@@ -116,9 +115,8 @@ msgid "Could not establish semanage connection"
+ msgstr "Ne mogu da uspostavim semanage vezu"
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Ne mogu da postavim MLS opseg za %s"
++msgstr "Ne mogu da ispitam status MLS omogućavanja"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -126,36 +124,33 @@ msgstr "Još nije implementirano"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage transakcija je već u toku"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "Ne mogu da pokrenem semanage transakciju"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Ne mogu da pokrenem semanage transakciju"
++msgstr "Ne mogu da predam semanage transakciju"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage transakcija nije u toku"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "Ne mogu da popišem SELinux korisnike"
++msgstr "Ne mogu da popišem SELinux module"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Ime modula"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Verzija"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Isključeno"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -165,9 +160,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Ne mogu da dodam ulogu %s za %s"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -179,24 +174,23 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Dopuštanje"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Dopuštanje"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
+ msgid "Could not set permissive domain %s (module installation failed)"
  msgstr ""
++"Nisam mogao da postavim dopustivi domen %s (instalacija modula nije uspela)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "Nisam mogao da uklonim dopustivi domen %s (uklanjanje nije uspelo)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -216,9 +210,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Ne mogu da proverim da li je određeno preslikavanje prijave za %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr "Linux grupa %s ne postoji"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -285,15 +279,20 @@ msgid "Could not list login mappings"
+ msgstr "Ne mogu da popišem preslikavanja prijave"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "Prijavno ime"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux korisnik"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "MLS/MCS opseg"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -311,9 +310,9 @@ msgid "Could not query user for %s"
+ msgstr "Ne mogu da ispitam korisnika za %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Ne mogu da dodam kontekst datoteke za %s"
++msgstr "Morate dodati barem jednu ulogu za %s"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -403,6 +402,7 @@ msgid "MCS Range"
+ msgstr "MCS opseg"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "SELinux uloge"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -415,9 +415,8 @@ msgid "Port is required"
+ msgstr "Neophodan je port"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Neispravan prefiks %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -534,18 +533,17 @@ msgstr "Vrsta SELinux porta"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "Broj portova"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "Neophodan je port"
++msgstr "Neophodna je adresa čvora"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "Nepoznat ili nedostajući protokol"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -562,14 +560,14 @@ msgstr "Ne mogu da napravim ključ za %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "Ne mogu da proverim da li je port %s/%s određen"
++msgstr "Ne mogu da proverim da li je adresa %s određena"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "Ne mogu da napravim ključ za %s"
++msgstr "Ne mogu da napravim adresu za %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -578,74 +576,72 @@ msgid "Could not create context for %s"
+ msgstr "Ne mogu da napravim kontekst za %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim ime za %s"
++msgstr "Ne mogu da postavim masku za %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim korisnika u kontekstu datoteke za %s"
++msgstr "Ne mogu da postavim korisnika u kontekstu adrese za %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim ulogu u kontekstu datoteke za %s"
++msgstr "Ne mogu da postavim ulogu u kontekstu adrese za %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim vrstu u kontekstu datoteke za %s"
++msgstr "Ne mogu da postavim vrstu u kontekstu adrese za %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim mls polja u kontekstu datoteke za %s"
++msgstr "Ne mogu da postavim mls polja u kontekstu adrese za %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "Ne mogu da postavim kontekst datoteke za %s"
++msgstr "Ne mogu da postavim kontekst adrese za %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "Ne mogu da dodam port %s/%s"
++msgstr "Ne mogu da dodam adresu %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "Port %s/%s nije određen"
++msgstr "Adresa %s nije određena"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "Ne mogu da ispitam port %s/%s"
++msgstr "Ne mogu da ispitam adresu %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "Ne mogu da izmenim port %s/%s"
++msgstr "Ne mogu da izmenim adresu %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "Port %s/%s je određen u polisi, ne može se brisati"
++msgstr "Adresa %s je određena u polisi, ne može se brisati"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "Ne mogu da obrišem %s"
++msgstr "Ne mogu da obrišem adresu %s"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Ne mogu da obrišem preslikavanje prijave za %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Ne mogu da izlistam portove"
++msgstr "Ne mogu da izlistam adrese"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -719,9 +715,8 @@ msgid "Could not delete interface %s"
+ msgstr "Ne mogu da obrišem sučelje %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Ne mogu da obrišem sučelje %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+@@ -736,9 +731,9 @@ msgid "Context"
+ msgstr "Kontekst"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Kontekst datoteke za %s je već određen"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
+@@ -746,9 +741,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux korisnik %s ne postoji"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -868,11 +863,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -891,14 +885,14 @@ msgid "Could not query file context %s"
+ msgstr "Ne mogu da ispitam kontekst datoteke %s"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "Morate uneti vrednost"
++msgstr "Morate navesti jednu od sledećih vrednosti: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "Ne mogu da obrišem logički izraz %s"
++msgstr "Ne mogu da postavim aktivnu vrednost logičke %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -908,7 +902,7 @@ msgstr "Ne mogu da izmenim logički izraz %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "Loš format %s: zapis %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -941,15 +935,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux logička"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Status"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "Opis"
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+@@ -1289,1771 +1283,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "Greška opcija %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Ne mogu da otvorim %s: prevodi nisu podržani na mašinama koje nisu MLS: %s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "Nivo"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "Prevod"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Prevodi ne smeju da sadrže razmake „%s“ "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Neispravan nivo „%s“ "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s je već određeno u prevodima"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s nije određeno u prevodima"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Preslikavanje prijave za %s je već određeno"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Dodaj SELinux korisničko mapiranje"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux korisnik %s je već određen"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Neophodan je port"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s je već određen"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Sučelje %s je već određeno"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Greška pri inicijalizaciji mogućnosti, odustajem.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Greška pri postavljanju mogućnosti, odustajem\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Greška pri postavljanju KEEPCAPS, odustajem\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Greška pri odbacivanju mogućnosti, odustajem.\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Greška pri odbacivanju SETUID mogućnosti, odustajem\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Greška pri oslobađanju mogućnosti\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "prevodi nisu podržani na mašinama koje nisu MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "Logička vrednost"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "sve"
+-
+-#~ msgid "Customized"
+-#~ msgstr "Prilagođen"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "File Labeling"
+-#~ msgstr "Označavanje datoteka"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Specifikacije\n"
+-#~ "datoteke"
+-
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "Vrsta datoteke"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Vrsta\n"
+-#~ "datoteke"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid "User Mapping"
+-#~ msgstr "Mapiranje korisnika"
+-
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "Prijavno\n"
+-#~ "ime"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "korisnik"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS opseg"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Prijava „%s“ je neophodna"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "Modul polise"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "Isključi Audit"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "Uključi Audit"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Učitaj modul polise"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Het 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "Miloš Komarčević <kmilos@gmail.com>, 2007."
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "Alat za pravljenje SELinux polisa"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "Ova alatka se može upotrebiti za pravljenje radnog okvira polisa, radi "
+-#~ "ograničavanja programa i korisnika koristeći SELinux.   \n"
+-#~ "\n"
+-#~ "Alatka proizvodi:\n"
+-#~ "datoteku za primoravanje vrste (te)\n"
+-#~ "datoteku sučelja (if)\n"
+-#~ "datoteku sa kontekstima datoteka (fc)\n"
+-#~ "skriptu komandnog okruženja (sh) - koristi se za kompiliranje i "
+-#~ "instalaciju polise. "
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "Izaberite vrstu programa/korisničke uloge koju treba ograničiti"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Programi</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "Standardna init sistemska usluga su usluge koji se pokreću sa podizanjem "
+-#~ "sistema preko init skripti.  Obično zahteva skriptu u /etc/rc.d/init.d"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "Standardna init sistemska usluga"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "Sistemska usluga za internet servise su usluge koje pokreće xinetd"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "Sistemska usluga za internet servise (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "Veb programi/skripte (CGI) CGI skripte koje pokreće veb server (apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "Veb programi/skripte (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "Korisnički program je bilo koji program koji biste želeli da ograničite "
+-#~ "da je startovan od strane korisnika"
+-
+-#~ msgid "User Application"
+-#~ msgstr "Korisnički program"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Korisnici prijavljivanja</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "Izmeni postojeći zapis korisnika za prijavljivanje."
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "Postojeće korisničke uloge"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "Ovaj korisnik će se prijaviti na mašinu samo preko terminala ili "
+-#~ "udaljenom prijavom. Podrazumevano ovaj korisnik neće imati setuid, mrežu, "
+-#~ "sudo, niti su."
+-
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "Minimalna uloga korisnika terminala"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "Ovaj korisnik može da se prijavi na mašinu preko X sistema prozora ili "
+-#~ "terminala. Podrazumevano ovaj korisnik neće imati setuid, mrežu, sudo, "
+-#~ "niti su"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "Minimalna uloga korisnika X sistema prozora"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez sudo, "
+-#~ "bez su."
+-
+-#~ msgid "User Role"
+-#~ msgstr "Korisnička uloga"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "Korisnik sa potpunom mrežom, bez setuid programa bez prolaza, bez su, "
+-#~ "može da koristi sudo na korisničkim ulogama Root administratora"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "Uloga administratorskog korisnika"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Root korisnici</b>"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "Izaberite korisničku ulogu Root administratora, ako će ovaj korisnik "
+-#~ "vršiti administraciju mašine dok radi kao root. Ovaj korisnik neće moći "
+-#~ "da se direktno prijavi u sistem."
+-
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Korisnička uloga Root administratora"
+-
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "Unesite naziv programa ili korisničku ulogu koju treba ograničiti."
+-
+-#~ msgid "Name"
+-#~ msgstr "Ime"
+-
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "Unesite punu putanju izvršne datoteke koju treba ograničiti."
+-
+-#~ msgid "..."
+-#~ msgstr "..."
+-
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr ""
+-#~ "Unesite jedinstveni naziv za ograničeni program ili korisničku ulogu."
+-
+-#~ msgid "Executable"
+-#~ msgstr "Izvršna datoteka"
+-
+-#~ msgid "Init script"
+-#~ msgstr "Init skripta"
+-
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "Unesite potpunu putanju do skripte za inicijalizaciju, koja startuje "
+-#~ "ograničeni program."
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "Izaberite korisničke uloge koje želite da prilagodite"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr ""
+-#~ "Izaberite korisničke uloge koje će se prebaciti na ove programske domene."
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr ""
+-#~ "Izaberite dodatne domene kroz koje će ova korisnička uloga prolaziti"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr ""
+-#~ "Izaberite programske domene na koje biste želeli da se ova korisnička "
+-#~ "uloga prebaci."
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "Izaberite korisničke uloge koje će se prebaciti na ovaj domen"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "Izaberite dodatne domene koje će ovaj korisnik administrirati"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr ""
+-#~ "Izaberite programske domene koje biste želeli ovaj korisnik administrira"
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "Izaberite dodatne uloge za ovog korisnika"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "Unesite mrežne portove koje ova uloga programa/korisnika osluškuje"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP portovi</b>"
+-
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr ""
+-#~ "Dozvoljava ograničenoj ulozi programa/korisnika da se veže na bilo koji "
+-#~ "udp port"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "All"
+-#~ msgstr "Sve"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "Dozvoli ulozi programa/korisnika da pozove bindresvport sa 0. Vezivanje "
+-#~ "na portove 600-1024"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje "
+-#~ "se veže uloga programa/korisnika. Primer: 612, 650-660"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "Nerezervisani portovi (>1024)"
+-
+-#~ msgid "Select Ports"
+-#~ msgstr "Izaberi portove"
+-
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "Dozvoljava ulozi programa/korisnika da se veže na bilo koji udp port > "
+-#~ "1024"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP portovi</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr ""
+-#~ "Unesite mrežne portove na koje se ova uloga programa/korisnika povezuje"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Unesite spisak tcp portova ili opseg portova razdvojene zarezima na koje "
+-#~ "se povezuje uloga programa/korisnika. Primer: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Unesite spisak udp portova ili opseg portova razdvojene zarezima na koje "
+-#~ "se povezuje uloga programa/korisnika. Primer: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "Izaberite uobičajene karakteristike programa"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "Piše syslog poruke\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "Napravi/rukovodi privremenim podacima u /tmp"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "Koristi Pam za autentifikaciju"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "Koristi nsswitch ili getpw* pozive"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "Koristi dbus"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Šalje poruke kontrole"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "U vezi sa terminalom"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "Šalje e-poruku"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "Izaberite datoteke/direktorijume koje program rukovodi"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "Dodajte datoteke/direktorijume koji su potrebni programu da u njih \"Piše"
+-#~ "\". Pid datoteke, datoteke dnevnika, /var/lib datoteke ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "Izaberite logičke promenljive koje ovaj program koristi"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr ""
+-#~ "Dodaj/ukloni logičke promenljive korišćene za ovaj ograničeni program/"
+-#~ "korisnik"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "Izaberite direktorijum u kome će se generisati polise"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "Direktorijum polise"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "Datoteke napravljene polise"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Ova alatka će generisati sledeće: \n"
+-#~ "vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
+-#~ "komandnog okruženja(sh)\n"
+-#~ "Izvršite skriptu komandnog okruženja kao root korisnik da biste \n"
+-#~ "kompajlirali/instalirali i ponovo postavili oznake na \n"
+-#~ "datotekama/direktorijumima. \n"
+-#~ "Koristite semanage ili useradd da mapirate Linux korisnike za "
+-#~ "prijavljivanje \n"
+-#~ "na korisničke uloge.\n"
+-#~ "Postavite mašinu u dopuštajući režim (setenforce 0). \n"
+-#~ "Prijavite se kao korisnik i testirajte ovu korisničku ulogu.\n"
+-#~ "Koristite audit2allow -R da biste generisali dodatna pravila za te "
+-#~ "datoteku.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "Ova alatka će generisati sledeće: \n"
+-#~ "vrstu primoravanja(te), kontekst datoteke(fc), interfejs(if), skriptu \n"
+-#~ "komandnog okruženja(sh)\n"
+-#~ "\n"
+-#~ "Izvršite skriptu komandnog okruženja da biste kompajlirali/instalirali "
+-#~ "i \n"
+-#~ "ponovo postavili oznake na datotekama/direktorijumima. \n"
+-#~ "Postavite mašinu u dopuštajući režim (setenforce 0). \n"
+-#~ "Izvršite/ponovo pokrenite program da biste generisali avc poruke.\n"
+-#~ "Koristite audit2allow -R da biste generisali dodatna pravila za te "
+-#~ "datoteku.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "Dodaj dijalog logičkih promenljivih"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "Naziv logičke vrednosti"
+-
+-#~ msgid "Role"
+-#~ msgstr "Uloga"
+-
+-#~ msgid "Existing_User"
+-#~ msgstr "Postojeći_korisnik"
+-
+-#~ msgid "Application"
+-#~ msgstr "Program"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s mora biti direktorijum"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "Morate izabrati korisnika"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "Izaberite izvršnu datoteku koju biste želeli da ograničite."
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "Izaberite init skriptu koju biste želeli da ograničite."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "Izaberite datoteku(e) koju ograničeni program pravi ili u nju piše"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr ""
+-#~ "Izaberite direktorijum(e) koji ograničeni program poseduje ili u njega "
+-#~ "piše"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "Izaberite direktorijum u kome ćete praviti datoteke polise"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Vrsta %s_t je već određena u trenutnoj polisi.\n"
+-#~ "Da li želite da nastavite?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "Potvrdi ime"
+-
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "Modul %s.pp je već učitan u trenutnu polisu.\n"
+-#~ "Da li želite da nastavite?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "Morate uneti ime"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Morate uneti izvršni program"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "Podesite SELinux"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "Portovi moraju biti brojevi ili opsezi brojeva od 1 do %d "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "Morate uneti ime vašeg ograničenog procesa/korisnika"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "Tipovi korisnika nisu dozvoljene izvršne datoteke"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "Samo programi-sistemske usluge mogu koristiti init skriptu"
+-
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog mora biti logička vrednost"
+-
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "Tipovi korisnika automatski dobijaju tmp vrstu"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "Morate uneti putanju izvršne datoteke za vaš ograničeni proces"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Datoteka za vrstu primoravanja"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Interface file"
+-#~ msgstr "Datoteka sprege"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "File Contexts file"
+-#~ msgstr "Datoteka za kontekste datoteka"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Setup Script"
+-#~ msgstr "Skripta za postavke"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux port\n"
+-#~ "Vrsta"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Protocol"
+-#~ msgstr "Protokol"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "Nivo"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "Port"
+-#~ msgstr "Port"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "Broj porta „%s“ nije ispravan.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "List View"
+-#~ msgstr "Prikaz liste"
+-
+-#~ msgid "Group View"
+-#~ msgstr "Grupni pregled"
+-
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Zaštita SELinux servisa"
+-
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "Onemogući SELinux zaštitu za acct sistemsku uslugu"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Admin"
+-#~ msgstr "Administrator"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr ""
+-#~ "Dopusti svim sistemskim uslugama da upisuju datoteke jezgra na / "
+-#~ "direktorijum"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr ""
+-#~ "Dopusti svim sistemskim uslugama mogućnost da koriste nealocirane tty "
+-#~ "terminale"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "User Privs"
+-#~ msgstr "Ovlašćenja korisnika"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Dopusti gadmin SELinux korisničkim nalozima da izvršavaju datoteke u "
+-#~ "svojim ličnim direktorijumima"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Dopusti da gostujući SELinux korisnički nalozi izvršavaju datoteke u "
+-#~ "svojim ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "Memory Protection"
+-#~ msgstr "Zaštita memorije"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "Dopusti java-i izvršni stek"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "Mount"
+-#~ msgstr "Mount"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "Dopusti da mount montira bilo koju datoteku"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "Dopusti da mount montira bilo koji direktorijum"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "Dopusti mplayer-u izvršni stek"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "Dopusti da ssh izvršava ssh-keysign"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Dopusti da staff SELinux korisnički nalozi izvršavaju datoteke u svojim "
+-#~ "ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Dopusti da sysadm SELinux korisnički nalozi izvršavaju datoteke u svojim "
+-#~ "ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "Dopusti da neograničeni SELinux korisnički nalozi izvršavaju datoteke u "
+-#~ "svojim ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "Network Configuration"
+-#~ msgstr "Mrežna podešavanja"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "Dopusti da neoznačeni paketi putuju mrežom"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "Dopusti da user SELinux korisnički nalozi izvršavaju datoteke u svojim "
+-#~ "ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "Dopusti da neograničenim da se prebace u unconfined_execmem"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Baze podataka"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "Dopusti korisniku da se poveže na mysql soket"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "Dopusti korisniku da se poveže na postgres soket"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "Dopusti klijentima da upisuju u deljenu memoriju X servera"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "Dopusti da xguest SELinux korisnički nalozi izvršavaju datoteke u svojim "
+-#~ "ličnim direktorijumima ili u /tmp direktorijumu"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "Dozvoli sistemskim uslugama da se pokreću sa NIS servisom"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Web Applications"
+-#~ msgstr "Veb programi"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "Prebacivanje staff SELinux korisnika na Web Browser domen"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "Prebacivanje sysadm SELinux korisnika na Web Browser domen"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "Prebacivanje user SELinux korisnika na Web Browser domen"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "Prebacivanje xguest SELinux korisnika na Web Browser domen"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "Dopusti osoblju Web Browser-a da upisuje u lične direktorijume"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "Isključi SELinux zaštitu za amanda-u"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Isključi SELinux zaštitu za amavis"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za apmd sistemsku uslugu"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Isključi SELinux zaštitu za arpwatch sistemsku uslugu"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za auditd sistemsku uslugu"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Isključi SELinux zaštitu za automount sistemsku uslugu"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Isključi SELinux zaštitu za avahi"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Isključi SELinux zaštitu za bluetooth sistemsku uslugu"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Isključi SELinux zaštitu za canna sistemsku uslugu"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cardmgr sistemsku uslugu"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Isključi SELinux zaštitu za Cluster server"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "Dopusti da cdrecord čita različit sadržaj. nfs, samba, removable devices, "
+-#~ "user temp i datoteke sa nepouzdanim sadržajem"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ciped sistemsku uslugu"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za clamd sistemsku uslugu"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Isključi SELinux zaštitu za clamscan"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Isključi SELinux zaštitu za clvmd"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Isključi SELinux zaštitu za comsat sistemsku uslugu"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Isključi SELinux zaštitu za courier sistemsku uslugu"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cpucontrol sistemsku uslugu"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cpuspeed sistemsku uslugu"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Isključi SELinux zaštitu za crond sistemsku uslugu"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Printing"
+-#~ msgstr "Štampanje"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Isključi SELinux zaštitu za cupsd pozadinski server"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cupsd sistemsku uslugu"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Isključi SELinux zaštitu za cupsd_lpd"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cvs sistemsku uslugu"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cyrus sistemsku uslugu"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dbskk sistemsku uslugu"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dbusd sistemsku uslugu"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Isključi SELinux zaštitu za dccd"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Isključi SELinux zaštitu za dccifd"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Isključi SELinux zaštitu za dccm"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ddt sistemsku uslugu"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za devfsd sistemsku uslugu"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dhcpc sistemsku uslugu"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dhcpd sistemsku uslugu"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dictd sistemsku uslugu"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "Dopusti da sysadm_t direktno pokreće sistemske usluge"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Isključi SELinux zaštitu za Evolution"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Games"
+-#~ msgstr "Igre"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Isključi SELinux zaštitu za igre"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Isključi SELinux zaštitu za veb čitače"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Isključi SELinux zaštitu za Thunderbird"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za distccd sistemsku uslugu"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dmesg sistemsku uslugu"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dnsmasq sistemsku uslugu"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Isključi SELinux zaštitu za dovecot sistemsku uslugu"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za entropyd sistemsku uslugu"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Isključi SELinux zaštitu za fetchmail"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za fingerd sistemsku uslugu"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Isključi SELinux zaštitu za freshclam sistemsku uslugu"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Isključi SELinux zaštitu za fsdaemon sistemsku uslugu"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Isključi SELinux zaštitu za gpm sistemsku uslugu"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Isključi SELinux zaštitu za gss sistemsku uslugu"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Isključi SELinux zaštitu za Hal sistemsku uslugu"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Compatibility"
+-#~ msgstr "Usaglašenost"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr ""
+-#~ "Ne koristi audit za stvari koje znamo da su pokvarene, ali koje nisu "
+-#~ "rizične po sigurnost"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Isključi SELinux zaštitu za hostname sistemsku uslugu"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Isključi SELinux zaštitu za hotplug sistemsku uslugu"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Isključi SELinux zaštitu za howl sistemsku uslugu"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Isključi SELinux zaštitu za cups hplip sistemsku uslugu"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Isključi SELinux zaštitu za httpd rotatelogs"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD servis"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Isključi SELinux zaštitu za http suexec"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Isključi SELinux zaštitu za hwclock sistemsku uslugu"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Isključi SELinux zaštitu za i18n sistemsku uslugu"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Isključi SELinux zaštitu za imazesrv sistemsku uslugu"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Isključi SELinux zaštitu za potomke inetd sistemske usluge"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za inetd sistemsku uslugu"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -269161,26 +213931,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za innd sistemsku uslugu"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Isključi SELinux zaštitu za iptables sistemsku uslugu"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ircd sistemsku uslugu"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Isključi SELinux zaštitu za irqbalance sistemsku uslugu"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Isključi SELinux zaštitu za iscsi sistemsku uslugu"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -269189,119 +213969,171 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za jabberd sistemsku uslugu"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Isključi SELinux zaštitu za kadmind sistemsku uslugu"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za klogd sistemsku uslugu"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Isključi SELinux zaštitu za krb5kdc sistemsku uslugu"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Isključi SELinux zaštitu za ktalk sistemsku uslugu"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Isključi SELinux zaštitu za kudzu sistemsku uslugu"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Isključi SELinux zaštitu za locate sistemsku uslugu"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za lpd sistemsku uslugu"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za lrrd sistemsku uslugu"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Isključi SELinux zaštitu za lvm sistemsku uslugu"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Isključi SELinux zaštitu za mailman"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "Dopusti evolution-u i thunderbird-u da čitaju datoteke korisnika"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Isključi SELinux zaštitu za mdadm sistemsku uslugu"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za monopd sistemsku uslugu"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "Dopusti da mozilla čitač čita datoteke korisnika"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Isključi SELinux zaštitu za mrtg sistemsku uslugu"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Isključi SELinux zaštitu za mysqld sistemsku uslugu"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nagios sistemsku uslugu"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "Servis za imenovanje"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Isključi SELinux zaštitu za named sistemsku uslugu"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nessusd sistemsku uslugu"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Isključi SELinux zaštitu za NetworkManager"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nfsd sistemsku uslugu"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nmbd sistemsku uslugu"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -269309,354 +214141,548 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nrpe sistemsku uslugu"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nscd sistemsku uslugu"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za nsd sistemsku uslugu"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ntpd sistemsku uslugu"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Isključi SELinux zaštitu za oddjob"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Isključi SELinux zaštitu za oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Isključi SELinux zaštitu za openvpn sistemsku uslugu"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Isključi SELinux zaštitu za pam sistemsku uslugu"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Isključi SELinux zaštitu za pegasus"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Isključi SELinux zaštitu za perdition sistemsku uslugu"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Isključi SELinux zaštitu za portmap sistemsku uslugu"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Isključi SELinux zaštitu za portslave sistemsku uslugu"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Isključi SELinux zaštitu za postfix"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Isključi SELinux zaštitu za postgresql sistemsku uslugu"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "Dopusti pppd da bude dostupan za korišćenje običnim korisnicima"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Isključi SELinux zaštitu za pptp"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Isključi SELinux zaštitu za prelink sistemsku uslugu"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Isključi SELinux zaštitu za privoxy sistemsku uslugu"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ptal sistemsku uslugu"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Isključi SELinux zaštitu za pxe sistemsku uslugu"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Isključi SELinux zaštitu za pyzord"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Isključi SELinux zaštitu za quota sistemsku uslugu"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za radiusd sistemsku uslugu"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za radvd sistemsku uslugu"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Isključi SELinux zaštitu za rdisc"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Isključi SELinux zaštitu za readahead"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "Dopusti da programi čitaju datoteke koje se nalaze na nestandardnim "
+-#~ "mestima (default_t)"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Isključi SELinux zaštitu za restorecond"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Isključi SELinux zaštitu za rhgb sistemsku uslugu"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Isključi SELinux zaštitu za ricci"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Isključi SELinux zaštitu za ricci_modclusterd"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Isključi SELinux zaštitu za rlogind sistemsku uslugu"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za rpcd sistemsku uslugu"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Isključi SELinux zaštitu za rshd"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Isključi SELinux zaštitu za rsync sistemsku uslugu"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "Dopusti da se ssh izvršava iz inetd umesto kao sistemska usluga"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "Dopusti da Samba deli nfs direktorijume"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL server autentifikacije"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "Dopusti sasl serveru autentifikacije da čita /etc/shadow"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "Dopusti X-Windows serveru da preslikava memorijski prostor kao izvršnu "
+-#~ "datoteku sa mogućnošću pisanja"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za saslauthd sistemsku uslugu"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Isključi SELinux zaštitu za scannerdaemon sistemsku uslugu"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "Ne dopuštaj prelaz na sysadm_t, izazvan komandama sudo i su"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "Ne dopuštaj nijednom procesu da učita module jezgra"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "Ne dopuštaj nijednom procesu da menja SELinux polisu jezgra"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Isključi SELinux zaštitu za sendmail sistemsku uslugu"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Isključi SELinux zaštitu za setrans"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Isključi SELinux zaštitu za setroublesoot sistemsku uslugu"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za slapd sistemsku uslugu"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Isključi SELinux zaštitu za slrnpull sistemsku uslugu"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za smbd sistemsku uslugu"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za snmpd sistemsku uslugu"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Isključi SELinux zaštitu za snort sistemsku uslugu"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za soundd sistemsku uslugu"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Isključi SELinux zaštitu za sound sistemsku uslugu"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "Zaštita od neželjene pošte"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za spamd sistemsku uslugu"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "Dopusti da spamd pristupa ličnim direktorijumima"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "Dopusti pristup mreži programu za uklanjanje neželjene pošte"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Isključi SELinux zaštitu za speedmgmt sistemsku uslugu"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "Dopusti squid sistemskoj usluzi da se spoji na mrežu"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Isključi SELinux zaštitu za squid sistemsku uslugu"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ssh sistemsku uslugu"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "Dopusti ssh prijave kao sysadm_r:sysadm_t"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "Dopusti da staff_r korisnici pretražuju sysadm lični direktorijum i "
+-#~ "čitaju datoteke (kao što je ~/.bashrc)"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Univerzalni SSL tunel"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Isključi SELinux zaštitu za stunnel sistemsku uslugu"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr ""
+-#~ "Dopusti da se stunnel sistemska usluga samostalno izvršava, izvan xinetd"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Isključi SELinux zaštitu za swat sistemsku uslugu"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Isključi SELinux zaštitu za sxid sistemsku uslugu"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za syslogd sistemsku uslugu"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Isključi SELinux zaštitu za sistemske cron poslove"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Isključi SELinux zaštitu za tcp sistemsku uslugu"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Isključi SELinux zaštitu za telnet sistemsku uslugu"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za tftpd sistemsku uslugu"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Isključi SELinux zaštitu za transproxy sistemsku uslugu"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Isključi SELinux zaštitu za udev sistemsku uslugu"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Isključi SELinux zaštitu za uml sistemsku uslugu"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Dopusti da se xinetd izvršava kao neograničen, uključujući tu sve servise "
+-#~ "koje startuje, a koji nemaju izričito određen prelaz domena"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "Dopusti da se rc skripta neograničeno izvršava, uključujući tu sve "
+-#~ "sistemske usluge koje rc startuje, a koji nemaju izričito određen prelaz "
+-#~ "domena"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "Dopusti da se rpm izvršava neograničeno"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr ""
+-#~ "Dopusti da se privilegovane alatke, kao što su hotplug i insmod, "
+-#~ "izvršavaju neograničeno"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Isključi SELinux zaštitu za updfstab sistemsku uslugu"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
@@ -269696,184 +214722,526 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Isključi SELinux zaštitu za uptimed sistemsku uslugu"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "Dopusti da user_r koristi sysadm_r preko su, sudo, ili userhelper. U "
+-#~ "protivnom, samo staff_r može tako da radi"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "Dozvoli korisnicima izvršavanje mount naredbe"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr ""
+-#~ "Dopusti običnim korisnicima direktan pristup mišu (samo dopusti X serveru)"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "Dopusti korisnicima da izvršavaju dmesg komandu"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "Dopusti korisnicima da upravljaju mrežnim sučeljima (takođe je potrebno "
+-#~ "da je USERCTL=true)"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "Dopusti normalnom korisniku da izvršava ping"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "Dopusti korisniku da čita/piše u noextattrfile (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "Dopusti da korisnici čitaju/pišu na usb uređaje"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "Dopusti korisnicima da izvršavaju TCP servere (da se povezuju na portove "
+-#~ "i primaju veze sa istih domena ili spoljnih korisnika)  isključivanje ove "
+-#~ "opcije dovodi do pasivnog načina pada FTP-a i može uzrokovati promene "
+-#~ "drugih protokola"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "Dopusti korisniku da prati tty datoteke"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "Isključi SELinux zaštitu za uucpd sistemsku uslugu"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Isključi SELinux zaštitu za vmware sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Isključi SELinux zaštitu za watchdog sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Isključi SELinux zaštitu za winbind sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Isključi SELinux zaštitu za xdm sistemsku uslugu"
+-
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "Dopusti da se xdm prijavljuje kao sysadm_r:sysadm_t"
+-
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Isključi SELinux zaštitu za xen sistemsku uslugu"
+-
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
+-
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "Dopusti da xen čita/piše po fizičkim uređajima (diskovima)"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Isključi SELinux zaštitu za xfs sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Isključi SELinux zaštitu za xen kontrolu"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ypbind sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za lozinke"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Isključi SELinux zaštitu za ypserv sistemsku uslugu"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Isključi SELinux zaštitu za NIS sistemsku uslugu za prenos"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Dopusti da SELinux webadm korisnik upravlja ličnim direktorijumima "
+-#~ "korisnika bez privilegija"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "Dopusti da SELinux webadm korisnik može da čita iz ličnih direktorijuma "
+-#~ "korisnika bez privilegija"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "Da li ste sigurni da želite da obrišete %s „%s“?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "Obriši %s"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "Dodaj %s"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "Izmeni %s"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "Dopuštanje"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "Primoravanje"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Menjanje vrste polise će prouzrokovati menjanje oznaka za ceo sistem "
+-#~ "datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo "
+-#~ "traje i to vreme zavisi od veličine sistema datoteka.  Želite li da "
+-#~ "nastavite?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Isključivanje SELinux-a zahteva ponovno podizanje sistema.  Nije "
+-#~ "preporučljivo.  Ako kasnije odlučite da uključite SELinux, sistem će "
+-#~ "morati da promeni oznake.  Ako samo hoćete da vidite da li SELinux "
+-#~ "izaziva probleme na vašem sistemu, možete preći u dopuštajući način rada, "
+-#~ "koji će samo samo beležiti poruke u dnevnik, ali ne i sprovoditi SELinux "
+-#~ "polisu.    Želite li da nastavite?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "Uključivanje SELinux-a će prouzrokovati menjanje oznaka za ceo sistem "
+-#~ "datoteka pri sledećem podizanju sistema. Menjanje oznaka prilično dugo "
+-#~ "traje i to vreme zavisi od veličine sistema datoteka.  Želite li da "
+-#~ "nastavite?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Autorska prava 2006 Red Het, Inc.\n"
+-#~ "Autorska prava 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "Dodaj SELinux mapiranje prijave"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "Dodaj SELinux mrežne portove"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux vrsta"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Nivo"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "Specifikacija datoteke"
+-
+-#~ msgid "File Type"
+-#~ msgstr "Vrsta datoteke"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "sve datoteke\n"
+-#~ "običan fajl\n"
+-#~ "direktorijum\n"
+-#~ "uređaj za karaktere\n"
+-#~ "uređaj blokova\n"
+-#~ "soket\n"
+-#~ "simbolička veza\n"
+-#~ "imenovana cev\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Dodaj SELinux korisnika"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux administracija"
+-
+-#~ msgid "Add"
+-#~ msgstr "Dodaj"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "_Svojstva"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "_Obriši"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "Izaberite upravljački objekat"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Izaberite:</b>"
+-
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "Podrazumevani sistemski režim primoravanja"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Tekući režim primoravanja"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "Podrazumevana sistemska vrsta polise:"
+-
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "Izaberite da li želite da ponovo označite celokupan sistem datoteka pri "
+-#~ "sledećem podizanju sistema.  Ponovno označavanje može trajati jako dugo, "
+-#~ "u zavisnosti od veličine sistema.  Ako menjate vrste polisa ili idete sa "
+-#~ "isključenog na primoravanje, ponovno označavanje je neophodno."
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Ponovo označi pri sledećem pokretanju."
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "Vrati logičke promenljive na podrazumevane sistemske postavke"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "Prebaci između Prilagođenih i Svih logičkih promenljivih"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "Filtar"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "Dodaj kontekst datoteke"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "Izmeni kontekst datoteke"
+-
+-#~ msgid "Delete File Context"
+-#~ msgstr "Obriši kontekst datoteke"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "Prebaci između svih i prilagođenih konteksta datoteka"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "Dodaj SELinux korisničko mapiranje"
+-
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Izmeni SELinux korisničko mapiranje"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Obriši SELinux korisničko mapiranje"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "Dodaj prevod"
+-
+-#~ msgid "Modify Translation"
+-#~ msgstr "Izmeni prevod"
+-
+-#~ msgid "Delete Translation"
+-#~ msgstr "Obriši prevod"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Izmenim SELinux korisnika"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "Dodaj mrežni port"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "Uredi mrežni port"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "Obriši mrežni port"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "Prebaci između prilagođenih i svih portova"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "Napravi novi modul polise"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "Učitaj modul polise"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "Ukloni učitavajuće module polise"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr ""
+-#~ "Uključi/isključi dodatna audit pravila, koja se obično ne beleže u "
+-#~ "datoteke dnevnika."
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "Nivo osetljivosti"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux korisnik „%s“ je neophodan"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "Zahteva vrednost"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "Dozvoli ulozi programa/korisnika da se veže na bilo koji tcp port > 1024"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr ""
+-#~ "Dozvoljava ograničenoj ulozi programa/korisnika da se veže na bilo koji "
+-#~ "tcp port"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "Unesite spisak tcp portova ili opseg portova razdvojene zarezima na koje "
+-#~ "se veže uloga programa/korisnika. Primer: 612, 650-660"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "Druid za pravljenje SELinux polisa"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "Nerezervisani portovi  (> 1024)"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr ""
+-#~ "Koristite ovo dugme za proveru ako vaš program poziva bindresvport sa 0."
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Primoravanje\n"
+-#~ "Dopuštanje\n"
+-#~ "Isključeno\n"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
@@ -270238,18 +215606,14 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
@@ -270290,7 +215654,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -270299,25 +215662,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -270329,58 +215686,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -270388,169 +215745,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -270558,2103 +215898,1593 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/tr.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils-2.0.85/po/uk.po
---- nsapolicycoreutils/po/uk.po        2011-02-17 15:11:25.994720514 -0500
-+++ policycoreutils-2.0.85/po/uk.po    2011-02-18 16:03:41.446976277 -0500
-@@ -1,19 +1,40 @@
- # Ukraqinian translation of policycoreutils.
- # Copyright (C) 2006 Free software Foundation
- # This file is distributed under the same license as the policycoreutils package.
--# Maxim Dziumanenko <dziumanenko@gmail.com>, 2006-2007.
- #
-+# Maxim Dziumanenko <dziumanenko@gmail.com>, 2006-2007.
-+# Yuri Chornoivan <yurchor@ukr.net>, 2010.
+diff --git a/policycoreutils/po/sv.po b/policycoreutils/po/sv.po
+index f3e108c..40f3845 100644
+--- a/policycoreutils/po/sv.po
++++ b/policycoreutils/po/sv.po
+@@ -1,21 +1,24 @@
+-# Swedish messages for policycoreutils.
+-# Copyright © 2001-2008 Free Software Foundation, Inc.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Translators:
+ # Christian Rose <menthos@menthos.com>, 2006.
+ # Magnus Larsson <fedoratrans@gmail.com>, 2007, 2008.
+-#
+-#
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2007-01-23 17:22+0300\n"
--"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
--"Language-Team: Ukrainian <uk@li.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-08-20 18:40+0300\n"
-+"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
-+"Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
-+"Language: uk\n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-01-27 19:18-0500\n"
+-"Last-Translator: Christian Rose <menthos@menthos.com>\n"
+-"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Swedish (http://www.transifex.net/projects/p/fedora/language/"
++"sv/)\n"
+ "Language: sv\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
-+"X-Generator: Lokalize 1.1\n"
-+"Plural-Forms: nplurals=1; plural=0;\n"
-+
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "Засіб для налаштування SELinux з графічним інтерфейсом"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "Керування SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "Створення модулів контролю доступу SELinux"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "Утиліта генерації правил SELinux"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
  #: ../run_init/run_init.c:67
  msgid ""
-@@ -42,7 +63,7 @@
- #: ../run_init/run_init.c:197 ../newrole/newrole.c:363
- #, c-format
- msgid "Cannot find your entry in the shadow passwd file.\n"
--msgstr "Не вдається знайти елемент у тіньовому файлі паролів.\n"
-+msgstr "Не вдається ваш запис у тіньовому файлі паролів.\n"
- #: ../run_init/run_init.c:203 ../newrole/newrole.c:370
- #, c-format
-@@ -77,58 +98,54 @@
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr "Не вдається виконати контекст у %s.\n"
-+msgstr "Не вдається вказати контекст виконання у %s.\n"
+@@ -87,11 +90,11 @@ msgstr "******************** VIKTIGT ***********************\n"
  
- #: ../audit2allow/audit2allow:217
--#, fuzzy
- msgid "******************** IMPORTANT ***********************\n"
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
 -msgstr ""
--"\n"
--"******************** ВАЖЛИВО ***********************\n"
-+msgstr "********************* ВАЖЛИВО ************************\n"
++msgstr "För att göra denna policy aktiv, kör:"
  
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
 -msgstr ""
-+msgstr "Для активації пакету правил виконайте:"
++msgstr "globalt"
  
- #: ../semanage/seobject.py:48
--#, fuzzy
+ #: ../semanage/seobject.py:222
  msgid "Could not create semanage handle"
--msgstr "Не вдається запустити транзакцію semanage"
-+msgstr "Не вдається створити дескриптор semanage"
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "Політика SELinux не є призначеною або немає доступу до сховища."
-+msgstr "Правила SELinux не призначено або немає доступу до сховища."
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "Не вдається прочитати сховище політики."
-+msgstr "Не вдається прочитати дані сховища правил."
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
- msgstr "Не вдається встановити з'єднання з semanage"
+@@ -110,46 +113,42 @@ msgid "Could not establish semanage connection"
+ msgstr "Kunde inte sätta upp en semanage-uppkoppling"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "Не вдається встановити діапазон MLS для %s"
-+msgstr "Не вдається встановити активний статус MLS"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
--msgstr ""
-+msgstr "глобально"
- #: ../semanage/seobject.py:206
--#, fuzzy, python-format
-+#, python-format
- msgid "Unable to open %s: translations not supported on non-MLS machines: %s"
- msgstr ""
--"Не вдається відкрити %s: трансляції не підтримуються на не-MLS комп'ютерах"
-+"Не вдається відкрити %s: переклади не підтримуються на машинах без MLS: %s"
- #: ../semanage/seobject.py:239
- msgid "Level"
--msgstr ""
-+msgstr "Рівень"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
--msgstr ""
-+msgstr "Переклад"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
-@@ -143,782 +160,780 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s вже визначено у трансляції"
-+msgstr "%s вже визначено у перекладі"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s не визначено у трансляції"
-+msgstr "%s не визначено у перекладі"
+-msgstr "Kunde inte sätta MLS-intervall för %s"
++msgstr "Kunde inte testa status för aktivering av MLS"
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
 -msgstr ""
-+msgstr "Функцію ще не реалізовано"
++msgstr "Inte implementerat ännu"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Транзакція semanage вже виконується"
++msgstr "En semanagetransaktion pågår redan"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
- msgstr "Не вдається запустити транзакцію semanage"
+ msgstr "Kunde inte starta semanage-transaktion"
  
- #: ../semanage/seobject.py:309
+ #: ../semanage/seobject.py:274
 -#, fuzzy
  msgid "Could not commit semanage transaction"
--msgstr "Не вдається запустити транзакцію semanage"
-+msgstr "Не вдається завершити транзакцію semanage"
+-msgstr "Kunde inte starta semanage-transaktion"
++msgstr "Kunde inte verkställa semanage-transaktion"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Транзакція semanage не виконується"
++msgstr "Ingen semanagetransaktion pågår"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
 -#, fuzzy
  msgid "Could not list SELinux modules"
--msgstr "Не вдається отримати список користувачів SELinux"
-+msgstr "Не вдається отримати список модулів SELinux"
- #: ../semanage/seobject.py:336
- msgid "Permissive Types"
--msgstr ""
-+msgstr "Permissive типи"
+-msgstr "Kan inte lista SELinux användare"
++msgstr "Kan inte lista SELinux-moduler"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
--msgstr ""
-+msgstr "Не вдалось вказати permissive домен %s (помилка встановлення модуля)"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "Modulnamn"
++msgstr ""
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
--msgstr ""
-+msgstr "Не вдалось видалити permissive домен %s (помилка при встановленні)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "Не вдається створити ключ для %s"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "Version"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr "Не вдається перевірити чи визначено mapping входу для %s "
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "Avaktiverad"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "mapping входу для %s вже визначено"
+@@ -159,9 +158,9 @@ msgid "Could not disable module %s (remove failed)"
+ msgstr ""
  
--#: ../semanage/seobject.py:421
+ #: ../semanage/seobject.py:333
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:417
 +#, python-format
- msgid "Linux Group %s does not exist"
--msgstr "Користувач %s не існує у Linux"
-+msgstr "Linux-група %s не існує"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Користувач %s не існує у Linux"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr "Не вдається створити mapping входу для %s"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
--msgstr "Не вдається встановити назву %s"
-+msgstr "Не вдається вказати назву %s"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
--msgstr "Не вдається встановити діапазон MLS для %s"
-+msgstr "Не вдається вказати діапазон MLS для %s"
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "Не вдається встановити користувача SELinux для %s"
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Kunde inte lägga till roll %s för %s"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
- msgstr "Не вдається додати mapping входу для %s"
+@@ -173,24 +172,25 @@ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:387
 -#, fuzzy
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
--msgstr "Не вдається додати користувача SELinux %s"
-+msgstr "додати mapping користувача SELinux"
+ msgid "Builtin Permissive Types"
+-msgstr "Tillåtande"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "Потрібно seuser або serange"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Tillåtande"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "mapping входу для %s не визначено"
+ msgid "Could not set permissive domain %s (module installation failed)"
+ msgstr ""
++"Det gick inte att sätta tillåtande domän %s (modulinstallationen "
++"misslyckades)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr "Не вдається запитати seuser для %s"
+ msgid "Could not remove permissive domain %s (remove failed)"
+ msgstr ""
++"Det gick inte att ta bort tillåtande domän %s (borttagning misslyckades)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr "Не вдається змінити mapping входу для %s"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -210,9 +210,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "Kunde inte kontrollera om inloggningskartläggning för %s är definierad"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
--msgstr "mapping входу для %s визначено у політиці, не вдається видалити"
-+msgstr "mapping входу для %s визначено у правилах, не вдається видалити"
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "Linuxanvändaren %s finns inte"
++msgstr "Linuxgruppen %s finns inte"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr "Не вдається видалити mapping входу для %s"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr "Не вдається вивести mapping входу"
+@@ -280,15 +280,20 @@ msgid "Could not list login mappings"
+ msgstr "Kunde inte lista inloggningsmappningar"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
--msgstr ""
-+msgstr "Реєстраційне ім'я"
+ msgstr "Inloggningsnamn"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
--#, fuzzy
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
--msgstr "Потрібно вказати тип SELinux"
-+msgstr "Користувач SELinux"
+-msgstr "SELinux-användare"
++msgstr "SELinux-anv."
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
--msgstr ""
-+msgstr "Діапазон MLS/MCS"
+ msgstr "MLS/MCS-intervall"
+@@ -306,9 +311,9 @@ msgid "Could not query user for %s"
+ msgstr "Kan inte fråga användare för %s"
  
--#: ../semanage/seobject.py:594
+ #: ../semanage/seobject.py:722
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:590
 +#, python-format
  msgid "You must add at least one role for %s"
--msgstr "Не вдається додати контекст файлу для %s"
-+msgstr "Треба додати принаймні одну роль для %s"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "Не вдається перевірити чи визначений користувач SELinux %s"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "Користувач SELinux %s вже визначений"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "Не вдається створити користувача SELinux для %s"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "Не вдається додати роль %s для %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "Не вдається встановити рівень MLS для %s"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "Не вдається додати префікс %s для %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "Не вдається витягнути ключ для %s"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "Не вдається додати користувача SELinux %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "Треба вказати префікс, ролі, рівень або range"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "Потрібен префікс або роль"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "Користувач SELinux  %s не визначений"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "Не вдається запитати користувача для %s"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "Не вдається змінити користувача SELinux %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "Користувач SELinux %s визначено у політиці, не може бути видалений"
-+msgstr "Користувач SELinux %s визначено у правилах, не може бути видалений"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "Не вдається видалити користувача SELinux %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "Не вдається отримати список користувачів SELinux"
+-msgstr "Kunde inte lägga till filkontext för %s"
++msgstr "Du måste lägga till åtminstone en roll för %s"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr "Не вдається отримати список ролей користувача %s"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
--msgstr ""
-+msgstr "Розмітка"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
--msgstr ""
-+msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
--msgstr ""
-+msgstr "Префікс"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
--msgstr ""
-+msgstr "Рівень MCS"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
--msgstr ""
-+msgstr "Діапазон MCS"
+@@ -398,6 +403,7 @@ msgid "MCS Range"
+ msgstr "MCS-intervall"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
--msgstr ""
-+msgstr "Ролі SELinux"
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "Потрібен протокол udp чи tcp"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "Необхідно вказати порт"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "Не вдається створити ключ для %s/%s"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "Необхідно вказати тип"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "Не вдається чи порт визначено %s/%s"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "Порт %s/%s вже визначено"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "Не вдається створити порт для %s/%s"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr "Не вдається створити контекст для %s/%s"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr "Не вдається вказати користувача у контексті порту для %s/%s"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr "Не вдається встановити роль у контексті порту для %s/%s"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr "Не вдається встановити тип у контексті порту для %s/%s"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr "Не вдається встановити поле mls у контексті порту для %s/%s"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr "Не вдається створити контекст порту для %s/%s"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "Не вдається додати додати порт  %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "Потрібно вказати setype або serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "Потрібно вказати setype"
+ msgstr "SELinux-roller"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "Порт %s/%s не визначено"
+@@ -410,9 +416,8 @@ msgid "Port is required"
+ msgstr "Port krävs"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "Не вдається запитати порт %s/%s"
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Ogiltigt prefix %s"
++msgstr ""
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "Не вдається змінити порт %s/%s"
+@@ -499,14 +504,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "Kunde inte modifiera port %s/%s"
  
--#: ../semanage/seobject.py:921
+ #: ../semanage/seobject.py:1085
 -#, fuzzy
-+#: ../semanage/seobject.py:917
  msgid "Could not list the ports"
- msgstr "Не вдається отримати список портів"
+-msgstr "Kunde inte lista portar"
++msgstr "Kunde inte lista portarna"
  
--#: ../semanage/seobject.py:937
+ #: ../semanage/seobject.py:1101
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:933
 +#, python-format
  msgid "Could not delete the port %s"
--msgstr "Не вдається видалити порт %s/%s"
-+msgstr "Неможливо видалити порт %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "Порт %s/%s визначено у політиці, не можу бути видалений"
-+msgstr "Порт %s/%s визначено у правилах, не може бути видалений"
+-msgstr "Kan inte ta bort port %s/%s"
++msgstr "Kan inte ta bort port %s"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1118
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "Не вдається видалити порт %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "Не вдається отримати список портів"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
--msgstr ""
-+msgstr "Тип порту SELinux"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -530,18 +534,17 @@ msgstr "SELinux-porttyp"
  msgid "Proto"
--msgstr ""
-+msgstr "Протокол"
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
--msgstr ""
-+msgstr "Номер порту"
+ msgstr "Portnummer"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
+ #: ../semanage/seobject.py:1218
 -#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
  msgid "Node Address is required"
--msgstr "Необхідно вказати порт"
-+msgstr "Потрібно вказати адреса вузла"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
--#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "Необхідно вказати порт"
-+msgstr "Потрібно вказати значення порту"
+-msgstr "Port krävs"
++msgstr "Nodadress krävs"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
 -msgstr ""
-+msgstr "Протокол відсутній чи невідомий"
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "Потрібно вказати тип SELinux"
++msgstr "Okänt eller saknat protokoll"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "Не вдається створити ключ для %s"
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -558,14 +561,14 @@ msgstr "Kunde inte skapa nyckel för %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
  msgid "Could not check if addr %s is defined"
--msgstr "Не вдається чи порт визначено %s/%s"
-+msgstr "Не вдається перевірити чи визначено адресу %s"
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "Порт %s/%s вже визначено"
-+msgstr "Адресу %s уже визначено"
+-msgstr "Kunde inte kontrollera om port %s/%s är definierad"
++msgstr "Kunde inte kontrollera om adressen %s är definierad"
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1262
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
  msgid "Could not create addr for %s"
--msgstr "Не вдається створити ключ для %s"
-+msgstr "Не вдається створити адресу %s"
+-msgstr "Kunde inte skapa en nyckel för %s"
++msgstr "Kunde inte skapa en adress för %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr "Не вдається створити контекст для %s"
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -574,74 +577,72 @@ msgid "Could not create context for %s"
+ msgstr "Kunde inte skapa-kontext för %s"
  
--#: ../semanage/seobject.py:1077
+ #: ../semanage/seobject.py:1272
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
 +#, python-format
  msgid "Could not set mask for %s"
--msgstr "Не вдається встановити назву %s"
-+msgstr "Не вдається вказати маску %s"
+-msgstr "Kunde inte sätta namn för %s"
++msgstr "Kunde inte sätta mask för %s"
  
--#: ../semanage/seobject.py:1082
+ #: ../semanage/seobject.py:1276
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
 +#, python-format
  msgid "Could not set user in addr context for %s"
--msgstr "Не вдається встановити користувача у контексті файлу для %s"
-+msgstr "Не вдається вказати користувача у контексті адреси для %s"
+-msgstr "Kunde inte sätta användare i filkontext för %s"
++msgstr "Kunde inte sätta användare i adresskontext för %s"
  
--#: ../semanage/seobject.py:1086
+ #: ../semanage/seobject.py:1280
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
 +#, python-format
  msgid "Could not set role in addr context for %s"
--msgstr "Не вдається встановити роль у контексті файлу для %s"
-+msgstr "Не вдається вказати роль у контексті адреси для %s"
+-msgstr "Kunde inte sätta roll i filkontext för %s"
++msgstr "Kunde inte sätta roll i adresskontext för %s"
  
--#: ../semanage/seobject.py:1090
+ #: ../semanage/seobject.py:1284
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
 +#, python-format
  msgid "Could not set type in addr context for %s"
--msgstr "Не вдається встановити тип у контексті файлу для %s"
-+msgstr "Не вдається вказати тип у контексті адреси для %s"
+-msgstr "Kunde inte sätta typ i filkontext för %s"
++msgstr "Kunde inte sätta typ i adresskontext för %s"
  
--#: ../semanage/seobject.py:1095
+ #: ../semanage/seobject.py:1289
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
 +#, python-format
  msgid "Could not set mls fields in addr context for %s"
--msgstr "Не вдається встановити поле mls у контексті файлу для %s"
-+msgstr "Не вдається вказати поля mls у контексті адреси для %s"
+-msgstr "Kunde inte sätta mls-fält i filkontext för %s"
++msgstr "Kunde inte sätta mls-fält i adresskontext för %s"
  
--#: ../semanage/seobject.py:1099
+ #: ../semanage/seobject.py:1293
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
 +#, python-format
  msgid "Could not set addr context for %s"
--msgstr "Не вдається встановити контекст файлу для %s"
-+msgstr "Не вдається вказати контекст addr для %s"
+-msgstr "Kunde inte sätta filkontext för %s"
++msgstr "Kunde inte sätta adresskontext för %s"
  
--#: ../semanage/seobject.py:1103
+ #: ../semanage/seobject.py:1297
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
 +#, python-format
  msgid "Could not add addr %s"
--msgstr "Не вдається додати додати порт  %s/%s"
-+msgstr "Не вдається додати addr %s"
+-msgstr "Kunde inte lägga till port %s/%s"
++msgstr "Kunde inte lägga till adress %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
 +#, python-format
  msgid "Addr %s is not defined"
--msgstr "Порт %s/%s не визначено"
-+msgstr "Addr %s не визначено"
+-msgstr "Port %s/%s är inte definierad"
++msgstr "Adressen %s är inte definierad"
  
--#: ../semanage/seobject.py:1143
+ #: ../semanage/seobject.py:1326
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
 +#, python-format
  msgid "Could not query addr %s"
--msgstr "Не вдається запитати порт %s/%s"
-+msgstr "Не вдається запитати addr %s"
+-msgstr "Kunde inte fråga port %s/%s"
++msgstr "Kunde inte fråga adress %s"
  
--#: ../semanage/seobject.py:1154
+ #: ../semanage/seobject.py:1336
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
 +#, python-format
  msgid "Could not modify addr %s"
--msgstr "Не вдається змінити порт %s/%s"
-+msgstr "Не вдається змінити addr %s"
+-msgstr "Kunde inte modifiera port %s/%s"
++msgstr "Kunde inte modifiera adress %s"
  
--#: ../semanage/seobject.py:1192
+ #: ../semanage/seobject.py:1364
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
 +#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "Порт %s/%s визначено у політиці, не можу бути видалений"
-+msgstr "Addr %s визначено у правилах та не може бути видалена"
+-msgstr "Port %s/%s är definierad i policy, kan inte tas bort"
++msgstr "Adress %s är definierad i policy, kan inte tas bort"
  
--#: ../semanage/seobject.py:1196
+ #: ../semanage/seobject.py:1368
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
 +#, python-format
  msgid "Could not delete addr %s"
--msgstr "Не вдається видалити інтерфейс %s"
-+msgstr "Не вдалось видалити addr %s"
+-msgstr "Kunde inte ta bort gränssnittet %s"
++msgstr "Kunde inte ta bort adress %s"
  
--#: ../semanage/seobject.py:1212
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "Не вдається отримати список портів"
-+msgstr "Не вдалось отримати список addr"
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "Не вдається перевірити чи визначений інтерфейс %s"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "Інтерфейс %s вже визначено"
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "Не вдається створити інтерфейс для %s"
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "Не вдається встановити користувача у контексті інтерфейсу для %s"
-+msgstr "Не вдається вказати користувача у контексті інтерфейсу для %s"
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "Не вдається встановити роль у контексті інтерфейсу для %s"
-+msgstr "Не вдається вказати роль у контексті інтерфейсу для %s"
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "Не вдається встановити тип у контексті інтерфейсу для %s"
-+msgstr "Не вдається вказати тип у контексті інтерфейсу для %s"
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "Не вдається встановити поле mls у контексті інтерфейсу для %s"
-+msgstr "Не вдається вказати поле mls у контексті інтерфейсу для %s"
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "Не вдається створити контекст інтерфейсу для %s"
-+msgstr "Не вдається вказати контекст інтерфейсу для %s"
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "Не вдається створити контекст повідомлення інтерфейс для %s"
-+msgstr "Не вдається створити контекст повідомлення для %s"
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "Не вдається додати інтерфейс %s"
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "Інтерфейс  %s не визначено"
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "Не вдається запитати інтерфейс %s"
+ msgid "Could not deleteall node mappings"
+-msgstr "Kunde inte ta bort inloggningkartläggning för %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "Не вдається змінити інтерфейс %s"
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "Kunde inte lista portar"
++msgstr "Kunde inte lista adresser"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "Інтерфейс %s визначений у політиці, не може бути видалений"
-+msgstr "Інтерфейс %s визначений у правилах, не може бути видалений"
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -715,9 +716,8 @@ msgid "Could not delete interface %s"
+ msgstr "Kunde inte ta bort gränssnittet %s"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "Не вдається видалити інтерфейс %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Kunde inte ta bort gränssnittet %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
--msgstr "Не вдається перелічити інтерфейси"
-+msgstr "Не вдається отримати список інтерфейсів"
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
--msgstr ""
-+msgstr "Інтерфейс SELinux"
+@@ -732,9 +732,9 @@ msgid "Context"
+ msgstr "Kontext"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
--msgstr ""
-+msgstr "Контекст"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Filkontext för %s redan definierat"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "Не вдається встановити користувача у контексті файлу для %s"
-+msgstr "Не вдається вказати користувача у контексті файлу для %s"
+@@ -742,9 +742,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "Не вдається встановити роль у контексті файлу для %s"
-+msgstr "Не вдається вказати роль у контексті файлу для %s"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linuxanvändaren %s finns inte"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "Не вдається встановити поле mls у контексті файлу для %s"
-+msgstr "Не вдається вказати поле mls у контексті файлу для %s"
+@@ -762,11 +762,8 @@ msgid "Could not set mls fields in file context for %s"
+ msgstr "Kunde inte sätta mls-fält i filkontext för %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
 -msgstr ""
-+msgstr "Неправильна визначення файлу"
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "Не вдається перевірити чи визначений контекст файлу %s"
-+msgstr "Не вдається перевірити чи визначений контекст файлу для %s"
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr "Контекст файлу для %s вже визначено"
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "Не вдається створити контекст файлу для %s"
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "Не вдається встановити тип у контексті файлу для %s"
-+msgstr "Не вдається вказати тип у контексті файлу для %s"
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "Не вдається встановити контекст файлу для %s"
-+msgstr "Не вдається вказати контекст файлу для %s"
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "Не вдається додати контекст файлу для %s"
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "Потрібно вказати setype, serange чи seuser"
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "Контекст файлу для %s не визначено"
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "Не вдається запитати контекст файлу для %s"
+-"Fil\n"
+-"Specifikation"
++msgstr "Ogiltig filspecifikation"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "Не вдається змінити контекст файлу для %s"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -826,14 +823,13 @@ msgid "Could not modify file context for %s"
+ msgstr "Kunde inte modifiera filkontext för %s"
  
--#: ../semanage/seobject.py:1560
+ #: ../semanage/seobject.py:1839
 -#, fuzzy
-+#: ../semanage/seobject.py:1556
  msgid "Could not list the file contexts"
- msgstr "Не вдається отримати список контекстів файлів"
+-msgstr "Kunde inte lista filkontext"
++msgstr "Kunde inte lista filkontexten"
  
--#: ../semanage/seobject.py:1574
+ #: ../semanage/seobject.py:1853
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1570
 +#, python-format
  msgid "Could not delete the file context %s"
- msgstr "Не вдається видалити контекст файлу для %s"
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
--msgstr "Контекст файлу для %s визначено у політиці, його не можна видалити"
-+msgstr "Контекст файлу для %s визначено у правилах, його не можна видалити"
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "Не вдається видалити контекст файлу для %s"
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "Не вдається отримати список контекстів файлів"
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "Не вдається отримати список локальних контекстів файлів"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
--msgstr ""
-+msgstr "Контекст файлу SELinux"
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
--msgstr ""
-+msgstr "тип"
+-msgstr "Kunde inte radera filkontext för %s"
++msgstr "Kunde inte radera filkontexten %s"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1878
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "Не вдається перевірити чи визначено логічне значення %s"
+@@ -868,11 +864,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "Логічне значення %s не визначене"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux-kontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "Не вдається запитати контекст файлу %s"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -891,14 +886,14 @@ msgid "Could not query file context %s"
+ msgstr "Kunde inte fråga filkontext %s"
  
--#: ../semanage/seobject.py:1677
+ #: ../semanage/seobject.py:1999
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1673
 +#, python-format
  msgid "You must specify one of the following values: %s"
--msgstr "Необхідно вказати префікс"
-+msgstr "Необхідно вказати значення: %s"
+-msgstr "Du måste ange ett prefix"
++msgstr "Du måste ange ett av följande värden: %s"
  
--#: ../semanage/seobject.py:1681
+ #: ../semanage/seobject.py:2004
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1677
 +#, python-format
  msgid "Could not set active value of boolean %s"
--msgstr "Не вдається видалити логічне значення %s"
-+msgstr "Не вдається вказати активне значення змінної %s"
+-msgstr "Kunde inte ta bort flagga %s"
++msgstr "Kunde inte sätta aktivt värde på booleanen %s"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr "Не вдається змінити логічне значення %s"
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -908,7 +903,7 @@ msgstr "Kunde inte modifiera flagga %s"
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
 -msgstr ""
-+msgstr "Неправильний формат %s: Запис %s"
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "Логічне значення %s визначено у політиці, його не можна видалити"
-+msgstr "Логічне значення %s визначено у правилах, його не можна видалити"
++msgstr "Felaktigt format %s: Post %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr "Не вдається видалити логічне значення %s"
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "Не вдається отримати список логічних змінних"
+@@ -926,33 +921,32 @@ msgstr "Kunde inte lista flaggor"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
+ #: ../semanage/seobject.py:2104
  msgid "unknown"
 -msgstr ""
-+msgstr "невідомо"
++msgstr "okänt"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
  msgid "off"
 -msgstr ""
-+msgstr "вимкнено"
++msgstr "av"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
  msgid "on"
--msgstr ""
-+msgstr "увімкнено"
+-msgstr "Cron"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
+ #: ../semanage/seobject.py:2131
  msgid "SELinux boolean"
--msgstr ""
-+msgstr "Логічні змінна SELinux"
+ msgstr "SELinux-boolean"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "Status"
++msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
 -msgstr ""
-+msgstr "Опис"
++msgstr "Beskrivning"
  
- #: ../newrole/newrole.c:198
+ #: ../newrole/newrole.c:201
  #, c-format
-@@ -928,12 +943,12 @@
- #: ../newrole/newrole.c:287
+@@ -962,12 +956,12 @@ msgstr "misslyckades med att sätta PAM_TTY\n"
+ #: ../newrole/newrole.c:290
  #, c-format
  msgid "newrole: service name configuration hashtable overflow\n"
 -msgstr ""
-+msgstr "newrole: переповнення хеш-таблиці параметрів назв служб\n"
++msgstr "newrole: hashtabell för konfiguration av tjänstenamn spillde över\n"
  
- #: ../newrole/newrole.c:297
+ #: ../newrole/newrole.c:300
  #, c-format
  msgid "newrole:  %s:  error on line %lu.\n"
 -msgstr ""
-+msgstr "newrole:  %s:  помилка у рядку %lu.\n"
- #: ../newrole/newrole.c:436
- #, c-format
-@@ -956,9 +971,9 @@
- msgstr "Не вдається очистити оточення\n"
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "Помилка ініціалізації можливостей.\n"
-+msgstr "Помилка ініціалізації, аварійне завершення.\n"
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1037,7 +1052,7 @@
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s!  Не вдається встановити новий контекст для %s\n"
-+msgstr "%s!  Не вдається вказати новий контекст для %s\n"
++msgstr "newrole:  %s:  fel på rad %lu.\n"
  
- #: ../newrole/newrole.c:838
+ #: ../newrole/newrole.c:439
  #, c-format
-@@ -1072,7 +1087,7 @@
- #: ../newrole/newrole.c:931
+@@ -1072,7 +1066,7 @@ msgstr "Fel: flera nivåer angivna\n"
+ #: ../newrole/newrole.c:865
  #, c-format
  msgid "Error: you are not allowed to change levels on a non secure terminal \n"
 -msgstr ""
-+msgstr "Помилка: Ви не зможете змінювати рівень у небезпечному терміналі\n"
++msgstr "Fel: du får inte lov att byta nivåer på en osäker terminal\n"
  
- #: ../newrole/newrole.c:957
+ #: ../newrole/newrole.c:891
  #, c-format
-@@ -1140,14 +1155,14 @@
- msgstr "не вдається отримати old_context.\n"
+@@ -1140,14 +1134,14 @@ msgid "failed to get old_context.\n"
+ msgstr "kunde inte få tag i old_context.\n"
  
- #: ../newrole/newrole.c:1140
+ #: ../newrole/newrole.c:1077
 -#, fuzzy, c-format
 +#, c-format
  msgid "Warning!  Could not retrieve tty information.\n"
--msgstr "Помилка!  Не вдається отримати інформацію про tty.\n"
-+msgstr "Попередження!  Не вдається отримати інформацію про tty.\n"
+-msgstr "Fel! Kunde inte få tag i tty-information.\n"
++msgstr "Varning!  Kunde inte få tag i tty-information.\n"
  
- #: ../newrole/newrole.c:1161
+ #: ../newrole/newrole.c:1098
  #, c-format
  msgid "error on reading PAM service configuration.\n"
 -msgstr ""
-+msgstr "помилка при читанні конфігурації служби PAM.\n"
++msgstr "fel vid inläsning av PAM-tjänstekonfiguration.\n"
  
- #: ../newrole/newrole.c:1196
+ #: ../newrole/newrole.c:1133
  #, c-format
-@@ -1189,24 +1204,24 @@
- msgstr "не вдається виконати оболонку\n"
+@@ -1189,19 +1183,19 @@ msgid "failed to exec shell\n"
+ msgstr "kunde ej exek skal\n"
  
  #: ../load_policy/load_policy.c:22
 -#, fuzzy, c-format
 +#, c-format
  msgid "usage:  %s [-qi]\n"
--msgstr "використання:  %s [-bq]\n"
-+msgstr "використання:  %s [-qi]\n"
+-msgstr "användning:  %s [-q]\n"
++msgstr "användning:  %s [-qi]\n"
  
  #: ../load_policy/load_policy.c:71
  #, c-format
  msgid "%s:  Policy is already loaded and initial load requested\n"
 -msgstr ""
-+msgstr "%s: правила вже завантажено, запитано початкове завантаження\n"
++msgstr "%s:  Policyn är redan inläst och initial inläsning begärd\n"
  
  #: ../load_policy/load_policy.c:80
 -#, fuzzy, c-format
 +#, c-format
  msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s: Не вдається завантажити політику:  %s\n"
-+msgstr "%s: не вдається завантажити запитані правила у примусовому режимі: %s\n"
+-msgstr "%s: Kan inte läsa in policy: %s\n"
++msgstr "%s:  Kan inte läsa in policy och tvingande läge är begärt:  %s\n"
  
  #: ../load_policy/load_policy.c:90
  #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s: Не вдається завантажити політику:  %s\n"
-+msgstr "%s: Не вдається завантажити правила:  %s\n"
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
-@@ -1233,7 +1248,7 @@
- #: ../scripts/chcat:319
- msgid "Can not have multiple sensitivities"
--msgstr "Кілька sensitivities не підтримуються"
-+msgstr "Кілька рівнів чутливості не підтримуються"
+@@ -1287,1055 +1281,2096 @@ msgstr "chcat -- -Hemligt /dok/affärsplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +Hemligt juser"
  
- #: ../scripts/chcat:325
- #, c-format
-@@ -1292,120 +1307,2227 @@
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr "Помилка параметра %s"
+ msgstr "Flaggfel %s "
  
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "трансляції не підтримуються на не-MLS комп'ютерах"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Kan inte öppna %s: översättningar stöds inte på maskiner som inte har MLS"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "Логічні змінні"
-+
++msgstr ""
+-#~ msgid "Level"
+-#~ msgstr "Nivå"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "Усі"
-+
++msgstr ""
+-#~ msgid "Translation"
+-#~ msgstr "Översättning"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "Змінені"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++msgstr ""
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Översättningar kan inte innehålla blanksteg \"%s\" "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "Призначення позначок файлам"
++msgstr ""
  
--#, fuzzy
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr "Потрібно вказати тип SELinux"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Ogiltig nivå \"%s\" "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"Специфікація\n"
-+"файлів"
  
--#, fuzzy
--#~ msgid "Login '%s' is required"
--#~ msgstr "Потрібно вказати тип SELinux"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s är redan definierad i översättningar"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Тип файлу\n"
-+"SELinux"
  
--#, fuzzy
--#~ msgid "Sends audit messages"
--#~ msgstr "Помилка надсилання повідомлення аудиту.\n"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s är inte definierad i översättningar"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"Тип\n"
-+"файлу"
  
--#, fuzzy
--#~ msgid "You must select a user"
--#~ msgstr "Необхідно вказати роль"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "Inloggningskartläggning för %s är redan definierad"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "Відповідність користувачів"
++msgstr ""
  
--#, fuzzy
--#~ msgid "You must enter a name"
--#~ msgstr "Необхідно вказати роль"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "lägg till SELinux användarmappning"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"Реєстраційне\n"
-+"ім'я"
  
--#, fuzzy
--#~ msgid "You must enter a executable"
--#~ msgstr "Необхідно вказати роль"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux användare %s är redan definierad"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"Користувач\n"
-+"SELinux"
  
 -#, fuzzy
--#~ msgid "Type Enforcement file"
--#~ msgstr "Створення типу файлу режиму блокування: %s.te"
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Port krävs"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"Діапазон\n"
-+"MLS/MCS"
  
 -#, fuzzy
--#~ msgid "Interface file"
--#~ msgstr "Інтерфейс  %s не визначено"
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Port %s/%s redan definierad"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "Потрібна авторизація '%s'"
++msgstr ""
  
--#, fuzzy
--#~ msgid "File Contexts file"
--#~ msgstr "Контекст файлу для %s не визначено"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Gränssnittet %s är redan definierat"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "Модуль правил"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "SELinux Service Protection"
--#~ msgstr "Користувач SELinux  %s не визначений"
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Fel vid initiering av kapabiliteter, avbryter.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "Назва модуля"
--#, fuzzy
--#~ msgid "Compatibility"
--#~ msgstr "Компіляція політики"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "Версія"
++msgstr ""
  
--#, fuzzy
--#~ msgid "SASL authentication server"
--#~ msgstr "Автентифікація %s.\n"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Fel vid sättning av kapabiliteter, avbryter\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "Вимкнути аудит"
++msgstr ""
  
--#, fuzzy
--#~ msgid "SELinux Type"
--#~ msgstr "Потрібно вказати тип SELinux"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Fel vid sättning av KEEPCAPS, avbryter\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "Увімкнути аудит"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Add SELinux User"
--#~ msgstr "Не вдається додати користувача SELinux %s"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Fel vid borttagning av kapabiliteter, avbryter\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "Завантажити модуль правил"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "Не вдається змінити користувача SELinux %s"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Fel vi borttagning av SETUID kapabilitet, avbryter\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "Polgen"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "Не вдається видалити користувача SELinux %s"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Fel vid frigöring av caps\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Modify SELinux User"
--#~ msgstr "Не вдається змінити користувача SELinux %s"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "översättningar stöds inte på maskiner som inte har MLS"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
++msgstr ""
  
--#, fuzzy
--#~ msgid "Load policy module"
--#~ msgstr "Не вдається прочитати сховище політики."
+-#~ msgid "Boolean"
+-#~ msgstr "Boolean"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
-+msgstr "Максим Дзюманенко <dziumanenko@gmail.com>"
++msgstr ""
  
 -#, fuzzy
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "Потрібно вказати тип SELinux"
-+#: ../gui/polgen.glade:125
+-#~ msgid "all"
+-#~ msgstr "Alla"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
+-#~ msgid "File Labeling"
+-#~ msgstr "Filmärkning"
++#: ../gui/polgen.glade:128
 +msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
-+msgstr ""
-+"Використовуючи цю утиліту можна створити інфраструктуру правил, обмежити "
-+"роботу програм та користувачів за допомогою SELinux.\n"
-+"\n"
-+"Утиліта генерує:\n"
-+"Файл примусового типу (te)\n"
-+"Файл інтерфейсу (if)\n"
-+"Файл контексту (fc)\n"
-+"Сценарій оболонки (sh) для компіляції та параметри правил."
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "Виберіть тип ролі програми/користувача для застосування обмежень"
-+
-+#: ../gui/polgen.glade:196
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "Fil\n"
+-#~ "Specifikation"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>Програма</b>"
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "Filkontext"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"Стандартні служби ініціалізації запускаються при завантаженні за допомогою "
-+"сценаріїв init, які зазвичай розташовані у /etc/rc.d/init.d"
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "Fil\n"
+-#~ "Typ"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "Стандартна служба Init"
-+
-+#: ../gui/polgen.glade:280
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "Användare"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "Системна служба DBUS"
-+
-+#: ../gui/polgen.glade:299
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS-intervall"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "initd запускається службою xinetd"
-+
-+#: ../gui/polgen.glade:301
++msgstr ""
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Inloggning '%s' krävs"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "Служба Інтернет-служб (inetd)"
-+
-+#: ../gui/polgen.glade:320
++msgstr ""
+-#~ msgid "Policy Module"
+-#~ msgstr "Policymodul"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "Веб-програми/ сценарії CGI, що запускаються веб-сервером Apache"
-+
-+#: ../gui/polgen.glade:322
++msgstr ""
+-#~ msgid "Load Policy Module"
+-#~ msgstr "Läsa in policymodul"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "Веб-програма/ сценарій (CGI)"
-+
-+#: ../gui/polgen.glade:341
++msgstr ""
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+"Програма користувача -- будь-яка програма, запущена користувачем, до якого "
-+"ви хочете застосувати обмеження."
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "Програма користувача"
-+
-+#: ../gui/polgen.glade:389
++msgstr ""
+-#~ msgid "translator-credits"
+-#~ msgstr "Magnus Larsson"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>Program</b>"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>Зареєстровані користувачі</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "Змінити наявний запис авторизації користувача."
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>Användare</b>"
 +#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "Roll"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "Наявні ролі користувачів"
-+
-+#: ../gui/polgen.glade:472
++msgstr ""
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Användare</b>"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"Користувач може авторизуватися лише віддалено чи у терміналі. Початково для "
-+"користувача не налаштовані setuid, sudo, su та мережне оточення."
-+
-+#: ../gui/polgen.glade:474
+-#, fuzzy
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Root-användare"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "Мінімальна роль користувача терміналу"
-+
-+#: ../gui/polgen.glade:493
++msgstr ""
+-#~ msgid "Name"
+-#~ msgstr "Namn"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"Цей користувач може авторизуватися за допомогою X або терміналу. Початково "
-+"для користувача не налаштовані setuid, sudo, su та мережне оточення."
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "Мінімальна роль користувача X Window"
-+
-+#: ../gui/polgen.glade:514
++msgstr ""
+-#~ msgid "Executable"
+-#~ msgstr "Körbar"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"Користувач з повністю налаштованим мережним оточенням, програми без setuid, "
-+"без su, без sudo."
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "Init script"
+-#~ msgstr "Init-skript"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "Роль користувача"
-+
-+#: ../gui/polgen.glade:535
++msgstr ""
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP-portar</b>"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"Користувач з повністю налаштованим мережним оточенням, програми без setuid, "
-+"без su, може виконувати sudo до ролей адміністрування root."
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "All"
+-#~ msgstr "Alla"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "Роль адміністратора"
-+
-+#: ../gui/polgen.glade:583
++msgstr ""
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>Користувачі root</b>"
++msgstr ""
  
--#~ msgid "Requires value"
--#~ msgstr "Потрібно вказати значення"
-+#: ../gui/polgen.glade:645
+-#~ msgid "Select Ports"
+-#~ msgstr "Välj portar"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"Оберіть роль адміністратора root, якщо цей користувач також адмініструє "
-+"систему у режимі root. При цьому користувач не зможе авторизуватися у "
-+"системі безпосередньо."
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP-portar</b>"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "Роль адміністратора root"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "Введіть назву ролі програми чи користувача для застосування обмежень"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Fel vid skickande av granskningsmeddelande.\n"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Boolean Name"
+-#~ msgstr "Boolean"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Role"
+-#~ msgstr "Roll"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "Назва"
-+
-+#: ../gui/polgen.glade:781
++msgstr ""
+-#~ msgid "Application"
+-#~ msgstr "Program"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+"Вкажіть повний шлях до виконуваного компоненту, у якому будуть застосовані "
-+"обмеження"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Du måste ange ett namn"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
  
--#~ msgid "Invalid prefix %s"
--#~ msgstr "Неправильний префікс %s"
-+#: ../gui/polgen.glade:823
+-#~ msgid "You must enter a name"
+-#~ msgstr "Du måste ange ett namn"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "Введіть унікальну назву для обмежуваної ролі програми/ користувача."
++msgstr ""
  
--#~ msgid "Requires 2 or more arguments"
--#~ msgstr "Потрібно 2 або більше аргументів"
--
--#~ msgid "%s not defined"
--#~ msgstr "%s не визначено"
--
--#~ msgid "%s not valid for %s objects\n"
--#~ msgstr "%s не є допустимим для %s об'єктів\n"
--
--#~ msgid "range not supported on Non MLS machines"
--#~ msgstr "range не підтримується на не-MLS комп'ютерах"
--
--#~ msgid "Invalid value %s"
--#~ msgstr "Неправильне значення %s"
--
--#~ msgid ""
--#~ "In order to load this newly created policy package into the kernel,\n"
--#~ "you are required to execute \n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
--#~ msgstr ""
--#~ "При завантаженні цього нового пакету політики у ядро,\n"
--#~ "треба виконати\n"
--#~ "\n"
--#~ "semodule -i %s.pp\n"
--#~ "\n"
-+#: ../gui/polgen.glade:845
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Du måste ange ett körbart program"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "Виконуваний компонент"
++msgstr ""
  
--#~ msgid "Options Error: %s "
--#~ msgstr "Помилка у аргументах: %s "
-+#: ../gui/polgen.glade:873
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Typ-upprätthållande fil"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Сценарій init"
-+
-+#: ../gui/polgen.glade:901
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "Gränssnittsfil"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+"Вкажіть повний шлях до сценарію init, що використовується для запуску "
-+"обмежуваної програми."
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "Виберіть ролі користувачів, які хочете змінити"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#~ msgid "File Contexts file"
+-#~ msgstr "Filkontextsfil"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#~ msgid "Protocol"
+-#~ msgstr "Protokoll"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "Nivå"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "Port"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "Gruppvy"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux-tjänstskydd"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
+-#~ msgid "Admin"
+-#~ msgstr "Admin"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Memory Protection"
+-#~ msgstr "Minesskydd"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "Montera"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "Виберіть ролі користувачів, які слід перенести у домени програм."
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "Виберіть додаткові домени, у яких має бути ця роль"
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "Виберіть домени програм, на які слід перенести цю роль користувача."
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "Виберіть ролі користувачів, які мають бути перенесені у цей домен"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "Виберіть додаткові домени, якими буде керувати цей користувач"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++msgstr ""
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Network Configuration"
+-#~ msgstr "Nätverkinställningar"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Databases"
+-#~ msgstr "Databaser"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "Виберіть домени, якими має керувати цей користувач."
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "Виберіть додаткові ролі для цього користувача"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
 +msgstr ""
-+"Вкажіть мережні порти, які роль програми/ користувача буде прослуховувати"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "Webbprogram"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "Avaktivera SELinux-skydd för amavis"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för apmd-demonen"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>Порти TCP</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
 +msgstr ""
-+"Дозволяє відповідність обмежуваних програм/ користувачів будь-якому порту UDP"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för arpwatch-demonen"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för auditd-demonen"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "Усі"
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
 +msgstr ""
-+"Дозволити програмі/ користувачу здійснювати виклик bindresvport з 0. "
-+"Використовується порт 600-1024"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för automount-demonen"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "Avaktivera SELinux-skydd för avahi"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för bluetooth-demonen"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"Введіть список UDP-портів чи діапазонів портів, розділених комою, для яких "
-+"буде виконана відповідність. Приклад: 612, 650-660"
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för canna-demonen"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "Не зарезервовані порти (>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cardmgr-demonen"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "Виберіть порти"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
 +msgstr ""
-+"Дозволити відповідність програм/ користувачів будь-яким портам UDP з "
-+"номерами > 1024"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Avaktivera SELinux-skydd för Cluster-servern"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ciped-demonen"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>Порти UDP</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "Вкажіть мережні порти, до яких приєднується роль програм/ користувача"
-+
-+#: ../gui/polgen.glade:1958
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för clamd-demonen"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "Avaktivera SELinux-skydd för clamscan"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "Avaktivera SELinux-skydd för clvmd"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för comsat-demonen"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Введіть список TCP-портів чи діапазонів портів, розділених комою, до яких "
-+"буде здійснюватись підключення. Приклад: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för courier-demonen"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cpucontrol-demonen"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"Введіть список UDP-портів чи діапазонів портів, розділених комою, до яких "
-+"буде здійснюватись підключення. Приклад: 612, 650-660"
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "Вибрати типову поведінку програми"
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cpuspeed-demonen"
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för crond-demonen"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "Записує повідомлення syslog\t"
-+
-+#: ../gui/polgen.glade:2221
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "Utskrift"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "Створює та обробляє тимчасові файли у каталозі /tmp"
-+
-+#: ../gui/polgen.glade:2240
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "Avaktivera SELinux-skydd för cupsd-demonen"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "Використовує Pam для автентифікації"
-+
-+#: ../gui/polgen.glade:2259
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cupsd-demonen"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "Використовує виклики nsswitch чи getpw*"
-+
-+#: ../gui/polgen.glade:2278
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "Avaktivera SELinux-skydd för cupsd_lpd"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "Використовує dbus"
-+
-+#: ../gui/polgen.glade:2297
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "Надсилає повідомлення audit "
-+
-+#: ../gui/polgen.glade:2316
++msgstr ""
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cvs-demonen"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "Взаємодіє з терміналом"
-+
-+#: ../gui/polgen.glade:2335
++msgstr ""
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cyrus-demonen"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "Надсилає повідомлення електронною поштою"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "Виберіть файли та каталоги, якими буде керувати програма"
-+
-+#: ../gui/polgen.glade:2607
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dbskkd-demonen"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dbusd-demonen"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "Avaktivera SELinux-skydd för dccd"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"Додати файл та каталоги, до яких програма буде виконувати запис. Файли PID, "
-+"журнали, /var/lib"
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "Виберіть логічні змінні для використання програмою"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "Avaktivera SELinux-skydd för dccifd"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+"Додати/видалити логічні змінні, що використовуються для цієї програми/"
-+"користувача"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "Виберіть каталог, у якому будуть створюватись правила"
-+
-+#: ../gui/polgen.glade:2882
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "Avaktivera SELinux-skydd för dccm"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ddt-demonen"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för devfsd-demonen"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dhcpc-demonen"
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "Каталог правил"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "Створені файли правил"
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ця утиліта генерує:\n"
-+"Файл примусового типу (te), файл інтерфейсу (if), файловий контекст (fc),\n"
-+"сценарій оболонки (sh).\n"
-+"\n"
-+"Виконайте сценарій оболонки у режимі root, щоб скомпілювати/ встановити\n"
-+"та призначити позначки файлам та каталогам.\n"
-+"Щоб поставити відповідність ролі користувача Linux, використовуйте semanage "
-+"чи useradd.\n"
-+"Увімкніть дозволений режим (setenforce 0). \n"
-+"Авторизуйтесь та перевірте роль користувача.\n"
-+"Виконайте команду audit2allow -R, щоб створити додаткові правила для файлу "
-+"te.\n"
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"Ця утиліта генерує:\n"
-+"Файл примусового типа (te), файл інтерфейсу (if), файловий контекст (fc),\n"
-+"сценарій оболонки (sh).\n"
-+"\n"
-+"Виконайте сценарій оболонки, щоб скомпілювати/встановити та призначити\n"
-+"позначки файлам та каталогам.\n"
-+"Включите дозволений режим (setenforce 0). \n"
-+"Запустите програму для генерації повідомлень avc.\n"
-+"Виконайте команду audit2allow -R, щоб створити додаткові правила для файлу "
-+"te.\n"
-+
-+#: ../gui/polgen.glade:3127
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dhcpd-demonen"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "Додати діалог для логічних змінних"
-+
-+#: ../gui/polgen.glade:3200
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dictd-demonen"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "Назва логічної змінної"
-+
-+#: ../gui/polgengui.py:177
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "Avaktivera SELinux-skydd för spel"
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "Роль"
-+
-+#: ../gui/polgengui.py:184
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "Avaktivera SELinux-skydd för webbläsare"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "Наявний_користувач"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Avaktivera SELinux-skydd för Thunderbird"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "Програма"
-+
-+#: ../gui/polgengui.py:269
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för distccd-demonen"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s має бути каталогом"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dmesg-demonen"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "Потрібно вказати користувача"
-+
-+#: ../gui/polgengui.py:453
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dnsmasq-demonen"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "Виберіть виконуваний файл для приміщення обмежень."
-+
-+#: ../gui/polgengui.py:464
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för dovecot-demonen"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "Виберіть сценарій init для застосування обмежень."
-+
-+#: ../gui/polgengui.py:474
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för entropyd-demonen"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "Виберіть файли, які обмежувана програма буде створювати чи записувати"
-+
-+#: ../gui/polgengui.py:481
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "Avaktivera SELinux-skydd för fetchmail"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "Виберіть каталоги, які будуть належати обмежуваній програмі"
-+
-+#: ../gui/polgengui.py:541
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för fingerd-demonen"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "Виберіть каталог, у якому будуть створюватись файли правил"
-+
-+#: ../gui/polgengui.py:554
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för freshclam-demonen"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Тип %s_t вже визначено у поточні правила.\n"
-+"Продовжити?"
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för fsdaemon-demonen"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "Перевірка назви"
-+
-+#: ../gui/polgengui.py:558
++msgstr ""
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för gpm-demonen"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"Модуль %s.pp вже завантажено у поточні правила.\n"
-+"Продовжити?"
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "Необхідно вказати назву"
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för gss-demonen"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "Необхідно вказати виконуваний компонент"
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för hal-demonen"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "Налаштовування SELinux"
-+
-+#: ../gui/polgen.py:174
++msgstr ""
+-#~ msgid "Compatibility"
+-#~ msgstr "Kompatibilitet"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för hostname-demonen"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "Номери портів повинні бути у діапазоні від 1 до %d "
-+
-+#: ../gui/polgen.py:204
++msgstr ""
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för hotplug-demonen"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "Треба ввести назву процесу/користувача з обмеженнями"
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "Типи користувачів не є припустимими виконуваними компонентами"
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "Лише служби можуть використовувати сценарій init"
-+
-+#: ../gui/polgen.py:306
++msgstr ""
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för howl-demonen"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för cups hplip-demonen"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "Avaktivera SELinux-skydd för httpd rotatelogs"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD-tjänst"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "Avaktivera SELinux-skydd för http suexec"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog має містити логічне значення"
-+
-+#: ../gui/polgen.py:327
++msgstr ""
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för hwclock-demonen"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för i18n-demonen"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för imazesrv-demonen"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "Типам користувачів автоматично встановлюється тип tmp"
++msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "Для обмеження процесу треба вказати виконуваний шлях"
++msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "Файл примусового типу"
++msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "Файл інтерфейсу"
++msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "Файл контексту"
++msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "Сценарій налаштовування"
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "Мережний порт"
++msgstr ""
 +
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"Тип порту\n"
-+"SELinux"
 +
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "Протокол"
++msgstr ""
 +
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"Рівень\n"
-+"MLS/MCS"
 +
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "Порт"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "Неправильний номер порту «%s». 0 < номер_порту < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "Список"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "Групи"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -272702,26 +217532,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "Захист служб SELinux"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "Вимкнути захист SELinux для служби acct"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "Адмін"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "Дозволити всім службам здійснювати запис до /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "Дозволити всім службам використовувати незайняті tty"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -272730,131 +217560,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "Привілеї користувачів"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити обліковому запису gadmin виконувати файли у домашньому каталозі "
-+"та /tmp"
 +
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити обліковому запису guest виконувати файли у домашньому каталозі та /"
-+"tmp"
 +
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "Захист пам'яті"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "Дозволити виконуваний стек java"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "Підключення ФС"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "Дозволити підключення ФС у будь-яких файлах"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "Дозволити підключення ФС до будь-яких каталогів"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "Дозволити виконуваний стек mplayer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "Дозволити ssh виконувати ssh-keysign"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити користувачу staff виконувати файли у домашньому каталозі та /tmp"
 +
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити користувачу sysadm виконувати файли у домашньому каталозі та /tmp"
 +
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"Дозволити необмеженому обліковому запису SELinux виконувати файли у "
-+"домашньому каталозі та /tmp"
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "Конфігурація мережі"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "Дозволити проходження по мережі непозначених пакетів"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити користувачам user виконувати файли у домашньому каталозі та /tmp"
 +
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+"Дозволити необмеженим компонентам виконувати dyntrans для unconfined_execmem"
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "Бази даних"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "Дозволити користувачу приєднуватися до сокета mysql"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "Дозволити користувачу приєднуватись до сокета postgres"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "Дозволити клієнтам здійснювати запис до спільної пам'яті X"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+"Дозволити обліковому запису xguest виконувати файли у домашньому каталозі "
-+"та /tmp"
 +
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "Дозволити службам виконуватись з NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -272862,991 +217680,1234 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "Web-програми"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "Перенести користувача staff до домену веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "Перенести користувача sysadm до домену веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "Перенести користувача user до домену веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "Перенести користувача xguest до домену веб-браузера"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "Дозволити браузерам користувача staff запис у домашні каталоги"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "Захист SELinux для amanda вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "Захист SELinux для amavis вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "Захист SELinux для служби apmd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "Захист·SELinux для служби arpwatch вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "Захист SELinux для служби auditd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "Захист SELinux для служби automount вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "Захист SELinux для avahi вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "Захист SELinux для служби bluetooth вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "Захист SELinux для служби canna вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "Захист SELinux для служби cardmgr вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "Захист SELinux для Cluster Server вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"Дозволити cdrecord читання різної інформації з NFS, Samba, з тимчасових "
-+"каталогів користувачів, не довірених файлів та змінних пристроїв"
 +
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "Захист SELinux для служби ciped вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "Захист SELinux для служби clamd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "Захист SELinux для clamscan вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "Захист SELinux для clvmd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "Захист SELinux для служби comsat вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "Захист SELinux для служби courier вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "Захист SELinux для служби cpucontrol вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "Захист SELinux для служби cpuspeed вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "Захист SELinux для служби crond вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "Друк"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "Захист SELinux для сервера cupsd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "Захист SELinux для служби cupsd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "Захист SELinux для cupsd_lpd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "Захист SELinux для служби cvs вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "Захист SELinux для служби cyrus вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "Захист SELinux для служби dbskkd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "Захист SELinux для dbusd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "Захист SELinux для dccd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "Захист SELinux для dccifd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "Захист SELinux для dccm вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "Захист SELinux для служби ddt вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "Захист SELinux для служби devfsd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "Захист SELinux для служби dhcpc вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "Захист SELinux для служби dhcpd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "Захист SELinux для служби dictd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "Дозволити sysadm_t безпосередньо запускати служби"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "Захист SELinux для Evolution вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "Ігри"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "Захист SELinux для ігор вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "Захист SELinux для web-браузерів вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "Захист SELinux для Thunderbird вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "Захист SELinux для служби distccd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "Захист SELinux для служби dmesg вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "Захист SELinux для служби dnsmasq вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "Захист SELinux для служби dovecot вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "Захист SELinux для служби entropyd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "Захист SELinux для fetchmail вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "Захист SELinux для служби fingerd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "Захист SELinux для служби freshclam вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "Захист SELinux для служби fsdaemon вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "Захист SELinux для служби gpm вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "Захист SELinux для служби gss вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "Захист SELinux для служби Hal вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "Сумісність"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+"Не виконувати аудит несправних компонентів, які не утворюють загрозу безпеці"
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "Захист SELinux для служби hostname вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "Захист SELinux для служби hotplug вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "Захист SELinux для служби howl вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "Захист SELinux для служби cups hplip вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "Захист SELinux для служби httpd rotatelogs вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "Служба HTTPD"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "Захист SELinux для служби http suexec вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "Захист SELinux для служби hwclock вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "Захист SELinux для служби i18n вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "Захист SELinux для служби imazesrv вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "Захист SELinux для дочірніх служб inetd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "Захист SELinux для служби inetd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "Захист SELinux для служби innd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "Захист SELinux для служби iptables вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "Захист SELinux для служби ircd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "Захист SELinux для служби irqbalance вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "Захист SELinux для служби iscsi вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "Захист SELinux для служби jabberd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "Захист SELinux для служби kadmind вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "Захист SELinux для служби klogd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "Захист SELinux для служби krb5kdc вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "Захист SELinux для служби ktalk вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "Захист SELinux для служби kudzu вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "Захист SELinux для служби locate вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "Захист SELinux для служби lpd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "Захист SELinux для служби lrrd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "Захист SELinux для служби lvm вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "Захист SELinux для mailman вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "Дозволити Evolution та Thunderbird читати файли користувачів"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "Захист SELinux для служби mdadm вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "Захист SELinux для служби monopd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "Дозволити Mozilla читати файли користувачів"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "Захист SELinux для служби mrtg вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "Захист SELinux для служби mysqld вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "Захист SELinux для служби nagios вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "Служба імен"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "Захист SELinux для служби named вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "Захист SELinux для служби nessusd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "Захист SELinux для NetworkManager вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "Захист SELinux для служби nfsd вимкнено"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "Avaktivera SELinux-skydd för inetd child-demonerna"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "Захист SELinux для служби nmbd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för inetd-demonen"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "Захист SELinux для служби nrpe вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för innd-demonen"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "Захист SELinux для служби nscd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för iptables-demonen"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "Захист SELinux для служби nsd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ircd-demonen"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "Захист SELinux для служби ntpd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för irqbalance-demonen"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "Захист SELinux для oddjob вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för iscsi-demonen"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "Захист SELinux для oddjob_mkhomedir вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för jabberd-demonen"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "Захист SELinux для служби openvpn вимкнено"
-+
++msgstr ""
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "Захист SELinux для служби pam вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för kadmind-demonen"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "Захист SELinux для pegasus вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för klogd-demonen"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "Захист SELinux для служби perdition вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för krb4kdc-demonen"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "Захист SELinux для служби portmap вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "Avaktivera SELinux-skydd för ktalk-demonen"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "Захист SELinux для служби portslave вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för kudzu-demonen"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "Захист SELinux для postfix вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för locate-demonen"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "Захист SELinux для служби postgresql вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för lpd-demonen"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för lrrd-demonen"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "Дозволити виконання pppd у режимі звичайного користувача"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för lvm-demonen"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "Захист SELinux для pptp вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "Avaktivera SELinux-skydd för mailman"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "Захист SELinux для служби prelink вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för madm-demonen"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "Захист SELinux для служби privoxy вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för monopd-demonen"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "Захист SELinux для служби ptal вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för mrtg-demonen"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "Захист SELinux для служби pxe вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för mysqld-demonen"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "Захист SELinux для pyzord вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nagios-demonen"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "Захист SELinux для служби quota вимкнено"
-+
++msgstr ""
+-#~ msgid "Name Service"
+-#~ msgstr "Namntjänst"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "Захист SELinux для служби radiusd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för named-demonen"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "Захист SELinux для служби radvd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nessusd-demonen"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "Захист SELinux для служби rdisc вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "Avaktivera SELinux-skydd för NetworkManager"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "Захист SELinux для служби readahead вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nfsd-demonen"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "Дозволити програмам читання файлів з нестандартних джерел (default_t)"
-+
++msgstr ""
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "Захист SELinux для служби restorecond вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nmbd-demonen"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "Захист SELinux для служби rhgb вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nrpe-demonen"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "Захист SELinux для ricci вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nscd-demonen"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "Захист SELinux для ricci_modclusterd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för nsd-demonen"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "Захист SELinux для служби rlogind вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ntpd-demonen"
 +#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "Захист SELinux для служби rpcd вимкнено"
-+
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "Avaktivera SELinux-skydd för oddjob"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "Захист SELinux для служби rshd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "Avaktivera SELinux-skydd för oddjob_mkhomedir"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för openvpn-demonen"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "Захист SELinux для служби rsync вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för pam-demonen"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "Дозволити запуск ssh з inted, а не у якості служби"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "Avaktivera SELinux-skydd för pegasus"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "Дозволити Samba спільний доступ до каталогів NFS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för perdition-demonen"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "Сервер авторизації SASL"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för portmap-demonen"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "Дозволити серверу авторизації sasl читати /etc/shadow"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för portslave-demonen"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+"Дозволити серверу X-Windows призначати область пам'яті як виконувану та "
-+"доступну для запису"
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "Avaktivera SELinux-skydd för postfix"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "Захист SELinux для служби saslauthd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för postgresql-demonen"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "Захист SELinux для служби scannerdaemon вимкнено"
-+
++msgstr ""
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "Не дозволяти зміну на sysadm_t, sudo та su"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "Avaktivera SELinux-skydd för pptp"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "Не дозволяти процесам завантажувати модулі ядра"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för prelink-demonen"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "Не дозволяти процесам змінювати правила SELinux у ядрі"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för privoxy-demonen"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "Захист SELinux для служби sendmail вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ptal-demonen"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "Захист SELinux для setrans вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för pxe-demonen"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "Захист SELinux для служби setroubleshoot вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "Avaktivera SELinux-skydd för pyzord"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "Захист SELinux для служби slapd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för quota-demonen"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "Захист SELinux для служби slrnpull вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för radiusd-demonen"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "Захист SELinux для служби smbd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för radvd-demonen"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "Захист SELinux для служби snmpd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "Avaktivera SELinux-skydd för rdisc"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "Захист SELinux для служби snort вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "Avaktivera SELinux-skydd för readahead"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "Захист SELinux для служби soundd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "Avaktivera SELinux-skydd för restorecond"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "Захист SELinux для служби sound вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för rhgb-demonen"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "Захист від спаму"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "Avaktivera SELinux-skydd för ricci"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "Захист SELinux для служби spamd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "Avaktivera SELinux-skydd för ricci_modclusterd"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "Дозволити spamd звертатися до домашніх каталогів"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för rlogind-demonen"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "Дозволити мережний доступ службі Spam Assassin"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för rpcd-demonen"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "Захист SELinux для служби speedmgmt вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "Avaktivera SELinux-skydd för rshd"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Звук"
-+
++msgstr ""
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "Дозволити службі squid приєднуватись до мережі"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för rsync-demonen"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "Захист SELinux для служби squid вимкнено"
-+
++msgstr ""
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL autentiseringsserver"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "Захист SELinux для служби ssh вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för saslauthd-demonen"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "Дозволити авторизацію ssh для sysadm_r:sysadm_t"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för scannerdaemon-demonen"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+"Дозволити користувачам staff_r пошук у домашніх каталогах та читання файлів "
-+"(наприклад, ~/.bashrc)"
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för sendmail-demonen"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "Універсальний тунель SSL"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "Avaktivera SELinux-skydd för setrans"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "Захист SELinux для служби stunnel вимкнено"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för setroublesoot-demonen"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "Дозволити службі stunnel виконуватись незалежно від xinetd"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för slapd-demonen"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "Захист SELinux для служби swat вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för slrnpull-demonen"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "Захист SELinux для служби sxid вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för smbd-demonen"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "Захист SELinux для служби syslogd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för snmpd-demonen"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "Захист SELinux для системи завдань cron вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för snort-demonen"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "Захист SELinux для служби tcp вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för soundd-demonen"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "Захист SELinux для служби telnet вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för sound-demonen"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "Захист SELinux для служби tftpd вимкнено"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "skräppostskydd"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "Захист SELinux для служби transproxy вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för spamd-demonen"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "Захист SELinux для служби udev вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för speedmgmt-demonen"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "Захист SELinux для служби uml вимкнено"
-+
++msgstr ""
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"Дозволити службі xinetd виконуватись без обмежень, що включає всі керовані "
-+"ним служби, для яких явно не вказані перетворення доменів"
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för squid-demonen"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"Дозволити виконання сценаріїв rc без обмежень, включаючи служби, що "
-+"запускаються сценарієм rc, для яких явно не вказано домен переходу"
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ssh-demonen"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "Дозволити rpm виконуватись без обмежень"
-+
++msgstr ""
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "Universiell SSL-tunnel"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+"Дозволити привілейованим утилітам (наприклад, hotplug та insmod) "
-+"виконуватись без обмежень"
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för stunnel-demonen"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "Захист SELinux для служби updfstab вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för swat-demonen"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "Захист SELinux для служби uptimed вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för sxid-demonen"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"Дозволити користувачу user_r звертатися до sysadm_r через su, sudo чи "
-+"userhelper. У іншому разі лише staff_r зможе здійснювати доступ"
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för syslogd-demonen"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "Дозволити користувачам виконувати команду mount"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "Avaktivera SELinux-skydd för systemets cron-jobb"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+"Дозволити звичайним користувачам здійснювати прямий доступ за допомогою миші "
-+"(лише для сервера X)"
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för tcp-demonen"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "Дозволити користувачам виконувати команду dmesg"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för telnet-demonen"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+"Дозволити користувачам керувати мережними інтерфейсами (також потрібно "
-+"USERCTL=true)"
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för tftpd-demonen"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "Дозволити звичайним користувачам виконувати ping"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för transproxy-demonen"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+"Дозволити користувачам виконувати читання та запис noextattrfile (FAT, "
-+"CDROM, FLOPPY)"
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för udev-demonen"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "Дозволити користувачам виконувати читання та запис пристроїв USB"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för uml-demonen"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"Дозволити користувачам запускати сервери TCP (здійснювати прив'язку портів "
-+"та приймати з'єднання з того ж домену та зовнішніх користувачів). Вимикання "
-+"цієї можливості викличе перехід у пасивний режим FTP та може змінити інші "
-+"протоколи"
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för updfstab-demonen"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "Дозволити користувачам виконувати stat для файлів tty"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för uptimed-demonen"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "Захист SELinux для служби uucpd вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för vmware-demonen"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "Захист SELinux для служби vmware вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för watchdog-demonen"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "Захист SELinux для служби watchdog вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för winbind-demonen"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "Захист SELinux для служби winbind вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för xdm-demonen"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "Захист SELinux для служби xdm вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för xen-demonen"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "Дозволити авторизацію xdm як sysadm_r:sysadm_t"
-+
++msgstr ""
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "Вимкнути захист SELinux для демона xen"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för xfs-demonen"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
-+
++msgstr ""
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "Avaktivera SELinux-skydd för xen-constrol"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "Дозволити xen запис та читання фізичних дискових пристроїв"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ypbind-demonen"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "Захист SELinux для служби xfs вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för NIS-lösenord-demonen"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "Захист SELinux для служби xen вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ypserv-demonen"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "Захист SELinux для служби ypbind вимкнено"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för NIS Transfer-demonen"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "Захист SELinux для служби NIS Password вимкнено"
-+
++msgstr ""
+-#~ msgid "Delete %s"
+-#~ msgstr "Radera %s"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "Захист SELinux для служби ypserv вимкнено"
-+
++msgstr ""
+-#~ msgid "Add %s"
+-#~ msgstr "Lägg till %s"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "Захист SELinux для служби NIS Transfer вимкнено"
-+
++msgstr ""
+-#~ msgid "Modify %s"
+-#~ msgstr "Modifiera %s"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+"Дозволити користувачу webadm керувати домашніми каталогами непривілейованих "
-+"користувачів"
-+
+-#~ msgid "Permissive"
+-#~ msgstr "Tillåtande"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+"Дозволити користувачу webadm читання домашніх каталогів непривілейованих "
-+"користувачів"
-+
+-#~ msgid "Enforcing"
+-#~ msgstr "Upprätthållande"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "Ви справді хочете видалити %s '%s'?"
-+
++msgstr ""
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "Видалити %s"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "Додати %s"
-+
++msgstr ""
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux-typ"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "Змінити %s"
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "Дозволений"
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Nivå"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "Примусовий"
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "Вимкнено"
-+
++msgstr ""
+-#~ msgid "File Type"
+-#~ msgstr "Filtyp"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "Статус"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "alla filer\n"
+-#~ "vanliga filer\n"
+-#~ "kataloger\n"
+-#~ "teckenenhet\n"
+-#~ "blockenhet\n"
+-#~ "uttag\n"
+-#~ "symbolisk länk\n"
+-#~ "namngivet rör\n"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Зміна типу правил вимагає повторної розмітки всієї файлової системи при "
-+"наступному завантаженні. Процес розмітки може бути досить тривалим залежно "
-+"від розміру файлової системи. Продовжити?"
-+
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -273856,67 +218917,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"Вимикання правил SELinux вимагає перезавантаження та не рекомендується. "
-+"Якщо у подальшому ви захочете увімкнути SELinux, знадобиться виконати "
-+"повторну розмітку файлової системи. Якщо ж ви просто хочете перевірити, чи "
-+"не викликає SELinux проблем у системі, використовуйте дозволений режим, який "
-+"не примушує до виконання правил, але при цьому реєструє помилки у журналі. "
-+"Дозволений режим не вимагає перезавантаження. Продовжити?"
-+
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Lägga till SELinux-användare"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"Активація правил SELinux вимагає повторної розмітки всієї файлової системи "
-+"при наступному завантаженні. Процес розмітки може бути досить тривалим "
-+"залежно від розміру файлової системи. Продовжити?"
-+
+-#~ msgid "Add"
+-#~ msgstr "Lägg till"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
-+
++msgstr ""
+-#~ msgid "_Properties"
+-#~ msgstr "_Egenskaper"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"(c) 2006 Red Hat, Inc.\n"
-+"(c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+
+-#~ msgid "_Delete"
+-#~ msgstr "_Ta bort"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "Додати відповідні авторизації SELinux"
-+
++msgstr ""
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>Val:</b>"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "Додати мережні порти SELinux"
-+
++msgstr ""
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "Nuvarande upprätthållande-läge"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "Тип SELinux"
-+
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"Рівень"
-+
-+#: ../gui/system-config-selinux.glade:814
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "Märk om vid nästa omstart."
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "Специфікація файлу"
-+
-+#: ../gui/system-config-selinux.glade:842
++msgstr ""
+-#~ msgid "label37"
+-#~ msgstr "label37"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "Тип файлу"
-+
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
+-#~ msgid "Filter"
+-#~ msgstr "Filter"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -273927,1809 +218986,1902 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/uk.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"усі файли\n"
-+"звичайний файл\n"
-+"каталог\n"
-+"символьний пристрій\n"
-+"блоковий пристрій\n"
-+"сокет\n"
-+"символічне посилання\n"
-+"канал\n"
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
++msgstr ""
+-#~ msgid "label38"
+-#~ msgstr "label38"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "Додати користувача SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1271
++msgstr ""
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Modifiera SELinux användarmappning"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "Адміністрування SELinux"
-+
-+#: ../gui/system-config-selinux.glade:1314
++msgstr ""
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Ta bort SELinux-användarmappning"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "Додати"
-+
-+#: ../gui/system-config-selinux.glade:1336
++msgstr ""
+-#~ msgid "label39"
+-#~ msgstr "label39"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "_Властивості"
-+
-+#: ../gui/system-config-selinux.glade:1358
++msgstr ""
+-#~ msgid "Add Translation"
+-#~ msgstr "Lägg till översättning"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "В_идалити"
-+
-+#: ../gui/system-config-selinux.glade:1449
++msgstr ""
+-#~ msgid "Delete Translation"
+-#~ msgstr "Ta bort översättning"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "Обрати об'єкт керування"
-+
-+#: ../gui/system-config-selinux.glade:1466
++msgstr ""
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>Вибір:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
++msgstr ""
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Modifiera SELinux-användare"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "Типовий примусовий режим"
-+
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Вимкнено\n"
-+"Дозволений\n"
-+"Примусовий\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Add Network Port"
+-#~ msgstr "Lägg till nätverkport"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "Поточний примусовий режим"
-+
-+#: ../gui/system-config-selinux.glade:1611
++msgstr ""
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "Тип типових правил системи:"
-+
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
+-#~ msgid "Load policy module"
+-#~ msgstr "Läs in policymodul"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"Виберіть, якщо хочете виконати повторну розмітку всієї файлової системи при "
-+"наступному завантаженні. Процес повторної розмітки може бути досить тривалим "
-+"залежно від розміру файлової системи. При зміні типу правил також "
-+"знадобиться повторна розмітка."
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "Повторна розмітка при наступному завантаженні."
-+
-+#: ../gui/system-config-selinux.glade:1754
++msgstr ""
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux-användare \"%s\" krävs"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
++msgstr ""
+-#~ msgid "Requires value"
+-#~ msgstr "Kräver värde"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "Відновити первинне значення параметра"
-+
-+#: ../gui/system-config-selinux.glade:1807
++msgstr ""
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+"Перемикання між значенням вказаним користувачем та усіма логічними значеннями"
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "Запустити помічник блокування логічних змінних"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "Блокування..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "Фільтр"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "Додати контекст файлу"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "Змінити контекст файлу"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "Видалити контекст файлу"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "Перемикання між усіма та зміненими контекстами файлів"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "Додати відповідність користувачів SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "Змінити відповідність користувача SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "Видалити відповідність користувача SELinux"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "Додати користувача"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "Змінити користувача"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "Видалити користувача"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "Додати переклад"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "Змінити переклад"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "Видалити переклад"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "Додати мережний порт"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "Змінити мережний порт"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "Видалити мережний порт"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "Перемикання між портами вказаними користувачем та усіма портами"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "Генерувати модуль нових правил"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "Завантажити модуль правил"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "Видалити завантажувальний модуль правил"
-+
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
 +msgstr ""
-+"Увімкнути чи вимкнути додаткові правила аудиту, яке зазвичай не показується "
-+"у журналах."
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "Змінити режим процесу на нестрогий."
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "Змінити режим процесу на примусовий."
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "Домен процесу"
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
-+
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "Потрібен SELinux користувач ?%s?"
-+
-+#, fuzzy
-+#~ msgid "Sensitivity Level"
-+#~ msgstr "Рівень чутливості"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ur.po policycoreutils-2.0.85/po/ur.po
---- nsapolicycoreutils/po/ur.po        2011-02-17 15:11:25.753724502 -0500
-+++ policycoreutils-2.0.85/po/ur.po    2011-02-18 16:03:41.452976319 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
 +msgstr ""
-+
- #: ../run_init/run_init.c:67
- msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr ""
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
+-#~ msgid "label34"
+-#~ msgstr "label34"
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+-#~ msgid "label35"
+-#~ msgstr "label35"
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "Upprätthållande\n"
+-#~ "Tillåtande\n"
+-#~ "Avaktiverad\n"
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+-#~ msgid "value"
+-#~ msgstr "värde"
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+-#~ msgid "You must be root to run %s."
+-#~ msgstr "Du måste vara root för att köra %s."
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+-#~ msgid "Other"
+-#~ msgstr "Andra"
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+-#~ msgid "Files and Directories"
+-#~ msgstr "Filer och katalog"
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+-#~ msgid "Polyinstatiation"
+-#~ msgstr "Polyinstansiering"
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för ftpd-demonen"
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för httpd-demonen"
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för pppd-demonen"
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för mozilla ppp-demonen"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "Avaktivera SELinux-skydd för zebra-demonen"
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "MLS/MCS-nivå"
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS-nivå"
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Kräver 2 eller fler argument"
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
+-#~ msgid "%s not defined"
+-#~ msgstr "%s är inte definierad"
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s inte giltig för %s objekt\n"
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "intervall stöds inte av icke-MLS maskiner"
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Ogiltigt värde %s"
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
  
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
+-#~ msgid ""
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "För att ladda detta nya policy-paket in i kärnan,\n"
+-#~ "måste du köra \n"
+-#~ "\n"
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
  
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Flaggfel: %s "
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/ta.po b/policycoreutils/po/ta.po
+index f201663..f5c6fb0 100644
+--- a/policycoreutils/po/ta.po
++++ b/policycoreutils/po/ta.po
+@@ -1,30 +1,25 @@
+-# translation of ta.po to Tamil
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
++# Translators:
+ # Felix <ifelix@redhat.com>, 2006.
+ # I felix <ifelix@redhat.com>, 2007.
++# I Felix <ifelix@redhat.com>, 2010.
++# I. Felix <ifelix@redhat.com>, 2009, 2010.
+ msgid ""
  msgstr ""
+-"Project-Id-Version: ta\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-09-24 17:51+0530\n"
+-"Last-Translator: I felix <ifelix@redhat.com>\n"
+-"Language-Team: Tamil <fedora-trans-ta@redhat.com>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Tamil <tamil-users@lists.fedoraproject.org>\n"
+ "Language: ta\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -96,11 +91,11 @@ msgstr "******************** முக்கியமானது **************
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr ""
++msgstr "இந்த பாலிசி தொகுப்பை செயல்படுத்த,செயலாற்றுகிறது:"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+-msgstr ""
++msgstr "கொலபல்"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+ #: ../semanage/seobject.py:222
+ msgid "Could not create semanage handle"
+@@ -119,87 +114,81 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage இணைப்பினை ஏற்படுத்த முடியவில்லை"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+ msgstr "MLS வரையறையை %sக்கு அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "அமுலுக்கு கொண்டு வரப்படவில்லை"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage பரிமாற்றம் ஏற்கனவே செயலில் உள்ளது"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage பரிமாற்றத்தை ஆரம்பிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage பரிமாற்றத்தை ஆரம்பிக்க முடியவில்லை"
++msgstr "semanage பரிமாற்றத்தை ஒத்துக் கொள்ள முடியவில்லை"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage பரிமாற்றம் இல்லை"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux பயனர்களை பட்டியலிட முடியவில்லை"
++msgstr "SELinux தொகுதிகளை பட்டியலிட முடியவில்லை"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "தொகுதி பெயர்"
++msgstr "தொகுதிகள் பெயர்"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "பதிப்பு"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "செயல்நீக்கப்பட்டது"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:322
  #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+ msgid "Could not disable module %s (remove failed)"
+-msgstr ""
++msgstr "தொகுதி %sஐ செயல்நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "%s க்கு %s பாத்திரத்தை சேர்க்க முடியவில்லை"
++msgstr "தொகுதி %sஐ செயல்படுத்த முடியவில்லை (நீக்க முடியவில்லை)"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+ msgid "Could not remove module %s (remove failed)"
+-msgstr ""
++msgstr "தொகுதி %sஐ நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "'on' அல்லது 'off' க்கு dontaudit தேவைப்படுகிறது"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "ஏற்கத்தக்கது"
++msgstr ""
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "ஏற்கத்தக்கது"
++msgstr ""
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "தாராளமான செயற்களம் %s ஐ அமைக்க முடியவில்லை(முறைமையை நிறுவ முடியவில்லை)"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "ஏற்றத்தக்க செயற்கள %sஐ நீக்க முடியவில்லை (நீக்க முடியவில்லை)"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -219,9 +208,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%sக்கு அனுமதி ஒப்பீடு குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "லினக்ஸ் பயனர் %s இல்லை"
++msgstr "லினக்ஸ் குழு %s ஏற்கனவே இல்லை"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
+@@ -288,15 +277,20 @@ msgid "Could not list login mappings"
+ msgstr "அனுமதி ஒப்பீடுகளை பட்டியலிட முடியவில்லை"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "புகுபதிவு பெயர்"
  
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "SELinux பயனர்"
  
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "MLS/MCS வரையறை"
  
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
+@@ -314,9 +308,9 @@ msgid "Could not query user for %s"
+ msgstr "%sக்கு பயனரை வினா எழுப்ப முடியவில்லை"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%sக்கு கோப்பு சூழலை சேர்க்க முடியவில்லை"
++msgstr "%sக்காக ஒரு சூழலையாவது சேர்க்கவும்"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
+@@ -406,6 +400,7 @@ msgid "MCS Range"
+ msgstr "MCS வரையறை"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux பங்குகள்"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -418,9 +413,8 @@ msgid "Port is required"
+ msgstr "துறை தேவைப்படுகிறது"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "தவறான முன்னொட்டு %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
+@@ -507,14 +501,13 @@ msgid "Could not modify port %s/%s"
+ msgstr "துறை %s/%sஐ மாற்ற முடியவில்லை"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
+ msgid "Could not list the ports"
+ msgstr "துறைகளை பட்டியலிட முடியவில்லை"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete the port %s"
+-msgstr "துறைகளை அழிக்க முடியவில்லை %s/%s"
++msgstr "%s துறையை அழிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1118
+ #, python-format
+@@ -538,18 +531,17 @@ msgstr "SELinux துறை வகை"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "துறை எண்"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "துறை தேவைப்படுகிறது"
++msgstr "முனை முகவரி தேவைப்படுகிறது"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "தெரியாத அல்லது விடுபட்ட பிரோக்டகால்"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -566,14 +558,14 @@ msgstr "%sக்கு விசையை உருவாக்க முடி
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "துறை %s/%s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
++msgstr "addr %s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
++msgstr "%sகாக addr உருவாக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -582,74 +574,72 @@ msgid "Could not create context for %s"
+ msgstr "%s க்கு சூழலை உருவாக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%sக்கு பெயர் அமைக்க முடியவில்லை"
++msgstr "%sகாக மாஸ்க்கை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%s க்கு கோப்பு சூழலில் பயனரை அமைக்க முடியவில்லை"
++msgstr "%s க்கு addr சூழலில் பயனரை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%s க்கு கோப்பு சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
++msgstr "%s க்கு addr சூழலில் சுழலை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%s க்கு கோப்பு சூழலில் வகையை அமைக்க முடியவில்லை"
++msgstr "%s க்கு addr சூழலில் வகையை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%sக்கு கோப்பு சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
++msgstr "%sக்கு addr சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%s க்கு கோப்பு சூழலை அமைக்க முடியவில்லை"
++msgstr "%s க்கு addr சூழலை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "துறை %s/%sயை சேர்க்க முடியவில்லை"
++msgstr "addr %sயை சேர்க்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "துறை %s/%s குறிப்பிடப்படவில்லை"
++msgstr "addr %s குறிப்பிடப்படவில்லை"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "துறை %s/%sஐ வினா எழுப்ப முடியாது"
++msgstr "addr %sஐ வினா எழுப்ப முடியாது"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "துறை %s/%sஐ மாற்ற முடியவில்லை"
++msgstr "addr %sஐ மாற்ற முடியவில்லை"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "துறை %s/%s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
++msgstr "addr %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
++msgstr "addr %s ஐ அழிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%sக்கு அனுமதி ஒப்பீடுகளை அழிக்க முடியவில்லை"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "துறைகளை பட்டியலிட முடியவில்லை"
++msgstr "addrs பட்டியலிட முடியவில்லை"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -723,9 +713,8 @@ msgid "Could not delete interface %s"
+ msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
+@@ -740,9 +729,9 @@ msgid "Context"
+ msgstr "சூழல்"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%sலின் கோப்பு சூழல் ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
++msgstr "%sலின் சமநிலை வகுப்பு ஏற்கனவே உள்ளது"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not set user in file context for %s"
+@@ -750,9 +739,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "லினக்ஸ் பயனர் %s இல்லை"
++msgstr "%sக்கு சமநிலை வகுப்பு இல்லை"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
+@@ -770,9 +759,8 @@ msgid "Could not set mls fields in file context for %s"
+ msgstr "%sக்கு கோப்பு சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
+-#, fuzzy
  msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
+-msgstr "கோப்பு குறிப்பிடல்"
++msgstr "தவறான கோப்பு குறிப்பிடல்"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+@@ -832,12 +820,11 @@ msgid "Could not modify file context for %s"
+ msgstr "%sக்கு கோப்பு சூழலை மாற்ற முடியாது"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
+ msgid "Could not list the file contexts"
+ msgstr "கோப்பு சூழல் பட்டியலிட முடியவில்லை."
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete the file context %s"
+ msgstr "%sக்கு கோப்பு சூழலை அழிக்க முடியவில்லை"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
+@@ -874,11 +861,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -897,14 +883,14 @@ msgid "Could not query file context %s"
+ msgstr "கோப்பு சூழல் %sஐ வினா எழுப்ப முடியாது"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
++msgstr "பின்வரும் மதிப்புகளில் ஏதேனும் ஒன்றை நீங்கள் குறிப்பிட்டாக வேண்டும்: %s"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "பூலியன் %sஐ அழிக்க முடியவில்லை"
++msgstr "பூலியன் %sனுடைய மதிப்பினை செயலில் அமைக்க இயலாது"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+@@ -914,7 +900,7 @@ msgstr "பூலியன் %sஐ மாற்ற முடியவில்
+ #: ../semanage/seobject.py:2025
  #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "%s தவறான முறை: %sஐ பதிவு செய்யவும்"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
+@@ -932,33 +918,32 @@ msgstr "பூலியன்களை பட்டியலிட முடி
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr ""
+ #: ../semanage/seobject.py:2104
+ msgid "unknown"
+-msgstr ""
++msgstr "தெரியாத"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:2117
+ msgid "off"
+-msgstr ""
++msgstr "ஆஃப்"
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:2117
+-#, fuzzy
+ msgid "on"
+-msgstr "Cron"
++msgstr "ஆன்"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "SELinux boolean"
+ msgstr "SELinux பூலியன்"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "நிலை"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+-msgstr ""
++msgstr "விளக்கம்"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -968,12 +953,12 @@ msgstr "PAM_TTYஐ அமைக்க முடியவில்லை\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "புதிய பங்கு: சேவை பெயர் கட்டமைப்பு வழிகிறது\n"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "புதிய பங்கு:  %s:  கோட்டில் பிழை %lu.\n"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../newrole/newrole.c:439
+ #, c-format
+@@ -1078,7 +1063,7 @@ msgstr "பிழை: பல நிலைகள் குறிப்பிட
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
++msgstr "பிழை: ஒரு பாதுகாப்பில்லாத முனைய மட்டங்களை மாற்ற உங்களுக்கு அனுமதி இல்லை \n"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
+ #: ../newrole/newrole.c:891
+ #, c-format
+@@ -1146,14 +1131,14 @@ msgid "failed to get old_context.\n"
+ msgstr "பழைய சூழலை எடுக்க முடியவில்லை.\n"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "பிழை!  tty விவரத்தினை எடுக்க முடியவில்லை.\n"
++msgstr "எச்சரிக்கை!  tty தகவலை சரியாக்க இயலவில்லை.\n"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr ""
++msgstr "PAM சேவை கட்டமைப்பினை வாசிப்பதில் பிழை.\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../newrole/newrole.c:1133
+ #, c-format
+@@ -1195,19 +1180,20 @@ msgid "failed to exec shell\n"
+ msgstr "ஷெல்லை செயல்படுத்த முடியவில்லை\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+ msgstr "பயன்பாடு:  %s [-q]\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s:  பாலிசி ஏற்கனவே ஏற்றப்பட்டுவிட்டது மற்றும் முதல் ஏற்றம் தேவைப்படுகிறது \n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:  பாலிசியை ஏற்ற முடியவில்லை:  %s\n"
++msgstr ""
++"%s:  பாலிசியை ஏற்ற முடியவில்லை மற்றும் வலியுறுத்துகிற முறைமையை கோரப்படுகிறது: %s\n"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../load_policy/load_policy.c:90
  #, c-format
+@@ -1293,1156 +1279,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "விருப்பங்கள் பிழை %s "
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "%sஐ திறக்க முடியவில்லை: MLS இல்லா கணினிகளில் மொழிபெயர்ப்பிற்கு துணை புரிவதில்லை"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "நிலை"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "மொழிபெயர்ப்பு"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "மொழிபெயர்ப்புகள் இடைவெளியை கொண்டிருக்கக்கூடாது '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "தவறான நிலை '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ஏற்கனவே மொழிபெயர்ப்புகளில் குறிப்பிடப்பட்டுள்ளது"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s மொழிபெயர்ப்பில் குறிப்பிடப்படவில்லை"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "அனுமதி ஒப்பீடு %sக்கு ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux பயனர் ஒப்பீட்டை சேர்த்தல்"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux பயனர் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "துறை தேவைப்படுகிறது"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "துறை %s/%s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "இடைமுகம் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "capabilityகளை துவக்குவதில் பிழை, வெளியேறுகிறது.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "செயல்திறன்களை அமைப்பதில் பிழை, வெளியேறுகிறது.\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS அமைப்பதில் பிழை, வெளியேறுகிறது\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "capabilityகளை விடுவதில் பிழை, வெளியேறுகிறது.\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID  திறனை விடுவதில் பிழை, வெளியேறுகிறது\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "capsஐ விடுவதில் பிழை\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "non-MLS கணினிகளில் மொழிபெயர்க்க முடியாது"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "பூலியன்"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#, fuzzy
+-#~ msgid "all"
+-#~ msgstr "அனைத்து"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "File Labeling"
+-#~ msgstr "கோப்பு பெயரிடல்"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "கோப்பு\n"
+-#~ "குறிப்பிடல்"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "கோப்பு சூழல்"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "கோப்பு\n"
+-#~ "வகை"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid "User Mapping"
+-#~ msgstr "பயனர் ஒப்பிடல்"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "புகுபதிவு\n"
+-#~ "பெயர்"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "பயனர்"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS வரையறை"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "புகுபதிவு '%s' தேவைப்படுகிறது"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid "Policy Module"
+-#~ msgstr "கொள்கை தொகுதி"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid "Disable Audit"
+-#~ msgstr "Audit செயல்நீக்கவும்"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Enable Audit"
+-#~ msgstr "Auditஐ செயல்படுத்தவும்"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Load Policy Module"
+-#~ msgstr "கொள்கை தொகுதியை ஏற்றவும்"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "translator-credits"
+-#~ msgstr "I. Felix <ifelix25@gmail.com>"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>பயன்பாடுகள்</b>"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "User Application"
+-#~ msgstr "பயனர் பயன்பாடு"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#, fuzzy
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>பயனர்கள்</b>"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#, fuzzy
+-#~ msgid "User Role"
+-#~ msgstr "பங்கு"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#, fuzzy
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>பயனர்கள்</b>"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#, fuzzy
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "ரூட் பயனர்"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Name"
+-#~ msgstr "பெயர்"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Executable"
+-#~ msgstr "இயங்கக்கூடியது"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Init script"
+-#~ msgstr "Init script"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP துறைகள்</b>"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "All"
+-#~ msgstr "அனைத்து"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "பதிவு செய்யப்பட்ட துறைகள் (>1024)"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
+-#~ msgid "Select Ports"
+-#~ msgstr "துறைகளை தேர்ந்தெடுக்கவும்"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP துறைகள்</b>"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "தணிக்கை செய்தியை அனுப்புவதில் பிழை.\n"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
+-#~ msgid "Policy Directory"
+-#~ msgstr "கொள்கை அடைவு"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "உருவாக்கப்பட்ட கொள்கை கோப்புகள்"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Boolean Name"
+-#~ msgstr "பூலியன்"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
+-#~ msgid "Role"
+-#~ msgstr "பங்கு"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
+-#~ msgid "Application"
+-#~ msgstr "பயன்பாடு"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
+-#~ msgid "You must enter a name"
+-#~ msgstr "நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும்"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
+-#~ msgid "You must enter a executable"
+-#~ msgstr "நீங்கள் ஒரு இயக்கத்தக்கத்தை உள்ளிட வேண்டும்"
++#: ../gui/polgen.glade:1164
++msgid "label107"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinuxஐ கட்டமைக்கவும்"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "வகை enforcment கோப்பு"
++#: ../gui/polgen.glade:1227
 +msgid "Select the user roles that will transiton to this applications domains."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Interface file"
+-#~ msgstr "முகப்பு கோப்பு"
++#: ../gui/polgen.glade:1255
++msgid "label108"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "File Contexts file"
+-#~ msgstr "கோப்பு சூழல்கள் கோப்பு"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Setup Script"
+-#~ msgstr "அமைவு உரை"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux துறை\n"
+-#~ "வகை"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
+-#~ msgid "Protocol"
+-#~ msgstr "நெறிமுறை"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "நிலை"
++#: ../gui/polgen.glade:1437
++msgid "label111"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Port"
+-#~ msgstr "துறை"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "துறை எண் \"%s\" தவறானது.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Group View"
+-#~ msgstr "குழு பார்வை"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux சேவை பாதுகாப்பு"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Admin"
+-#~ msgstr "நிர்வாகம்"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "User Privs"
+-#~ msgstr "பயனர் Privs"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Memory Protection"
+-#~ msgstr "நினைவக பாதுகாப்பு"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Mount"
+-#~ msgstr "ஏற்றம்"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "Network Configuration"
+-#~ msgstr "பிணைய கட்டமைப்பு"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "Databases"
+-#~ msgstr "தரவுத்தளங்கள்"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Web Applications"
+-#~ msgstr "இணைய பயன்பாடுகள்"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "amandaக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "amavisக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "avahiக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "bluetooth daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "Cluster சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier daemon SELinuxக்கு பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Printing"
+-#~ msgstr "அச்சடித்தல்"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "cupsd backend சேவையகத்திற்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "cupsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "cupsd_lpdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "cvs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "cyrus daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "dbskkd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "dbusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "dccdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "dccifdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "dccmக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "ddt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "devfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "dhcpc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "dhcpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "dictd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "Evolutionக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Games"
+-#~ msgstr "விளையாட்டுகள்"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "விளையாட்டுகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "இணைய உலாவிகளுக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "Thunderbirdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "fetchmailக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
 +
-+#: ../gui/polgen.py:327
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
 +
-+#: ../gui/polgen.py:729
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
 +
-+#: ../gui/polgen.py:848
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:849
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:850
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
 +
-+#: ../gui/polgen.py:851
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
 +
@@ -275762,7 +220914,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ur.po policycoreutils
 +msgid "List View"
 +msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
 +
@@ -276236,683 +221388,1039 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ur.po policycoreutils
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "hal daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "உகந்தவை"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "hostname daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD சேவை"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexecக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "inetd child daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk daemonsக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailmanக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "பெயர் சேவை"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "named daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "NetworkManagerக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "சம்பா"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjobக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedirக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasusக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap daemon க்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfixக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptpக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzordக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdiscக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readaheadக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecondக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricciக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshdக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL அங்கீகார சேவையகம்"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setransக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroublesoot daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Spam Protection"
+-#~ msgstr "ஸ்பேம் பாதுகாப்பு"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "உலகளாவிய SSL குகை"
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "system cron பணிக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen constrolக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS Password Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS Transfer Daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
-+
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "%s '%s'ஐ அழிக்க வேண்டுமா?"
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
 +msgstr ""
-+
+-#~ msgid "Delete %s"
+-#~ msgstr "%sஐ அழிக்கவும்"
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
 +msgstr ""
-+
+-#~ msgid "Add %s"
+-#~ msgstr "%sஐ சேர்க்கவும்"
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
 +msgstr ""
-+
+-#~ msgid "Modify %s"
+-#~ msgstr "%sஐ மாற்றவும்"
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
 +msgstr ""
-+
+-#~ msgid "Permissive"
+-#~ msgstr "ஏற்கத்தக்கது"
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
 +msgstr ""
-+
+-#~ msgid "Enforcing"
+-#~ msgstr "கட்டாயப்படுத்தல்"
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
 +msgstr ""
-+
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "காப்புரிமை (c)2006 Red Hat, Inc.\n"
+-#~ "காப்புரிமை (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
 +msgstr ""
-+
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux புகுபதிவு ஒப்பீட்டை சேர்த்தல்"
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
 +msgstr ""
-+
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux பிணைய துறைகளை சேர்த்தல்"
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
 +msgstr ""
-+
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux வகை"
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "நிலை"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "File Specification"
+-#~ msgstr "கோப்பு குறிப்பிடல்"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "File Type"
+-#~ msgstr "கோப்பு வகை"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "அனைத்து கோப்புகள்\n"
+-#~ "இயல்பான கோப்பு\n"
+-#~ "அடைவு\n"
+-#~ "எழுத்து சாதனம்\n"
+-#~ "தடுப்பு சாதனம்\n"
+-#~ "சாக்கெட்\n"
+-#~ "குறியீடு இணைப்பு\n"
+-#~ "பெயரிடப்பட்ட பைப்\n"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux பயனர் சேர்த்தல்"
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux நிர்வாகம்"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Add"
+-#~ msgstr "சேர்த்தல்"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "_Properties"
+-#~ msgstr "பண்புகள் (_P)"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid "_Delete"
+-#~ msgstr "அழித்தல் (_D)"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "Select Management Object"
+-#~ msgstr "மேலாண்மை பொருளை தேர்ந்தெடுக்கவும்"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>தேர்ந்தெடுத்தல்:</b>"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "கணினி முன்னிருப்பு கட்டாயப்படுத்தல் முறை"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "நடப்பு கட்டாயப்படுத்தும் முறை"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "கணினி முன்னிருப்பு கொள்கை வகை:"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "அடுத்த மறுதுவக்கத்தில் மறு பெயரிடவும்."
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid "label37"
+-#~ msgstr "label37"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Filter"
+-#~ msgstr "வடிப்பி"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid "label50"
+-#~ msgstr "label50"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "கோப்பு சூழலை சேர்த்தல்"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "கோப்பு சூழலை மாற்றவும்"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "கோப்பு சூழலை அழிக்கவும்"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -276922,54 +222430,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ur.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "label38"
+-#~ msgstr "label38"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux பயனர் ஒப்பீட்டை சேர்த்தல்"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux பயனர் ஒப்பீட்டை மாற்றவும்"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux பயனர் ஒப்பீட்டை அழிக்கவும்"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "label39"
+-#~ msgstr "label39"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "மொழிபெயர்ப்பை சேர்த்தல்"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "மொழிபெயர்ப்பை மாற்றுதல்"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Delete Translation"
+-#~ msgstr "மொழிபெயர்ப்பை அழித்தல்"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "label41"
+-#~ msgstr "label41"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -276980,1823 +222499,2160 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ur.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux பயனரை மாற்றவும்"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "label40"
+-#~ msgstr "label40"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Add Network Port"
+-#~ msgstr "பிணைய துறையை சேர்த்தல்"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Edit Network Port"
+-#~ msgstr "பிணைய துறையை திருத்தவும்"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Delete Network Port"
+-#~ msgstr "பிணைய துறையை அழிக்கவும்"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "label42"
+-#~ msgstr "label42"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Generate new policy module"
+-#~ msgstr "புதிய கொள்கை தொகுதியை உருவாக்கவும்"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "Load policy module"
+-#~ msgstr "கொள்கை தொகுதியை ஏற்றவும்"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "ஏற்றக்கூடிய கொள்கை தொகுதியை நீக்கவும்"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "label44"
+-#~ msgstr "label44"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "உணர்வுள்ள நிலை"
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux பயனர் '%s' தேவைப்படுகிறது"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Requires value"
+-#~ msgstr "மதிப்பு தேவைப்படுகிறது"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "label25"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "label26"
+-#~ msgstr "label26"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "label28"
+-#~ msgstr "label28"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid "label30"
+-#~ msgstr "label30"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "label31"
+-#~ msgstr "label31"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "label32"
+-#~ msgstr "label32"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "label33"
+-#~ msgstr "label33"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "பதிவு செய்யப்படாத துறைகள்  (> 1024)"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "label34"
+-#~ msgstr "label34"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "label35"
+-#~ msgstr "label35"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#, fuzzy
+-#~ msgid "label51"
+-#~ msgstr "label25"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "கட்டாயப்படுத்தல்\n"
+-#~ "ஏற்கத்தக்கது\n"
+-#~ "செயல்நீக்கப்பட்டது\n"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "value"
+-#~ msgstr "மதிப்பு"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid "Other"
+-#~ msgstr "வேறு"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "XWindows Login User"
+-#~ msgstr "XWindows புகுபதிவு பயனர்"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Terminal Login User"
+-#~ msgstr "முனைய புகுபதிவு பயனர்"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid "Files and Directories"
+-#~ msgstr "கோப்புகள் மற்றும் அடைவுகள்"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Login"
+-#~ msgstr "புகுபதிவு"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid "FTP"
+-#~ msgstr "FTP"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Zebra"
+-#~ msgstr "Zebra"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "Disable SELinux protection for ftpd daemon"
+-#~ msgstr "ftpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Disable SELinux protection for httpd daemon"
+-#~ msgstr "httpd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid "Disable SELinux protection for pppd daemon"
+-#~ msgstr "pppd daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Disable SELinux protection for the mozilla ppp daemon"
+-#~ msgstr "mozilla ppp daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Spam Assassin"
+-#~ msgstr "Spam Assassin"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid "Disable SELinux protection for zebra daemon"
+-#~ msgstr "zebra daemonக்கு SELinux பாதுகாப்பை செயல்நீக்கவும்"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid "Label Prefix"
+-#~ msgstr "முன்னொட்டு பெயர்"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "MLS/MCS Level"
+-#~ msgstr "MLS/MCS நிலை"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid ""
+-#~ "Labeling\n"
+-#~ "Prefix"
+-#~ msgstr ""
+-#~ "பெயரிடல்\n"
+-#~ "முன்னொட்டு"
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Level"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS நிலை"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils-2.0.85/po/vi.po
---- nsapolicycoreutils/po/vi.po        2011-02-17 15:11:25.403730277 -0500
-+++ policycoreutils-2.0.85/po/vi.po    2011-02-18 16:03:41.452976319 -0500
-@@ -8,14 +8,32 @@
+diff --git a/policycoreutils/po/te.po b/policycoreutils/po/te.po
+index 88bba49..4db86dc 100644
+--- a/policycoreutils/po/te.po
++++ b/policycoreutils/po/te.po
+@@ -1,28 +1,23 @@
+-# translation of new_policycoreutils.HEAD.te.po to Telugu
++# SOME DESCRIPTIVE TITLE.
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ #
+-# Krishna Babu K <kkrothap@redhat.com>, 2008.
++# Translators:
++# Krishna Babu K <kkrothap@redhat.com>, 2008, 2009, 2010.
+ msgid ""
  msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
+-"Project-Id-Version: new_policycoreutils.HEAD.te\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-03-24 13:20+0530\n"
+-"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
+-"Language-Team: Telugu <en@li.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Telugu (http://www.transifex.net/projects/p/fedora/language/"
++"te/)\n"
+ "Language: te\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
+-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
+-"\n"
++"Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr ""
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr ""
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr ""
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
+@@ -117,9 +112,8 @@ msgid "Could not establish semanage connection"
+ msgstr "semanage అనుసంధానంను ఎర్పరచలేక పోయింది."
  
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "%s కొరకు MLS స్థాయిని అమర్చలేకపోయింది"
++msgstr "MLS చేతనమైన స్థితిని పరిశీలించలేక పోయింది"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -127,36 +121,33 @@ msgstr "ఇంకా మెరుగుపరచ లేదు"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage వ్యవహారము యిప్పటికే పురోగతినందు వున్నది"
  
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+ msgstr "semanage వ్యవహారాన్ని ప్రారంభించ లేకపోయింది"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
- msgstr ""
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "semanage వ్యవహారాన్ని ప్రారంభించ లేకపోయింది"
++msgstr "semanage వ్యవహారాన్ని అప్పగించ(commit)లేక పోయింది"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage వ్యవహారము పురోగతినందు లేదు"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
+ msgid "Could not list SELinux modules"
+-msgstr "SELinux వినియోగదారులను జాబితా చేయలేకపోయింది"
++msgstr "SELinux మాడ్యూల్సును జాబితా చేయలేకపోయింది"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "మాడ్యూల్ నామము"
++msgstr ""
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "వర్షన్"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "అచేతనమైన"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
+@@ -166,9 +157,9 @@ msgid "Could not disable module %s (remove failed)"
  msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "పాత్ర %s ను %s కొరకు జతచేయ లేకపోయింది"
++msgstr ""
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:348
  #, python-format
- msgid "Could not add login mapping for %s"
+@@ -180,24 +171,22 @@ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "అనుమతిగల"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "అనుమతిగల"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
++msgstr "అనుమతిగల డొమైన్ %sను అమర్చలేక పోయింది (మాడ్యూల్ సంస్థాపన విఫలమైంది)"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+ #: ../semanage/seobject.py:444
  #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
++msgstr "అనుమతిగల డొమైన్ %sను తొలగించలేక పోయింది (తొలగింపు విఫలమైంది)"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -217,9 +206,9 @@ msgid "Could not check if login mapping for %s is defined"
+ msgstr "%s కొరకు లాగిన్ మాపింగ్ నిర్వచించబడివుంటే పరిశీలించకుండా ఉండేది"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
+ msgid "Linux Group %s does not exist"
+-msgstr "లినక్స్‍ వినియోగదారి %s లేడు"
++msgstr "లినక్స్‍ సమూహము %s లేదు"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+@@ -286,15 +275,20 @@ msgid "Could not list login mappings"
+ msgstr "లాగిన్ మాపింగ్స్‍‌ను జాబితా చేయలేకపోయింది"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr ""
+ msgstr "లాగిన్ నామము"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr ""
+ msgstr "SELinux వినియోగదారి"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr ""
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgstr "MLS/MCS వ్యాప్తి"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
+@@ -312,9 +306,9 @@ msgid "Could not query user for %s"
+ msgstr "%s కొరకు వినియోగదారిని క్వరీ చేయలేకపోయింది"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "%s కొరకు దస్త్రము సందర్భంను జతచేయలేకపోయింది"
++msgstr "%s కొరకు మీరు కనీసము వొక పాత్రను జతచేయవలెను"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:737
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
+@@ -404,6 +398,7 @@ msgid "MCS Range"
+ msgstr "MCS వ్యాప్తి"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr ""
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+ msgstr "SELinux పాత్రలు"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
+@@ -416,9 +411,8 @@ msgid "Port is required"
+ msgstr "పోర్ట్‍ అవసరము"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "సరికాని ప్రిఫిక్స్‍ %s"
++msgstr ""
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:979
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -535,18 +529,17 @@ msgstr "SELinux పోర్ట్‍ రకము"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "పోర్ట్‍ సంఖ్య"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "పోర్ట్‍ అవసరము"
++msgstr "నోడు చిరునామా అవసరమైనది"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "తెలియని లేదా తప్పిపోయిన నిభందన"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -563,14 +556,14 @@ msgstr "%s కొరకు కీను సృష్టించలేకపో
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s నిర్వచించివుంటే పరిశీలించకుండా ఉండేది"
++msgstr "%s చిరునామా నిర్వచించబడివుంటే పరిశీలించలేక పోయేది"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "%s కొరకు కీను సృష్టించలేకపోయింది"
++msgstr "%s కొరకు చిరునామాను సృష్టించలేకపోయింది"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
- #, python-format
- msgid "Could not create context for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
+@@ -579,74 +572,72 @@ msgid "Could not create context for %s"
+ msgstr "%s కొరకు సందర్భంను సృష్టించలేకపోయింది"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "%s కొరకు నామమును అమర్చలేక పోయింది"
++msgstr "%s కొరకు తొడుగు(మాస్కు)ను అమర్చలేక పోయింది"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "%s కొరకు దస్త్ర సందర్భంనందు వినియోగదారిని అమర్చలేకపోయింది"
++msgstr "%s కొరకు చిరునామా సందర్భంనందు వినియోగదారిని అమర్చలేకపోయింది"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "%s కొరకు దస్త్ర సందర్భంనందు పాత్రను అమర్చలేకపోయింది"
++msgstr "%s కొరకు చిరునామా సందర్భంనందు పాత్రను అమర్చలేకపోయింది"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "%s కొరకు దస్త్ర సందర్భంనందు రకమును అమర్చలేకపోయింది"
++msgstr "%s కొరకు చిరునామా సందర్భంనందు రకమును అమర్చలేకపోయింది"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "%s కొరకు దస్త్ర సందర్భంనందు mls క్షేత్రాలను అమర్చలేకపోయింది"
++msgstr "%s కొరకు చిరునామా సందర్భంనందు mls క్షేత్రాలను అమర్చలేకపోయింది"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "%s కొరకు దస్త్రము సందర్భంను అమర్చలేకపోయింది"
++msgstr "%s కొరకు చిరునామా సందర్భంను అమర్చలేకపోయింది"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s ను జతచేయలేకపోయింది"
++msgstr "చిరునామా %s జతచేయలేక పోయింది"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s నిర్వచించబడిలేదు"
++msgstr "చిరునామా %s నిర్వచించబడిలేదు"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s ను క్వరీ చేయలేకపోయింది"
++msgstr "చిరునామా %sను క్వరీచేయలేక పోయింది"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s ను సవరించలేకపోయింది"
++msgstr "చిరునామా %sను సవరించలేక పోయింది"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "పోర్ట్‍ %s/%s విధానం నందు నిర్వచించబడింది, తొలగింపబడలేదు"
++msgstr "విధానం నందు నిర్వచించబడిన చిరునామా %s, తొలగింపబడలేదు"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+-msgstr "%s ను తొలగించలేకపోయింది"
++msgstr "చిరునామా %sను తొలగించలేక పోయింది"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "%s కు లాగిన్ మాపింగ్‌ను తొలగించలేక పోయింది"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "పోర్ట్స్‍ ను జాబితాచేయలేకపోయింది"
++msgstr "చిరునామాలను జాబితా చేయలేక పోయింది"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -720,9 +711,8 @@ msgid "Could not delete interface %s"
+ msgstr "అంతర్‌ఫలకం %s ను తొలగించలేకపోయింది"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "అంతర్‌ఫలకం %s ను తొలగించలేకపోయింది"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr ""
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr ""
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr ""
+@@ -737,9 +727,9 @@ msgid "Context"
+ msgstr "సందర్భము"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s కొరకు దస్త్ర సందర్భం ఇప్పటికే నిర్వచించబడివుంది"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1669
  #, python-format
- msgid "Could not delete file context for %s"
- msgstr ""
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr ""
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
+@@ -747,9 +737,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "లినక్స్‍ వినియోగదారి %s లేడు"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not check if boolean %s is defined"
+@@ -869,11 +859,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -892,14 +881,14 @@ msgid "Could not query file context %s"
+ msgstr "దస్త్రము సందర్భం %s ను క్వరీ చేయలేకపోయింది"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
  msgid "You must specify one of the following values: %s"
- msgstr ""
+-msgstr "మీరు తప్పక ఒక విలువను తెలుపవలెను"
++msgstr "ఈక్రింది విలువలలో వొకదానిని మీరు తప్పక తెలుపవలెను: %s"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set active value of boolean %s"
- msgstr ""
+-msgstr "బూలియన్ %s తొలగింపలేకపోయింది"
++msgstr "బూలియన్ %s యొక్క క్రియాశీల విలువను అమర్చలేక పోయింది"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
+@@ -909,7 +898,7 @@ msgstr "బూలియన్ %s ను సవరించలేకపోయి
+ #: ../semanage/seobject.py:2025
  #, python-format
  msgid "Bad format %s: Record %s"
- msgstr ""
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr ""
++msgstr "చెడ్డ రూపీకరణం %s: రికార్డు %s"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+@@ -942,15 +931,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux బూలియన్"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "స్థితి"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
  msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
  msgid "Description"
- msgstr ""
+ msgstr "వివరణ"
  
-@@ -1270,3 +1296,2064 @@
- #, c-format
+@@ -1287,1718 +1276,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "ఐచ్చికముల దోషము %s "
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "%s ను తెరువలేక పోయింది: అనువాదములు non-MLS మిషన్స్‍ పైన మద్దతీయబడువు:%s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "స్థాయి"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "అనువాదము"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "అనువాదములు ఖాళీలు '%s' ను కలిగి ఉండలేవు"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "సరికాని స్థాయి '%s' "
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s ఇప్పటికే అనువాదములనందు నిర్వచించబడినది"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "అనువాదములనందు %s నిర్వచించబడలేదు"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s కొరకు లాగిన్ మాపింగ్ ఇప్పటికే నిర్వచించబడివుంది"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "SELinux వినియోగదారి మాపింగ్‌ను జతచేయి"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux వినియోగదారి %s ఇప్పటికే నిర్వచించబడివుంది"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "పోర్ట్‍ అవసరము"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "పోర్ట్‍ %s/%s ఇప్పటికే నిర్వచించబడివుంది"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "అంతర్‌ఫలకం %s ఇప్పటికే నిర్వచించబడివుంది"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "సామర్ధ్యాలను సిద్దముచేయుటలో దోషము, బహిష్కరిస్తోంది.\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "సామర్ధ్యాలను అమర్చుటలో దోషము, బహిష్కరిస్తోంది\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "KEEPCAPS ను అమర్చుటలో దోషము, బహిష్కరిస్తోంది\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "సామర్ధ్యాలను వదులుటలో దోషము, బహిష్కరిస్తోంది\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "SETUID సామర్ధ్యం వదులుటలో దోషము, బహిష్కరిస్తోంది\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "కాప్స్‍‌ను ఖాళీ చేయుటలో దోషము\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "non-MLS మిషన్స్‍ పైన అనువాదములు మద్దతీయబడవు"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "Boolean"
+-#~ msgstr "బూలియన్"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "all"
+-#~ msgstr "అన్ని"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Customized"
+-#~ msgstr "మలచుకొనిన"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "File Labeling"
+-#~ msgstr "దస్త్రము లేబులింగ్"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "దస్త్రము\n"
+-#~ "విశదీకరణము"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "దస్త్రము రకము"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "దస్త్రము\n"
+-#~ "రకము"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "User Mapping"
+-#~ msgstr "వినియోగదారి మాపింగ్"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "లాగిన్\n"
+-#~ "నామము"
+-
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "వినియోగదారి"
+-
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS వ్యాప్తి"
+-
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "లాగిన్ '%s' అవసరము"
+-
+-#~ msgid "Policy Module"
+-#~ msgstr "విధానం మాడ్యూల్"
+-
+-#~ msgid "Disable Audit"
+-#~ msgstr "ఆడిట్ అచేతనంచేయుము"
+-
+-#~ msgid "Enable Audit"
+-#~ msgstr "ఆడిట్ చేతనంచేయి"
+-
+-#~ msgid "Load Policy Module"
+-#~ msgstr "విధానం మాడ్యూల్‌ను నింపుము"
+-
+-#~ msgid "Polgen"
+-#~ msgstr "పోల్గెన్"
+-
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
+-
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
+-
+-#~ msgid "translator-credits"
+-#~ msgstr "కృష్ణబాబు <kkrothap@redhat.com> 2008"
+-
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux పాలసి ఉద్భవన సాధనం"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "SELinux వినియోగదారులను లేదా అనువర్తనాలను పరిమితం చేయుటకు, ఈ సాధనం విధానం ఫ్రేమ్‌వర్క్‍ "
+-#~ "ఉద్భవింపచేయుటకు ఉపయోగించగలము.   \n"
+-#~ "\n"
+-#~ "ఆ సాధనం ఉద్భవింపచేస్తుంది:\n"
+-#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము (te)\n"
+-#~ "ఇంటర్ఫేస్ ఫైల్ (if)\n"
+-#~ "ఫైల్ కాంటెక్స్ట్‍ దస్త్రము (fc)\n"
+-#~ "షెల్ స్క్రిప్ట్‍ (sh) - నిర్వర్తించుటకు మరియు సంస్థాపించుటకు ఉపయోగపడుతుంద ."
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "పరిమితం చేయుటకు అనువర్తనం/వినియోగదారి పాత్ర యొక్క రకమును ఎంపికచేయుము"
+-
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>అనువర్తనములు</b>"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "ప్రామాణిక Init డెమోన్ బూట్ నందు init స్క్రిప్ట్స్‍ ద్వారా ప్రారంభమగు డెమోన్స్‍.  సాదారణంగా /etc/rc.d/"
+-#~ "init.d నందు ఒక స్క్రిప్టు కావాలి"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "ప్రామాణిక Init డెమోన్‌"
+-
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "ఇంటర్నెట్ సేవల డెమోన్ xinetd ద్వారా ప్రారంభించిన డెమోన్స్‍"
+-
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "ఇంటర్నెట్ సేవల డెమోన్ (inetd)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr ""
+-#~ "వెబ్ అనువర్తనములు/స్క్రిప్ట్‍ (CGI) CGI స్క్రిప్ట్స్‍ వెబ్ సేవిక ద్వారా ప్రారంభించబడినవి (apache)"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "వెబ్ అనువర్తనము/స్క్రిప్ట్‍ (CGI)"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr ""
+-#~ "వినియోగదారుని చేత ప్రారంభించబడి మీరు పరిమితం చేయుటకు ఇష్టపడు ఏ అనువర్తనమైనా వినియోగదారుని "
+-#~ "అనువర్తనమే"
+-
+-#~ msgid "User Application"
+-#~ msgstr "వినియోగదారి అనువర్తనము"
+-
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>లాగిన్ వినియోగదారులు</b>"
+-
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "ఉన్న లాగిన్ వినియోగదారి రికార్డ్‍‌ను సవరించుము"
+-
+-#~ msgid "Existing User Roles"
+-#~ msgstr "ఉన్న వినియోగాదారి పాత్రలు"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "ఈ వినియోగాదారి మిషన్‌కు టెర్మినల్ లేదా దూరస్థ లాగిన్ ద్వారా లాగిన్ అవుతాడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ "
+-#~ "setuid, networking, sudo, su లను కలిగివుండడు."
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "కనీస టెర్మినల్ వినియోగదారి పాత్ర"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "ఈ వినియోగాదారి మిషన్‌కు X లేదా టెర్మినల్ ద్వారా లాగిన్ కాగలడు.  అప్రమేయంగా ఈ వినియోగదారి ఏ setuid, "
+-#~ "networking, sudo, su లను కలిగివుండడు"
+-
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "కనీస X విండోస్ వినియోగదారి పాత్ర"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేకుండా setuid లేని అనువర్తనాలు, sudo కాని, su కాని వినియోగదారి."
+-
+-#~ msgid "User Role"
+-#~ msgstr "వినియోగదారి పాత్ర"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "పూర్తి నెట్వర్కింగ్ తో, బదిలీకరణ లేని ఏ setuid అనువర్తనాలు లేని, su కాని, వినియోగదారి రూట్ నిర్వహణా "
+-#~ "నియమాలను sudo చేయగలడు"
+-
+-#~ msgid "Admin User Role"
+-#~ msgstr "నిర్వహణాధికారి వినియోగదారి పాత్ర"
+-
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>రూట్ వినియోగదారులు</b>"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "ఈ వినియోగదారిని మిషన్ రూట్‌గా నడుస్తున్నప్పుడు నిర్వహణాధికారిగా ఉపయోగించాలంటే, రూట్ వినియోగదారి పాత్రను "
+-#~ "ఎంపికచేయి.  ఈ వినియోగదారి సిస్టమకు నేరుగా లాగిన్ కాలేడు."
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "రూట్ నిర్వహణాదికారి వినియోగదారి పాత్ర"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "పరిమితం చేయుటకు అనువర్తనం లేదా వినియోగదారి పాత్ర ను ప్రవేశపెట్టుము"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "Name"
+-#~ msgstr "నామము"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "పరిమితంగా ఉండుటకు నిర్వర్తనంకు పూర్తి పాత్‌ను ప్రవేశపెట్టుము."
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "పరిమిత వినియోగదారి లేదా అనువర్తనం పాత్రకు ఏకైక నామమును ప్రవేశపెట్టుము."
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Executable"
+-#~ msgstr "నిర్వర్తించతగిన"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "Init script"
+-#~ msgstr "Init లిపి"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr ""
+-#~ "పరిమిత అనువర్తనంను ప్రారంభించుటకు ఉపయోగించు init స్క్రిప్ట్‍ కు పూర్తి పాత్ ప్రవేశపెట్టుము."
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "మీరు మలచాలని అనుకుంటున్న వినియోగదారి పాత్రలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "ఈ అనువర్తనాల డొమైన్స్‍‌కు బదిలీకరించబోవు వినియోగదారి దస్త్రాలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "ఈ వినియోగదారి పాత్ర బదిలీకరించబడు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "ఈ వినియోగదారి పాత్రను బదిలీకరణకు చేయుటకు మీరు ఇష్టపడే అనువర్తనాల డోమైన్స్‍‌ను ఎంపికచేయుము."
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "ఈ డొమైన్‌కు బదిలీకరించబడు వినియోగదారి పాత్రలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "ఈ వినియోగదారి అధికారికాబోవు అదనపు డోమైన్స్‍ ఎంపికచేయుము"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "ఈ వినియోగదారి నిర్వహించుటకు మీరు ఇష్టపడు డొమైన్స్‍‌ను ఎంపికచేయుము."
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "ఈ వినియోగదారికి అదనపు పాత్రలను ఎంపికచేయుము"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర సంధానంకు నెట్వర్క్‍ పోర్ట్స్‍ ప్రవేశపెట్టుము"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP పోర్ట్స్‍</b>"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "ఏ udp పోర్ట్‍‌కైనా బంధనం అగుటకు పరిమిత అనువర్తనం/వినియోగదారి పాత్రను అనుమతిస్తుంది"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid "All"
+-#~ msgstr "అన్ని"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "bindresvport ను 0 తో కాల్ చేయుటకు అనువర్తనం/ వినియోగదారి పాత్రని అనుమతించుము. పోర్ట్‍ "
+-#~ "600-1024 కు బంధనం అగుచున్నది"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర బందనం అగు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
+-#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "నిలువఉంచని పోర్ట్స్‍  (> 1024)"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "Select Ports"
+-#~ msgstr "పోర్ట్స్‍ ఎంపికచేయి"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr ""
+-#~ "ఏ udp పోర్ట్స్‍‌కు అయినా > 1024 కు బంధనం అగుటకు అనువర్తనం/వినియోగదారి పాత్ర ను అనుమతిస్తుంది"
+-
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP పోర్ట్స్‍</b>"
+-
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "ఈ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానమగు నెట్వర్కు పోర్ట్స్‍ ప్రవేశపెట్టుము"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత tcp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
+-#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
+-
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర అనుసంధానం అగుటకు కామావిభజిత udp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
+-#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "ఉమ్మడి అనువర్తనం స్వభావాలు ఎంపికచేయుము"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "సిస్‌లాగ్ సందేశాలను వ్రాస్తుంది\t"
+-
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "/tmp నందు తాత్కాలిక దస్త్రాలను సృష్టించు/మార్చు"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "దృవీకరణకు Pam ను ఉపయోగిస్తుంది"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "nsswitch లేదా getpw* కాల్స్‍‌ను ఉపయోగిస్తుంది"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "dbus ను ఉపయోగిస్తుంది"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "ఆడిట్ సందేశాలను పంపుతుంది"
+-
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "టెర్మినల్‌తో సంప్రదిస్తుంది"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "ఈమెయిల్ పంపుతుంది"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "ఆ అనువర్తనం నిర్వహించు దస్త్రాలను/సంచయాలను ఎంపికచేయుము"
+-
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "ఈ అనుర్తనం \"వ్రాయు\" అవసరం కలిగిన దస్త్రములను/సంచయాలను జతచేయుము. Pid దస్త్రములు, "
+-#~ "Log దస్త్రములు, /var/lib దస్త్రములు ..."
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "ఆ అనువర్తనం ఉపయోగించే బూలియన్స్‍‌ను ఎంపికచేయుము"
+-
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "పరిమిత అనువర్తనం/వినియోగదారి కు ఉపయోగించు బూలియన్స్‍ జతచేయి/తొలగించుము"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "విధానం దానిలో ఉద్భవింపచేయుటకు సంచయాన్ని ఎంపికచేయుము"
+-
+-#~ msgid "Policy Directory"
+-#~ msgstr "విధానం సచయం"
+-
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "ఉద్భవింపచేసిన విధానం దస్త్రాలు"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
+-#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
+-#~ "నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను "
+-#~ "రూట్‌లానిర్వర్తించుము.  \n"
+-#~ "లినక్స్‍ లాగిన్ వినియోగదారులను వినియోగదారి పాత్రలకు మాప్ చేయుటకు semanage లేదా useradd "
+-#~ "ఉపయోగించుము.\n"
+-#~ "మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
+-#~ "వినియోగదారిలా లాగిన్ అవ్వుము మరియు ఈ వినియోగదారి పాత్రను పరిశీలించుము.\n"
+-#~ "te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "ఈ సాధనం ఈ క్రింది వాటిని సృష్టిస్తుంది: \n"
+-#~ "టైప్ ఎన్ఫోర్స్‍‌మెంట్(te), ఫైల్ కాంటెక్స్ట్‍(fc), ఇంటర్‌ఫేస్(if), షెల్ స్క్రిప్ట్‍(sh)\n"
+-#~ "\n"
+-#~ "నిర్వర్తించుటకు/సంస్థాపించుటకు మరియు దస్త్రములు/సంచయాలను చేర్చుటకు షెల్ స్క్రిప్ట్‍‌ను\n"
+-#~ "నిర్వర్తించుము.  మీరు ఇప్పుడు మిషన్‌ను అనిషిద్ధరీతి(setenforce 0) నందు ఉంచవచ్చు. \n"
+-#~ "avc సందేశాలను ఉద్భవింపచేయుటకు అనువర్తనంను నడుపుము/పునఃప్రారంభించుము.\n"
+-#~ "te దస్త్రమునకు అదనపు నియమాలను ఉద్భవింపచేయుటకు audit2allow -R ను ఉపయోగించుము.\n"
+-
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "బూలియన్స్‍ డైలాగ్‌ను జతచేయుము"
+-
+-#~ msgid "Boolean Name"
+-#~ msgstr "బూలియన్ నామము"
+-
+-#~ msgid "Role"
+-#~ msgstr "పాత్ర"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Existing_User"
+-#~ msgstr "ఉన్న వినియోగదారి(_U)"
+-
+-#~ msgid "Application"
+-#~ msgstr "అనువర్తనము"
+-
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s తప్పక ఒక సంచయం అవ్వాలి"
+-
+-#~ msgid "You must select a user"
+-#~ msgstr "మీరు తప్పక ఒక వినియోగదారిని ఎంపికచేయాలి"
+-
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "పరిమితం చేయుటకు నిర్వర్తించదగు దస్త్రమును ఎంపికచేయుము"
+-
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "పరిమితం చేయుటకు init స్క్రిప్ట్‍ దస్త్రమును ఎంపికచేయుము."
+-
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "పరిమిత అనునర్తనములు సృష్టించిన లేదా వ్రాసిన దస్త్రము(లు) ఎంపికచేయుము"
+-
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "పరిమిత అనువర్తనములు కలిగివున్న మరియు వాటిలోకి వ్రాసిన సంచయము(లు) ఎంపికచేయుము"
+-
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "విధానం దస్త్రములను దానిలోకి ఉద్బవింపచేయుటకు సంచయమును ఎంపికచేయుము"
+-
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "ప్రస్తుత విధానంనందు ఇప్పటికే నిర్వచించబడిన %s_t ను టైపు చేయుము.\n"
+-#~ "మీరు కొనసాగించాలని అనుకుంటున్నారా?"
+-
+-#~ msgid "Verify Name"
+-#~ msgstr "నామమును నిర్ధారించుము"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "మాడ్యూల్ %s.pp ఇప్పటికే ప్రస్తుత విధానంనందు నింపబడింది.\n"
+-#~ "మీరు కొనసాగించాలని అనుకుంటున్నారా?"
+-
+-#~ msgid "You must enter a name"
+-#~ msgstr "మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "మీరు తప్పక ఒక నిర్వర్తినిని ప్రవేశపెట్టవలెను"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "SELinux ను ఆకృతీకరించుము"
+-
+-#, fuzzy
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "పోర్ట్స్‍ తప్పక సంఖ్యలు లేదా 1 నుండి %d వరకు సంఖ్యా స్థాయిలు అవ్వాలి "
+-
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "మీ పరిమిత కార్యము/వినియోగదారికి మీరు తప్పక ఒక నామమును ప్రవేశపెట్టవలెను"
+-
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "వినియోగదారి రకములు ఎక్సిక్యూటబుల్స్‍‌ను అనుమతించవు"
+-
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "డెమోన్ అనువర్తనములు మాత్రమే init స్క్రిప్ట్‍‌ను ఉపయోగించగలవు"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog అనునది తప్పక బూలియన్ విలువైవుండాలి "
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#, fuzzy
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "వినియోగదారి రకములు స్వయంచాలకంగా tmp రకమును పొందుతాయి"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "మీ పరిమిత కార్యముకు మీరు తప్పక నిర్వర్తించదగు పాత్‌ను ప్రవేశపెట్టాలి"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "టైప్ ఎన్ఫోర్స్‍‌మెంట్ దస్త్రము"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "ఇంటర్ఫేస్ దస్త్రము"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "ఫైల్ కాంటెక్స్ట్‍ దస్త్రము"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "అమర్పు స్క్రిప్ట్‍"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux పోర్ట్‍\n"
+-#~ "రకము"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "Protocol"
+-#~ msgstr "నియమం"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "స్థాయి"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid "Port"
+-#~ msgstr "పోర్ట్‍"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "పోర్ట్‍ సంఖ్య \"%s\" చెల్లునది కాదు.  0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "List View"
+-#~ msgstr "జాబితా దర్శనం"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Group View"
+-#~ msgstr "సమూహం దర్శనం"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux సేవా భద్రత"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "SELinux భద్రతను acct డెమోన్‌ కొరకు అచేతనంచేయుము"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "Admin"
+-#~ msgstr "నిర్వహణాధికారి"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "ప్రాధమికదస్త్రాలను / కు వ్రాయుటకు అన్ని డెమోన్స్‍‌ను అనుమతించుము"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "కేటాయించని ttys ను ఉపయోగించుకొను శక్తిని అన్ని డెమోన్స్‍‌కు అనుమతించుము"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "User Privs"
+-#~ msgstr "వినియోగదారి Privs"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "gadmin SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "అతిధి SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వహించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Memory Protection"
+-#~ msgstr "మెమొరి భద్రత"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "జావా ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Mount"
+-#~ msgstr "మౌంట్"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "ఏ దస్త్రమునైనా మోంట్ చేయుటకు మౌంట్‌ను అనుమతించుము"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "ఏ సంచయంనైనా మౌంట్‌చేయుటకు మౌంట్‌ను అనుమతించుము"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "ఎమ్‌ప్లేయర్ ఎక్సిక్యూటబుల్ స్టాక్‌ను అనుమతించుము"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "ssh ను ssh-keysign నడుపుటకు అనుమతించుము"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "staff SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "sysadm SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr ""
+-#~ "పరిమితంకాని SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Network Configuration"
+-#~ msgstr "నెట్వర్క్‍ ఆకృతీకరణ"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "నెట్వర్క్‍ నందు ప్రసారంకావటానికి లేబుల్‌లేని పాకెట్స్‍‌ను అనుమతించుము"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr ""
+-#~ "వినియోగదారి SELinux వినియోగదారి ఖాతాలను అతని నివాససంచయంనందు లేదా /tmp నందు దస్త్రాలను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "పరిమితంకానిదాన్ని dyntrans నుండి unconfined_execmem లోకి అనుమతించుము"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid "Databases"
+-#~ msgstr "డాటాబేస్‌లు"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "mysql సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "postgres సాకెట్‌కు అనుసంధానం అగుటకు వినియోగదారిని అనుమతించుము"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "X భాగస్వామ్య మెమొరీకి వ్రాయుటకు కక్షిదారులను అనుమతించుము"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr ""
+-#~ "xguest SELinux వినియోగదారి ఖాతాలను అతని నివాస సంచయంనందు లేదా /tmp నందు దస్త్రములను "
+-#~ "నిర్వర్తించుటకు అనుమతించుము"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "డెమెన్స్‍‌ను NIS తో నడుచుటకు అనుమతించుము"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Web Applications"
+-#~ msgstr "వెబ్ అనువర్తనములు"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "బదిలీకరణ staff SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "బదిలీకరణ sysadm SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "బదిలీకరణ user SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "బదిలీకరణ xguest SELinux వినియోగదారి నుండి వెబ్ బ్రౌజర్ డోమైను కు"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "staff వెబ్ బ్రౌజర్స్‍‌ను నివాససంచయాలకు వ్రాయుటకు అనుమతినివ్వుము"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "SELinux భద్రతను అమాండా కొరకు అచేతనంచేయుము"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "అమావిస్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "apmd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "arpwatch డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "auditd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "automount డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "ఆవాహి కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "బ్లూటూత్ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "canna డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "cardmgr డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "క్లస్టర్ సేవిక కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "cdrecord ను విభిన్న సారాలను చదువుటకు అనుమతించుము. nfs, samba, తిసివేయగల పరికరములు, "
+-#~ "user temp మరియు నమ్మదగని సారపు దస్త్రములు"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "ciped డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "clamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "clamscan కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "clvmd కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "comsat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "courier డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "cpucontrol డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "cpuspeed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Cron"
+-#~ msgstr "క్రాన్"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "crond డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Printing"
+-#~ msgstr "ముద్రణ"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "SELinux భద్రతను cupsd బ్యాకెండ్ సేవికకు అచేతనం చేయుము"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "SELinux భద్రతను cupsd డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "SELinux భద్రతను cupsd_lpd కు అచేతనంచేయుము"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "SELinux భద్రతను cvs డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "SELinux భద్రతను cyrus డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "SELinux భద్రతను dbskkd డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "SELinux భద్రతను dbusd డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "SELinux భద్రతను dccd కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "SELinux భద్రతను dccifd కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "SELinux భద్రతను dccm కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "SELinux భద్రతను ddt డెమోన్‌కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "SELinux భద్రతను devfsd డెమోన్‌కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "SELinux భద్రతను dhcp డెమోన్‌కు అచేతనంచేయుము"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "SELinux భద్రతను dhcpd డెమోన్‌కు అచేతనంచేయుము"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "SELinux భద్రతను dictd డెమోన్‌కు అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -278844,26 +224700,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "డెమోన్స్‍‌ను నేరుగా ప్రారంభించుటకు sysadm_t ను అనుమతించుము"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "ఎవాల్యూషన్ కొరకు SELinux భద్రతను అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "ఆటలు"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "ఆటలు కొరకు SELinux భద్రతను అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "వెబ్ అన్వేషణిల కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -278872,119 +224738,173 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "థండర్‌బర్డ్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "distccd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "dmesg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "dnsmasq డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "dovecot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "entropyd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "SELinux భద్రతను fetchmail కొరకు అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "fingerd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "freshclam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "fsdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "gpm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "gss డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "Hal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "సారూప్యత"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr "భద్రతా ఇబ్బందులు కానివి విరిగిపోతాయి అని మనకు తెలిసినా అటువంటి వాటిని ఆడిట్ చేయవద్దు"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "అతిధేయనామము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "hotplug డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "howl డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "cups hplip డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "httpd rotatelogs కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD సేవ"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "http suexec కొరకు SELinux భద్రతను అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "hwclock డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "i18n డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "imazesrv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -278992,358 +224912,537 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "child డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "inetd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "innd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "iptables డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "ircd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "irqbalance డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "iscsi డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "jabberd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "కేర్బరోస్"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "kadmind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "klogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "krb5kdc డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "ktalk డెమోన్స్‍ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "kudzu డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "locate డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "lpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "lrrd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "lvm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "mailman కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "వినియోగదారుని దస్త్రాలను చదువుటకు ఎవాల్యాషన్ మరియు థండర్‌బర్డ్‍‌ను అనుమతించుము"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "mdadm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "monopd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "వినియోగదారి దస్త్రాలను చదువుటకు మొజిల్లా అన్వేషణిను అనుమతించుము"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "mrtg డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "mysqld డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "nagios డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "నామపు సేవ"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "నామపు డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "nessusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "నెట్వర్క్‍‌నిర్వాహిక కొరకు SELinux భద్రతను అచేతనంచేయుము"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "nfsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "సాంబా"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "nmbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "nrpe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "nscd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "nsd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "ntpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "oddjob కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "oddjob_mkhomedir కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "openvpn డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "pam డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "pegasus కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "perdition డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "portmap డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "portslave డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "postfix కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "postgresql డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "సాదారణ వినియోగదారి కొరకు pppd నడుచుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "pptp కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "prelink డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "privoxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "ptal డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "pxe డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "pyzord కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "quota డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "radiusd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "radvd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "rdisc కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "readahead కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr ""
+-#~ "ప్రామాణికం-కాని ప్రాంతముల (default_t) నందు దస్త్రములను చదువుటకు ప్రోగ్రామ్స్‍‌ను అనుమతించుము"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "restorecond కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "rhgb డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "ricci కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "ricci_modclusterd కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "rlogind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "rpcd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "rshd కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "rsync డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "ఒక డెమోన్‌లా నడుచుటకు బదులుగా ssh ను inetd నుండి అనుమతించుము"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "సాంబాను nfs సంచయాలను పంచుకొనుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL దృవీకరణ సేవిక"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "sasl దృవీకరణ సేవికను /etc/shadow చదువుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr ""
+-#~ "నిర్వర్తించదగునట్లు మరియు వ్రాయదగునట్లు X-విండోస్ సేవికను మెమోరీ ప్రాంతముకు మాప్ చేయటుకు "
+-#~ "అనుమతించుము"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "saslauthd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "scannerdaemon డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "బదిలీకరణను sysadm_t కు అనుమతించ వద్దు, sudo మరియు su ప్రభావితమయ్యాయి."
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "కెర్నల్ మాడ్యాల్స్‍ నింపుటకు ఏ కార్యమును అనుమతించవద్దు"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "కెర్నల్ SELinux విధానాన్ని సవరించుటకు ఏ కార్యమును అనుమతించవద్దు"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "sendmail డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "setrans కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "setroubleshoot డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "slapd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "slrnpull డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "smbd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "snmpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
@@ -279359,23 +225458,33 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "snort డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "soundd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "sound డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "స్పామ్ భద్రత"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "spamd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
@@ -279383,351 +225492,732 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "నివాస సంచయాలను వాడుకొనుటకు spamd ను అనుమతించుము"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "స్పామ్ ఎస్సాసియన్ డెమోన్ నెట్వర్క్‍ వాడుకను అనుమతించుము"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "speedmgmt డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "నెట్వర్క్‍‌కు అనుసంధానమగుటకు squid డెమోన్‌ను అనుమతించుము"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "squid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "ssh డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "ssh లాగిన్స్‍‌ను sysadm_r:sysadm_t లా అనుమతించుము"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "sysadm నివాస సంచయంను శోధించుటకు staff_r వినియోగదారులను అనుమతించుము మరియు దస్త్రములను "
+-#~ "చదువుటకు (~/.bashrc వంటిని)"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "సార్వజనీయ SSL టన్నెల్"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "stunnel డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "Xinetd యొక్క బయట, stunnel డెమోన్ ను స్టాండ్ఎలోన్ గా నడుపుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "swat డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "sxid డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "syslogd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "system cron jobs కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "tcp డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "telnet డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "tftpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "transproxy డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "udev డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "uml డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "పరిమితం కానిదానిని నడుపుటకు xinetd ను అనుమతించుము, ఇది ప్రారంభించే ఏ సేవనందైనా అది బాహ్యంగా "
+-#~ "నిర్వచించిన డొమైన్ బదిలీకరణ కలిగివుండదు"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "పరిమితం కానివాటిని నడుపుటకు rc స్క్రిప్ట్స్‍‌ను అనుమతించుము, rc స్క్రిప్ట్‍‌తో ప్రారంభమైన ఏ డొమైనయినా అది "
+-#~ "బాహ్యంగా నిర్వచించిన డొమైన్ బదిలీకరణను కలిగివుండదు"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "పరిమితంకాని దాన్ని నడుపుటకు rpm ను అనుమతించుము"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr "పరిమితంకాని వాటిని నడుపుటకు hotplug మరియు insmod వంటి సౌలభ్యాలను అనుమతించుము"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "updfstab డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "uptimed డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "user_r ను sysadm_r కు su, sudo, లేదా వినియోగదారిసహాయకి ద్వారా చేరుటకు అనుమతించుము. "
+-#~ "లేకపోతే, staff_r మాత్రమే అలా చేయగలదు "
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "మౌంట్ ఆదేశాన్ని నిర్వర్తించుటకు వినియోగాదారులను అనుమతించుము"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr "సాదారణ వినియోగదారుల సూటి మౌస్ వాడుకను అనుమతించుము (X సేవికను మాత్రమే అనుమతించుము)"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "dmesg ఆదేశాన్ని నడుపుటకు వినియోగాదారులను అనుమతించుము"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr ""
+-#~ "నెట్వర్క్‍ అంతర్‌ఫలకాలను నియంత్రించుటకు వినియోగదారులను అనుమతించుము (USERCTL=true కూడా "
+-#~ "అవసరము)"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "ping ను సాదారణ వినియోగదారి నిర్వర్తించుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "వినియోగదారిని noextattrfile ను చ/వ్రా కు అనుమతించుము (FAT, CDROM, FLOPPY)"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "usb పరికరాలను చవ్రా కు వినియోగదారులను అనుమతించుము"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "వినియోగదారులను TCP సేవికలు(పోర్ట్స్‍‌కు బందనమై మరియు అదే డొమాన్ నుండి అనుసంధానంను ఆమోదించు మరియు "
+-#~ "బయట వినియోగదారులనుండి) ను నడుపుటకు అనుమతించుము  దీనిని అచేతనం చేయుట ఇతర నియమాలను "
+-#~ "మార్చుతుంది"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "వినియోగదారిని tty దస్త్రాలను మార్చుటకు అనుమతించుము"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "uucpd డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "vmware డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "watchdog డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "winbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "xdm డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "xdm లాగిన్స్‍‌ను sysadm_r:sysadm_t లాగా అనుమతించుము"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "xen డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "భౌతిక డిస్కు పరికరాలను చదువుట/వ్రాయుట కు xen ను అనుమతించుము"
+-
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "xfs డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
+-
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "xen control కొరకు SELinux భద్రతను అచేతనం చేయుము"
+-
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "ypbind డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
+-
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "NIS సంకేతపదము డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
+-
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "ypserv డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
+-
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "NIS బదిలీకరణ డెమోన్ కొరకు SELinux భద్రతను అచేతనం చేయుము"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr ""
+-#~ "నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను నిర్వహించుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
+-
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr ""
+-#~ "నిషిద్దంకాని వినియోగదారుల నివాస సంచయాలను చదువుటకు SELinux webadm వినియోగదారిని అనుమతించుము"
+-
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "మీరు ఖచ్చితంగా %s '%s' ను తొలగించుదామని అనుకుంటున్నారా?"
+-
+-#~ msgid "Delete %s"
+-#~ msgstr "%s తోలగించుము"
+-
+-#~ msgid "Add %s"
+-#~ msgstr "%s జతచేయుము"
+-
+-#~ msgid "Modify %s"
+-#~ msgstr "%s సవరించుము"
+-
+-#~ msgid "Permissive"
+-#~ msgstr "అనుమతిగల"
+-
+-#~ msgid "Enforcing"
+-#~ msgstr "బలవంతము"
+-
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "విధానం రకమును మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు "
+-#~ "కారణమౌతుంది. చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు "
+-#~ "కొనసాగించాలని అనుకుంటున్నారా?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux అచేతనంకు మారుటకు పునఃప్రారంభం అవసరము.  ఇది సిఫార్స్‍ చేయబడదు.  మీరు తర్వాత "
+-#~ "SELinux వెనుకకు ఉంచాలని అనుకుంటే, సిస్టమ్‌కు చేర్చవలిసి ఉంటుంది.  మీరు SELinux సిస్టమ్ "
+-#~ "నందు సమస్యకు కారణమౌతుందేమో చూడాలనుకుంటే, మీరు అనుమతిగల రీతి వెళ్ళవచ్చు ఏదైతే దోషాలను మరియు "
+-#~ "బలవంతంకాని SELinux విధానంను లాగ్ చేస్తుందో.  అనుమతిగల రీతికి పునఃప్రారంభం అవసరంలేదు    "
+-#~ "మీరు కొనసాగిద్దామని అనుకుంటున్నారా?"
+-
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "SELinux చేతనంకు మార్చుట అనునది తరువాతి బూట్ నందు మొత్తం దస్త్ర వ్యవస్థ యొక్క చెరికకు "
+-#~ "కారణమౌతుంది. చేర్చుట అనునది దస్త్ర వ్యవస్థ పరిమాణం పై ఆధారపడి ఎక్కువ సమయం తీసకోవచ్చు.  మీరు "
+-#~ "కొనసాగించాలని అనుకుంటున్నారా?"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
+-
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "కాపీరైట్ (c)2006 Red Hat, Inc.\n"
+-#~ "కాపీరైట్ (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "SELinux లాగిన్ మాపింగ్‌ను జతచేయుము"
+-
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "SELinux నెట్వర్కు పోర్ట్స్‍‌ను జతచేయుము"
+-
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux రకము"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
+-
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "స్థాయి"
+-
+-#~ msgid "File Specification"
+-#~ msgstr "దస్త్రము విశదీకరణము"
+-
+-#~ msgid "File Type"
+-#~ msgstr "దస్త్రము రకము"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "అన్ని దస్త్రములు\n"
+-#~ "సాదారణ దస్త్రము\n"
+-#~ "సంచయము\n"
+-#~ "అక్షర పరికరము\n"
+-#~ "బ్లాక్ పరికరము\n"
+-#~ "సాకెట్\n"
+-#~ "సింబాలిక్ లింకు\n"
+-#~ "నేమ్డ్‍ పైప్\n"
+-
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
+-
+-#~ msgid "Add SELinux User"
+-#~ msgstr "SELinux వినియోగదారిని జతచేయుము"
+-
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux నిర్వహణ"
+-
+-#~ msgid "Add"
+-#~ msgstr "జతచేయి"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "లక్షణములు(_P)"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "తొలగించు(_D)"
+-
+-#~ msgid "Select Management Object"
+-#~ msgstr "నిర్వహణ ఆబ్జక్ట్‍‌ను ఎంపికచేయుము"
+-
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>ఎంపికచేయి:</b>"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "సిస్టమ్ అప్రమేయ బలవంతపు రీతి"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "ప్రస్తుత బలవంతపు రీతి"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "సిస్టమ్ అప్రమేయ విధాన రకము: "
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "తరువాతి పునఃప్రారంభంనందు మొత్తం దస్త్ర వ్యవస్థను చేర్చాలనుకుంటే ఎంపికచేయండి.  చేర్చుట అనునది "
+-#~ "చాలా ఎక్కువ సమయం తీసుకుంటుంది, సిస్టమ్ యొక్క పరిమాణం మీద ఆదారపడి.  మీరు ఈ విధమైన విధానాలను "
+-#~ "మార్చుతుంటే లేదా అచేతనంనుండి బలవంతపుకు వెళుతుంటే, చేరిక అవసరమౌతుంది."
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "తరువాతి పునఃప్రారంభంనందు చేర్చుము."
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "బూలియన్ అమరికను సిస్టమ్ అప్రమేయంకు తిప్పివుంచుము"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "అన్ని బూలియన్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid "Filter"
+-#~ msgstr "వడపోత"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Add File Context"
+-#~ msgstr "దస్త్ర సందర్భంను జతచేయుము"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Modify File Context"
+-#~ msgstr "దస్త్రము సందర్భంను సవరించుము"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Delete File Context"
+-#~ msgstr "దస్త్ర సందర్భంను తొలగించుము"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "అన్నిటి మరియు మలుచుకొనిన దస్త్ర సందర్బం మద్య మారుము"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "SELinux వినియోగదారి మాపింగ్‌ను జతచేయుము"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "SELinux వినియోగదారి మాపింగ్ సవరించుము"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
-+
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "SELinux వినియోగదారి మాపింగ్ తొలగించుము"
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
 +msgstr ""
-+
+-#~ msgid "Add Translation"
+-#~ msgstr "అనువాదమును జతచేయుము"
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
 +msgstr ""
-+
+-#~ msgid "Modify Translation"
+-#~ msgstr "అనువాదమును సవరించుము"
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Translation"
+-#~ msgstr "అనువాదమును తొలగించుము"
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
 +msgstr ""
-+
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "SELinux వినియోగదారిని సవరించుము"
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
 +msgstr ""
-+
+-#~ msgid "Add Network Port"
+-#~ msgstr "నెట్వర్క్‍ పోర్ట్‍‌ను జతచేయుము"
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
 +msgstr ""
-+
+-#~ msgid "Edit Network Port"
+-#~ msgstr "నెట్వర్క్‍ పోర్ట్‍ సరిచేయి"
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
 +msgstr ""
-+
+-#~ msgid "Delete Network Port"
+-#~ msgstr "నెట్వర్క్‍ పోర్ట్‍ తొలగించుము"
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
 +msgstr ""
-+
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "అన్ని పోర్ట్స్‍ మరియు మలుచుకొనిన వాటిమాద్య మారుము"
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
 +msgstr ""
-+
+-#~ msgid "Generate new policy module"
+-#~ msgstr "కొత్త విధానం మాడ్యూల్‌ను ఉద్భవింపచేయుము"
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
 +msgstr ""
-+
+-#~ msgid "Load policy module"
+-#~ msgstr "విధానం మాడ్యూల్‌ను నింపుము"
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
 +msgstr ""
-+
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "నింపదగు విధానం మాడ్యూల్‌ను తీసివేయుము"
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr "అదనపు ఆడిట్ నియమాలను అచేతనం/చేతనం చేయుము, సాదారణంగా లాగ్ దస్త్రములనందు నివేదించబడని."
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "మృదుత్వం స్థాయి"
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
 +msgstr ""
-+
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux వినియోగదారి '%s' అవసరము"
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
 +msgstr ""
-+
+-#~ msgid "Requires value"
+-#~ msgstr "విలువ అవసరము"
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "Allow application/user role to bind to any tcp ports > 1024"
+-#~ msgstr ""
+-#~ "ఏ tcp పోర్ట్స్‍‌కు అయినా > 1024 కు బంధనం అగుటకు అనువర్తనం/వినియోగదారి ను అనుమతించుము"
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any tcp port"
+-#~ msgstr "ఏ tcp పోర్ట్‍‌కైనా బంధనం అగుటకు పరిమిత అనువర్తనం/వినియోగదారి పాత్ర ను అనుమతిస్తుంది"
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "ఆ అనువర్తనం/వినియోగదారి పాత్ర బందనం అగు కామావిభజిత tcp పోర్ట్స్‍ లేదా పోర్ట్స్‍ స్థాయిలను "
+-#~ "ప్రవేశపెట్టుము. ఉదాహరణ: 612, 650-660"
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
 +msgstr ""
-+
+-#~ msgid "SELinux Policy Generation Druid"
+-#~ msgstr "SELinux విధానం ఉద్భవన డ్రుయిడ్"
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
 +msgstr ""
-+
+-#~ msgid "Unreserved Ports  (> 1024)"
+-#~ msgstr "నిలువఉంచని పోర్ట్స్‍  (> 1024)"
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
 +msgstr ""
-+
+-#~ msgid "Use this checkbutton if your app calls bindresvport with 0."
+-#~ msgstr "మీ app కాల్స్‍ bindresvport 0 తో ఉంటే ఈ చెక్‌బటన్‌ను ఉపయోగించండి."
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enforcing\n"
+-#~ "Permissive\n"
+-#~ "Disabled\n"
+-#~ msgstr ""
+-#~ "బలవంతపు\n"
+-#~ "అనుమతిగల\n"
+-#~ "అచేతనమైన\n"
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
 +msgstr ""
@@ -279921,16 +226411,12 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +msgid "Modify %s"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
 +
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
 +msgstr ""
 +
 +#: ../gui/statusPage.py:94
@@ -279973,7 +226459,6 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
 +
@@ -279982,25 +226467,19 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:919
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -280012,58 +226491,58 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +"named pipe\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1547
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1656
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
@@ -280071,169 +226550,152 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +"relabel is required."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2187
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2203
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3059
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
 +
@@ -280241,2966 +226703,7118 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/vi.po policycoreutils
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreutils-2.0.85/po/zh_CN.po
---- nsapolicycoreutils/po/zh_CN.po     2011-02-17 15:11:25.091735430 -0500
-+++ policycoreutils-2.0.85/po/zh_CN.po 2011-02-18 16:03:41.452976319 -0500
-@@ -1,22 +1,40 @@
--# translation of policycoreutils.HEAD.po to Simplified Chinese
-+# translation of policycoreutils.HEAD.po to Wei Liu
- # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2006.
+diff --git a/policycoreutils/po/th.po b/policycoreutils/po/th.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/th.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/tr.po b/policycoreutils/po/tr.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/tr.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/uk.po b/policycoreutils/po/uk.po
+index d20fae1..96b0c94 100644
+--- a/policycoreutils/po/uk.po
++++ b/policycoreutils/po/uk.po
+@@ -1,20 +1,23 @@
+-# Ukraqinian translation of policycoreutils.
+-# Copyright (C) 2006 Free software Foundation
+-# This file is distributed under the same license as the policycoreutils package.
+-# Maxim Dziumanenko <dziumanenko@gmail.com>, 2006-2007.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
  #
- # Tony Fu <tfu@redhat.com>, 2006.
--# Leah Liu <lliu@redhat.com>, 2008.
-+# Leah Liu <lliu@redhat.com>, 2008, 2009, 2010.
++# Translators:
++# Yuri Chornoivan <yurchor@ukr.net>, 2010, 2012.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD\n"
+-"Project-Id-Version: policycoreutils\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-09-11 16:22+1000\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-07-28 11:19+1000\n"
- "Last-Translator: Leah Liu <lliu@redhat.com>\n"
--"Language-Team: Simplified Chinese <zh@li.org>\n"
-+"Language-Team: Wei Liu\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2007-01-23 17:22+0300\n"
+-"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
+-"Language-Team: Ukrainian <uk@li.org>\n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-03 05:09+0000\n"
++"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
++"Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
+ "Language: uk\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "在图形设置中配置 SELinux"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux 管理"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "生成 SELinux 策略模块"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux 策略生成工具"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -106,9 +124,8 @@
- msgstr "无法创建 semanage 连接"
+@@ -23,8 +26,8 @@ msgid ""
+ "         <args ...> are the arguments to that script."
+ msgstr ""
+ "ВИКОРИСТАННЯ: run_init <сценарій> <аргументи ...>\n"
+-"  де: <сценарій> - назва сценарію ініціалізації для запуску,\n"
+-"         <аргументи ...> - аргументи для цього сценарію."
++"  де <сценарій> — назва сценарію ініціалізації для запуску,\n"
++"         <аргументи ...> — аргументи для цього сценарію."
+ #: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+ #, c-format
+@@ -34,7 +37,7 @@ msgstr "не вдалося ініціалізувати PAM\n"
+ #: ../run_init/run_init.c:139
+ #, c-format
+ msgid "failed to get account information\n"
+-msgstr "не вдається отримати інформацію про обліковий рахунок\n"
++msgstr "не вдалося отримати інформацію щодо облікового запису\n"
+ #: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+ msgid "Password:"
+@@ -43,12 +46,12 @@ msgstr "Пароль:"
+ #: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+ #, c-format
+ msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr "Не вдається знайти елемент у тіньовому файлі паролів.\n"
++msgstr "Не вдалося знайти ваш запис у тіньовому файлі паролів.\n"
+ #: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+ #, c-format
+ msgid "getpass cannot open /dev/tty\n"
+-msgstr "getpass не вдається відкрити /dev/tty\n"
++msgstr "getpass не вдалося відкрити /dev/tty\n"
+ #: ../run_init/run_init.c:275
+ #, c-format
+@@ -58,12 +61,12 @@ msgstr "run_init: неправильний пароль для %s\n"
+ #: ../run_init/run_init.c:309
+ #, c-format
+ msgid "Could not open file %s\n"
+-msgstr "Не вдається відкрити файл %s\n"
++msgstr "Не вдалося відкрити файл %s\n"
+ #: ../run_init/run_init.c:336
+ #, c-format
+ msgid "No context in file %s\n"
+-msgstr "У файлі відсутній контекст %s\n"
++msgstr "У файлі %s немає контекстів\n"
+ #: ../run_init/run_init.c:361
+ #, c-format
+@@ -73,124 +76,117 @@ msgstr "run_init може використовуватись лише для я
+ #: ../run_init/run_init.c:380
+ #, c-format
+ msgid "authentication failed.\n"
+-msgstr "помилка аутентифікації.\n"
++msgstr "помилка розпізнавання.\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "Не вдається виконати контекст у %s.\n"
++msgstr "Не вдалося вказати контекст виконання у %s.\n"
  
- #: ../semanage/seobject.py:70
+ #: ../audit2allow/audit2allow:230
 -#, fuzzy
- msgid "Could not test MLS enabled status"
--msgstr "无法为 %s 设置 MLS 的范围"
-+msgstr "无法测试 MLS 启用的状态"
+ msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-"\n"
+-"******************** ВАЖЛИВО ***********************\n"
++msgstr "********************* ВАЖЛИВО ************************\n"
  
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr ""
++msgstr "Для активації пакету правил виконайте:"
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
  msgid "global"
-@@ -123,7 +140,8 @@
- msgid "Level"
- msgstr "级别"
+-msgstr ""
++msgstr "глобально"
+ #: ../semanage/seobject.py:222
+-#, fuzzy
+ msgid "Could not create semanage handle"
+-msgstr "Не вдається запустити транзакцію semanage"
++msgstr "Не вдалося створити дескриптор semanage"
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "Політика SELinux не є призначеною або немає доступу до сховища."
++msgstr "Правила SELinux не призначено або немає доступу до сховища."
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "Не вдається прочитати сховище політики."
++msgstr "Не вдалося прочитати дані сховища правил."
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+-msgstr "Не вдається встановити з'єднання з semanage"
++msgstr "Не вдалося встановити з'єднання з semanage"
  
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "转换"
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "Не вдається встановити діапазон MLS для %s"
++msgstr "Не вдалося встановити активний статус MLS"
  
-@@ -153,7 +171,7 @@
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+-msgstr ""
++msgstr "Функцію ще не реалізовано"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Semanage 交易进行中"
++msgstr "Транзакція semanage вже виконується"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
-@@ -165,7 +183,7 @@
+-msgstr "Не вдається запустити транзакцію semanage"
++msgstr "Не вдалося запустити транзакцію semanage"
+ #: ../semanage/seobject.py:274
+-#, fuzzy
+ msgid "Could not commit semanage transaction"
+-msgstr "Не вдається запустити транзакцію semanage"
++msgstr "Не вдалося завершити транзакцію semanage"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Semanage 交易未进行"
++msgstr "Транзакція semanage не виконується"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-#, fuzzy
  msgid "Could not list SELinux modules"
-@@ -175,736 +193,743 @@
- msgid "Permissive Types"
- msgstr "Permissive 类型"
+-msgstr "Не вдається отримати список користувачів SELinux"
++msgstr "Не вдалося отримати список модулів SELinux"
+ #: ../semanage/seobject.py:304
+ msgid "Modules Name"
+-msgstr ""
++msgstr "Назва модуля"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+-msgstr ""
++msgstr "Версія"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+-msgstr ""
++msgstr "Вимкнено"
+ #: ../semanage/seobject.py:322
+ #, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr ""
++msgstr "Не вдалося вимкнути модуль %s (помилка вилучення)"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "Не вдається додати роль %s для %s"
++msgstr "Не вдалося увімкнути модуль %s (помилка вилучення)"
+ #: ../semanage/seobject.py:348
+ #, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr ""
++msgstr "Не вдалося вилучити модуль %s (помилка вилучення)"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
++msgstr "для dontaudit слід визначити «on» або «off»"
  
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
+ #: ../semanage/seobject.py:387
+ msgid "Builtin Permissive Types"
+-msgstr ""
++msgstr "Вбудовані типи permissive"
+ #: ../semanage/seobject.py:397
+ msgid "Customized Permissive Types"
+-msgstr ""
++msgstr "Нетипові типи permissive"
+ #: ../semanage/seobject.py:438
  #, python-format
  msgid "Could not set permissive domain %s (module installation failed)"
- msgstr "无法设定 permissive 域 %s(模块安装失败)"
+-msgstr ""
++msgstr "Не вдалося вказати permissive домен %s (помилка встановлення модуля)"
  
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
+ #: ../semanage/seobject.py:444
  #, python-format
  msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "无法删除 permissive 域 %s(删除操作失败)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
+-msgstr ""
++msgstr "Не вдалося вилучити permissive домен %s (помилка при встановленні)"
+ #: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+ #: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+@@ -201,18 +197,18 @@ msgstr ""
+ #: ../semanage/seobject.py:2037
  #, python-format
  msgid "Could not create a key for %s"
- msgstr "无法为 %s 创建一个密钥"
+-msgstr "Не вдається створити ключ для %s"
++msgstr "Не вдалося створити ключ для %s"
  
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
+ #: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
  msgid "Could not check if login mapping for %s is defined"
- msgstr "无法检查 %s 的登录映射已被定义"
+-msgstr "Не вдається перевірити чи визначено mapping входу для %s "
++msgstr "Не вдалося перевірити чи визначено mapping входу для %s "
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
- msgstr "%s 的登录映射已被定义"
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
+ #: ../semanage/seobject.py:492
+-#, fuzzy, python-format
++#, python-format
  msgid "Linux Group %s does not exist"
- msgstr "Linux 组群 %s 不存在"
+-msgstr "Користувач %s не існує у Linux"
++msgstr "Linux-група %s не існує"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
+ #: ../semanage/seobject.py:497
  #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux用户 %s 不存在"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
+@@ -222,27 +218,27 @@ msgstr "Користувач %s не існує у Linux"
+ #: ../semanage/seobject.py:501
  #, python-format
  msgid "Could not create login mapping for %s"
- msgstr "无法为 %s 创建登录映射"
+-msgstr "Не вдається створити mapping входу для %s"
++msgstr "Не вдалося створити mapping входу для %s"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
  msgid "Could not set name for %s"
- msgstr "无法为 %s 设置名称"
+-msgstr "Не вдається встановити назву %s"
++msgstr "Не вдалося вказати назву %s"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
+ #: ../semanage/seobject.py:510 ../semanage/seobject.py:751
  #, python-format
  msgid "Could not set MLS range for %s"
- msgstr "无法为 %s 设置 MLS 的范围"
+-msgstr "Не вдається встановити діапазон MLS для %s"
++msgstr "Не вдалося вказати діапазон MLS для %s"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
+ #: ../semanage/seobject.py:514
  #, python-format
  msgid "Could not set SELinux user for %s"
- msgstr "无法为 %s 设置 SELinux 用户"
+-msgstr "Не вдається встановити користувача SELinux для %s"
++msgstr "Не вдалося встановити користувача SELinux для %s"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
+ #: ../semanage/seobject.py:518
  #, python-format
  msgid "Could not add login mapping for %s"
- msgstr "无法为 %s 添加登录映射"
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "添加 SELinux 用户映射"
+-msgstr "Не вдається додати mapping входу для %s"
++msgstr "Не вдалося додати mapping входу для %s"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
+ #: ../semanage/seobject.py:536
  msgid "Requires seuser or serange"
- msgstr "需要 seuser 或 serange"
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr "%s 的登录映射没有被定义"
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
+@@ -256,89 +252,93 @@ msgstr "mapping входу для %s не визначено"
+ #: ../semanage/seobject.py:563
  #, python-format
  msgid "Could not query seuser for %s"
- msgstr "无法为 %s 查询 seuser"
+-msgstr "Не вдається запитати seuser для %s"
++msgstr "Не вдалося запитати seuser для %s"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
+ #: ../semanage/seobject.py:577
  #, python-format
  msgid "Could not modify login mapping for %s"
- msgstr "无法为 %s 修改登录映射"
+-msgstr "Не вдається змінити mapping входу для %s"
++msgstr "Не вдалося змінити mapping входу для %s"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
+ #: ../semanage/seobject.py:611
  #, python-format
  msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr "%s 的登录映射在策略中被定义,不能被删除"
+-msgstr "mapping входу для %s визначено у політиці, не вдається видалити"
++msgstr "mapping входу для %s визначено у правилах, не вдалося вилучити"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:615
  #, python-format
  msgid "Could not delete login mapping for %s"
- msgstr "无法为 %s 删除登录映射"
+-msgstr "Не вдається видалити mapping входу для %s"
++msgstr "Не вдалося вилучити mapping входу для %s"
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
  msgid "Could not list login mappings"
- msgstr "无法列出登录映射"
+-msgstr "Не вдається вивести mapping входу"
++msgstr "Не вдалося вивести прив’язки входу"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "登录名"
+-msgstr ""
++msgstr "Реєстраційне ім'я"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-#, fuzzy
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux 用户"
+-msgstr "Потрібно вказати тип SELinux"
++msgstr "Користувач SELinux"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS 范围"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr "您必须至少为 %s 添加一个角色"
+-msgstr ""
++msgstr "Діапазон MLS/MCS"
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
+ #: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+ #: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+ #: ../semanage/seobject.py:860
  #, python-format
  msgid "Could not check if SELinux user %s is defined"
- msgstr "如果 SELinux 用户 %s 被定义将无法检查"
+-msgstr "Не вдається перевірити чи визначений користувач SELinux %s"
++msgstr "Не вдалося перевірити чи визначений користувач SELinux %s"
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
+ #: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+ #: ../semanage/seobject.py:866
  #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux用户 %s 已经存在"
+ msgid "Could not query user for %s"
+-msgstr "Не вдається запитати користувача для %s"
++msgstr "Не вдалося запитати користувача для %s"
+ #: ../semanage/seobject.py:722
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must add at least one role for %s"
+-msgstr "Не вдається додати контекст файлу для %s"
++msgstr "Треба додати принаймні одну роль для %s"
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
+ #: ../semanage/seobject.py:737
  #, python-format
  msgid "Could not create SELinux user for %s"
- msgstr "无法为 %s 创建 SELinux 用户"
+-msgstr "Не вдається створити користувача SELinux для %s"
++msgstr "Не вдалося створити користувача SELinux для %s"
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:746
  #, python-format
  msgid "Could not add role %s for %s"
- msgstr "无法添加角色 %s(为 %s)"
+-msgstr "Не вдається додати роль %s для %s"
++msgstr "Не вдалося додати роль %s для %s"
  
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+ #: ../semanage/seobject.py:755
  #, python-format
  msgid "Could not set MLS level for %s"
- msgstr "无法为 %s 设置 MLS 级别"
+-msgstr "Не вдається встановити рівень MLS для %s"
++msgstr "Не вдалося встановити рівень MLS для %s"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:758
  #, python-format
  msgid "Could not add prefix %s for %s"
- msgstr "无法添加前缀 %s(为 %s)"
+-msgstr "Не вдається додати префікс %s для %s"
++msgstr "Не вдалося додати префікс %s для %s"
  
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+ #: ../semanage/seobject.py:761
  #, python-format
  msgid "Could not extract key for %s"
- msgstr "无法为 %s 提取密钥"
+-msgstr "Не вдається витягнути ключ для %s"
++msgstr "Не вдалося витягнути ключ для %s"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:765
  #, python-format
  msgid "Could not add SELinux user %s"
- msgstr "无法添加 SELinux 用户 %s"
+-msgstr "Не вдається додати користувача SELinux %s"
++msgstr "Не вдалося додати користувача SELinux %s"
  
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:787
  msgid "Requires prefix, roles, level or range"
- msgstr "需要前缀、角色、级别或范围"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "需要前锥或角色"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+@@ -351,55 +351,56 @@ msgstr "Потрібен префікс або роль"
+ #: ../semanage/seobject.py:799 ../semanage/seobject.py:856
  #, python-format
  msgid "SELinux user %s is not defined"
- msgstr "SELinux 用户 %s 没有被定义"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "无法为 %s 查询用户"
+-msgstr "Користувач SELinux  %s не визначений"
++msgstr "Користувача SELinux %s не визначено"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:828
  #, python-format
  msgid "Could not modify SELinux user %s"
- msgstr "无法修改 SELinux 用户 %s"
+-msgstr "Не вдається змінити користувача SELinux %s"
++msgstr "Не вдалося змінити користувача SELinux %s"
  
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+ #: ../semanage/seobject.py:862
  #, python-format
  msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr "SELinux 用户 %s 在策略中被定义,无法删除"
+-msgstr "Користувач SELinux %s визначено у політиці, не може бути видалений"
++msgstr "Користувач SELinux %s визначено у правилах, не може бути вилучено"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:873
  #, python-format
  msgid "Could not delete SELinux user %s"
- msgstr "无法删除 SELinux 用户 %s"
+-msgstr "Не вдається видалити користувача SELinux %s"
++msgstr "Не вдалося вилучити користувача SELinux %s"
  
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
+ #: ../semanage/seobject.py:911
  msgid "Could not list SELinux users"
- msgstr "无法列出 SELinux 用户"
+-msgstr "Не вдається отримати список користувачів SELinux"
++msgstr "Не вдалося отримати список користувачів SELinux"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:917
  #, python-format
  msgid "Could not list roles for user %s"
- msgstr "无法为用户 %s 列出角色"
+-msgstr "Не вдається отримати список ролей користувача %s"
++msgstr "Не вдалося отримати список ролей користувача %s"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "Labeling"
- msgstr "标记"
+-msgstr ""
++msgstr "Розмітка"
  
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
+ #: ../semanage/seobject.py:942
  msgid "MLS/"
- msgstr "MLS/"
+-msgstr ""
++msgstr "MLS/"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "Prefix"
- msgstr "前缀"
+-msgstr ""
++msgstr "Префікс"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Level"
- msgstr "MCS 级别"
+-msgstr ""
++msgstr "Рівень MCS"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
+ #: ../semanage/seobject.py:943
  msgid "MCS Range"
- msgstr "MCS 范围"
+-msgstr ""
++msgstr "Діапазон MCS"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
- msgstr "SELinux 角色"
+-msgstr ""
++msgstr "Ролі SELinux"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
+ #: ../semanage/seobject.py:963
  msgid "Protocol udp or tcp is required"
- msgstr "需要 udp 或 tcp 协议"
+@@ -407,27 +408,26 @@ msgstr "Потрібен протокол udp чи tcp"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
+ #: ../semanage/seobject.py:965
  msgid "Port is required"
- msgstr "端口是必需的"
+-msgstr "Необхідно вказати порт"
++msgstr "Слід вказати порт"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
+ #: ../semanage/seobject.py:975
+-#, fuzzy
+ msgid "Invalid Port"
+-msgstr "Неправильний префікс %s"
++msgstr "Некоректний порт"
+ #: ../semanage/seobject.py:979
  #, python-format
  msgid "Could not create a key for %s/%s"
- msgstr "无法为 %s/%s 创建一个密钥"
+-msgstr "Не вдається створити ключ для %s/%s"
++msgstr "Не вдалося створити ключ для %s/%s"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
+ #: ../semanage/seobject.py:990
  msgid "Type is required"
- msgstr "类型是必需的"
+-msgstr "Необхідно вказати тип"
++msgstr "Слід вказати тип"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+ #: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+ #: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
  #, python-format
  msgid "Could not check if port %s/%s is defined"
- msgstr "无法检查端口 %s/%s 已被定义"
+-msgstr "Не вдається чи порт визначено %s/%s"
++msgstr "Не вдалося чи порт визначено %s/%s"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:998
  #, python-format
- msgid "Port %s/%s already defined"
- msgstr "端口 %s/%s 已经存在"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
+@@ -437,42 +437,42 @@ msgstr "Порт %s/%s вже визначено"
+ #: ../semanage/seobject.py:1002
  #, python-format
  msgid "Could not create port for %s/%s"
- msgstr "无法为 %s/%s 创建端口"
+-msgstr "Не вдається створити порт для %s/%s"
++msgstr "Не вдалося створити порт для %s/%s"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr "无法为 %s/%s 设置 context"
+-msgstr "Не вдається створити контекст для %s/%s"
++msgstr "Не вдалося створити контекст для %s/%s"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr "无法在端口 context 中为 %s/%s 设置用户"
+-msgstr "Не вдається вказати користувача у контексті порту для %s/%s"
++msgstr "Не вдалося вказати користувача у контексті порту для %s/%s"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr "无法在端口 context 中为 %s/%s 设置角色"
+-msgstr "Не вдається встановити роль у контексті порту для %s/%s"
++msgstr "Не вдалося встановити роль у контексті порту для %s/%s"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr "无法在端口 context 中为 %s/%s 设置类型"
+-msgstr "Не вдається встановити тип у контексті порту для %s/%s"
++msgstr "Не вдалося встановити тип у контексті порту для %s/%s"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr "无法在端口 context 中为 %s/%s 设置 mls 项"
+-msgstr "Не вдається встановити поле mls у контексті порту для %s/%s"
++msgstr "Не вдалося встановити поле mls у контексті порту для %s/%s"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr "无法为 %s/%s 设置端口 context"
+-msgstr "Не вдається створити контекст порту для %s/%s"
++msgstr "Не вдалося створити контекст порту для %s/%s"
  
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
+ #: ../semanage/seobject.py:1033
  #, python-format
  msgid "Could not add port %s/%s"
- msgstr "无法添加端口 %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "需要 setype 或 serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "需要 settype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "端口 %s/%s 没有被定义"
+-msgstr "Не вдається додати додати порт  %s/%s"
++msgstr "Не вдалося додати додати порт  %s/%s"
  
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
+ #: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+ #: ../semanage/seobject.py:1508
+@@ -491,57 +491,55 @@ msgstr "Порт %s/%s не визначено"
+ #: ../semanage/seobject.py:1061
  #, python-format
  msgid "Could not query port %s/%s"
- msgstr "无法查询端口 %s/%s"
+-msgstr "Не вдається запитати порт %s/%s"
++msgstr "Не вдалося запитати порт %s/%s"
  
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
+ #: ../semanage/seobject.py:1072
  #, python-format
  msgid "Could not modify port %s/%s"
- msgstr "无法修改端口 %s/%s"
+-msgstr "Не вдається змінити порт %s/%s"
++msgstr "Не вдалося змінити порт %s/%s"
  
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
+ #: ../semanage/seobject.py:1085
+-#, fuzzy
  msgid "Could not list the ports"
- msgstr "无法列出端口"
+-msgstr "Не вдається отримати список портів"
++msgstr "Не вдалося отримати список портів"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
+ #: ../semanage/seobject.py:1101
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete the port %s"
- msgstr "无法删除端口 %s"
+-msgstr "Не вдається видалити порт %s/%s"
++msgstr "Неможливо вилучити порт %s"
  
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr "端口 %s/%s 在策略中被定义,无法删除"
+-msgstr "Порт %s/%s визначено у політиці, не можу бути видалений"
++msgstr "Порт %s/%s визначено у правилах, не може бути вилучено"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
  msgid "Could not delete port %s/%s"
- msgstr "无法删除端口 %s/%s"
+-msgstr "Не вдається видалити порт %s/%s"
++msgstr "Не вдалося вилучити порт %s/%s"
  
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
+ #: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
  msgid "Could not list ports"
- msgstr "无法列出端口"
+-msgstr "Не вдається отримати список портів"
++msgstr "Не вдалося отримати список портів"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "SELinux Port Type"
- msgstr "SELinux 端口类型"
+-msgstr ""
++msgstr "Тип порту SELinux"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+ #: ../semanage/seobject.py:1199
  msgid "Proto"
- msgstr "协议"
+-msgstr ""
++msgstr "Протокол"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "端口号"
+-msgstr ""
++msgstr "Номер порту"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr "需要节点地址"
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr "需要节点掩码"
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
- msgstr "未知或者缺少协议"
+-msgstr "Необхідно вказати порт"
++msgstr "Потрібно вказати адреса вузла"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "SELinux 类型是必选的"
+ #: ../semanage/seobject.py:1233
+ msgid "Unknown or missing protocol"
+-msgstr ""
++msgstr "Протокол відсутній чи невідомий"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -554,254 +552,253 @@ msgstr "Потрібно вказати тип SELinux"
+ #: ../semanage/seobject.py:1728
  #, python-format
  msgid "Could not create key for %s"
- msgstr "无法为 %s 创建密钥"
+-msgstr "Не вдається створити ключ для %s"
++msgstr "Не вдалося створити ключ для %s"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr "如果定义了 addr %s 则无法检查"
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr "已经定义了 addr %s"
+-msgstr "Не вдається чи порт визначено %s/%s"
++msgstr "Не вдалося перевірити чи визначено адресу %s"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr "无法为 %s 创建 addr"
+-msgstr "Не вдається створити ключ для %s"
++msgstr "Не вдалося створити адресу %s"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr "无法为 %s 创建 context"
+-msgstr "Не вдається створити контекст для %s"
++msgstr "Не вдалося створити контекст для %s"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr "无法为 %s 设置掩码"
+-msgstr "Не вдається встановити назву %s"
++msgstr "Не вдалося вказати маску %s"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr "无法在 addr 上下文中为 %s 设置用户"
+-msgstr "Не вдається встановити користувача у контексті файлу для %s"
++msgstr "Не вдалося вказати користувача у контексті адреси для %s"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr "无法在 addr 上下文中为 %s 设置角色"
+-msgstr "Не вдається встановити роль у контексті файлу для %s"
++msgstr "Не вдалося вказати роль у контексті адреси для %s"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr "无法在 addr 上下文中为 %s 设置类型"
+-msgstr "Не вдається встановити тип у контексті файлу для %s"
++msgstr "Не вдалося вказати тип у контексті адреси для %s"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr "无法在 addr 上下文中为 %s 设置 mls 字段"
+-msgstr "Не вдається встановити поле mls у контексті файлу для %s"
++msgstr "Не вдалося вказати поля mls у контексті адреси для %s"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr "无法为 %s 设置 addr 上下文"
+-msgstr "Не вдається встановити контекст файлу для %s"
++msgstr "Не вдалося вказати контекст addr для %s"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr "无法添加 addr %s"
+-msgstr "Не вдається додати додати порт  %s/%s"
++msgstr "Не вдалося додати addr %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr "没有定义 addr %s"
+-msgstr "Порт %s/%s не визначено"
++msgstr "Addr %s не визначено"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr "无法查询 addr %s"
+-msgstr "Не вдається запитати порт %s/%s"
++msgstr "Не вдалося запитати addr %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr "无法修改 addr %s"
+-msgstr "Не вдається змінити порт %s/%s"
++msgstr "Не вдалося змінити addr %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr "在策略中定义了 addr %s,无法删除"
+-msgstr "Порт %s/%s визначено у політиці, не можу бути видалений"
++msgstr "Адресу %s визначено у правилах, її не можна вилучати"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr "无法删除 addr %s"
+-msgstr "Не вдається видалити інтерфейс %s"
++msgstr "Не вдалося вилучити адресу %s"
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "Не вдається видалити mapping входу для %s"
++msgstr "Не вдалося вилучити всі прив’язки відповідники вузлів"
  
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
  msgid "Could not list addrs"
- msgstr "无法列出 addr"
+-msgstr "Не вдається отримати список портів"
++msgstr "Не вдалося отримати список addr"
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
  #, python-format
  msgid "Could not check if interface %s is defined"
- msgstr "无法检查接口 %s 是否已定义"
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "接口 %s 已经被定义"
+-msgstr "Не вдається перевірити чи визначений інтерфейс %s"
++msgstr "Не вдалося перевірити чи визначений інтерфейс %s"
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
+ #: ../semanage/seobject.py:1461
  #, python-format
  msgid "Could not create interface for %s"
- msgstr "无法为 %s 创建接口"
+-msgstr "Не вдається створити інтерфейс для %s"
++msgstr "Не вдалося створити інтерфейс для %s"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr "无法在接口 context 中为 %s 设置用户"
+-msgstr "Не вдається встановити користувача у контексті інтерфейсу для %s"
++msgstr "Не вдалося вказати користувача у контексті інтерфейсу для %s"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr "无法在接口 context 中为 %s 设置角色"
+-msgstr "Не вдається встановити роль у контексті інтерфейсу для %s"
++msgstr "Не вдалося вказати роль у контексті інтерфейсу для %s"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr "无法在接口 context 中为 %s 设置类型"
+-msgstr "Не вдається встановити тип у контексті інтерфейсу для %s"
++msgstr "Не вдалося вказати тип у контексті інтерфейсу для %s"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr "无法在接口 context 中为 %s 设置 mls 项"
+-msgstr "Не вдається встановити поле mls у контексті інтерфейсу для %s"
++msgstr "Не вдалося вказати поле mls у контексті інтерфейсу для %s"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr "无法为 %s 设置接口 context"
+-msgstr "Не вдається створити контекст інтерфейсу для %s"
++msgstr "Не вдалося вказати контекст інтерфейсу для %s"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr "无法为 %s 设置信息 context"
+-msgstr "Не вдається створити контекст повідомлення інтерфейс для %s"
++msgstr "Не вдалося створити контекст повідомлення для %s"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
  msgid "Could not add interface %s"
- msgstr "无法添加接口 %s"
+-msgstr "Не вдається додати інтерфейс %s"
++msgstr "Не вдалося додати інтерфейс %s"
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+ #: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
  #, python-format
  msgid "Interface %s is not defined"
- msgstr "接口 %s 没有被定义"
+-msgstr "Інтерфейс  %s не визначено"
++msgstr "Інтерфейс %s не визначено"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1522
  #, python-format
  msgid "Could not query interface %s"
- msgstr "无法查询接口 %s"
+-msgstr "Не вдається запитати інтерфейс %s"
++msgstr "Не вдалося запитати інтерфейс %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
+ #: ../semanage/seobject.py:1533
  #, python-format
  msgid "Could not modify interface %s"
- msgstr "无法修改接口 %s"
+-msgstr "Не вдається змінити інтерфейс %s"
++msgstr "Не вдалося змінити інтерфейс %s"
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
+ #: ../semanage/seobject.py:1558
  #, python-format
  msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr "接口 %s 在策略中被定义,无法删除"
+-msgstr "Інтерфейс %s визначений у політиці, не може бути видалений"
++msgstr "Інтерфейс %s визначений у правилах, не може бути вилучено"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
+ #: ../semanage/seobject.py:1562
  #, python-format
  msgid "Could not delete interface %s"
- msgstr "无法删除接口 %s"
+-msgstr "Не вдається видалити інтерфейс %s"
++msgstr "Не вдалося вилучити інтерфейс %s"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "Не вдається видалити інтерфейс %s"
++msgstr "Не вдалося вилучити всі прив’язки інтерфейсів"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
+ #: ../semanage/seobject.py:1588
  msgid "Could not list interfaces"
- msgstr "无法列出接口"
+-msgstr "Не вдається перелічити інтерфейси"
++msgstr "Не вдалося отримати список інтерфейсів"
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
+ #: ../semanage/seobject.py:1613
  msgid "SELinux Interface"
- msgstr "SELinux 接口"
+-msgstr ""
++msgstr "Інтерфейс SELinux"
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
  msgid "Context"
- msgstr "上下文"
+-msgstr ""
++msgstr "Контекст"
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "Контекст файлу для %s вже визначено"
++msgstr "Клас еквівалентності для %s вже існує"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
++msgstr "Специфікація файлів, %s, суперечить правилу еквівалентності «%s %s»"
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Користувач %s не існує у Linux"
++msgstr "Класу еквівалентності для %s не існує"
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr "无法在文件 context 中为 %s 设置用户"
+-msgstr "Не вдається встановити користувача у контексті файлу для %s"
++msgstr "Не вдалося вказати користувача у контексті файла для %s"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr "无法在文件 context 中为 %s 设置角色"
+-msgstr "Не вдається встановити роль у контексті файлу для %s"
++msgstr "Не вдалося вказати роль у контексті файла для %s"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr "无法在文件 context 中为 %s 设置 mls 项"
+-msgstr "Не вдається встановити поле mls у контексті файлу для %s"
++msgstr "Не вдалося вказати поле mls у контексті файла для %s"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr "无效文件说明"
+-msgstr ""
++msgstr "Неправильна визначення файла"
+ #: ../semanage/seobject.py:1709
+ msgid "File specification can not include spaces"
+-msgstr ""
++msgstr "У специфікації файлів не можна використовувати пробіли"
+ #: ../semanage/seobject.py:1714
+ #, python-format
+ msgid ""
+ "File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+ msgstr ""
++"Специфікація файлів, %s, суперечить правилу еквівалентності «%s %s». "
++"Спробуйте краще додати «%s»."
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+ #: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+ #: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr "如果 %s 的文件 context 被设定,无法检查"
+-msgstr "Не вдається перевірити чи визначений контекст файлу %s"
++msgstr "Не вдалося перевірити чи визначений контекст файла для %s"
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
+ #: ../semanage/seobject.py:1745
+ #, python-format
+ msgid "Could not create file context for %s"
+-msgstr "Не вдається створити контекст файлу для %s"
++msgstr "Не вдалося створити контекст файла для %s"
+ #: ../semanage/seobject.py:1753
+ #, python-format
+ msgid "Could not set type in file context for %s"
+-msgstr "Не вдається встановити тип у контексті файлу для %s"
++msgstr "Не вдалося вказати тип у контексті файла для %s"
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
+ #, python-format
+ msgid "Could not set file context for %s"
+-msgstr "Не вдається встановити контекст файлу для %s"
++msgstr "Не вдалося вказати контекст файла для %s"
+ #: ../semanage/seobject.py:1767
+ #, python-format
+ msgid "Could not add file context for %s"
+-msgstr "Не вдається додати контекст файлу для %s"
++msgstr "Не вдалося додати контекст файла для %s"
+ #: ../semanage/seobject.py:1781
+ msgid "Requires setype, serange or seuser"
+@@ -810,71 +807,74 @@ msgstr "Потрібно вказати setype, serange чи seuser"
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+ #, python-format
+ msgid "File context for %s is not defined"
+-msgstr "Контекст файлу для %s не визначено"
++msgstr "Контекст файла для %s не визначено"
+ #: ../semanage/seobject.py:1800
+ #, python-format
+ msgid "Could not query file context for %s"
+-msgstr "Не вдається запитати контекст файлу для %s"
++msgstr "Не вдалося запитати контекст файла для %s"
+ #: ../semanage/seobject.py:1826
+ #, python-format
+ msgid "Could not modify file context for %s"
+-msgstr "Не вдається змінити контекст файлу для %s"
++msgstr "Не вдалося змінити контекст файла для %s"
+ #: ../semanage/seobject.py:1839
+-#, fuzzy
+ msgid "Could not list the file contexts"
+-msgstr "Не вдається отримати список контекстів файлів"
++msgstr "Не вдалося отримати список контекстів файлів"
+ #: ../semanage/seobject.py:1853
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not delete the file context %s"
+-msgstr "Не вдається видалити контекст файлу для %s"
++msgstr "Не вдалося вилучити контекст файла для %s"
+ #: ../semanage/seobject.py:1878
+ #, python-format
+ msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr "Контекст файлу для %s визначено у політиці, його не можна видалити"
++msgstr "Контекст файла для %s визначено у правилах, його не можна вилучити"
+ #: ../semanage/seobject.py:1884
+ #, python-format
+ msgid "Could not delete file context for %s"
+-msgstr "Не вдається видалити контекст файлу для %s"
++msgstr "Не вдалося вилучити контекст файла для %s"
+ #: ../semanage/seobject.py:1899
+ msgid "Could not list file contexts"
+-msgstr "Не вдається отримати список контекстів файлів"
++msgstr "Не вдалося отримати список контекстів файлів"
+ #: ../semanage/seobject.py:1903
+ msgid "Could not list local file contexts"
+-msgstr "Не вдається отримати список локальних контекстів файлів"
++msgstr "Не вдалося отримати список локальних контекстів файлів"
+ #: ../semanage/seobject.py:1936
+ msgid "SELinux fcontext"
+-msgstr ""
++msgstr "Контекст файла SELinux"
+ #: ../semanage/seobject.py:1936
+ msgid "type"
+-msgstr ""
++msgstr "тип"
+ #: ../semanage/seobject.py:1949
+ msgid ""
+ "\n"
+ "SELinux Distribution fcontext Equivalence \n"
+ msgstr ""
++"\n"
++"Еквівалентність файлових контекстів дистрибутива SELinux\n"
+ #: ../semanage/seobject.py:1954
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+ msgstr ""
++"\n"
++"Еквівалентність локальних файлових контекстів SELinux\n"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+ #, python-format
+ msgid "Could not check if boolean %s is defined"
+-msgstr "Не вдається перевірити чи визначено логічне значення %s"
++msgstr "Не вдалося перевірити чи визначено логічне значення %s"
+ #: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+ #, python-format
+@@ -884,69 +884,70 @@ msgstr "Логічне значення %s не визначене"
+ #: ../semanage/seobject.py:1994
+ #, python-format
+ msgid "Could not query file context %s"
+-msgstr "Не вдається запитати контекст файлу %s"
++msgstr "Не вдалося запитати контекст файла %s"
+ #: ../semanage/seobject.py:1999
+-#, fuzzy, python-format
++#, python-format
+ msgid "You must specify one of the following values: %s"
+-msgstr "Необхідно вказати префікс"
++msgstr "Слід вказати одне з таких значень: %s"
+ #: ../semanage/seobject.py:2004
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not set active value of boolean %s"
+-msgstr "Не вдається видалити логічне значення %s"
++msgstr "Не вдалося вказати активне значення змінної %s"
+ #: ../semanage/seobject.py:2007
  #, python-format
- msgid "File context for %s already defined"
- msgstr "%s 的文件 context 已经被定义"
+ msgid "Could not modify boolean %s"
+-msgstr "Не вдається змінити логічне значення %s"
++msgstr "Не вдалося змінити логічне значення %s"
+ #: ../semanage/seobject.py:2025
+ #, python-format
+ msgid "Bad format %s: Record %s"
+-msgstr ""
++msgstr "Неправильний формат %s: Запис %s"
+ #: ../semanage/seobject.py:2048
+ #, python-format
+ msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr "Логічне значення %s визначено у політиці, його не можна видалити"
++msgstr "Логічне значення %s визначено у правилах, його не можна вилучити"
+ #: ../semanage/seobject.py:2052
+ #, python-format
+ msgid "Could not delete boolean %s"
+-msgstr "Не вдається видалити логічне значення %s"
++msgstr "Не вдалося вилучити логічне значення %s"
+ #: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+ msgid "Could not list booleans"
+-msgstr "Не вдається отримати список логічних змінних"
++msgstr "Не вдалося отримати список логічних змінних"
+ #: ../semanage/seobject.py:2104
+ msgid "unknown"
+-msgstr ""
++msgstr "невідомо"
+ #: ../semanage/seobject.py:2117
+ msgid "off"
+-msgstr ""
++msgstr "вимкнено"
+ #: ../semanage/seobject.py:2117
+ msgid "on"
+-msgstr ""
++msgstr "увімкнено"
+ #: ../semanage/seobject.py:2131
+ msgid "SELinux boolean"
+-msgstr ""
++msgstr "Логічна змінна SELinux"
+ #: ../semanage/seobject.py:2131
+ msgid "State"
+-msgstr ""
++msgstr "Стан"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr ""
++msgstr "Типовий"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+-msgstr ""
++msgstr "Опис"
+ #: ../newrole/newrole.c:201
+ #, c-format
+@@ -956,17 +957,17 @@ msgstr "помилка встановлення PAM_TTY\n"
+ #: ../newrole/newrole.c:290
+ #, c-format
+ msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
++msgstr "newrole: переповнення хеш-таблиці параметрів назв служб\n"
+ #: ../newrole/newrole.c:300
+ #, c-format
+ msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
++msgstr "newrole:  %s:  помилка у рядку %lu.\n"
+ #: ../newrole/newrole.c:439
+ #, c-format
+ msgid "cannot find valid entry in the passwd file.\n"
+-msgstr "не вдається знайти правильний запис у файлі passwd.\n"
++msgstr "не вдалося знайти правильний запис у файлі passwd.\n"
+ #: ../newrole/newrole.c:450
+ #, c-format
+@@ -976,12 +977,12 @@ msgstr "Недостатньо пам'яті!\n"
+ #: ../newrole/newrole.c:455
+ #, c-format
+ msgid "Error!  Shell is not valid.\n"
+-msgstr "Помилка!  Неправильна оболонка.\n"
++msgstr "Помилка! Неправильна оболонка.\n"
+ #: ../newrole/newrole.c:512
+ #, c-format
+ msgid "Unable to clear environment\n"
+-msgstr "Не вдається очистити оточення\n"
++msgstr "Не вдалося спорожнити змінні середовища\n"
+ #: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+ #, c-format
+@@ -1011,31 +1012,31 @@ msgstr "Помилка надсилання повідомлення аудит
+ #: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+ #, c-format
+ msgid "Could not determine enforcing mode.\n"
+-msgstr "Не вдається визначити режим блокування (enforcing).\n"
++msgstr "Не вдалося визначити режим блокування (enforcing).\n"
+ #: ../newrole/newrole.c:699
+ #, c-format
+ msgid "Error!  Could not open %s.\n"
+-msgstr "Помилка! Не вдається відкрити %s.\n"
++msgstr "Помилка! Не вдалося відкрити %s.\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  Не вдається отримати контекст для %s, перепризначення позначок tty не "
++"%s! Не вдалося отримати контекст для %s, перепризначення позначок tty не "
+ "відбулось.\n"
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+ msgstr ""
+-"%s!  Не вдається отримати новий контекст для %s, перепризначення позначок "
+-"tty не відбулось.\n"
++"%s!  Не вдалося отримати новий контекст для %s, перепризначення позначок tty "
++"не відбулось.\n"
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!  Не вдається встановити новий контекст для %s\n"
++msgstr "%s! Не вдалося вказати новий контекст для %s\n"
+ #: ../newrole/newrole.c:772
+ #, c-format
+@@ -1045,7 +1046,7 @@ msgstr "змінено %s позначок.\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "Попередження!  Не вдається відновити контекст для %s\n"
++msgstr "Попередження! Не вдалося відновити контекст для %s\n"
+ #: ../newrole/newrole.c:835
+ #, c-format
+@@ -1070,17 +1071,17 @@ msgstr "Помилка: вказано декілька рівнів\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
++msgstr "Помилка: ви не зможете змінювати рівень у небезпечному терміналі\n"
+ #: ../newrole/newrole.c:891
+ #, c-format
+ msgid "Couldn't get default type.\n"
+-msgstr "Не вдається отримати типовий тип.\n"
++msgstr "Не вдалося отримати типовий тип.\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "не вдається отримати новий контекст.\n"
++msgstr "не вдалося отримати новий контекст.\n"
+ #: ../newrole/newrole.c:908
+ #, c-format
+@@ -1095,7 +1096,7 @@ msgstr "помилка встановлення нового типу %s\n"
+ #: ../newrole/newrole.c:925
+ #, c-format
+ msgid "failed to build new range with level %s\n"
+-msgstr "не вдається побудувати новий діапазон з рівнем %s\n"
++msgstr "не вдалося побудувати новий діапазон з рівнем %s\n"
+ #: ../newrole/newrole.c:930
+ #, c-format
+@@ -1105,7 +1106,7 @@ msgstr "помилка встановлення нової діапазону %s
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "не вдається перетворити новий контекст у рядок\n"
++msgstr "не вдалося перетворити новий контекст у рядок\n"
+ #: ../newrole/newrole.c:943
+ #, c-format
+@@ -1115,17 +1116,17 @@ msgstr "%s не є правильним контекстом\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "Не вдається виділити пам'ять для new_context"
++msgstr "Не вдалося виділити пам'ять для new_context"
+ #: ../newrole/newrole.c:976
+ #, c-format
+ msgid "Unable to obtain empty signal set\n"
+-msgstr "Не вдається отримати порожній сигнал від\n"
++msgstr "Не вдалося отримати порожній сигнал від\n"
+ #: ../newrole/newrole.c:984
+ #, c-format
+ msgid "Unable to set SIGHUP handler\n"
+-msgstr "Не вдається встановити обробник SIGHUP\n"
++msgstr "Не вдалося встановити обробник SIGHUP\n"
+ #: ../newrole/newrole.c:1053
+ #, c-format
+@@ -1135,17 +1136,17 @@ msgstr "newrole може використовуватись лише для яд
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "не вдається отримати old_context.\n"
++msgstr "не вдалося отримати old_context.\n"
+ #: ../newrole/newrole.c:1077
+-#, fuzzy, c-format
++#, c-format
+ msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr "Помилка!  Не вдається отримати інформацію про tty.\n"
++msgstr "Попередження!  Не вдалося отримати інформацію про tty.\n"
+ #: ../newrole/newrole.c:1098
+ #, c-format
+ msgid "error on reading PAM service configuration.\n"
+-msgstr ""
++msgstr "помилка при читанні конфігурації служби PAM.\n"
+ #: ../newrole/newrole.c:1133
+ #, c-format
+@@ -1160,17 +1161,17 @@ msgstr "newrole: помилка створення дочірнього проц
+ #: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+ #, c-format
+ msgid "Unable to restore tty label...\n"
+-msgstr "Не вдається відновити позначку tty...\n"
++msgstr "Не вдалося відновити позначку tty...\n"
+ #: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+ #, c-format
+ msgid "Failed to close tty properly\n"
+-msgstr "Не вдається правильно закрити tty\n"
++msgstr "Не вдалося правильно закрити tty\n"
+ #: ../newrole/newrole.c:1224
+ #, c-format
+ msgid "Could not close descriptors.\n"
+-msgstr "Не вдається закрити дескриптор.\n"
++msgstr "Не вдалося закрити дескриптор.\n"
+ #: ../newrole/newrole.c:1251
+ #, c-format
+@@ -1180,31 +1181,31 @@ msgstr "Помилка виділення argv0 у оболонці.\n"
+ #: ../newrole/newrole.c:1287
+ #, c-format
+ msgid "Unable to restore the environment, aborting\n"
+-msgstr "Не вдається відновити оточення, виконання перервано\n"
++msgstr "Не вдалося відновити оточення, виконання перервано\n"
+ #: ../newrole/newrole.c:1298
+ msgid "failed to exec shell\n"
+-msgstr "не вдається виконати оболонку\n"
++msgstr "не вдалося виконати оболонку\n"
+ #: ../load_policy/load_policy.c:22
+-#, fuzzy, c-format
++#, c-format
+ msgid "usage:  %s [-qi]\n"
+-msgstr "використання:  %s [-bq]\n"
++msgstr "використання:  %s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
++msgstr "%s: правила вже завантажено, запитано початкове завантаження\n"
+ #: ../load_policy/load_policy.c:80
+-#, fuzzy, c-format
++#, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s: Не вдається завантажити політику:  %s\n"
++msgstr "%s: не вдалося завантажити запитані правила у примусовому режимі: %s\n"
+ #: ../load_policy/load_policy.c:90
+ #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s: Не вдається завантажити політику:  %s\n"
++msgstr "%s: не вдалося завантажити правила:  %s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+@@ -1213,7 +1214,7 @@ msgstr "Потрібна принаймні одна категорія"
+ #: ../scripts/chcat:106 ../scripts/chcat:183
+ #, c-format
+ msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr "Не вдається змінити чутливість рівнів використовуючи '+' на %s"
++msgstr "Не вдалося змінити чутливість рівнів використовуючи '+' на %s"
+ #: ../scripts/chcat:110
+ #, c-format
+@@ -1227,55 +1228,55 @@ msgstr "%s не у %s"
+ #: ../scripts/chcat:267 ../scripts/chcat:272
+ msgid "Can not combine +/- with other types of categories"
+-msgstr "Не можна комбінувати +/- з іншими типами категорій"
++msgstr "Не можна поєднувати +/- з іншими типами категорій"
+ #: ../scripts/chcat:319
+ msgid "Can not have multiple sensitivities"
+-msgstr "Кілька sensitivities не підтримуються"
++msgstr "Кілька рівнів чутливості не підтримуються"
+ #: ../scripts/chcat:325
+ #, c-format
+ msgid "Usage %s CATEGORY File ..."
+-msgstr "Використання %s КАТЕГОРІЯ файл ..."
++msgstr "Використання: %s КАТЕГОРІЯ файл ..."
+ #: ../scripts/chcat:326
+ #, c-format
+ msgid "Usage %s -l CATEGORY user ..."
+-msgstr "Використання %s -l КАТЕГОРІЯ користувач ..."
++msgstr "Використання: %s -l КАТЕГОРІЯ користувач ..."
+ #: ../scripts/chcat:327
+ #, c-format
+ msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr "Використання %s [[+|-]КАТЕГОРІЯ],...]q файл ..."
++msgstr "Використання: %s [[+|-]КАТЕГОРІЯ],...]q файл ..."
+ #: ../scripts/chcat:328
+ #, c-format
+ msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr "Використання %s -l [[+|-]КАТЕГОРІЯ],...]q користувач ..."
++msgstr "Використання: %s -l [[+|-]КАТЕГОРІЯ],...]q користувач ..."
+ #: ../scripts/chcat:329
+ #, c-format
+ msgid "Usage %s -d File ..."
+-msgstr "Використання %s -d Файл ..."
++msgstr "Використання: %s -d Файл ..."
+ #: ../scripts/chcat:330
+ #, c-format
+ msgid "Usage %s -l -d user ..."
+-msgstr "Використання %s -l -d користувач ..."
++msgstr "Використання: %s -l -d користувач ..."
+ #: ../scripts/chcat:331
+ #, c-format
+ msgid "Usage %s -L"
+-msgstr "Використання %s -L"
++msgstr "Використання: %s -L"
+ #: ../scripts/chcat:332
+ #, c-format
+ msgid "Usage %s -L -l user"
+-msgstr "Використання %s -L -l користувач"
++msgstr "Використання: %s -L -l користувач"
+ #: ../scripts/chcat:333
+ msgid "Use -- to end option list.  For example"
+-msgstr "Використовуйте -- для списку параметрів.  Наприклад"
++msgstr "Використовуйте -- для завершення списку параметрів. Приклади:"
+ #: ../scripts/chcat:334
+ msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+@@ -1285,180 +1286,2230 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+-msgstr "Помилка параметра %s"
++msgstr "Помилка у параметрах %s"
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr "Логічні змінні"
++
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr "Усі"
++
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr "Змінені"
++
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr "Призначення позначок файлам"
++
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
++"Специфікація\n"
++"файлів"
++
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
++"Тип файлу\n"
++"SELinux"
++
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
++"Тип\n"
++"файлу"
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr "Відповідність користувачів"
++
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
++"Реєстраційне\n"
++"ім'я"
++
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
++"Користувач\n"
++"SELinux"
++
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
++"Діапазон\n"
++"MLS/MCS"
++
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr "Потрібна авторизація '%s'"
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr "Модуль політики"
++
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr "Назва модуля"
++
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr "Вимкнути аудит"
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr "Увімкнути аудит"
++
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr "Завантажити модуль політики"
++
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr "Polgen"
++
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr "Red Hat 2007"
++
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr "GPL"
++
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr "Максим Дзюманенко <dziumanenko@gmail.com>"
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr "Утиліта генерації політики SELinux"
++
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
++"<b>Виберіть тип правил для програми або ролі користувача, обмеження для яких "
++"ви хочете визначити:</b>"
++
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr "<b>Програма</b>"
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
++"Стандартні служби ініціалізації запускаються при завантаженні за допомогою "
++"сценаріїв init, які зазвичай розташовані у /etc/rc.d/init.d"
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr "Стандартна служба Init"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr ""
+-#~ "Не вдається відкрити %s: трансляції не підтримуються на не-MLS комп'ютерах"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr "Системна служба DBUS"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "Трансляції не можуть містити пробіли '%s' "
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr "initd запускається службою xinetd"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "Неправильний рівень '%s' "
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr "Фонова служба інтернет-служб (inetd)"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s вже визначено у трансляції"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr "Веб-програми/ сценарії CGI, що запускаються веб-сервером Apache"
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr "Веб-програма/ сценарій (CGI)"
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
++"Програма користувача -- будь-яка програма, запущена користувачем, до якого "
++"ви хочете застосувати обмеження."
++
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr "Програма користувача"
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr "Пісочниця"
++
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr "<b>Зареєстровані користувачі</b>"
++
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr "Змінити наявний запис авторизації користувача."
++
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr "Наявні ролі користувачів"
++
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
++"Користувач може авторизуватися лише віддалено чи у терміналі. Початково для "
++"користувача не налаштовані setuid, sudo, su та мережне оточення."
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr "Мінімальна роль користувача терміналу"
++
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
++"Цей користувач може авторизуватися за допомогою X або терміналу. Початково "
++"для користувача не налаштовані setuid, sudo, su та мережне оточення."
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr "Мінімальна роль користувача X Window"
++
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
++"Користувач з повністю налаштованим мережним оточенням, програми без setuid, "
++"без su, без sudo."
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr "Роль користувача"
++
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
++"Користувач з повністю налаштованим мережним оточенням, програми без setuid, "
++"без su, може виконувати sudo до ролей адміністрування root."
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr "Роль адміністратора"
++
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr "<b>Користувачі root</b>"
++
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
++"Оберіть роль адміністратора root, якщо цей користувач також адмініструє "
++"систему у режимі root. При цьому користувач не зможе авторизуватися у "
++"системі безпосередньо."
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr "Роль адміністратора root"
++
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr "label104"
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr "<b>Вкажіть назву програми або роль користувача:</b>"
++
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr "Назва"
++
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
++"Вкажіть повний шлях до виконуваного компоненту, у якому будуть застосовані "
++"обмеження"
++
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr "…"
++
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr "Введіть унікальну назву для обмежуваної ролі програми або користувача."
++
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr "Виконуваний файл"
++
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr "Сценарій init"
++
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
++"Вкажіть повний шлях до сценарію init, що використовується для запуску "
++"обмежуваної програми."
++
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr "label105"
++
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr "<b>Виберіть вже створену роль для внесення змін:</b>"
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr "Виберіть ролі користувача, які переводитимуть до домену %s."
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr "label106"
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr "<b>Виберіть ролі, які %s переводитиме до:</b>"
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr "Виберіть домени програми, які %s переводитиме."
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr "label107"
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr "<b>Виберіть user_roles які переводитимуть до %s:</b>"
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr "Виберіть ролі користувачів, які слід перенести у домени програм."
++
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr "label108"
++
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr "<b>Виберіть домени, які адмініструватиме %s:</b>"
++
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr "Виберіть домени, якими має керувати цей користувач."
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr "label109"
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr "<b>Виберіть додаткові ролі для %s:</b>"
++
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr "label111"
++
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr "<b>Вкажіть мережеві порти, до яких прив’язуватиметься %s:</b>"
++
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr "<b>Порти TCP</b>"
++
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr "Дозволяє %s прив’язуватися до будь-якого порту UDP"
++
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr "Усі"
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
++"Дозволити %s викликати bindresvport з 0. Прив’язування до порту 600-1024."
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s не визначено у трансляції"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr "600-1024"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "mapping входу для %s вже визначено"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
++"Вкажіть список портів чи діапазонів портів UDP, розділених комою, з якими "
++"буде пов’язано %s. Приклад: 612, 650-660"
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr "Не зарезервовані порти (>1024)"
++
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr "Виберіть порти"
++
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr "Дозволяє %s зв’язуватися з будь-якими портами UDP з номером > 1024"
++
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr "<b>Порти UDP</b>"
++
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr "label113"
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr "<b>Виберіть мережеві порти, з якими з’єднуватиметься %s:</b>"
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr "Дозволяє %s встановлювати з’єднання з будь-яким портом TCP"
++
++#: ../gui/polgen.glade:2104
++msgid ""
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++"Вкажіть список портів чи діапазонів портів TCP, розділених комою, з якими "
++"буде з’єднано %s. Приклад: 612, 650-660"
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr "Дозволяє %s встановлювати з’єднання з будь-яким портом UDP"
++
++#: ../gui/polgen.glade:2258
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++"Вкажіть список портів чи діапазонів портів UDP, розділених комою, з якими "
++"буде з’єднано %s. Приклад: 612, 650-660"
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr "label114"
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr "<b>Виберіть загальні властивості програми для %s:</b>"
++
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr "Записує повідомлення syslog\t"
++
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr "Створює та обробляє тимчасові файли у каталозі /tmp"
++
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr "Використовує Pam для автентифікації"
++
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr "Використовує виклики nsswitch чи getpw*"
++
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr "Використовує dbus"
++
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr "Надсилає повідомлення audit "
++
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr "Взаємодіє з терміналом"
++
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr "Надсилає повідомлення електронною поштою"
++
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr "label115"
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr "<b>Додайте файли або каталоги, якими керуватиме %s</b>"
++
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
++msgstr ""
++"Файли або каталоги, якими «керуватиме» %s. Файли pid, файли журналів, файли "
++"у /var/lib…"
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr "label116"
+-#, fuzzy
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "Не вдається додати користувача SELinux %s"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr "<b>Додати булеві значення з правил %s:</b>"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "Користувач SELinux %s вже визначений"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++"Додати або вилучити булеві правила, які використовуватимуться доменом %s"
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr "<b>До якого каталогу слід створити правила %s?</b>"
++
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr "Каталог політики"
++
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr "Додати діалог для логічних змінних"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
- msgstr "无法为 %s 创建文件 context"
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "Необхідно вказати порт"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr "Назва логічної змінної"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
- msgstr "无法在文件 context 中为 %s 设置类型"
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "Порт %s/%s вже визначено"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr "Роль"
++
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr "Наявний_користувач"
++
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr "Програма"
++
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr "%s має бути каталогом"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
- msgstr "无法为 %s 设置文件 context"
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "Інтерфейс %s вже визначено"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr "Потрібно вказати користувача"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
- msgstr "无法为 %s 添加文件 context"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "Помилка ініціалізації можливостей.\n"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr "Виберіть виконуваний файл для приміщення обмежень."
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "需要 setype、serange 或 seuser"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "Помилка ініціалізації можливостей, виконання переривається.\n"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
++msgstr "Виберіть сценарій init для застосування обмежень."
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
- msgstr "%s 的文件 context 没有被定义"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "Помилка скидання KEEPCAPS, виконання переривається\n"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
++msgstr "Виберіть файли, які обмежувана програма буде створювати чи записувати"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
- msgstr "无法为 %s 查询文件 context"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "Помилка скидання можливостей, виконання переривається\n"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr "Виберіть каталоги, які будуть належати обмежуваній програмі"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
- msgstr "无法为 %s 修改文件 context"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "Помилка відбирання можливості SETUID, виконання перервано\n"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr "Виберіть каталог, у якому будуть створюватись файли політики"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
- msgstr "无法列出文件环境"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "Помилка звільнення можливостей\n"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++"Тип %s_t вже визначено у поточні політиці.\n"
++"Продовжити?"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
- msgstr "无法删除文件环境为 %s"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "трансляції не підтримуються на не-MLS комп'ютерах"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr "Перевірка назви"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr "%s 的文件 context 已经在策略中被定义,无法删除"
+-#, fuzzy
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr "Потрібно вказати тип SELinux"
++#: ../gui/polgengui.py:653
++#, python-format
++msgid ""
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
++msgstr ""
++"Модуль %s.pp вже завантажено у поточну політику .\n"
++"Продовжити?"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
- msgstr "无法为 %s 删除文件 context"
+-#, fuzzy
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "Потрібно вказати тип SELinux"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++"Вам слід додати назву, складену з літер і цифр, яка не міститиме пробілів."
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
- msgstr "无法列出文件 context"
+-#, fuzzy
+-#~ msgid "Sends audit messages"
+-#~ msgstr "Помилка надсилання повідомлення аудиту.\n"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
++msgstr "Слід вказати виконуваний файл"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
- msgstr "无法列出本地文件上下文"
+-#, fuzzy
+-#~ msgid "You must select a user"
+-#~ msgstr "Необхідно вказати роль"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr "Налаштовування SELinux"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux 文件上下文"
+-#, fuzzy
+-#~ msgid "You must enter a name"
+-#~ msgstr "Необхідно вказати роль"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr "Фонова служба інтернет-служб"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "类型"
+-#, fuzzy
+-#~ msgid "You must enter a executable"
+-#~ msgstr "Необхідно вказати роль"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
++msgstr "Номери портів повинні бути у діапазоні від 1 до %d "
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "无法检查布尔值 %s 是否已被定义"
+-#, fuzzy
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "Створення типу файлу режиму блокування: %s.te"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr "Треба ввести назву процесу/користувача з обмеженнями"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "布尔值 %s 未被定义"
+-#, fuzzy
+-#~ msgid "Interface file"
+-#~ msgstr "Інтерфейс  %s не визначено"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++"Назва має складатися з літер і цифр, без пробілів. Вам варто скористатися "
++"параметром «-n НАЗВА_МОДУЛЯ»"
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
- msgstr "无法查询文件 context %s"
+-#, fuzzy
+-#~ msgid "File Contexts file"
+-#~ msgstr "Контекст файлу для %s не визначено"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr "З типами ролей користувачів не можна пов’язувати виконувані файли."
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "您必需指定以下值之一:%s"
+-#, fuzzy
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "Користувач SELinux  %s не визначений"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr "Лише служби можуть використовувати сценарій init."
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "无法设定活跃布尔值 %s"
+-#, fuzzy
+-#~ msgid "Compatibility"
+-#~ msgstr "Компіляція політики"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr "use_resolve має містити логічне значення"
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "无法修改布尔值 %s"
+-#, fuzzy
+-#~ msgid "SASL authentication server"
+-#~ msgstr "Автентифікація %s.\n"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr "use_syslog має містити логічне значення"
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "错误格式 %s:记录 %s"
+-#, fuzzy
+-#~ msgid "SELinux Type"
+-#~ msgstr "Потрібно вказати тип SELinux"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr "use_kerberos має бути булевим значенням "
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr "布尔值 %s 在策略中被定义,无法删除"
+-#, fuzzy
+-#~ msgid "Add SELinux User"
+-#~ msgstr "Не вдається додати користувача SELinux %s"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr "manage_krb5_rcache має бути булевим значенням"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "不能删除布尔值 %s"
+-#, fuzzy
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "Не вдається змінити користувача SELinux %s"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr "Типам користувачів автоматично встановлюється тип tmp"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "无法列出布尔值"
+-#, fuzzy
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "Не вдається видалити користувача SELinux %s"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
++msgstr "Для обмеження процесу треба вказати виконуваний шлях"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "未知"
+-#, fuzzy
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "Не вдається змінити користувача SELinux %s"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
++msgstr "Файл примусового типу"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "关"
+-#, fuzzy
+-#~ msgid "Load policy module"
+-#~ msgstr "Не вдається прочитати сховище політики."
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr "Файл інтерфейсу"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "开"
+-#, fuzzy
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "Потрібно вказати тип SELinux"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr "Файл контексту"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux 布尔值"
+-#~ msgid "Requires value"
+-#~ msgstr "Потрібно вказати значення"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr "Сценарій налаштовування"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "描述"
+-#~ msgid "Requires 2 or more arguments"
+-#~ msgstr "Потрібно 2 або більше аргументів"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n назва_модуля ] [ -m ] [ -t тип ] [ виконуваний_файл | назва ]\n"
++"можливі значення типу:\n"
  
-@@ -944,9 +969,9 @@
- msgstr "无法清除系统环境\n"
+-#~ msgid "%s not defined"
+-#~ msgstr "%s не визначено"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr "Слід вказати виконуваний файл або назву"
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "初始化能力(capability)错误,中止。\n"
-+msgstr "初始化功能(capability)错误,中止。\n"
+-#~ msgid "%s not valid for %s objects\n"
+-#~ msgstr "%s не є допустимим для %s об'єктів\n"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
++msgid "Network Port"
++msgstr "Мережний порт"
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1276,1597 +1301,2158 @@
- msgid "Options Error %s "
- msgstr "选项错误 %s "
+-#~ msgid "range not supported on Non MLS machines"
+-#~ msgstr "range не підтримується на не-MLS комп'ютерах"
++#: ../gui/portsPage.py:85
++msgid ""
++"SELinux Port\n"
++"Type"
++msgstr ""
++"Тип порту\n"
++"SELinux"
  
--#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "在非 MLS 机器上不支持的转换"
--
--#~ msgid "Boolean"
--#~ msgstr "布尔值"
--
--#~ msgid "all"
--#~ msgstr "所有"
--
--#~ msgid "Customized"
--#~ msgstr "自定义的"
--
--#~ msgid "File Labeling"
--#~ msgstr "文件标记"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "文件\n"
--#~ "约束"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "文件类型"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "文件\n"
--#~ "类型"
--
--#~ msgid "User Mapping"
--#~ msgstr "用户映射"
--
--#~ msgid ""
--#~ "Login\n"
--#~ "Name"
--#~ msgstr ""
--#~ "登录\n"
--#~ "名称"
--
--#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
--#~ msgstr ""
--#~ "SELinux\n"
--#~ "用户"
--
--#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
--#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS 范围"
--
--#~ msgid "Login '%s' is required"
--#~ msgstr "登录名 '%s' 是必需的"
--
--#~ msgid "Policy Module"
--#~ msgstr "策略模块"
--
--#~ msgid "Module Name"
--#~ msgstr "模块名称"
--
--#~ msgid "Version"
--#~ msgstr "版本"
--
--#~ msgid "Disable Audit"
--#~ msgstr "禁用审计"
--
--#~ msgid "Enable Audit"
--#~ msgstr "启用审计"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "加载策略模块"
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>应用程序</b>"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>登录用户</b>"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>根用户</b>"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP 端口</b>"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP 端口</b>"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "添加布尔对话"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "添加应用程序需要“写入”的文件/目录。Pid 文件、日志文件、/var/lib 文件..."
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "添加/删除用于有限应用程序/用户的布尔"
--
--#~ msgid "Admin User Role"
--#~ msgstr "管理用户角色"
--
--#~ msgid "All"
--#~ msgstr "所有"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr "允许应用程序/用户角色使用 0 调用 bindresvport。绑定到端口 600-1024"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr "允许应用程序/用户角色绑定到高于 1024 的任何 udp 端口"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "允许有限的应用程序/用户角色绑定到任何 udp 端口"
--
--#~ msgid "Boolean Name"
--#~ msgstr "布尔名"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "在 /tmp 目录中创建/操作临时文件的应用程序"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "输入用逗号分开的应用程序/用户角色要绑定的 tcp 端口或者端口范围列表。示例:"
--#~ "612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
--#~ "612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
--#~ "612, 650-660"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "输入受限的可执行程序的完整路径"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "输入用于启动受限的应用程序的 init 脚本的完整路径。"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "输入要进行限制的应用程序或用户角色。"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "输入应用程序或用户角色要连接的网络"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "输入应用程序或用户角色要侦听的网络"
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "为受限制的用户或应用程序选择唯一的名称。"
--
--#~ msgid "Executable"
--#~ msgstr "可执行程序"
--
--#~ msgid "Existing User Roles"
--#~ msgstr "现有用户角色"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "生成的策略文件"
--
--#~ msgid "Init script"
--#~ msgstr "Init 脚本"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "与终端互动"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "互联网服务守护进程 (inetd)"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "互联网服务守护进程,是通过 xinetd 启动的服务"
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "最小化终端用户角色"
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "最小化 X 窗口用户角色"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "修改现有登录用户记录。"
--
--#~ msgid "Name"
--#~ msgstr "名称"
--
--#~ msgid "Polgen"
--#~ msgstr "模块生成工具"
--
--#~ msgid "Policy Directory"
--#~ msgstr "策略目录"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "根管理用户角色"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux 策略生成工具"
--
--#~ msgid "Select Ports"
--#~ msgstr "选择端口"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "如果这个用户在以根用户身份运行时将用来管理机器,那么请选择根管理用户角色。"
--#~ "这个用户将不能直接登录到系统。"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "选择用户可以管理的额外域"
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "选择用户角色要转换到的其他域"
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "为这个用户选择其它角色"
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "选择应用程序使用的布尔"
--
--#~ msgid "Select common application traits"
--#~ msgstr "选择常见的应用程序特征"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "选择在其中创建策略文件的目录"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "选择受限应用程序管理的文件/目录"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "选择您希望将这个用户角色转换到的应用程序域。"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "选择您希望这个用户可以管理的域。"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "选择将转换到这个应用程序域的用户角色。"
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "选择受限的应用程序或用户类型。"
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "选择将转换到这个域的用户角色"
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "选择您想要定制的用户角色"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "发送审计信息"
--
--#~ msgid "Sends email"
--#~ msgstr "发送电子邮件"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "标准的 Init 守护进程"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "标准的 Init 守护进程是在引导时通过初始化脚本启动的守护进程。通常需要在 /"
--#~ "etc/rc.d/init.d 目录包含脚本"
+-#~ msgid "Invalid value %s"
+-#~ msgstr "Неправильне значення %s"
 -
 -#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "这个工具可以用来生成一个策略框架,以利用 SELinux 限制应用程序或用户。\n"
+-#~ "In order to load this newly created policy package into the kernel,\n"
+-#~ "you are required to execute \n"
 -#~ "\n"
--#~ "此工具生成:\n"
--#~ "类型强制文件 (te)\n"
--#~ "接口文件 (if)\n"
--#~ "文件上下文 (fc)\n"
--#~ "Shell 脚本 (sh) - 用来编译和安装策略。"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "semodule -i %s.pp\n"
 -#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "这个工具将产生下列:\n"
--#~ "类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
+-#~ "При завантаженні цього нового пакету політики у ядро,\n"
+-#~ "треба виконати\n"
 -#~ "\n"
--#~ "执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
--#~ "现在您可以先将机器置于允许模式(setenforce 0)。\n"
--#~ "运行/重新启动应用程序以产生 avc 消息。\n"
--#~ "然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "这个工具将产生下列:\n"
--#~ "类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
--#~ "以根用户身份执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
--#~ "使用 semange 或者 useradd 将 Linux 用户与用户角色匹配。\n"
--#~ "现在您可以先将机器置于允许模式(setenforce 0)。\n"
--#~ "运行/重新启动应用程序以产生 avc 消息。\n"
--#~ "然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "用户可通过 X 或者终端登录到机器中。默认情况下,这个用户没有 setuid、联网、"
--#~ "sudo 和 su 功能。"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "这个用户将只能通过终端登录或者远程登录。默认情况下,这个用户没有 setuid、"
--#~ "联网、sudo 和 su 功能。"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "非保留端口(> 1024)"
--
--#~ msgid "User Application"
--#~ msgstr "用户应用程序"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr "用户应用程序,是由用户启动的任何希望限制的应用程序"
--
--#~ msgid "User Role"
--#~ msgstr "用户角色"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 su 功能,但可使"
--#~ "用 sudo 转换为根管理角色。"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
--#~ msgstr ""
--#~ "有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 sudo、su 功能。"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "使用 PAM 认证"
--
--#~ msgid "Uses dbus"
--#~ msgstr "使用 dbus"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "使用 nsswitch 或者 getpw* 调用"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "网站应用程序/脚本(CGI)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr "网站应用程序/脚本(CGI),是由网站服务器(Apache)启动的 CGI 脚本"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "写入 syslog 消息\t"
--
--#~ msgid "translator-credits"
--#~ msgstr ""
--#~ "Yuan Yijun <bbbush@fedoraproject.org>, 2007 Leah Liu <lliu@redhat.com>,"
--#~ "2007"
--
--#~ msgid "Role"
--#~ msgstr "角色"
--
--#~ msgid "Existing_User"
--#~ msgstr "现有用户(_U)"
--
--#~ msgid "Application"
--#~ msgstr "应用程序"
--
--#~ msgid "%s must be a directory"
--#~ msgstr "%s 必须是一个目录"
--
--#~ msgid "You must select a user"
--#~ msgstr "您必需选择一个用户"
--
--#~ msgid "Select executable file to be confined."
--#~ msgstr "选择要限制的可执行程序"
--
--#~ msgid "Select init script file to be confined."
--#~ msgstr "选择要限制的 init 脚本"
--
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "选择受限应用程序创建或写入的文件"
--
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "选择受限应用程序拥有并写入的目录"
--
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "选择在其中创建策略文件的目录"
--
--#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "在当前策略中已经定义了类型 %s_t。\n"
--#~ "您想要继续吗?"
--
--#~ msgid "Verify Name"
--#~ msgstr "验证名称"
--
--#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "在当前策略中已经定义了模块 %s.pp。\n"
--#~ "您想要继续吗?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "您必需输入名称"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "您必需指定一个可执行程序位置"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "配置 SELinux"
--
--#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "端口必需是介于 1 和 %d 之间的数字或者范围"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "必需为受限的进程/用户输入名称"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER 类型不允许使用可执行程序"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "只有守护进程才可以使用 init 脚本"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog 必需是布尔值"
--
--#~ msgid "USER Types automatically get a tmp type"
--#~ msgstr "USER 类型自动得到一个 tmp 类型"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "必须输入受限进程的可执行程序路径"
--
--#~ msgid "Type Enforcement file"
--#~ msgstr "打印强制文件"
--
--#~ msgid "Interface file"
--#~ msgstr "接口文件"
--
--#~ msgid "File Contexts file"
--#~ msgstr "文件上下文定义"
--
--#~ msgid "Setup Script"
--#~ msgstr "建立脚本"
--
--#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
--#~ msgstr ""
--#~ "SELinux 端口\n"
--#~ "类型"
--
--#~ msgid "Protocol"
--#~ msgstr "协议"
--
--#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "级别"
--
--#~ msgid "Port"
--#~ msgstr "端口"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "端口号 \"%s\" 是无效的。 0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "列出视图"
--
--#~ msgid "Group View"
--#~ msgstr "分组视图"
--
--#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux 服务保护"
--
--#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "禁用 acct 守护进程的 SELinux 保护"
--
--#~ msgid "Admin"
--#~ msgstr "管理"
--
--#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "允许所有守护进程将内存转储文件写到 /"
--
--#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "允许所有守护进程使用未分配的 tty"
--
--#~ msgid "User Privs"
--#~ msgstr "用户权限"
--
--#~ msgid ""
--#~ "Allow gadmin SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr "允许 gadmin SELinux 用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid ""
--#~ "Allow guest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr "允许 guest SELinux 用户执行主目录或 /tmp 中的文件"
--
--#~ msgid "Memory Protection"
--#~ msgstr "内存保护"
--
--#~ msgid "Allow java executable stack"
--#~ msgstr "允许 java 栈可执行"
--
--#~ msgid "Mount"
--#~ msgstr "挂载"
--
--#~ msgid "Allow mount to mount any file"
--#~ msgstr "允许 mount 挂载任何文件"
--
--#~ msgid "Allow mount to mount any directory"
--#~ msgstr "允许 mount 挂载任何目录"
--
--#~ msgid "Allow mplayer executable stack"
--#~ msgstr "允许 mplayer 栈可执行"
--
--#~ msgid "SSH"
--#~ msgstr "SSH"
--
--#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "允许 ssh 运行 ssh-keysign"
--
--#~ msgid ""
--#~ "Allow staff SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr "允许 staff SELinux 用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid ""
--#~ "Allow sysadm SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr "允许 sysadm SELinux 用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid ""
--#~ "Allow unconfined SELinux user account to execute files in home directory "
--#~ "or /tmp"
--#~ msgstr ""
--#~ "允许 unconfined(未作限定的)SELinux 用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid "Network Configuration"
--#~ msgstr "网络配置"
--
--#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "允许未标记的封包在网络中传播"
--
--#~ msgid ""
--#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr "允许SELinux 一般用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "允许未作限定的类型动态转换到 unconfined_execmem"
--
--#~ msgid "Databases"
--#~ msgstr "数据库"
--
--#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "允许用户连接到 mysql 套接字"
--
--#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "允许用户连接到 postgres 套接字"
--
--#~ msgid "XServer"
--#~ msgstr "X 服务器"
--
--#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "允许用户写入 X 共享内存"
--
--#~ msgid ""
--#~ "Allow xguest SELinux user account to execute files in home directory or /"
--#~ "tmp"
--#~ msgstr "允许 xguest SELinux 用户帐户执行主目录或 /tmp 中的文件"
--
--#~ msgid "NIS"
--#~ msgstr "NIS"
--
--#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "允许守护进程访问 NIS"
--
--#~ msgid "Web Applications"
--#~ msgstr "网站应用程序"
--
--#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "转换 staff SELinux 用户到浏览器域"
--
--#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "转换 sysadm SELinux 用户到浏览器域"
--
--#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "转换 user(一般用户)SELinux 用户到浏览器域"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+-#~ "semodule -i %s.pp\n"
+-#~ "\n"
++#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
++msgid "Protocol"
++msgstr "Протокол"
+-#~ msgid "Options Error: %s "
+-#~ msgstr "Помилка у аргументах: %s "
++#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
++msgid ""
++"MLS/MCS\n"
++"Level"
++msgstr ""
++"Рівень\n"
++"MLS/MCS"
++
++#: ../gui/portsPage.py:101
++msgid "Port"
++msgstr "Порт"
++
++#: ../gui/portsPage.py:207
++#, python-format
++msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
++msgstr "Неправильний номер порту «%s». 0 < номер_порту < 65536 "
++
++#: ../gui/portsPage.py:252
++msgid "List View"
++msgstr "Список"
++
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
++msgid "Group View"
++msgstr "Групи"
++
++#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
++#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
++#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
++#: ../gui/selinux.tbl:39 ../gui/selinux.tbl:40 ../gui/selinux.tbl:42
++#: ../gui/selinux.tbl:43 ../gui/selinux.tbl:44 ../gui/selinux.tbl:45
++#: ../gui/selinux.tbl:46 ../gui/selinux.tbl:47 ../gui/selinux.tbl:48
++#: ../gui/selinux.tbl:49 ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++#: ../gui/selinux.tbl:52 ../gui/selinux.tbl:53 ../gui/selinux.tbl:59
++#: ../gui/selinux.tbl:60 ../gui/selinux.tbl:61 ../gui/selinux.tbl:62
++#: ../gui/selinux.tbl:63 ../gui/selinux.tbl:64 ../gui/selinux.tbl:65
++#: ../gui/selinux.tbl:66 ../gui/selinux.tbl:67 ../gui/selinux.tbl:68
++#: ../gui/selinux.tbl:69 ../gui/selinux.tbl:75 ../gui/selinux.tbl:76
++#: ../gui/selinux.tbl:77 ../gui/selinux.tbl:78 ../gui/selinux.tbl:79
++#: ../gui/selinux.tbl:80 ../gui/selinux.tbl:81 ../gui/selinux.tbl:82
++#: ../gui/selinux.tbl:83 ../gui/selinux.tbl:84 ../gui/selinux.tbl:86
++#: ../gui/selinux.tbl:88 ../gui/selinux.tbl:89 ../gui/selinux.tbl:90
++#: ../gui/selinux.tbl:92 ../gui/selinux.tbl:94 ../gui/selinux.tbl:95
++#: ../gui/selinux.tbl:96 ../gui/selinux.tbl:97 ../gui/selinux.tbl:98
++#: ../gui/selinux.tbl:99 ../gui/selinux.tbl:100 ../gui/selinux.tbl:101
++#: ../gui/selinux.tbl:102 ../gui/selinux.tbl:103 ../gui/selinux.tbl:104
++#: ../gui/selinux.tbl:106 ../gui/selinux.tbl:108 ../gui/selinux.tbl:109
++#: ../gui/selinux.tbl:110 ../gui/selinux.tbl:111 ../gui/selinux.tbl:112
++#: ../gui/selinux.tbl:113 ../gui/selinux.tbl:114 ../gui/selinux.tbl:116
++#: ../gui/selinux.tbl:117 ../gui/selinux.tbl:119 ../gui/selinux.tbl:121
++#: ../gui/selinux.tbl:123 ../gui/selinux.tbl:124 ../gui/selinux.tbl:127
++#: ../gui/selinux.tbl:129 ../gui/selinux.tbl:130 ../gui/selinux.tbl:131
++#: ../gui/selinux.tbl:132 ../gui/selinux.tbl:133 ../gui/selinux.tbl:134
++#: ../gui/selinux.tbl:135 ../gui/selinux.tbl:136 ../gui/selinux.tbl:137
++#: ../gui/selinux.tbl:138 ../gui/selinux.tbl:139 ../gui/selinux.tbl:142
++#: ../gui/selinux.tbl:143 ../gui/selinux.tbl:144 ../gui/selinux.tbl:145
++#: ../gui/selinux.tbl:146 ../gui/selinux.tbl:147 ../gui/selinux.tbl:148
++#: ../gui/selinux.tbl:149 ../gui/selinux.tbl:150 ../gui/selinux.tbl:151
++#: ../gui/selinux.tbl:152 ../gui/selinux.tbl:154 ../gui/selinux.tbl:155
++#: ../gui/selinux.tbl:156 ../gui/selinux.tbl:157 ../gui/selinux.tbl:158
++#: ../gui/selinux.tbl:159 ../gui/selinux.tbl:160 ../gui/selinux.tbl:167
++#: ../gui/selinux.tbl:171 ../gui/selinux.tbl:172 ../gui/selinux.tbl:173
++#: ../gui/selinux.tbl:174 ../gui/selinux.tbl:175 ../gui/selinux.tbl:177
++#: ../gui/selinux.tbl:178 ../gui/selinux.tbl:179 ../gui/selinux.tbl:180
++#: ../gui/selinux.tbl:184 ../gui/selinux.tbl:192 ../gui/selinux.tbl:193
++#: ../gui/selinux.tbl:194 ../gui/selinux.tbl:195 ../gui/selinux.tbl:196
++#: ../gui/selinux.tbl:197 ../gui/selinux.tbl:198 ../gui/selinux.tbl:199
++#: ../gui/selinux.tbl:200 ../gui/selinux.tbl:201 ../gui/selinux.tbl:206
++#: ../gui/selinux.tbl:207 ../gui/selinux.tbl:218 ../gui/selinux.tbl:219
++#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
++#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
++msgid "SELinux Service Protection"
++msgstr "Захист служб SELinux"
++
++#: ../gui/selinux.tbl:1
++msgid "Disable SELinux protection for acct daemon"
++msgstr "Вимкнути захист SELinux для служби acct"
++
++#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
++#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
++#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
++#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
++msgid "Admin"
++msgstr "Адміністратор"
++
++#: ../gui/selinux.tbl:2
++msgid "Allow all daemons to write corefiles to /"
++msgstr "Дозволити всім службам здійснювати запис до /"
++
++#: ../gui/selinux.tbl:3
++msgid "Allow all daemons the ability to use unallocated ttys"
++msgstr "Дозволити всім службам використовувати незайняті tty"
++
++#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
++#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
++#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
++#: ../gui/selinux.tbl:210 ../gui/selinux.tbl:211 ../gui/selinux.tbl:212
++#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
++#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
++msgid "User Privs"
++msgstr "Привілеї користувачів"
++
++#: ../gui/selinux.tbl:4
++msgid ""
++"Allow gadmin SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити обліковому запису gadmin виконувати файли у домашньому каталозі "
++"та /tmp"
++
++#: ../gui/selinux.tbl:5
++msgid ""
++"Allow guest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити обліковому запису guest виконувати файли у домашньому каталозі та /"
++"tmp"
++
++#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
++msgid "Memory Protection"
++msgstr "Захист пам'яті"
++
++#: ../gui/selinux.tbl:6
++msgid "Allow java executable stack"
++msgstr "Дозволити виконуваний стек java"
++
++#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
++#: ../gui/selinux.tbl:209
++msgid "Mount"
++msgstr "Підключення ФС"
++
++#: ../gui/selinux.tbl:7
++msgid "Allow mount to mount any file"
++msgstr "Дозволити монтування до будь-яких файлів"
++
++#: ../gui/selinux.tbl:8
++msgid "Allow mount to mount any directory"
++msgstr "Дозволити монтування до будь-яких каталогів"
++
++#: ../gui/selinux.tbl:9
++msgid "Allow mplayer executable stack"
++msgstr "Дозволити виконуваний стек mplayer"
++
++#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
++#: ../gui/selinux.tbl:188
++msgid "SSH"
++msgstr "SSH"
++
++#: ../gui/selinux.tbl:10
++msgid "Allow ssh to run ssh-keysign"
++msgstr "Дозволити ssh виконувати ssh-keysign"
++
++#: ../gui/selinux.tbl:11
++msgid ""
++"Allow staff SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити користувачу staff виконувати файли у домашньому каталозі та /tmp"
++
++#: ../gui/selinux.tbl:12
++msgid ""
++"Allow sysadm SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити користувачу sysadm виконувати файли у домашньому каталозі та /tmp"
++
++#: ../gui/selinux.tbl:13
++msgid ""
++"Allow unconfined SELinux user account to execute files in home directory or /"
++"tmp"
++msgstr ""
++"Дозволити необмеженому обліковому запису SELinux виконувати файли у "
++"домашньому каталозі та /tmp"
++
++#: ../gui/selinux.tbl:14
++msgid "Network Configuration"
++msgstr "Конфігурація мережі"
++
++#: ../gui/selinux.tbl:14
++msgid "Allow unlabeled packets to flow on the network"
++msgstr "Дозволити проходження по мережі непозначених пакетів"
++
++#: ../gui/selinux.tbl:15
++msgid ""
++"Allow user SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити користувачам user виконувати файли у домашньому каталозі та /tmp"
++
++#: ../gui/selinux.tbl:16
++msgid "Allow unconfined to dyntrans to unconfined_execmem"
++msgstr ""
++"Дозволити необмеженим компонентам виконувати dyntrans для unconfined_execmem"
++
++#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
++#: ../gui/selinux.tbl:140
++msgid "Databases"
++msgstr "Бази даних"
++
++#: ../gui/selinux.tbl:17
++msgid "Allow user to connect to mysql socket"
++msgstr "Дозволити користувачу приєднуватися до сокета mysql"
++
++#: ../gui/selinux.tbl:18
++msgid "Allow user to connect to postgres socket"
++msgstr "Дозволити користувачу приєднуватись до сокета postgres"
++
++#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
++msgid "XServer"
++msgstr "XServer"
++
++#: ../gui/selinux.tbl:19
++msgid "Allow clients to write to X shared memory"
++msgstr "Дозволити клієнтам здійснювати запис до спільної пам'яті X"
++
++#: ../gui/selinux.tbl:20
++msgid ""
++"Allow xguest SELinux user account to execute files in home directory or /tmp"
++msgstr ""
++"Дозволити обліковому запису xguest виконувати файли у домашньому каталозі "
++"та /tmp"
++
++#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
++#: ../gui/selinux.tbl:231
++msgid "NIS"
++msgstr "NIS"
++
++#: ../gui/selinux.tbl:21
++msgid "Allow daemons to run with NIS"
++msgstr "Дозволити службам виконуватись з NIS"
++
++#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
++#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
++#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
++#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
++#: ../gui/selinux.tbl:118
++msgid "Web Applications"
++msgstr "Web-програми"
++
++#: ../gui/selinux.tbl:22
++msgid "Transition staff SELinux user to Web Browser Domain"
++msgstr "Перенести користувача staff до домену програм для перегляду інтернету"
++
++#: ../gui/selinux.tbl:23
++msgid "Transition sysadm SELinux user to Web Browser Domain"
++msgstr "Перенести користувача sysadm до домену програм для перегляду інтернету"
++
++#: ../gui/selinux.tbl:24
++msgid "Transition user SELinux user to Web Browser Domain"
++msgstr "Перенести користувача user до домену програм для перегляду інтернету"
++
++#: ../gui/selinux.tbl:25
++msgid "Transition xguest SELinux user to Web Browser Domain"
++msgstr "Перенести користувача xguest до домену програм для перегляду інтернету"
++
++#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
++#: ../gui/selinux.tbl:29
++msgid "Allow staff Web Browsers to write to home directories"
++msgstr ""
++"Дозволити програмам для перегляду інтернету користувача staff запис у "
++"домашні каталоги"
++
++#: ../gui/selinux.tbl:30
++msgid "Disable SELinux protection for amanda"
++msgstr "Захист SELinux для amanda вимкнено"
++
++#: ../gui/selinux.tbl:31
++msgid "Disable SELinux protection for amavis"
++msgstr "Захист SELinux для amavis вимкнено"
++
++#: ../gui/selinux.tbl:32
++msgid "Disable SELinux protection for apmd daemon"
++msgstr "Захист SELinux для служби apmd вимкнено"
++
++#: ../gui/selinux.tbl:33
++msgid "Disable SELinux protection for arpwatch daemon"
++msgstr "Захист·SELinux для служби arpwatch вимкнено"
++
++#: ../gui/selinux.tbl:34
++msgid "Disable SELinux protection for auditd daemon"
++msgstr "Захист SELinux для служби auditd вимкнено"
++
++#: ../gui/selinux.tbl:35
++msgid "Disable SELinux protection for automount daemon"
++msgstr "Захист SELinux для служби automount вимкнено"
++
++#: ../gui/selinux.tbl:36
++msgid "Disable SELinux protection for avahi"
++msgstr "Захист SELinux для avahi вимкнено"
++
++#: ../gui/selinux.tbl:37
++msgid "Disable SELinux protection for bluetooth daemon"
++msgstr "Захист SELinux для служби bluetooth вимкнено"
++
++#: ../gui/selinux.tbl:38
++msgid "Disable SELinux protection for canna daemon"
++msgstr "Захист SELinux для служби canna вимкнено"
++
++#: ../gui/selinux.tbl:39
++msgid "Disable SELinux protection for cardmgr daemon"
++msgstr "Захист SELinux для служби cardmgr вимкнено"
++
++#: ../gui/selinux.tbl:40
++msgid "Disable SELinux protection for Cluster Server"
++msgstr "Захист SELinux для Cluster Server вимкнено"
++
++#: ../gui/selinux.tbl:41
++msgid ""
++"Allow cdrecord to read various content. nfs, samba, removable devices, user "
++"temp and untrusted content files"
++msgstr ""
++"Дозволити cdrecord читання різної інформації з NFS, Samba, з тимчасових "
++"каталогів користувачів, не довірених файлів та змінних пристроїв"
++
++#: ../gui/selinux.tbl:42
++msgid "Disable SELinux protection for ciped daemon"
++msgstr "Захист SELinux для служби ciped вимкнено"
++
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr "Захист SELinux для служби clamd вимкнено"
++
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr "Захист SELinux для clamscan вимкнено"
++
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr "Захист SELinux для clvmd вимкнено"
++
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr "Захист SELinux для служби comsat вимкнено"
++
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr "Захист SELinux для служби courier вимкнено"
++
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr "Захист SELinux для служби cpucontrol вимкнено"
++
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr "Захист SELinux для служби cpuspeed вимкнено"
++
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr "Cron"
++
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr "Захист SELinux для служби crond вимкнено"
++
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr "Друк"
++
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr "Захист SELinux для сервера cupsd вимкнено"
++
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
++msgstr "Захист SELinux для служби cupsd вимкнено"
++
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
++msgstr "Захист SELinux для cupsd_lpd вимкнено"
++
++#: ../gui/selinux.tbl:58
++msgid "CVS"
++msgstr "CVS"
++
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr "Захист SELinux для служби cvs вимкнено"
++
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
++msgstr "Захист SELinux для служби cyrus вимкнено"
++
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr "Захист SELinux для служби dbskkd вимкнено"
++
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
++msgstr "Захист SELinux для dbusd вимкнено"
++
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr "Захист SELinux для dccd вимкнено"
++
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
++msgstr "Захист SELinux для dccifd вимкнено"
++
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
++msgstr "Захист SELinux для dccm вимкнено"
++
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
++msgstr "Захист SELinux для служби ddt вимкнено"
++
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr "Захист SELinux для служби devfsd вимкнено"
++
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr "Захист SELinux для служби dhcpc вимкнено"
++
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr "Захист SELinux для служби dhcpd вимкнено"
++
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr "Захист SELinux для служби dictd вимкнено"
++
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr "Дозволити sysadm_t безпосередньо запускати служби"
++
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr "Вимкнути захист SELinux для Evolution"
++
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr "Ігри"
++
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr "Захист SELinux для ігор вимкнено"
++
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr "Захист SELinux для програм для перегляду інтернету вимкнено"
++
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr "Захист SELinux для Thunderbird вимкнено"
++
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr "Захист SELinux для служби distccd вимкнено"
++
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr "Захист SELinux для служби dmesg вимкнено"
++
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr "Захист SELinux для служби dnsmasq вимкнено"
++
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr "Захист SELinux для служби dovecot вимкнено"
++
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr "Захист SELinux для служби entropyd вимкнено"
++
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr "Захист SELinux для fetchmail вимкнено"
++
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr "Захист SELinux для служби fingerd вимкнено"
++
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr "Захист SELinux для служби freshclam вимкнено"
++
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr "Захист SELinux для служби fsdaemon вимкнено"
++
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr "Захист SELinux для служби gpm вимкнено"
++
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr "NFS"
++
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr "Захист SELinux для служби gss вимкнено"
++
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr "Захист SELinux для служби Hal вимкнено"
++
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr "Сумісність"
++
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
++msgstr ""
++"Не виконувати аудит несправних компонентів, які не утворюють загрозу безпеці"
++
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr "Захист SELinux для служби hostname вимкнено"
++
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
++msgstr "Захист SELinux для служби hotplug вимкнено"
++
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr "Захист SELinux для служби howl вимкнено"
++
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr "Захист SELinux для служби cups hplip вимкнено"
++
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr "Захист SELinux для служби httpd rotatelogs вимкнено"
++
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr "Служба HTTPD"
++
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
++msgstr "Захист SELinux для служби http suexec вимкнено"
++
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
++msgstr "Захист SELinux для служби hwclock вимкнено"
++
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
++msgstr "Захист SELinux для служби i18n вимкнено"
++
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
++msgstr "Захист SELinux для служби imazesrv вимкнено"
++
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr "Захист SELinux для дочірніх служб inetd вимкнено"
++
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr "Захист SELinux для служби inetd вимкнено"
++
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr "Захист SELinux для служби innd вимкнено"
++
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr "Захист SELinux для служби iptables вимкнено"
++
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr "Захист SELinux для служби ircd вимкнено"
++
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr "Захист SELinux для служби irqbalance вимкнено"
++
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr "Захист SELinux для служби iscsi вимкнено"
++
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr "Захист SELinux для служби jabberd вимкнено"
++
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr "Kerberos"
++
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr "Захист SELinux для служби kadmind вимкнено"
++
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr "Захист SELinux для служби klogd вимкнено"
++
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr "Захист SELinux для служби krb5kdc вимкнено"
++
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr "Захист SELinux для служби ktalk вимкнено"
++
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr "Захист SELinux для служби kudzu вимкнено"
++
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr "Захист SELinux для служби locate вимкнено"
++
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr "Захист SELinux для служби lpd вимкнено"
++
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr "Захист SELinux для служби lrrd вимкнено"
++
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr "Захист SELinux для служби lvm вимкнено"
++
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr "Захист SELinux для mailman вимкнено"
++
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr "Дозволити Evolution та Thunderbird читати файли користувачів"
++
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr "Захист SELinux для служби mdadm вимкнено"
++
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr "Захист SELinux для служби monopd вимкнено"
++
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr "Дозволити Mozilla читати файли користувачів"
++
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr "Захист SELinux для служби mrtg вимкнено"
++
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr "Захист SELinux для служби mysqld вимкнено"
++
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr "Захист SELinux для служби nagios вимкнено"
++
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr "Служба імен"
++
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr "Захист SELinux для служби named вимкнено"
++
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr "Захист SELinux для служби nessusd вимкнено"
++
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr "Захист SELinux для NetworkManager вимкнено"
++
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr "Захист SELinux для служби nfsd вимкнено"
++
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr "Samba"
++
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr "Захист SELinux для служби nmbd вимкнено"
++
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr "Захист SELinux для служби nrpe вимкнено"
++
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr "Захист SELinux для служби nscd вимкнено"
++
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr "Захист SELinux для служби nsd вимкнено"
++
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr "Захист SELinux для служби ntpd вимкнено"
++
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr "Захист SELinux для oddjob вимкнено"
++
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr "Захист SELinux для oddjob_mkhomedir вимкнено"
++
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr "Захист SELinux для служби openvpn вимкнено"
++
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr "Захист SELinux для служби pam вимкнено"
++
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr "Захист SELinux для pegasus вимкнено"
++
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr "Захист SELinux для служби perdition вимкнено"
++
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr "Захист SELinux для служби portmap вимкнено"
++
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr "Захист SELinux для служби portslave вимкнено"
++
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr "Захист SELinux для postfix вимкнено"
++
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr "Захист SELinux для служби postgresql вимкнено"
++
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr "pppd"
++
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr "Дозволити виконання pppd у режимі звичайного користувача"
++
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr "Захист SELinux для pptp вимкнено"
++
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr "Захист SELinux для служби prelink вимкнено"
++
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr "Захист SELinux для служби privoxy вимкнено"
++
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr "Захист SELinux для служби ptal вимкнено"
++
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr "Захист SELinux для служби pxe вимкнено"
++
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr "Захист SELinux для pyzord вимкнено"
++
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr "Захист SELinux для служби quota вимкнено"
++
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr "Захист SELinux для служби radiusd вимкнено"
++
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr "Захист SELinux для служби radvd вимкнено"
++
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr "Захист SELinux для служби rdisc вимкнено"
++
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr "Захист SELinux для служби readahead вимкнено"
++
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr "Дозволити програмам читання файлів з нестандартних джерел (default_t)"
++
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr "Захист SELinux для служби restorecond вимкнено"
++
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr "Захист SELinux для служби rhgb вимкнено"
++
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr "Захист SELinux для ricci вимкнено"
++
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr "Захист SELinux для ricci_modclusterd вимкнено"
++
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr "Захист SELinux для служби rlogind вимкнено"
++
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr "Захист SELinux для служби rpcd вимкнено"
++
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr "Захист SELinux для служби rshd вимкнено"
++
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr "rsync"
++
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr "Захист SELinux для служби rsync вимкнено"
++
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr "Дозволити запуск ssh з inted, а не у якості служби"
++
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr "Дозволити Samba спільний доступ до каталогів NFS"
++
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr "Сервер авторизації SASL"
++
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr "Дозволити серверу авторизації sasl читати /etc/shadow"
++
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
++"Дозволити серверу X-Windows призначати область пам'яті як виконувану та "
++"доступну для запису"
++
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr "Захист SELinux для служби saslauthd вимкнено"
++
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr "Захист SELinux для служби scannerdaemon вимкнено"
++
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr "Не дозволяти зміну на sysadm_t, sudo та su"
++
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr "Не дозволяти процесам завантажувати модулі ядра"
++
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr "Не дозволяти процесам змінювати політику SELinux у ядрі"
++
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr "Захист SELinux для служби sendmail вимкнено"
++
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr "Захист SELinux для setrans вимкнено"
++
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr "Захист SELinux для служби setroubleshoot вимкнено"
++
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr "Захист SELinux для служби slapd вимкнено"
++
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr "Захист SELinux для служби slrnpull вимкнено"
++
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr "Захист SELinux для служби smbd вимкнено"
++
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr "Захист SELinux для служби snmpd вимкнено"
++
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr "Захист SELinux для служби snort вимкнено"
++
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr "Захист SELinux для служби soundd вимкнено"
++
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr "Захист SELinux для служби sound вимкнено"
++
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr "Захист від спаму"
++
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr "Захист SELinux для служби spamd вимкнено"
++
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr "Дозволити spamd звертатися до домашніх каталогів"
++
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr "Дозволити мережний доступ службі Spam Assassin"
++
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr "Захист SELinux для служби speedmgmt вимкнено"
++
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr "Звук"
++
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr "Дозволити службі squid приєднуватись до мережі"
++
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr "Захист SELinux для служби squid вимкнено"
++
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr "Захист SELinux для служби ssh вимкнено"
++
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr "Дозволити авторизацію ssh для sysadm_r:sysadm_t"
++
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
++"Дозволити користувачам staff_r пошук у домашніх каталогах та читання файлів "
++"(наприклад, ~/.bashrc)"
++
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr "Універсальний тунель SSL"
++
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr "Захист SELinux для служби stunnel вимкнено"
++
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr "Дозволити службі stunnel виконуватись незалежно від xinetd"
++
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr "Захист SELinux для служби swat вимкнено"
++
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr "Захист SELinux для служби sxid вимкнено"
++
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr "Захист SELinux для служби syslogd вимкнено"
++
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr "Захист SELinux для системи завдань cron вимкнено"
++
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr "Захист SELinux для служби tcp вимкнено"
++
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr "Захист SELinux для служби telnet вимкнено"
++
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr "Захист SELinux для служби tftpd вимкнено"
++
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr "Захист SELinux для служби transproxy вимкнено"
++
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr "Захист SELinux для служби udev вимкнено"
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr "Захист SELinux для служби uml вимкнено"
++
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
++"Дозволити службі xinetd виконуватись без обмежень, що включає всі керовані "
++"ним служби, для яких явно не вказані перетворення доменів"
++
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
++"Дозволити виконання сценаріїв rc без обмежень, включаючи служби, що "
++"запускаються сценарієм rc, для яких явно не вказано домен переходу"
++
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr "Дозволити rpm виконуватись без обмежень"
++
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
++"Дозволити привілейованим утилітам (наприклад, hotplug та insmod) "
++"виконуватись без обмежень"
++
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr "Захист SELinux для служби updfstab вимкнено"
++
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr "Захист SELinux для служби uptimed вимкнено"
++
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++"Дозволити користувачу user_r звертатися до sysadm_r через su, sudo чи "
++"userhelper. У іншому разі лише staff_r зможе здійснювати доступ"
++
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr "Дозволити користувачам виконувати команду mount"
++
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++"Дозволити звичайним користувачам здійснювати прямий доступ за допомогою миші "
++"(лише для сервера X)"
++
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr "Дозволити користувачам виконувати команду dmesg"
++
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++"Дозволити користувачам керувати мережними інтерфейсами (також потрібно "
++"USERCTL=true)"
++
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr "Дозволити звичайним користувачам виконувати ping"
++
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
++"Дозволити користувачам виконувати читання та запис noextattrfile (FAT, "
++"CDROM, FLOPPY)"
++
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr "Дозволити користувачам виконувати читання та запис пристроїв USB"
++
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++"Дозволити користувачам запускати сервери TCP (здійснювати прив'язку портів "
++"та приймати з'єднання з того ж домену та зовнішніх користувачів). Вимикання "
++"цієї можливості викличе перехід у пасивний режим FTP та може змінити інші "
++"протоколи"
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr "Дозволити користувачам виконувати stat для файлів tty"
++
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr "Захист SELinux для служби uucpd вимкнено"
++
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr "Захист SELinux для служби vmware вимкнено"
++
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr "Захист SELinux для служби watchdog вимкнено"
++
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr "Захист SELinux для служби winbind вимкнено"
++
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr "Захист SELinux для служби xdm вимкнено"
++
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr "Дозволити авторизацію xdm як sysadm_r:sysadm_t"
++
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr "Вимкнути захист SELinux для демона xen"
++
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr "XEN"
++
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr "Дозволити xen запис та читання фізичних дискових пристроїв"
++
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr "Захист SELinux для служби xfs вимкнено"
++
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr "Захист SELinux для служби xen вимкнено"
++
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr "Захист SELinux для служби ypbind вимкнено"
++
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr "Захист SELinux для служби NIS Password вимкнено"
++
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr "Захист SELinux для служби ypserv вимкнено"
++
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr "Захист SELinux для служби NIS Transfer вимкнено"
++
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
++"Дозволити користувачу webadm керувати домашніми каталогами непривілейованих "
++"користувачів"
++
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
++"Дозволити користувачу webadm читання домашніх каталогів непривілейованих "
++"користувачів"
++
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr "Ви справді хочете вилучити %s «%s»?"
++
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
++msgstr "Вилучити %s"
++
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
++msgstr "Додати %s"
++
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
++msgstr "Змінити %s"
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr "Дозволений"
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr "Примусовий"
++
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr "Статус"
++
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++"Зміна типу політики вимагає повторної розмітки всієї файлової системи при "
++"наступному завантаженні. Процес розмітки може бути досить тривалим залежно "
++"від розміру файлової системи. Продовжити?"
++
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
++"Вимикання політики SELinux вимагає перезавантаження та не рекомендується. "
++"Якщо у подальшому ви захочете увімкнути SELinux, знадобиться виконати "
++"повторну розмітку файлової системи. Якщо ж ви просто хочете перевірити, чи "
++"не викликає SELinux проблем у системі, використовуйте дозволений режим, який "
++"не робить політику примусовою, але при цьому реєструє помилки у журналі. "
++"Дозволений режим не вимагає перезавантаження. Продовжити?"
++
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
++"Активація політики SELinux вимагає повторної розмітки всієї файлової системи "
++"при наступному завантаженні. Процес розмітки може бути досить тривалим "
++"залежно від розміру файлової системи. Продовжити?"
++
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr "system-config-selinux"
++
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
++"(c) 2006 Red Hat, Inc.\n"
++"(c) 2006 Dan Walsh <dwalsh@redhat.com>"
++
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr "Додати відповідні авторизації SELinux"
++
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr "Додати мережні порти SELinux"
++
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr "Тип SELinux"
++
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr "Специфікація файлу"
++
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr "Тип файлу"
++
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
++"усі файли\n"
++"звичайний файл\n"
++"каталог\n"
++"символьний пристрій\n"
++"блочний пристрій\n"
++"сокет\n"
++"символьне посилання\n"
++"канал\n"
++
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr "MLS"
++
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr "Додати користувача SELinux"
++
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr "Адміністрування SELinux"
++
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr "Додати"
++
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr "_Властивості"
++
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr "В_илучити"
++
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr "Обрати об'єкт керування"
++
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr "<b>Вибір:</b>"
++
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr "Типовий примусовий режим"
++
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
++"Вимкнено\n"
++"Дозволений\n"
++"Примусовий\n"
++
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr "Поточний примусовий режим"
++
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr "Тип типової політики:"
++
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
++"Виберіть, якщо хочете виконати повторну розмітку всієї файлової системи при "
++"наступному завантаженні. Процес повторної розмітки може бути досить тривалим "
++"залежно від розміру файлової системи. При зміні типу політики також "
++"знадобиться повторна розмітка."
++
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr "Повторна розмітка при наступному завантаженні."
++
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr "label37"
++
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr "Відновити первинне значення параметра"
++
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
++"Перемикання між значенням вказаним користувачем та усіма логічними значеннями"
++
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
++msgstr "Запустити помічник блокування логічних змінних"
++
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
++msgstr "Блокування..."
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
++msgstr "Фільтр"
++
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
++msgstr "label50"
++
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr "Додати контекст файлу"
++
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr "Змінити контекст файлу"
++
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr "Вилучити контекст файлу"
++
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr "Перемикання між усіма та зміненими контекстами файлів"
++
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr "label38"
++
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr "Додати відповідність користувачів SELinux"
++
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr "Змінити відповідність користувача SELinux"
++
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr "Вилучити відповідність користувача SELinux"
++
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr "label39"
++
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr "Додати користувача"
++
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr "Змінити користувача"
++
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr "Вилучити користувача"
++
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr "label41"
++
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr "Додати мережний порт"
++
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr "Змінити мережний порт"
++
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr "Вилучити мережний порт"
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr "Перемикання між портами вказаними користувачем та усіма портами"
++
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr "label42"
++
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr "Генерувати модуль нової політики"
++
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr "Завантажити модуль політики"
++
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr "Вилучити завантажувальний модуль політики"
++
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
++"Увімкнути чи вимкнути додаткові правила аудиту, яке зазвичай не показується "
++"у журналах."
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr "label44"
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr "Змінити режим процесу на дозвільний."
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr "Змінити режим процесу на примусовий."
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr "Домен процесу"
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr "label59"
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr "Потрібен SELinux користувач ?%s?"
+diff --git a/policycoreutils/po/ur.po b/policycoreutils/po/ur.po
+index afeaa9f..1676620 100644
+--- a/policycoreutils/po/ur.po
++++ b/policycoreutils/po/ur.po
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
++"POT-Creation-Date: 2012-04-18 11:44-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"
+@@ -138,11 +138,11 @@ msgstr ""
+ msgid "Modules Name"
+ msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr ""
+@@ -270,15 +270,20 @@ msgid "Could not list login mappings"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr ""
+@@ -388,6 +393,7 @@ msgid "MCS Range"
+ msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr ""
+@@ -518,7 +524,7 @@ msgstr ""
+ msgid "Proto"
+ msgstr ""
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
+ msgid "Port Number"
+ msgstr ""
+@@ -927,7 +933,8 @@ msgstr ""
+ msgid "Default"
+ msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr ""
+@@ -1264,7 +1271,2096 @@ msgstr ""
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr ""
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr ""
++
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
-+msgstr "布尔值"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
-+msgstr "所有"
++msgstr ""
 +
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
-+msgstr "自定义的"
++msgstr ""
 +
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
-+msgstr "文件标记"
--#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "转换 xguest SELinux 用户到浏览器域"
--
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "允许 staff 浏览器写入个人目录"
--
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "禁用 amanda 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "禁用 amavis 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "禁用 apmd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "禁用 arpwatch 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "禁用 auditd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "禁用 automount 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "禁用 avahi 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "禁用 bluetooth 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "禁用 canna 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "禁用 cardmgr 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "禁用集群服务器的 SELinux 保护"
--
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "允许 cdrecord 读取各种内容。nfs, samba, 可移动存储,用户临时文件和不可信任"
--#~ "的内容"
--
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "禁用 ciped 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "禁用 clamd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "禁用 clamscan 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "禁用 clvmd 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "禁用 comsat 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "禁用 courier 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "禁用 cpucontrol 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "禁用 cpuspeed 守护进程的 SELinux 保护"
--
--#~ msgid "Cron"
--#~ msgstr "Cron 计划任务"
--
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "禁用 crond 守护进程的 SELinux 保护"
--
--#~ msgid "Printing"
--#~ msgstr "打印"
--
--#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "禁止 cupsd 后端服务器的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "禁止 cupsd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "禁止 cupsd_lpd 的 SELinux 保护"
--
--#~ msgid "CVS"
--#~ msgstr "CVS"
--
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "禁止 cvs 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "禁止 cyrus 守护进程的 SELinux 保护<"
--
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "禁止 dbskkd 守护进程的 SELinux 保护<"
--
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "禁止 dbusd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "禁止 dccd 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "禁止 dccifd 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "禁止 dccm 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "禁止 ddt 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "禁止 devfsd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "禁止 dhcpc 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "禁止 dhcpd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "禁止 dictd 守护进程的 SELinux 保护"
--
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "允许 sysadm_t 直接启动守护进程"
--
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "禁止 Evolution 的 SELinux 保护"
--
--#~ msgid "Games"
--#~ msgstr "游戏"
--
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "禁止游戏的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "禁止网页浏览器的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "禁止 Thunderbird 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "禁止 distccd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "禁止 dmesg 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "禁止 dnsmasq 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "禁止 dovecot 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "禁止 entropyd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "禁止 fetchmail 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "禁止 fingerd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "禁止 freshclam 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "禁止 fsdaemon 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "禁止 gpm 守护进程的 SELinux 保护"
--
--#~ msgid "NFS"
--#~ msgstr "NFS"
--
--#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "禁止 gss 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "禁止 Hal 守护进程的 SELinux 保护"
--
--#~ msgid "Compatibility"
--#~ msgstr "兼容性"
--
--#~ msgid ""
--#~ "Do not audit things that we know to be broken but which are not security "
--#~ "risks"
--#~ msgstr "不审计那些与安全无关的已知错误"
--
--#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "禁止 hostname 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "禁止 hotplug 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "禁止 howl 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "禁止 cups hplip 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "禁止 httpd 日志循环的 SELinux 保护"
--
--#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD 服务"
--
--#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "禁止 http suexec 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "禁止 hwclock 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "禁止 i18n 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "禁止 imazesrv 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "禁止 inetd 子守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "禁止 inetd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "禁止 innd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "禁止 iptables 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "禁止 ircd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "禁止 irqbalance 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "禁止 iscsi 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "禁止 jabberd 守护进程的 SELinux 保护"
--
--#~ msgid "Kerberos"
--#~ msgstr "Kerberos"
--
--#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "禁止 kadmind 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "禁止 klogd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "禁止 krb5kdc 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "禁止 ktalk 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "禁止 kudzu 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "禁止 locate 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "禁止 lpd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "禁止 lrrd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "禁止 lvm 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "禁止 mailman 守护进程的 SELinux 保护"
--
--#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "允许 evolution 和 thunderbird 读用户文件"
--
--#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "禁止 mdadm 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "禁止 monopd 守护进程的 SELinux 保护"
--
--#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "允许 mozilla 浏览器读用户文件"
--
--#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "禁止 mrtg 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "禁止 mysqld 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "禁止 nagios 守护进程的 SELinux 保护"
--
--#~ msgid "Name Service"
--#~ msgstr "名字服务"
--
--#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "禁止 named 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "禁止 neesusd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "禁止 NetworkManager 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "禁止 nfsd 守护进程的 SELinux 保护"
--
--#~ msgid "Samba"
--#~ msgstr "Samba"
--
--#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "禁止 nmbd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "禁止 nrpe 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "禁止 nscd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "禁止 nsd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "禁止 ntpd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "禁止 oddjob 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "禁止 oddjob_mkhomedir 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "禁止 openvpn 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "禁止 pam 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "禁止 pegasus 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "禁止 perdition 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "禁止 portmap 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "禁止 portslave 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "禁止 postfix 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "禁止 postgresql 守护进程的 SELinux 保护"
--
--#~ msgid "pppd"
--#~ msgstr "pppd"
--
--#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "允许 pppd 以普通用户运行"
--
--#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "禁止 pptp 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "禁止 prelink 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "禁止 privoxy 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "禁止 ptal 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "禁止 pxe 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "禁止 pyzord 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "禁止 quota 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "禁止 radiusd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "禁止 radvd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "禁止 rdisc 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "禁止 readahead 的 SELinux 保护"
--
--#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "允许程序读非标准位置(default_t)的文件"
--
--#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "禁止 restorecond 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "禁止 rhgb 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "禁止 ricci 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "禁止 ricci_modclusterd 的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "禁止 rlogind 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "禁止 rpcd 守护进程的 SELinux 保护"
--
--#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "禁止 rshd 的 SELinux 保护"
--
--#~ msgid "rsync"
--#~ msgstr "rsync"
--
--#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "禁止 rsync 守护进程的 SELinux 保护"
--
--#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "允许 ssh 从 inetd 运行而非作为守护进程"
++msgstr ""
++
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+"文件\n"
-+"约束"
--#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "允许 Samba 共享 nfs 目录"
++
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+"Selinux\n"
-+"文件类型"
--#~ msgid "SASL authentication server"
--#~ msgstr "SASL 认证服务器"
++
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+"文件\n"
-+"类型"
--#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "允许 sasl 认证服务读取 /etc/shadow"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
++
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
-+msgstr "用户映射"
--#~ msgid ""
--#~ "Allow X-Windows server to map a memory region as both executable and "
--#~ "writable"
--#~ msgstr "允许 X 窗口服务器将内存映射为可写且可执行"
++msgstr ""
++
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+"登录\n"
-+"名称"
--#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "禁止 saslauthd 守护进程的 SELinux 保护"
++
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+"SELinux\n"
-+"用户"
--#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "禁止 scannerdaemon 守护进程的 SELinux 保护"
++
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+"MLS/\n"
-+"MCS 范围"
--#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "不允许转换到 sysadm_t, sudo 和 su 会受影响"
++
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
-+msgstr "登录名 '%s' 是必需的"
--#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "不允许任何进程加载内核模块"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
++msgstr ""
++
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
-+msgstr "策略模块"
--#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "不允许任何进程修改内核 SELinux 策略"
++msgstr ""
++
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
-+msgstr "模块名称"
--#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "禁止 sendmail 守护进程的 SELinux 保护"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "版本"
--#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "禁止 setrans 的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
-+msgstr "禁用审计"
--#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "禁止 setroubleshoot 守护进程的 SELinux 保护"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
++msgstr ""
++
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
-+msgstr "启用审计"
--#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "禁止 slapd 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
-+msgstr "加载策略模块"
--#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "禁止 slrnpull 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
-+msgstr "模块生成工具"
--#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "禁止 smbd 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
--#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "禁止 snmpd 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
-+msgstr "GPL"
--#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "禁止 snort 守护进程的 SELinux 保护"
++msgstr ""
++
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+"Yuan Yijun <bbbush@fedoraproject.org>, 2007 Leah Liu <lliu@redhat.com>,2007"
--#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "禁止 sounded 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
++
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+"这个工具可以用来生成一个策略框架,以利用 SELinux 限制应用程序或用户。\n"
-+"\n"
-+"此工具生成:\n"
-+"类型强制文件 (te)\n"
-+"接口文件 (if)\n"
-+"文件上下文 (fc)\n"
-+"Shell 脚本 (sh) - 用来编译和安装策略。"
 +
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "选择受限的应用程序或用户类型。"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:196
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
-+msgstr "<b>应用程序</b>"
--#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "禁止 sound 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
++msgstr ""
++
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+"标准的 Init 守护进程是在引导时通过初始化脚本启动的守护进程。通常需要在 /etc/"
-+"rc.d/init.d 目录包含脚本"
--#~ msgid "Spam Protection"
--#~ msgstr "垃圾邮件保护"
-+#: ../gui/polgen.glade:260
++
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
-+msgstr "标准的 Init 守护进程"
++msgstr ""
 +
-+#: ../gui/polgen.glade:280
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
-+msgstr "DBUS 系统守护进程"
++msgstr ""
 +
-+#: ../gui/polgen.glade:299
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "互联网服务守护进程,是通过 xinetd 启动的服务"
++msgstr ""
 +
-+#: ../gui/polgen.glade:301
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
-+msgstr "互联网服务守护进程 (inetd)"
--#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "禁止 spamd 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:320
++msgstr ""
++
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "网站应用程序/脚本(CGI),是由网站服务器(Apache)启动的 CGI 脚本"
--#~ msgid "Allow spamd to access home directories"
--#~ msgstr "允许 spamd 访问用户个人目录"
-+#: ../gui/polgen.glade:322
++msgstr ""
++
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
-+msgstr "网站应用程序/脚本(CGI)"
--#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "允许 Spam Assasin 守护进程访问网络"
-+#: ../gui/polgen.glade:341
++msgstr ""
++
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
-+msgstr "用户应用程序,是由用户启动的任何希望限制的应用程序"
++msgstr ""
 +
-+#: ../gui/polgen.glade:343
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
-+msgstr "用户应用程序"
++msgstr ""
++
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
 +
-+#: ../gui/polgen.glade:389
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
-+msgstr "<b>登录用户</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:451
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
-+msgstr "修改现有登录用户记录。"
++msgstr ""
 +
-+#: ../gui/polgen.glade:453
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
-+msgstr "现有用户角色"
--#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "禁止 speedmgmt 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:472
++msgstr ""
++
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+"这个用户将只能通过终端登录或者远程登录。默认情况下,这个用户没有 setuid、联"
-+"网、sudo 和 su 功能。"
--#~ msgid "Squid"
--#~ msgstr "Squid"
-+#: ../gui/polgen.glade:474
++
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
-+msgstr "最小化终端用户角色"
--#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "允许 squid 守护进程连接到网络"
-+#: ../gui/polgen.glade:493
++msgstr ""
++
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+"用户可通过 X 或者终端登录到机器中。默认情况下,这个用户没有 setuid、联网、"
-+"sudo 和 su 功能。"
--#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "禁止 squid 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:495
++
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
-+msgstr "最小化 X 窗口用户角色"
--#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "禁止 ssh 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:514
++msgstr ""
++
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+"有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 sudo、su 功能。"
--#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "允许通过 ssh 登录为 sysadm_r:sysadm_t"
-+#: ../gui/polgen.glade:516
++
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
-+msgstr "用户角色"
--#~ msgid ""
--#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
--#~ "~/.bashrc)"
--#~ msgstr "允许 staff_r 用户搜索 sysadm 个人目录并读取文件(如 ~/.bashrc)"
-+#: ../gui/polgen.glade:535
++msgstr ""
++
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+"有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 su 功能,但可使用 "
-+"sudo 转换为根管理角色。"
--#~ msgid "Universal SSL tunnel"
--#~ msgstr "全局的 SSL 隧道"
-+#: ../gui/polgen.glade:537
++
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
-+msgstr "管理用户角色"
++msgstr ""
 +
-+#: ../gui/polgen.glade:583
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
-+msgstr "<b>根用户</b>"
--#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "禁止 stunnel 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:645
++msgstr ""
++
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+"如果这个用户在以根用户身份运行时将用来管理机器,那么请选择根管理用户角色。这"
-+"个用户将不能直接登录到系统。"
--#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "允许 stunnel 守护进程在 xinetd 之外独立运行"
-+#: ../gui/polgen.glade:647
++
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
-+msgstr "根管理用户角色"
++msgstr ""
 +
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "输入要进行限制的应用程序或用户角色。"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
++
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
-+msgstr "名称"
++msgstr ""
 +
-+#: ../gui/polgen.glade:781
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
-+msgstr "输入受限的可执行程序的完整路径"
++msgstr ""
 +
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
-+msgstr "..."
++msgstr ""
 +
-+#: ../gui/polgen.glade:823
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
-+msgstr "为受限制的用户或应用程序选择唯一的名称。"
++msgstr ""
 +
-+#: ../gui/polgen.glade:845
++#: ../gui/polgen.glade:871
 +msgid "Executable"
-+msgstr "可执行程序"
++msgstr ""
 +
-+#: ../gui/polgen.glade:873
++#: ../gui/polgen.glade:899
 +msgid "Init script"
-+msgstr "Init 脚本"
--#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "禁止 swat 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:901
++msgstr ""
++
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
-+msgstr "输入用于启动受限的应用程序的 init 脚本的完整路径。"
--#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "禁止 sxid 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "选择您想要定制的用户角色"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "选择将转换到这个应用程序域的用户角色。"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "选择用户角色要转换到的其他域"
--#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "禁止 syslogd 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "选择您希望将这个用户角色转换到的应用程序域。"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
++
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
++
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
++
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
++
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
 +
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "选择将转换到这个域的用户角色"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "选择用户可以管理的额外域"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
-+msgstr "选择您希望这个用户可以管理的域。"
++msgstr ""
++
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
++
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "为这个用户选择其它角色"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "输入应用程序或用户角色要侦听的网络"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP 端口</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "允许有限的应用程序/用户角色绑定到任何 udp 端口"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
-+msgstr "所有"
--#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "禁止系统计划任务(cron)的 SELinux 保护"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr "允许应用程序/用户角色使用 0 调用 bindresvport。绑定到端口 600-1024"
++msgstr ""
++
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
-+msgstr "600-1024"
--#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "禁止 tcp 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
++msgstr ""
++
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+"输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
-+"612, 650-660"
--#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "禁止 telnet 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
++
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
-+msgstr "非保留端口(> 1024)"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
-+msgstr "选择端口"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "允许应用程序/用户角色绑定到高于 1024 的任何 udp 端口"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP 端口</b>"
++msgstr ""
 +
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "输入应用程序或用户角色要连接的网络"
--#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "禁止 tftpd 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:1958
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
++
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"输入用逗号分开的应用程序/用户角色要绑定的 tcp 端口或者端口范围列表。示例:"
-+"612, 650-660"
--#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "禁止 transproxy 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:2111
++
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
++
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
++msgstr ""
++
++#: ../gui/polgen.glade:2305
++msgid "label114"
++msgstr ""
++
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
 +msgstr ""
-+"输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
-+"612, 650-660"
--#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "禁止 udev 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "选择常见的应用程序特征"
 +
-+#: ../gui/polgen.glade:2202
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
-+msgstr "写入 syslog 消息\t"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2221
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "在 /tmp 目录中创建/操作临时文件的应用程序"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2240
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
-+msgstr "使用 PAM 认证"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2259
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
-+msgstr "使用 nsswitch 或者 getpw* 调用"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2278
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
-+msgstr "使用 dbus"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2297
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
-+msgstr "发送审计信息"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2316
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
-+msgstr "与终端互动"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2335
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
-+msgstr "发送电子邮件"
++msgstr ""
 +
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "选择受限应用程序管理的文件/目录"
--#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "禁止 uml 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:2607
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
++
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"添加应用程序需要“写入”的文件/目录。Pid 文件、日志文件、/var/lib 文件..."
--#~ msgid ""
--#~ "Allow xinetd to run unconfined, including any services it starts that do "
--#~ "not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "允许 xinetd 不加限定地运行,包括它启动的服务,如果没有显式定义域转换的话"
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "选择应用程序使用的布尔"
--#~ msgid ""
--#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
--#~ "script that does not have a domain transition explicitly defined"
--#~ msgstr ""
--#~ "允许 rc 脚本不加限定地运行,包括 rc 脚本启动的任何守护进程,如果没有显式定"
--#~ "义域转换的话"
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "添加/删除用于有限应用程序/用户的布尔"
--#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "允许 rpm 不受限地运行"
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "选择在其中创建策略文件的目录"
--#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr "允许高优先级程序如 hotplug 和 insmod 不受限地运行"
-+#: ../gui/polgen.glade:2882
++
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
++
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
++
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
++
++#: ../gui/polgen.glade:3097
 +msgid "Policy Directory"
-+msgstr "策略目录"
--#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "禁止 updfstab 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "生成的策略文件"
--#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "禁止 uptimed 守护进程的 SELinux 保护"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"这个工具将产生下列:\n"
-+"类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
-+"以根用户身份执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
-+"使用 semange 或者 useradd 将 Linux 用户与用户角色匹配。\n"
-+"现在您可以先将机器置于允许模式(setenforce 0)。\n"
-+"运行/重新启动应用程序以产生 avc 消息。\n"
-+"然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
--#~ msgid ""
--#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
--#~ "only staff_r can do so"
--#~ msgstr ""
--#~ "允许 user_r 通过 su, sudo 或 userhelper 获得 sysadm_r。否则,只有 staff_r "
--#~ "可以这样做"
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
 +msgstr ""
-+"这个工具将产生下列:\n"
-+"类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
-+"\n"
-+"执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
-+"现在您可以先将机器置于允许模式(setenforce 0)。\n"
-+"运行/重新启动应用程序以产生 avc 消息。\n"
-+"然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
 +
-+#: ../gui/polgen.glade:3127
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
-+msgstr "添加布尔对话"
++msgstr ""
 +
-+#: ../gui/polgen.glade:3200
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
-+msgstr "布尔名"
++msgstr ""
 +
-+#: ../gui/polgengui.py:177
++#: ../gui/polgengui.py:261
 +msgid "Role"
-+msgstr "角色"
++msgstr ""
 +
-+#: ../gui/polgengui.py:184
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
-+msgstr "现有用户(_U)"
++msgstr ""
 +
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
-+msgstr "应用程序"
++msgstr ""
 +
-+#: ../gui/polgengui.py:269
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
-+msgstr "%s 必须是一个目录"
++msgstr ""
 +
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
-+msgstr "您必需选择一个用户"
++msgstr ""
 +
-+#: ../gui/polgengui.py:453
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
-+msgstr "选择要限制的可执行程序"
++msgstr ""
 +
-+#: ../gui/polgengui.py:464
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
-+msgstr "选择要限制的 init 脚本"
++msgstr ""
 +
-+#: ../gui/polgengui.py:474
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
-+msgstr "选择受限应用程序创建或写入的文件"
++msgstr ""
 +
-+#: ../gui/polgengui.py:481
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "选择受限应用程序拥有并写入的目录"
++msgstr ""
 +
-+#: ../gui/polgengui.py:541
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
-+msgstr "选择在其中创建策略文件的目录"
--#~ msgid "Allow users to execute the mount command"
--#~ msgstr "允许用户执行 mount 命令"
-+#: ../gui/polgengui.py:554
++msgstr ""
++
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"在当前策略中已经定义了类型 %s_t。\n"
-+"您想要继续吗?"
--#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "允许普通用户直接访问鼠标(仅限 X 服务器)"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
++
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
-+msgstr "验证名称"
--#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "允许用户运行 dmesg 命令"
-+#: ../gui/polgengui.py:558
++msgstr ""
++
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+"在当前策略中已经定义了模块 %s.pp。\n"
-+"您想要继续吗?"
--#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr "允许用户控制网络接口(还需要 USERCTL=true)"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "您必需输入名称"
--#~ msgid "Allow normal user to execute ping"
--#~ msgstr "允许普通用户执行 ping"
-+#: ../gui/polgengui.py:610
++
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
++
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
-+msgstr "您必需指定一个可执行程序位置"
--#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "允许用户读写无扩展属性的文件(FAT, CDROM, FLOPPY)"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
++msgstr ""
++
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
-+msgstr "配置 SELinux"
--#~ msgid "Allow users to rw usb devices"
--#~ msgstr "允许用户读写 usb 设备"
-+#: ../gui/polgen.py:174
++msgstr ""
++
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
++
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "端口必需是介于 1 和 %d 之间的数字或者范围"
--#~ msgid ""
--#~ "Allow users to run TCP servers (bind to ports and accept connection from "
--#~ "the same domain and outside users)  disabling this forces FTP passive "
--#~ "mode and may change other protocols"
--#~ msgstr ""
--#~ "允许用户运行 TCP 服务(绑定到端口,接受域内部和外部用户的连接)。禁止这一项"
--#~ "将强迫 FTP 使用被动模式,还可能影响其他协议"
-+#: ../gui/polgen.py:204
++msgstr ""
++
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
-+msgstr "必需为受限的进程/用户输入名称"
--#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "允许用户探测 tty 文件"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER 类型不允许使用可执行程序"
--#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "禁止 uucpd 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "只有守护进程才可以使用 init 脚本"
--#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "禁止 vmware 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:306
++msgstr ""
++
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
++msgstr ""
++
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
++
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
++
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog 必需是布尔值"
--#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "禁止 watchdog 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:327
++msgstr ""
++
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
++
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
-+msgstr "USER 类型自动得到一个 tmp 类型"
--#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "禁止 winbind 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:729
++msgstr ""
++
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
-+msgstr "必须输入受限进程的可执行程序路径"
--#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "禁止 xdm 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:848
++msgstr ""
++
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
-+msgstr "打印强制文件"
--#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "允许通过 xdm 登录为 sysadm_r:sysadm_t"
-+#: ../gui/polgen.py:849
++msgstr ""
++
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
-+msgstr "接口文件"
--#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "禁止 xen 守护进程的 SELinux 保护"
-+#: ../gui/polgen.py:850
++msgstr ""
++
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
-+msgstr "文件上下文定义"
--#~ msgid "XEN"
--#~ msgstr "XEN"
-+#: ../gui/polgen.py:851
++msgstr ""
++
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
-+msgstr "建立脚本"
--#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "允许 xen 读写物理磁盘设备"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
++msgstr ""
++
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
++
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
++
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "网络端口"
--#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "禁止 xfs 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux 端口\n"
-+"类型"
--#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "禁止 xen 控制程序的 SELinux 保护"
++
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "协议"
--#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "禁止 ypbind 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"级别"
--#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "禁止 NIS Password 守护进程的 SELinux 保护"
++
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "端口"
++msgstr ""
 +
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "端口号 \"%s\" 是无效的。 0 < PORT_NUMBER < 65536 "
++msgstr ""
 +
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "列出视图"
++msgstr ""
 +
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "分组视图"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
@@ -283248,26 +233862,26 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreut
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux 服务保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "禁用 acct 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "管理"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "允许所有守护进程将内存转储文件写到 /"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "允许所有守护进程使用未分配的 tty"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
@@ -283276,146 +233890,119 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreut
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "用户权限"
--#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "禁止 ypserv 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许 gadmin SELinux 用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "禁止 NIS Transfer 守护进程的 SELinux 保护"
++msgstr ""
++
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许 guest SELinux 用户执行主目录或 /tmp 中的文件"
--#~ msgid ""
--#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr "允许 SELinux webadm 用户管理非特权用户主目录"
++msgstr ""
++
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "内存保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "允许 java 栈可执行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "挂载"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "允许 mount 挂载任何文件"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "允许 mount 挂载任何目录"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "允许 mplayer 栈可执行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "允许 ssh 运行 ssh-keysign"
--#~ msgid ""
--#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr "允许 SELinux webadm 用户读非特权用户主目录"
++msgstr ""
++
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许 staff SELinux 用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "您确定要删除 %s '%s'吗?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许 sysadm SELinux 用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Delete %s"
--#~ msgstr "删除 %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+"允许 unconfined(未作限定的)SELinux 用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Add %s"
--#~ msgstr "添加 %s"
++
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "网络配置"
--#~ msgid "Modify %s"
--#~ msgstr "变更 %s"
++msgstr ""
++
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "允许未标记的封包在网络中传播"
--#~ msgid "Permissive"
--#~ msgstr "允许"
++msgstr ""
++
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许SELinux 一般用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Enforcing"
--#~ msgstr "强制"
++msgstr ""
++
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "允许未作限定的类型动态转换到 unconfined_execmem"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "数据库"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "允许用户连接到 mysql 套接字"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "允许用户连接到 postgres 套接字"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "X 服务器"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "允许用户写入 X 共享内存"
--#~ msgid "Disabled"
--#~ msgstr "禁用"
++msgstr ""
++
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr "允许 xguest SELinux 用户帐户执行主目录或 /tmp 中的文件"
--#~ msgid "Status"
--#~ msgstr "状态"
++msgstr ""
++
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "允许守护进程访问 NIS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
@@ -283423,1085 +234010,955 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreut
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "网站应用程序"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "转换 staff SELinux 用户到浏览器域"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "转换 sysadm SELinux 用户到浏览器域"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "转换 user(一般用户)SELinux 用户到浏览器域"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "转换 xguest SELinux 用户到浏览器域"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "允许 staff 浏览器写入个人目录"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "禁用 amanda 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "禁用 amavis 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "禁用 apmd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "禁用 arpwatch 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "禁用 auditd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "禁用 automount 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "禁用 avahi 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "禁用 bluetooth 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "禁用 canna 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "禁用 cardmgr 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "禁用集群服务器的 SELinux 保护"
--#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "改变策略类型将导致下次启动时对整个文件系统重新标记。重新标记需要很长时间,"
--#~ "取决于文件系统规模。仍要继续吗?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"允许 cdrecord 读取各种内容。nfs, samba, 可移动存储,用户临时文件和不可信任的"
-+"内容"
--#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
--#~ msgstr ""
--#~ "禁用 SELinux 需要重启。不推荐这样做。如果您只想弄清是不是 SELinux 造成了系"
--#~ "统的问题,可以切换到允许模式(permissive),这样只会记录错误,而不会强制施"
--#~ "行 SELinux 策略。允许模式不需要重启。仍要继续吗?"
++
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "禁用 ciped 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
-+msgstr "禁用 clamd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
-+msgstr "禁用 clamscan 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
-+msgstr "禁用 clvmd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
-+msgstr "禁用 comsat 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
-+msgstr "禁用 courier 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "禁用 cpucontrol 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "禁用 cpuspeed 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
-+msgstr "Cron 计划任务"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
-+msgstr "禁用 crond 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
-+msgstr "打印"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "禁止 cupsd 后端服务器的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "禁止 cupsd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "禁止 cupsd_lpd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
-+msgstr "CVS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
-+msgstr "禁止 cvs 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "禁止 cyrus 守护进程的 SELinux 保护<"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "禁止 dbskkd 守护进程的 SELinux 保护<"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "禁止 dbusd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
-+msgstr "禁止 dccd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
-+msgstr "禁止 dccifd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
-+msgstr "禁止 dccm 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
-+msgstr "禁止 ddt 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "禁止 devfsd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "禁止 dhcpc 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "禁止 dhcpd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
-+msgstr "禁止 dictd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
-+msgstr "允许 sysadm_t 直接启动守护进程"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
-+msgstr "禁止 Evolution 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
-+msgstr "游戏"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
-+msgstr "禁止游戏的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
-+msgstr "禁止网页浏览器的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
-+msgstr "禁止 Thunderbird 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
-+msgstr "禁止 distccd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "禁止 dmesg 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "禁止 dnsmasq 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "禁止 dovecot 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "禁止 entropyd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
-+msgstr "禁止 fetchmail 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "禁止 fingerd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "禁止 freshclam 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "禁止 fsdaemon 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
-+msgstr "禁止 gpm 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
-+msgstr "NFS"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
-+msgstr "禁止 gss 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
-+msgstr "禁止 Hal 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
-+msgstr "兼容性"
--#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
--#~ msgstr ""
--#~ "启用 SELinux 将导致下次启动时对整个文件系统重新标记。重新标记需要很长时"
--#~ "间,取决于文件系统规模。仍要继续吗?"
++msgstr ""
++
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
-+msgstr "不审计那些与安全无关的已知错误"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
-+msgstr "禁止 hostname 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "禁止 hotplug 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
-+msgstr "禁止 howl 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "禁止 cups hplip 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "禁止 httpd 日志循环的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
-+msgstr "HTTPD 服务"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
-+msgstr "禁止 http suexec 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "禁止 hwclock 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
-+msgstr "禁止 i18n 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "禁止 imazesrv 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "禁止 inetd 子守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
-+msgstr "禁止 inetd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
-+msgstr "禁止 innd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
-+msgstr "禁止 iptables 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
-+msgstr "禁止 ircd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "禁止 irqbalance 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "禁止 iscsi 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "禁止 jabberd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
-+msgstr "Kerberos"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "禁止 kadmind 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
-+msgstr "禁止 klogd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "禁止 krb5kdc 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "禁止 ktalk 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "禁止 kudzu 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
-+msgstr "禁止 locate 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
-+msgstr "禁止 lpd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "禁止 lrrd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
-+msgstr "禁止 lvm 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
-+msgstr "禁止 mailman 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
-+msgstr "允许 evolution 和 thunderbird 读用户文件"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "禁止 mdadm 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
-+msgstr "禁止 monopd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
-+msgstr "允许 mozilla 浏览器读用户文件"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "禁止 mrtg 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "禁止 mysqld 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
-+msgstr "禁止 nagios 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
-+msgstr "名字服务"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
-+msgstr "禁止 named 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "禁止 neesusd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
-+msgstr "禁止 NetworkManager 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "禁止 nfsd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
-+msgstr "Samba"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "禁止 nmbd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "禁止 nrpe 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
-+msgstr "禁止 nscd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
-+msgstr "禁止 nsd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "禁止 ntpd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
-+msgstr "禁止 oddjob 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "禁止 oddjob_mkhomedir 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "禁止 openvpn 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
-+msgstr "禁止 pam 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
-+msgstr "禁止 pegasus 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
-+msgstr "禁止 perdition 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
-+msgstr "禁止 portmap 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
-+msgstr "禁止 portslave 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
-+msgstr "禁止 postfix 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "禁止 postgresql 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
-+msgstr "pppd"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
-+msgstr "允许 pppd 以普通用户运行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
-+msgstr "禁止 pptp 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
-+msgstr "禁止 prelink 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "禁止 privoxy 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
-+msgstr "禁止 ptal 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
-+msgstr "禁止 pxe 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
-+msgstr "禁止 pyzord 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
-+msgstr "禁止 quota 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "禁止 radiusd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
-+msgstr "禁止 radvd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
-+msgstr "禁止 rdisc 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
-+msgstr "禁止 readahead 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "允许程序读非标准位置(default_t)的文件"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
-+msgstr "禁止 restorecond 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "禁止 rhgb 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
-+msgstr "禁止 ricci 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "禁止 ricci_modclusterd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "禁止 rlogind 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "禁止 rpcd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
-+msgstr "禁止 rshd 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
-+msgstr "rsync"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
-+msgstr "禁止 rsync 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "允许 ssh 从 inetd 运行而非作为守护进程"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
-+msgstr "允许 Samba 共享 nfs 目录"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
-+msgstr "SASL 认证服务器"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "允许 sasl 认证服务读取 /etc/shadow"
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>选择:</b>"
++msgstr ""
++
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr "允许 X 窗口服务器将内存映射为可写且可执行"
--#~ msgid "Add"
--#~ msgstr "添加"
++msgstr ""
++
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "禁止 saslauthd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "禁止 scannerdaemon 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "不允许转换到 sysadm_t, sudo 和 su 会受影响"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
-+msgstr "不允许任何进程加载内核模块"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "不允许任何进程修改内核 SELinux 策略"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "禁止 sendmail 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
-+msgstr "禁止 setrans 的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "禁止 setroubleshoot 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:174
 +msgid "Disable SELinux protection for slapd daemon"
-+msgstr "禁止 slapd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:175
 +msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "禁止 slrnpull 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:176
 +msgid "Disable SELinux protection for smbd daemon"
-+msgstr "禁止 smbd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:177
 +msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "禁止 snmpd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:178
 +msgid "Disable SELinux protection for snort daemon"
-+msgstr "禁止 snort 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:179
 +msgid "Disable SELinux protection for soundd daemon"
-+msgstr "禁止 sounded 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:180
 +msgid "Disable SELinux protection for sound daemon"
-+msgstr "禁止 sound 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
 +msgid "Spam Protection"
-+msgstr "垃圾邮件保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:181
 +msgid "Disable SELinux protection for spamd daemon"
-+msgstr "禁止 spamd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:182
 +msgid "Allow spamd to access home directories"
-+msgstr "允许 spamd 访问用户个人目录"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:183
 +msgid "Allow Spam Assassin daemon network access"
-+msgstr "允许 Spam Assasin 守护进程访问网络"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:184
 +msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "禁止 speedmgmt 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
 +msgid "Squid"
-+msgstr "Squid"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:185
 +msgid "Allow squid daemon to connect to the network"
-+msgstr "允许 squid 守护进程连接到网络"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:186
 +msgid "Disable SELinux protection for squid daemon"
-+msgstr "禁止 squid 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:187
 +msgid "Disable SELinux protection for ssh daemon"
-+msgstr "禁止 ssh 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:188
 +msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "允许通过 ssh 登录为 sysadm_r:sysadm_t"
--#~ msgid "Add File Context"
--#~ msgstr "添加文件上下文"
++msgstr ""
++
 +#: ../gui/selinux.tbl:189
 +msgid ""
 +"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
 +"bashrc)"
-+msgstr "允许 staff_r 用户搜索 sysadm 个人目录并读取文件(如 ~/.bashrc)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
 +msgid "Universal SSL tunnel"
-+msgstr "全局的 SSL 隧道"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:190
 +msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "禁止 stunnel 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:191
 +msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "允许 stunnel 守护进程在 xinetd 之外独立运行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:192
 +msgid "Disable SELinux protection for swat daemon"
-+msgstr "禁止 swat 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:193
 +msgid "Disable SELinux protection for sxid daemon"
-+msgstr "禁止 sxid 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:194
 +msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "禁止 syslogd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:195
 +msgid "Disable SELinux protection for system cron jobs"
-+msgstr "禁止系统计划任务(cron)的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:196
 +msgid "Disable SELinux protection for tcp daemon"
-+msgstr "禁止 tcp 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
-+msgstr "禁止 telnet 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "禁止 tftpd 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "禁止 transproxy 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
-+msgstr "禁止 udev 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
-+msgstr "禁止 uml 守护进程的 SELinux 保护"
--#~ msgid "Add Network Port"
--#~ msgstr "添加网络端口"
++msgstr ""
++
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+"允许 xinetd 不加限定地运行,包括它启动的服务,如果没有显式定义域转换的话"
--#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "添加 SELinux 登录映射"
++
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+"允许 rc 脚本不加限定地运行,包括 rc 脚本启动的任何守护进程,如果没有显式定义"
-+"域转换的话"
--#~ msgid "Add SELinux Network Ports"
--#~ msgstr "添加 SELinux 网络端口"
++
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
-+msgstr "允许 rpm 不受限地运行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "允许高优先级程序如 hotplug 和 insmod 不受限地运行"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "禁止 updfstab 守护进程的 SELinux 保护"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "禁止 uptimed 守护进程的 SELinux 保护"
--#~ msgid "Add SELinux User"
--#~ msgstr "添加 SELinux 用户"
++msgstr ""
++
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+"允许 user_r 通过 su, sudo 或 userhelper 获得 sysadm_r。否则,只有 staff_r 可"
-+"以这样做"
--#~ msgid "Add SELinux User Mapping"
--#~ msgstr "添加 SELinux 用户映射"
++
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
-+msgstr "允许用户执行 mount 命令"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:210
 +msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "允许普通用户直接访问鼠标(仅限 X 服务器)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:211
 +msgid "Allow users to run the dmesg command"
-+msgstr "允许用户运行 dmesg 命令"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:212
 +msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr "允许用户控制网络接口(还需要 USERCTL=true)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:213
 +msgid "Allow normal user to execute ping"
-+msgstr "允许普通用户执行 ping"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:214
 +msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "允许用户读写无扩展属性的文件(FAT, CDROM, FLOPPY)"
++msgstr ""
 +
 +#: ../gui/selinux.tbl:215
 +msgid "Allow users to rw usb devices"
-+msgstr "允许用户读写 usb 设备"
--#~ msgid "Add Translation"
--#~ msgstr "添加转换"
++msgstr ""
++
 +#: ../gui/selinux.tbl:216
 +msgid ""
 +"Allow users to run TCP servers (bind to ports and accept connection from the "
 +"same domain and outside users)  disabling this forces FTP passive mode and "
 +"may change other protocols"
 +msgstr ""
-+"允许用户运行 TCP 服务(绑定到端口,接受域内部和外部用户的连接)。禁止这一项将强"
-+"迫 FTP 使用被动模式,还可能影响其他协议"
--#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++
 +#: ../gui/selinux.tbl:217
 +msgid "Allow user to stat ttyfiles"
-+msgstr "允许用户探测 tty 文件"
--#~ msgid "Current Enforcing Mode"
--#~ msgstr "当前应用模式"
++msgstr ""
++
 +#: ../gui/selinux.tbl:218
 +msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "禁止 uucpd 守护进程的 SELinux 保护"
--#~ msgid "Delete File Context"
--#~ msgstr "删除文件上下文"
++msgstr ""
++
 +#: ../gui/selinux.tbl:219
 +msgid "Disable SELinux protection for vmware daemon"
-+msgstr "禁止 vmware 守护进程的 SELinux 保护"
--#~ msgid "Delete Network Port"
--#~ msgstr "删除网络端口"
++msgstr ""
++
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "禁止 watchdog 守护进程的 SELinux 保护"
--#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "删除 SELinux 用户映射"
++msgstr ""
++
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
-+msgstr "禁止 winbind 守护进程的 SELinux 保护"
--#~ msgid "Delete Translation"
--#~ msgstr "删除转换"
++msgstr ""
++
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
-+msgstr "禁止 xdm 守护进程的 SELinux 保护"
--#~ msgid ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
--#~ msgstr ""
--#~ "Disabled\n"
--#~ "Permissive\n"
--#~ "Enforcing\n"
++msgstr ""
++
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "允许通过 xdm 登录为 sysadm_r:sysadm_t"
--#~ msgid "Edit Network Port"
--#~ msgstr "编辑网络端口"
++msgstr ""
++
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
-+msgstr "禁止 xen 守护进程的 SELinux 保护"
--#~ msgid ""
--#~ "Enable/Disable additional audit rules, that are normally not reported in "
--#~ "the log files."
--#~ msgstr "启用/禁用附加的审计规则。这些规则平时不会出现在日志文件中。"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
-+msgstr "XEN"
--#~ msgid "File Specification"
--#~ msgstr "文件约束"
++msgstr ""
++
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
-+msgstr "允许 xen 读写物理磁盘设备"
--#~ msgid "File Type"
--#~ msgstr "文件类型"
++msgstr ""
++
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
-+msgstr "禁止 xfs 守护进程的 SELinux 保护"
--#~ msgid "Filter"
--#~ msgstr "过滤器"
++msgstr ""
++
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
-+msgstr "禁止 xen 控制程序的 SELinux 保护"
--#~ msgid "Generate new policy module"
--#~ msgstr "生成新的策略模块"
++msgstr ""
++
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "禁止 ypbind 守护进程的 SELinux 保护"
--#~ msgid "Load policy module"
--#~ msgstr "加载策略模块"
++msgstr ""
++
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "禁止 NIS Password 守护进程的 SELinux 保护"
--#~ msgid "Lockdown..."
--#~ msgstr "锁定......"
++msgstr ""
++
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "禁止 ypserv 守护进程的 SELinux 保护"
--#~ msgid "MLS"
--#~ msgstr "MLS"
++msgstr ""
++
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "禁止 NIS Transfer 守护进程的 SELinux 保护"
--#~ msgid "Modify File Context"
--#~ msgstr "修改文件上下文"
++msgstr ""
++
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr "允许 SELinux webadm 用户管理非特权用户主目录"
--#~ msgid "Modify SELinux User"
--#~ msgstr "修改 SELinux 用户"
++msgstr ""
++
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "允许 SELinux webadm 用户读非特权用户主目录"
--#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "修改 SELinux 用户映射"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "您确定要删除 %s '%s'吗?"
--#~ msgid "Modify Translation"
--#~ msgstr "修改转换"
++msgstr ""
++
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
-+msgstr "删除 %s"
--#~ msgid "Relabel on next reboot."
--#~ msgstr "下次启动时重新标记。"
++msgstr ""
++
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
-+msgstr "添加 %s"
--#~ msgid "Remove loadable policy module"
--#~ msgstr "移除活动的策略模块"
++msgstr ""
++
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
-+msgstr "变更 %s"
--#~ msgid "Revert boolean setting to system default"
--#~ msgstr "将布尔设置转换为系统默认"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
++msgstr ""
++
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
-+msgstr "允许"
--#~ msgid "Run booleans lockdown wizard"
--#~ msgstr "运行布尔值锁定向导"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
++msgstr ""
++
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
-+msgstr "强制"
--#~ msgid "SELinux Administration"
--#~ msgstr "SELinux 维护"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "禁用"
--#~ msgid ""
--#~ "SELinux MLS/MCS\n"
--#~ "Level"
--#~ msgstr ""
--#~ "SELinux MLS/MCS\n"
--#~ "级别"
++msgstr ""
++
 +#: ../gui/statusPage.py:94
 +msgid "Status"
-+msgstr "状态"
--#~ msgid "SELinux Type"
--#~ msgstr "SELinux 类型"
++msgstr ""
++
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"改变策略类型将导致下次启动时对整个文件系统重新标记。重新标记需要很长时间,取"
-+"决于文件系统规模。仍要继续吗?"
--#~ msgid "Select Management Object"
--#~ msgstr "选择管理对象"
++
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -284511,84 +234968,47 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreut
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+"禁用 SELinux 需要重启。不推荐这样做。如果您只想弄清是不是 SELinux 造成了系统"
-+"的问题,可以切换到允许模式(permissive),这样只会记录错误,而不会强制施行 "
-+"SELinux 策略。允许模式不需要重启。仍要继续吗?"
--#~ msgid ""
--#~ "Select if you wish to relabel then entire file system on next reboot.  "
--#~ "Relabeling can take a very long time, depending on the size of the "
--#~ "system.  If you are changing policy types or going from disabled to "
--#~ "enforcing, a relabel is required."
--#~ msgstr ""
--#~ "如果您希望在下次重启过程中对整个文件系统重新标记,选择此项。重新标记可能花"
--#~ "费很长时间,这与文件系统规模有关。如果您改变了策略类型,或是从禁用切换到其"
--#~ "他模式,就应当重新标记。"
++
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+"启用 SELinux 将导致下次启动时对整个文件系统重新标记。重新标记需要很长时间,取"
-+"决于文件系统规模。仍要继续吗?"
--#~ msgid "System Default Enforcing Mode"
--#~ msgstr "系统默认的应用模式"
++
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
-+msgstr "system-config-selinux"
--#~ msgid "System Default Policy Type: "
--#~ msgstr "系统默认的策略类型:"
++msgstr ""
++
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
--#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "在自定义布尔和所有布尔间切换"
++
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
-+msgstr "添加 SELinux 登录映射"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
-+msgstr "添加 SELinux 网络端口"
++msgstr ""
 +
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
-+msgstr "SELinux 类型"
--#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "在自定义端口和所有端口间切换"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"级别"
--#~ msgid "Toggle between all and customized file context"
--#~ msgstr "在自定义文件环境和所有文件环境间切换"
-+#: ../gui/system-config-selinux.glade:814
++
++#: ../gui/system-config-selinux.glade:622
 +msgid "File Specification"
-+msgstr "文件约束"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:842
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
-+msgstr "文件类型"
--#~ msgid "_Delete"
--#~ msgstr "删除 (_D)"
-+#: ../gui/system-config-selinux.glade:919
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -284599,2615 +235019,3013 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_CN.po policycoreut
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+"所有文件\n"
-+"常规文件\n"
-+"目录\n"
-+"字符设备\n"
-+"块设备\n"
-+"套接字\n"
-+"符号链接\n"
-+"命名管道\n"
 +
-+#: ../gui/system-config-selinux.glade:965
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
-+msgstr "MLS"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1029
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
-+msgstr "添加 SELinux 用户"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1271
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
-+msgstr "SELinux 维护"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1314
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
-+msgstr "添加"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1336
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
-+msgstr "属性 (_P)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1358
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
-+msgstr "删除 (_D)"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1449
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
-+msgstr "选择管理对象"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1466
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
-+msgstr "<b>选择:</b>"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1519
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
-+msgstr "系统默认的应用模式"
--#~ msgid "_Properties"
--#~ msgstr "属性 (_P)"
-+#: ../gui/system-config-selinux.glade:1547
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
 +
-+#: ../gui/system-config-selinux.glade:1566
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
-+msgstr "当前应用模式"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1611
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
-+msgstr "系统默认的策略类型:"
--#~ msgid ""
--#~ "all files\n"
--#~ "regular file\n"
--#~ "directory\n"
--#~ "character device\n"
--#~ "block device\n"
--#~ "socket\n"
--#~ "symbolic link\n"
--#~ "named pipe\n"
--#~ msgstr ""
--#~ "所有文件\n"
--#~ "常规文件\n"
--#~ "目录\n"
--#~ "字符设备\n"
--#~ "块设备\n"
--#~ "套接字\n"
--#~ "符号链接\n"
--#~ "命名管道\n"
-+#: ../gui/system-config-selinux.glade:1656
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+"如果您希望在下次重启过程中对整个文件系统重新标记,选择此项。重新标记可能花费"
-+"很长时间,这与文件系统规模有关。如果您改变了策略类型,或是从禁用切换到其他模"
-+"式,就应当重新标记。"
 +
-+#: ../gui/system-config-selinux.glade:1702
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
-+msgstr "下次启动时重新标记。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1754
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
-+msgstr "label37"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1791
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
-+msgstr "将布尔设置转换为系统默认"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1807
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
-+msgstr "在自定义布尔和所有布尔间切换"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1825
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
-+msgstr "运行布尔值锁定向导"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1826
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
-+msgstr "锁定......"
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
-+msgstr "过滤器"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1945
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
-+msgstr "label50"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1982
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
-+msgstr "添加文件上下文"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:1998
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
-+msgstr "修改文件上下文"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2014
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
-+msgstr "删除文件上下文"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2030
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
-+msgstr "在自定义文件环境和所有文件环境间切换"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2150
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
-+msgstr "label38"
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/system-config-selinux.glade:2187
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
-+msgstr "添加 SELinux 用户映射"
--#~ msgid ""
--#~ "tcp\n"
--#~ "udp"
--#~ msgstr ""
--#~ "tcp\n"
--#~ "udp"
-+#: ../gui/system-config-selinux.glade:2203
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
-+msgstr "修改 SELinux 用户映射"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2219
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
-+msgstr "删除 SELinux 用户映射"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2337
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
-+msgstr "label39"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2374
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
-+msgstr "添加用户"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2390
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
-+msgstr "修改用户"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2406
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
-+msgstr "删除用户"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2524
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "添加转换"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "修改转换"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "删除转换"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2748
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
-+msgstr "添加网络端口"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2764
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
-+msgstr "编辑网络端口"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2780
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
-+msgstr "删除网络端口"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
-+msgstr "在自定义端口和所有端口间切换"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2954
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
-+msgstr "label42"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:2991
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
-+msgstr "生成新的策略模块"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3007
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
-+msgstr "加载策略模块"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3023
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
-+msgstr "移除活动的策略模块"
--#~ msgid "Sensitvity Level"
--#~ msgstr "敏感度级别"
-+#: ../gui/system-config-selinux.glade:3059
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
-+msgstr "启用/禁用附加的审计规则。这些规则平时不会出现在日志文件中。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3179
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
-+msgstr "label44"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3216
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
-+msgstr "将进程模式改为 permissive。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3234
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
-+msgstr "将进程模式改为 enforcing。"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3326
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
-+msgstr "进程域"
++msgstr ""
 +
-+#: ../gui/system-config-selinux.glade:3354
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
-+msgstr "label59"
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "SELinux 用户 '%s' 是必需的"
++msgstr ""
++
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
-+msgstr "SELinux 用户 '%s' 是必需的"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_TW.po policycoreutils-2.0.85/po/zh_TW.po
---- nsapolicycoreutils/po/zh_TW.po     2011-02-17 15:11:25.674725801 -0500
-+++ policycoreutils-2.0.85/po/zh_TW.po 2011-02-18 16:03:41.453976326 -0500
-@@ -1,31 +1,51 @@
- # translation of policycoreutils.HEAD.po to Traditional Chinese
-+# translation of policycoreutils.HEAD.po to
- # translation of zh_TW.po to
++msgstr ""
+diff --git a/policycoreutils/po/vi.po b/policycoreutils/po/vi.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/vi.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/po/zh_CN.po b/policycoreutils/po/zh_CN.po
+index 07108d2..687bef6 100644
+--- a/policycoreutils/po/zh_CN.po
++++ b/policycoreutils/po/zh_CN.po
+@@ -1,22 +1,24 @@
+-# translation of policycoreutils.HEAD.po to Simplified Chinese
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2006.
  #
- # Chester Cheng <ccheng@redhat.com>, 2006.
- # Chester Cheng <ccheng@brisbane.redhat.com>, 2006.
--# Terry Chuang <tchuang@redhat.com>, 2008.
-+# Terry Chuang <tchuang@redhat.com>, 2008, 2009, 2010.
-+# Terry Chuang <tchuang at redhat>, 2010.
++# Translators:
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2006.
++# Leah Liu <lliu@redhat.com>, 2008, 2009, 2010.
+ # Tony Fu <tfu@redhat.com>, 2006.
+-# Leah Liu <lliu@redhat.com>, 2008.
  msgid ""
  msgstr ""
- "Project-Id-Version: policycoreutils.HEAD\n"
+-"Project-Id-Version: policycoreutils.HEAD\n"
++"Project-Id-Version: Policycoreutils\n"
  "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
--"PO-Revision-Date: 2008-09-09 11:34+1000\n"
--"Last-Translator: Terry Chuang <tchuang@redhat.com>\n"
--"Language-Team: Traditional Chinese <zh@li.org>\n"
-+"POT-Creation-Date: 2010-07-27 10:03-0400\n"
-+"PO-Revision-Date: 2010-09-08 19:58+0800\n"
-+"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
-+"Language-Team: Traditional Chinese <zh_TW@li.org>\n"
-+"Language: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-09-11 16:22+1000\n"
+-"Last-Translator: Leah Liu <lliu@redhat.com>\n"
+-"Language-Team: Simplified Chinese <zh@li.org>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Chinese (China) <trans-zh_cn@lists.fedoraproject.org>\n"
++"Language: zh_CN\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
  "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: KBabel 1.11.4\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=1; plural=0\n"
  
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
-+msgstr "在圖形話設定中配置 SELinux"
-+
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
-+msgstr "SELinux 管理"
-+
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
-+msgstr "產生 SELinux  方針模組"
-+
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
-+msgstr "SELinux 方針產生工具"
-+
  #: ../run_init/run_init.c:67
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
- "  where: <script> is the name of the init script to run,\n"
- "         <args ...> are the arguments to that script."
- msgstr ""
--"USAGE: run_init <script> <args ...>\n"
-+"使用方法:run_init <script> <args ...>\n"
- "  其中:<script> 是要執行的 init 程序檔,\n"
- "         <args ...> 是程序檔的參數。"
-@@ -81,7 +101,7 @@
- #: ../run_init/run_init.c:405 ../newrole/newrole.c:1321
- #, c-format
- msgid "Could not set exec context to %s.\n"
--msgstr "無法將 exec 內文設定至 %s。\n"
-+msgstr "無法將 exec context 設定為 %s。\n"
- #: ../audit2allow/audit2allow:217
- msgid "******************** IMPORTANT ***********************\n"
-@@ -89,7 +109,7 @@
- #: ../audit2allow/audit2allow:218
- msgid "To make this policy package active, execute:"
--msgstr "若要啟用此政策套件,請執行:"
-+msgstr "若要啟用此方針套件,請執行:"
- #: ../semanage/seobject.py:48
- msgid "Could not create semanage handle"
-@@ -97,20 +117,19 @@
- #: ../semanage/seobject.py:55
- msgid "SELinux policy is not managed or store cannot be accessed."
--msgstr "SELinux 政策並不受管理,或無法存取 store。"
-+msgstr "SELinux 方針並不受管理,或無法存取 store。"
- #: ../semanage/seobject.py:60
- msgid "Cannot read policy store."
--msgstr "無法讀取政策 store。"
-+msgstr "無法讀取方針 store。"
- #: ../semanage/seobject.py:65
- msgid "Could not establish semanage connection"
- msgstr "無法建立 semanage 連線"
+@@ -111,9 +113,8 @@ msgid "Could not establish semanage connection"
+ msgstr "无法创建 semanage 连接"
  
- #: ../semanage/seobject.py:70
+ #: ../semanage/seobject.py:245
 -#, fuzzy
  msgid "Could not test MLS enabled status"
--msgstr "無法為 %s 設定 MLS 範圍"
-+msgstr "無法測試啟用了 MLS 的狀態"
- #: ../semanage/seobject.py:142 ../semanage/seobject.py:146
- msgid "global"
-@@ -125,14 +144,15 @@
- msgid "Level"
- msgstr "等級"
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr "轉譯"
- #: ../semanage/seobject.py:247 ../semanage/seobject.py:261
- #, python-format
- msgid "Translations can not contain spaces '%s' "
--msgstr "轉譯不能包含空格「%s」"
-+msgstr "翻譯不能包括「%s」"
- #: ../semanage/seobject.py:250
- #, python-format
-@@ -142,12 +162,12 @@
- #: ../semanage/seobject.py:253
- #, python-format
- msgid "%s already defined in translations"
--msgstr "%s 已經在轉譯中定義"
-+msgstr "%s 已經在翻譯中定義"
- #: ../semanage/seobject.py:265
- #, python-format
- msgid "%s not defined in translations"
--msgstr "%s 在轉譯中未定義"
-+msgstr "%s 在翻譯中未定義"
+-msgstr "无法为 %s 设置 MLS 的范围"
++msgstr "无法测试 MLS 启用的状态"
  
- #: ../semanage/seobject.py:290
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
  msgid "Not yet implemented"
-@@ -155,7 +175,7 @@
+@@ -121,7 +122,7 @@ msgstr "还没有实施"
  
- #: ../semanage/seobject.py:294
+ #: ../semanage/seobject.py:255
  msgid "Semanage transaction already in progress"
 -msgstr ""
-+msgstr "Semanage 傳輸正在進行中"
++msgstr "Semanage 交易进行中"
  
- #: ../semanage/seobject.py:303
+ #: ../semanage/seobject.py:264
  msgid "Could not start semanage transaction"
-@@ -167,7 +187,7 @@
+@@ -133,53 +134,50 @@ msgstr "无法提交 semanage 交易"
  
- #: ../semanage/seobject.py:313
+ #: ../semanage/seobject.py:279
  msgid "Semanage transaction not in progress"
 -msgstr ""
-+msgstr "Semanage 傳輸非進行中"
++msgstr "Semanage 交易未进行"
  
- #: ../semanage/seobject.py:325
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
  msgid "Could not list SELinux modules"
-@@ -177,739 +197,743 @@
- msgid "Permissive Types"
- msgstr "寬鬆型"
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr "無法設定寬鬆型網域 %s(模組安裝失敗)"
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr "無法移除寬鬆型網域 %s(移除失敗)"
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr "無法為 %s 建立金鑰"
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
--msgstr "無法檢查 %s 的登入對映是否已經定義"
-+msgstr "無法檢查 %s 的登入對應是否已經定義"
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
--msgstr "%s 的登入對映已經定義"
-+msgstr "%s 的登入對應已經定義"
+ msgstr "无法列出 SELinux 模块"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr "Linux 群組 %s 不存在"
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr "Linux 使用者 %s 不存在"
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
--msgstr "無法為 %s 建立登入對映"
-+msgstr "無法為 %s 建立登入對應"
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr "無法為 %s 設定名稱"
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr "無法為 %s 設定 MLS 範圍"
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "模块名称"
++msgstr ""
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr "無法為 %s 設定 SELinux 使用者"
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "版本"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
--msgstr "無法為 %s 新增登入對映"
-+msgstr "無法為 %s 新增登入對應"
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "禁用"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr "新增 SELinux 使用者對映"
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "无法删除 permissive 域 %s(删除操作失败)"
++msgstr ""
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr "需要 seuser 或 serange"
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "无法删除 permissive 域 %s(删除操作失败)"
++msgstr ""
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
--msgstr "%s 的登入對映並未定義"
-+msgstr "%s 的登入對應並未定義"
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "无法删除 permissive 域 %s(删除操作失败)"
++msgstr ""
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr "無法為 %s 查詢 seuser"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
+ msgstr ""
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
--msgstr "無法為 %s 修改登入對映"
-+msgstr "無法為 %s 修改登入對應"
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "Permissive 类型"
++msgstr ""
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
--msgstr "%s 的登入對映定義在政策中,無法刪除"
-+msgstr "%s 的登入對應定義在方針中,無法刪除"
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "Permissive 类型"
++msgstr ""
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not delete login mapping for %s"
--msgstr "無法為 %s 刪除登入對映"
-+msgstr "無法為 %s 刪除登入對應"
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
--msgstr "無法列出登入對映"
-+msgstr "無法列出登入對應"
+@@ -278,15 +276,20 @@ msgid "Could not list login mappings"
+ msgstr "无法列出登录映射"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
 +#: ../gui/system-config-selinux.glade:100
  msgid "Login Name"
- msgstr "登錄名稱"
+ msgstr "登录名"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
 +#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
  msgid "SELinux User"
- msgstr "SELinux 使用者"
+ msgstr "SELinux 用户"
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
  msgid "MLS/MCS Range"
- msgstr "MLS/MCS 範圍"
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr "您必須為 %s 新增至少一個角色"
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
- msgstr "無法檢查 SELinux 使用者 %s 是否已經定義"
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr "SELinux 使用者 %s 已經定義"
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr "無法為 %s 建立 SELinux 使用者"
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
- #, python-format
- msgid "Could not add role %s for %s"
- msgstr "無法新增 %s 角色給 %s"
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
- #, python-format
- msgid "Could not set MLS level for %s"
- msgstr "無法為 %s 設定 MLS 等級"
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
- #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr "無法新增前綴 %s 到 %s"
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
- #, python-format
- msgid "Could not extract key for %s"
- msgstr "無法為 %s 擷取金鑰"
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
- #, python-format
- msgid "Could not add SELinux user %s"
- msgstr "無法新增 SELinux 使用者 %s"
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr "需要前綴、角色、等級或範圍"
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr "需要前綴或角色"
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
- #, python-format
- msgid "SELinux user %s is not defined"
- msgstr "SELinux 使用者 %s 未定義"
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
- #, python-format
- msgid "Could not query user for %s"
- msgstr "無法為 %s 查詢使用者"
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
- #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr "無法修改 SELinux 使用者 %s"
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
- #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
--msgstr "SELinux 使用者 %s 定義在政策中,無法刪除"
-+msgstr "SELinux 使用者 %s 定義在方針中,無法刪除"
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
- #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr "無法刪除 SELinux 使用者 %s"
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr "無法列出 SELinux 使用者"
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
- #, python-format
- msgid "Could not list roles for user %s"
- msgstr "無法列出使用者 %s 的角色"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr "標記"
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr "MLS/"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr "前綴字元"
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr "MCS 等級"
+ msgstr "MLS/MCS 范围"
  
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr "MCS 範圍"
+@@ -396,6 +399,7 @@ msgid "MCS Range"
+ msgstr "MCS 范围"
  
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
  msgid "SELinux Roles"
  msgstr "SELinux 角色"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr "需要 udp 或 tcp 通訊協定"
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr "需要連接埠"
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr "無法為 %s/%s 建立金鑰"
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr "需要類型"
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
- #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr "無法檢查連接埠 %s/%s 是否已經定義"
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
- #, python-format
- msgid "Port %s/%s already defined"
- msgstr "連接埠 %s/%s 已經定義"
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr "無法為 %s/%s 建立連接埠"
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
- #, python-format
- msgid "Could not create context for %s/%s"
--msgstr "無法為 %s/%s 建立內文"
-+msgstr "無法為 %s/%s 建立 context"
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
- #, python-format
- msgid "Could not set user in port context for %s/%s"
--msgstr "無法為 %s/%s 的連接埠內文中,設定使用者"
-+msgstr "無法為 %s/%s 的連接埠 context 中,設定使用者"
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
- #, python-format
- msgid "Could not set role in port context for %s/%s"
--msgstr "無法為 %s/%s 的連接埠內文中,設定角色"
-+msgstr "無法為 %s/%s 的連接埠 context 中,設定角色"
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
- #, python-format
- msgid "Could not set type in port context for %s/%s"
--msgstr "無法為 %s/%s 的連接埠內文中,設定類型"
-+msgstr "無法為 %s/%s 的連接埠 context 中,設定類型"
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
- #, python-format
- msgid "Could not set mls fields in port context for %s/%s"
--msgstr "無法為 %s/%s 的連接埠內文中,設定 mls 欄位"
-+msgstr "無法為 %s/%s 的連接埠 context 中,設定 mls 欄位"
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
- #, python-format
- msgid "Could not set port context for %s/%s"
--msgstr "無法為 %s/%s 設定連接埠內文"
-+msgstr "無法為 %s/%s 設定連接埠 context"
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr "無法新增連接埠 %s/%s"
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr "需要 setype 或 serange"
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr "需要 setype"
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr "連接埠 %s/%s 未定義"
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr "無法查詢連接埠 %s/%s"
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr "無法修改連接埠 %s/%s"
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr "無法列出連接埠"
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
- #, python-format
- msgid "Could not delete the port %s"
- msgstr "無法刪除連接埠 %s"
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
- #, python-format
- msgid "Port %s/%s is defined in policy, cannot be deleted"
--msgstr "連接埠 %s/%s 已經在政策中定義,無法刪除"
-+msgstr "連接埠 %s/%s 已經在方針中定義,無法刪除"
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
- #, python-format
- msgid "Could not delete port %s/%s"
- msgstr "無法刪除連接埠 %s/%s"
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr "無法列出連接埠"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr "SELinux 連接埠類型"
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -526,7 +530,7 @@ msgstr "SELinux 端口类型"
  msgid "Proto"
- msgstr "Proto"
+ msgstr "协议"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr "埠號"
+ msgstr "端口号"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
--#, fuzzy
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
- msgid "Node Address is required"
--msgstr "需要連接埠"
-+msgstr "需要節點位址"
+@@ -629,9 +633,8 @@ msgid "Could not delete addr %s"
+ msgstr "无法删除 addr %s"
  
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
+ #: ../semanage/seobject.py:1380
 -#, fuzzy
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
--msgstr "需要連接埠"
-+msgstr "需要網路遮罩"
+ msgid "Could not deleteall node mappings"
+-msgstr "无法为 %s 删除登录映射"
++msgstr ""
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
- msgid "Unknown or missing protocol"
--msgstr ""
-+msgstr "通訊協定不明或遺失"
+ #: ../semanage/seobject.py:1394
+ msgid "Could not list addrs"
+@@ -709,9 +712,8 @@ msgid "Could not delete interface %s"
+ msgstr "无法删除接口 %s"
  
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr "需要 SELinux 類型"
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "无法删除接口 %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr "無法為 %s 建立金鑰"
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -726,9 +728,9 @@ msgid "Context"
+ msgstr "上下文"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
+ #: ../semanage/seobject.py:1663
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
 +#, python-format
- msgid "Could not check if addr %s is defined"
--msgstr "無法檢查連接埠 %s/%s 是否已經定義"
-+msgstr "無法檢查 addr %s 是否已定義"
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s 的文件 context 已经被定义"
++msgstr ""
  
--#: ../semanage/seobject.py:1064
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1060
-+#, python-format
- msgid "Addr %s already defined"
--msgstr "連接埠 %s/%s 已經定義"
-+msgstr "Addr %s 已定義"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -736,9 +738,9 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
+ msgstr ""
  
--#: ../semanage/seobject.py:1068
+ #: ../semanage/seobject.py:1678
 -#, fuzzy, python-format
-+#: ../semanage/seobject.py:1064
 +#, python-format
- msgid "Could not create addr for %s"
--msgstr "無法為 %s 建立金鑰"
-+msgstr "無法為 %s 建立 addr"
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux用户 %s 不存在"
++msgstr ""
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1692
  #, python-format
- msgid "Could not create context for %s"
--msgstr "無法為 %s 建立內文"
-+msgstr "無法為 %s 建立 context"
+@@ -858,11 +860,10 @@ msgid ""
+ msgstr ""
  
--#: ../semanage/seobject.py:1077
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1073
-+#, python-format
msgid "Could not set mask for %s"
--msgstr "無法為 %s 設定名稱"
-+msgstr "無法為 %s 設定遮罩"
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
"SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux 文件上下文"
++msgstr ""
  
--#: ../semanage/seobject.py:1082
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1078
-+#, python-format
- msgid "Could not set user in addr context for %s"
--msgstr "無法為 %s 的檔案內文設定使用者"
-+msgstr "無法為 %s 的 addr context 設定使用者"
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -931,15 +932,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux 布尔值"
  
--#: ../semanage/seobject.py:1086
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1082
-+#, python-format
- msgid "Could not set role in addr context for %s"
--msgstr "無法為 %s 的檔案內文設定角色"
-+msgstr "無法為 %s 的 addr context 設定角色"
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "状态"
++msgstr ""
  
--#: ../semanage/seobject.py:1090
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1086
-+#, python-format
- msgid "Could not set type in addr context for %s"
--msgstr "無法為 %s 的檔案內文設定類型"
-+msgstr "無法為 %s 的 addr context 設定類型"
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+ msgstr ""
  
--#: ../semanage/seobject.py:1095
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1091
-+#, python-format
- msgid "Could not set mls fields in addr context for %s"
--msgstr "無法為 %s 的檔案內文設定 mls 欄位"
-+msgstr "無法為 %s 的 addr context 設定 mls 欄位"
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "描述"
  
--#: ../semanage/seobject.py:1099
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1095
-+#, python-format
- msgid "Could not set addr context for %s"
--msgstr "無法為 %s 設定檔案內文"
-+msgstr "無法為 %s 設定 addr context"
+@@ -1276,1649 +1277,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
  
--#: ../semanage/seobject.py:1103
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1099
-+#, python-format
- msgid "Could not add addr %s"
--msgstr "無法新增連接埠 %s/%s"
-+msgstr "無法新增 addr %s"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
+ msgid "Options Error %s "
+ msgstr "选项错误 %s "
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
-+#, python-format
- msgid "Addr %s is not defined"
--msgstr "連接埠 %s/%s 未定義"
-+msgstr "Addr %s 未定義"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "无法打开 %s:在非 MLS 机器上不支持的转换:%s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
++msgid "Boolean"
++msgstr ""
  
--#: ../semanage/seobject.py:1143
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1139
-+#, python-format
- msgid "Could not query addr %s"
--msgstr "無法查詢連接埠 %s/%s"
-+msgstr "無法查詢 addr %s"
+-#~ msgid "Level"
+-#~ msgstr "级别"
++#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
++msgid "all"
++msgstr ""
  
--#: ../semanage/seobject.py:1154
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1150
-+#, python-format
- msgid "Could not modify addr %s"
--msgstr "無法修改連接埠 %s/%s"
-+msgstr "無法修改 addr %s"
+-#~ msgid "Translation"
+-#~ msgstr "转换"
++#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
++msgid "Customized"
++msgstr ""
  
--#: ../semanage/seobject.py:1192
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1188
-+#, python-format
- msgid "Addr %s is defined in policy, cannot be deleted"
--msgstr "連接埠 %s/%s 已經在政策中定義,無法刪除"
-+msgstr "Addr %s 已經在方針中定義,無法刪除"
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "转换不能包括空格 '%s' "
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
++msgid "File Labeling"
++msgstr ""
  
--#: ../semanage/seobject.py:1196
--#, fuzzy, python-format
-+#: ../semanage/seobject.py:1192
-+#, python-format
- msgid "Could not delete addr %s"
--msgstr "無法刪除連接埠 %s/%s"
-+msgstr "無法刪除 addr %s"
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "无效级别 '%s' "
++#: ../gui/fcontextPage.py:74
++msgid ""
++"File\n"
++"Specification"
++msgstr ""
  
--#: ../semanage/seobject.py:1212
--#, fuzzy
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
--msgstr "無法列出連接埠"
-+msgstr "無法列出 addr"
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s 已经在转换中定义"
++#: ../gui/fcontextPage.py:81
++msgid ""
++"Selinux\n"
++"File Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr "無法檢查介面 %s 是否已經定義"
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s 没有在转换中定义"
++#: ../gui/fcontextPage.py:88
++msgid ""
++"File\n"
++"Type"
++msgstr ""
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr "介面 %s 已經定義"
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s 的登录映射已被定义"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
++msgid "User Mapping"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr "無法為 %s 建立介面"
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "添加 SELinux 用户映射"
++#: ../gui/loginsPage.py:52
++msgid ""
++"Login\n"
++"Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
- #, python-format
- msgid "Could not set user in interface context for %s"
--msgstr "無法為 %s 設定介面內文中的使用者"
-+msgstr "無法為 %s 設定介面 context 中的使用者"
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux用户 %s 已经存在"
++#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
++msgid ""
++"SELinux\n"
++"User"
++msgstr ""
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
- #, python-format
- msgid "Could not set role in interface context for %s"
--msgstr "無法為 %s 設定介面內文中的角色"
-+msgstr "無法為 %s 設定介面 context 中的角色"
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "需要节点掩码"
++#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
++msgid ""
++"MLS/\n"
++"MCS Range"
++msgstr ""
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
- #, python-format
- msgid "Could not set type in interface context for %s"
--msgstr "無法為 %s 設定介面內文中的類型"
-+msgstr "無法為 %s 設定介面 context 中的類型"
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "已经定义了 addr %s"
++#: ../gui/loginsPage.py:133
++#, python-format
++msgid "Login '%s' is required"
++msgstr ""
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
- #, python-format
- msgid "Could not set mls fields in interface context for %s"
--msgstr "無法為 %s 設定介面內文中的 mls 欄位"
-+msgstr "無法為 %s 設定介面 context 中的 mls 欄位"
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "接口 %s 已经被定义"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
++msgid "Policy Module"
++msgstr ""
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
- #, python-format
- msgid "Could not set interface context for %s"
--msgstr "無法為 %s 設定介面內文"
-+msgstr "無法為 %s 設定介面 context"
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "初始化能力(capability)错误,中止。\n"
++#: ../gui/modulesPage.py:57
++msgid "Module Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
- #, python-format
- msgid "Could not set message context for %s"
--msgstr "無法為 %s 設定訊息內文"
-+msgstr "無法為 %s 設定訊息 context"
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "初始化能力(capability)错误,中止。\n"
++#: ../gui/modulesPage.py:134
++msgid "Disable Audit"
++msgstr ""
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
- #, python-format
- msgid "Could not add interface %s"
- msgstr "無法新增介面 %s"
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "设置 KEEPCAPS 错误,中止\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
++msgid "Enable Audit"
++msgstr ""
  
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
- #, python-format
- msgid "Interface %s is not defined"
- msgstr "介面 %s 未定義"
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "删除能力(drop capability)错误,中止\n"
++#: ../gui/modulesPage.py:162
++msgid "Load Policy Module"
++msgstr ""
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
- #, python-format
- msgid "Could not query interface %s"
- msgstr "無法查詢介面 %s"
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "删除 SETUID 能力错误,中止\n"
++#: ../gui/polgen.glade:79
++msgid "Polgen"
++msgstr ""
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr "無法修改介面 %s"
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "freeing caps 错误\n"
++#: ../gui/polgen.glade:80
++msgid "Red Hat 2007"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
--msgstr "介面 %s 定義在政策中,無法刪除"
-+msgstr "介面 %s 定義在方針中,無法刪除"
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
++#: ../gui/polgen.glade:81
++msgid "GPL"
++msgstr ""
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr "無法刪除介面 %s"
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "在非 MLS 机器上不支持的转换"
++#. TRANSLATORS: Replace this string with your names, one name per line.
++#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
++msgid "translator-credits"
++msgstr ""
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr "無法列出介面"
+-#~ msgid "Boolean"
+-#~ msgstr "布尔值"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
- msgstr "SELinux 介面"
+-#~ msgid "all"
+-#~ msgstr "所有"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
--msgstr "內文"
-+msgstr "Context"
+-#~ msgid "Customized"
+-#~ msgstr "自定义的"
++#: ../gui/polgen.glade:177
++msgid "<b>Applications</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
- #, python-format
- msgid "Could not set user in file context for %s"
--msgstr "無法為 %s 的檔案內文設定使用者"
-+msgstr "無法為 %s 的檔案 context 設定使用者"
+-#~ msgid "File Labeling"
+-#~ msgstr "文件标记"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
++msgid ""
++"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
++"requires a script in /etc/rc.d/init.d"
++msgstr ""
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
- #, python-format
- msgid "Could not set role in file context for %s"
--msgstr "無法為 %s 的檔案內文設定角色"
-+msgstr "無法為 %s 的檔案 context 設定角色"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "文件\n"
+-#~ "约束"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
++msgid "Standard Init Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
- #, python-format
- msgid "Could not set mls fields in file context for %s"
--msgstr "無法為 %s 的檔案內文設定 mls 欄位"
-+msgstr "無法為 %s 的檔案 context 設定 mls 欄位"
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "文件类型"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
++msgid "DBUS System Daemon"
++msgstr ""
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
- msgid "Invalid file specification"
- msgstr "無效的檔案規格"
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "文件\n"
+-#~ "类型"
++#: ../gui/polgen.glade:280
++msgid "Internet Services Daemon are daemons started by xinetd"
++msgstr ""
  
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
- #, python-format
- msgid "Could not check if file context for %s is defined"
--msgstr "無法檢查 %s 的檔案內文是否已經定義"
-+msgstr "無法檢查 %s 的檔案 context 是否已經定義"
+-#~ msgid "User Mapping"
+-#~ msgstr "用户映射"
++#: ../gui/polgen.glade:282
++msgid "Internet Services Daemon (inetd)"
++msgstr ""
  
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
--msgstr "%s 的檔案內文已經定義"
-+msgstr "%s 的檔案 context 已經定義"
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "登录\n"
+-#~ "名称"
++#: ../gui/polgen.glade:301
++msgid ""
++"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
++msgstr ""
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
- #, python-format
- msgid "Could not create file context for %s"
--msgstr "無法為 %s 建立檔案內文"
-+msgstr "無法為 %s 建立檔案 context"
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "用户"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
++msgid "Web Application/Script (CGI)"
++msgstr ""
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
- #, python-format
- msgid "Could not set type in file context for %s"
--msgstr "無法為 %s 的檔案內文設定類型"
-+msgstr "無法為 %s 的檔案 context 設定類型"
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS 范围"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
++msgid ""
++"User Application are any application that you would like to confine that is "
++"started by a user"
++msgstr ""
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
- #, python-format
- msgid "Could not set file context for %s"
--msgstr "無法為 %s 設定檔案內文"
-+msgstr "無法為 %s 設定檔案 context"
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "登录名 '%s' 是必需的"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
++msgid "User Application"
++msgstr ""
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
- #, python-format
- msgid "Could not add file context for %s"
--msgstr "無法為 %s 新增檔案內文"
-+msgstr "無法為 %s 新增檔案 context"
+-#~ msgid "Policy Module"
+-#~ msgstr "策略模块"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
- msgid "Requires setype, serange or seuser"
- msgstr "需要 setype、serange 或 seuser"
+-#~ msgid "Disable Audit"
+-#~ msgstr "禁用审计"
++#: ../gui/polgen.glade:391
++msgid "<b>Login Users</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
- #, python-format
- msgid "File context for %s is not defined"
--msgstr "%s 的檔案內文未定義"
-+msgstr "%s 的檔案 context 未定義"
+-#~ msgid "Enable Audit"
+-#~ msgstr "启用审计"
++#: ../gui/polgen.glade:453
++msgid "Modify an existing login user record."
++msgstr ""
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
- #, python-format
- msgid "Could not query file context for %s"
--msgstr "無法為 %s 查詢檔案內文"
-+msgstr "無法為 %s 查詢檔案 context"
+-#~ msgid "Load Policy Module"
+-#~ msgstr "加载策略模块"
++#: ../gui/polgen.glade:455
++msgid "Existing User Roles"
++msgstr ""
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
- #, python-format
- msgid "Could not modify file context for %s"
--msgstr "無法為 %s 修改檔案內文"
-+msgstr "無法為 %s 修改檔案 context"
+-#~ msgid "..."
+-#~ msgstr "..."
++#: ../gui/polgen.glade:474
++msgid ""
++"This user will login to a machine only via a terminal or remote login.  By "
++"default this user will have  no setuid, no networking, no su, no sudo."
++msgstr ""
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
- msgid "Could not list the file contexts"
--msgstr "無法列出檔案內文"
-+msgstr "無法列出檔案 context"
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
++msgid "Minimal Terminal User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
- #, python-format
- msgid "Could not delete the file context %s"
--msgstr "無法刪除檔案內文 %s"
-+msgstr "無法刪除檔案 context %s"
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>应用程序</b>"
++#: ../gui/polgen.glade:495
++msgid ""
++"This user can login to a machine via X or terminal.  By default this user "
++"will have no setuid, no networking, no sudo, no su"
++msgstr ""
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
- #, python-format
- msgid "File context for %s is defined in policy, cannot be deleted"
--msgstr "%s 的檔案內文已經定義於政策中,無法刪除"
-+msgstr "%s 的檔案 context 已經定義在方針中,無法刪除"
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>登录用户</b>"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
++msgid "Minimal X Windows User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
- #, python-format
- msgid "Could not delete file context for %s"
--msgstr "無法為 %s 刪除檔案內文"
-+msgstr "無法為 %s 刪除檔案 context"
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>根用户</b>"
++#: ../gui/polgen.glade:516
++msgid ""
++"User with full networking, no setuid applications without transition, no "
++"sudo, no su."
++msgstr ""
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
- msgid "Could not list file contexts"
--msgstr "無法列出檔案內文"
-+msgstr "無法列出檔案 context"
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP 端口</b>"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
++msgid "User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
- msgid "Could not list local file contexts"
--msgstr "無法列出本地的檔案內文"
-+msgstr "無法列出本地的檔案 context"
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP 端口</b>"
++#: ../gui/polgen.glade:537
++msgid ""
++"User with full networking, no setuid applications without transition, no su, "
++"can sudo to Root Administration Roles"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "SELinux fcontext"
- msgstr "SELinux fcontext"
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "添加布尔对话"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
++msgid "Admin User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr "類型"
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "添加应用程序需要“写入”的文件/目录。Pid 文件、日志文件、/var/lib 文件..."
++#: ../gui/polgen.glade:585
++msgid "<b>Root Users</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
- #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr "無法檢查布林值 %s 是否已經定義"
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "添加/删除用于有限应用程序/用户的布尔"
++#: ../gui/polgen.glade:647
++msgid ""
++"Select Root Administrator User Role, if this user will be used to administer "
++"the machine while running as root.  This user will not be able to login to "
++"the system directly."
++msgstr ""
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
- #, python-format
- msgid "Boolean %s is not defined"
- msgstr "布林值 %s 未定義"
+-#~ msgid "Admin User Role"
+-#~ msgstr "管理用户角色"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
++msgid "Root Admin User Role"
++msgstr ""
  
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
- #, python-format
- msgid "Could not query file context %s"
--msgstr "無法查詢檔案內文 %s"
-+msgstr "無法查詢檔案 context %s"
+-#~ msgid "All"
+-#~ msgstr "所有"
++#: ../gui/polgen.glade:716
++msgid "label104"
++msgstr ""
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
- #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr "您必須指定下列其中一個值:%s"
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr "允许应用程序/用户角色使用 0 调用 bindresvport。绑定到端口 600-1024"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr "無法設置布林值 %s"
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr "允许应用程序/用户角色绑定到高于 1024 的任何 udp 端口"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
++msgid "Name"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr "無法修改布林值 %s"
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "允许有限的应用程序/用户角色绑定到任何 udp 端口"
++#: ../gui/polgen.glade:807
++msgid "Enter complete path for executable to be confined."
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr "錯誤的格式 %s:紀錄 %s"
+-#~ msgid "Boolean Name"
+-#~ msgstr "布尔名"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
++msgid "..."
++msgstr ""
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
--msgstr "布林值 %s 已經定義在政策中,無法刪除"
-+msgstr "布林值 %s 已經定義在方針中,無法刪除"
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "在 /tmp 目录中创建/操作临时文件的应用程序"
++#: ../gui/polgen.glade:849
++msgid "Enter unique name for the confined application or user role."
++msgstr ""
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr "無法刪除布林值 %s"
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "输入用逗号分开的应用程序/用户角色要绑定的 tcp 端口或者端口范围列表。示例:"
+-#~ "612, 650-660"
++#: ../gui/polgen.glade:871
++msgid "Executable"
++msgstr ""
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr "無法列出布林值"
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
+-#~ "612, 650-660"
++#: ../gui/polgen.glade:899
++msgid "Init script"
++msgstr ""
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr "不明"
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "输入用逗号分开的应用程序/用户角色要绑定的 udp 端口或者端口范围列表。示例:"
+-#~ "612, 650-660"
++#: ../gui/polgen.glade:927
++msgid ""
++"Enter complete path to init script used to start the confined application."
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr "關閉"
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "输入受限的可执行程序的完整路径"
++#: ../gui/polgen.glade:982
++msgid "label105"
++msgstr ""
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr "開啟"
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "输入用于启动受限的应用程序的 init 脚本的完整路径。"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr "SELinux 布林值"
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "输入要进行限制的应用程序或用户角色。"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
++msgstr ""
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr "描述"
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "输入应用程序或用户角色要连接的网络"
++#: ../gui/polgen.glade:1073
++msgid "label106"
++msgstr ""
  
-@@ -949,9 +973,9 @@
- msgstr "無法清除環境\n"
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "输入应用程序或用户角色要侦听的网络"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:556 ../newrole/newrole.c:634
--#, fuzzy, c-format
-+#, c-format
- msgid "Error initializing capabilities, aborting.\n"
--msgstr "起始功能時發生錯誤,放棄。\n"
-+msgstr "初始化功能時發生錯誤,放棄。\n"
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "为受限制的用户或应用程序选择唯一的名称。"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
++msgstr ""
  
- #: ../newrole/newrole.c:564 ../newrole/newrole.c:640
- #, c-format
-@@ -1016,17 +1040,17 @@
- #: ../newrole/newrole.c:771
- #, c-format
- msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
--msgstr "%s!無法取得 %s 目前的內文,無法為 tty 重新標記。\n"
-+msgstr "%s!無法取得 %s 目前的 context,無法為 tty 重新標記。\n"
+-#~ msgid "Executable"
+-#~ msgstr "可执行程序"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
  
- #: ../newrole/newrole.c:781
- #, c-format
- msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
--msgstr "%s!無法取得 %s 新的內文,無法為 tty 重新標記。\n"
-+msgstr "%s!無法取得 %s 新的 context,無法為 tty 重新標記。\n"
+-#~ msgid "Existing User Roles"
+-#~ msgstr "现有用户角色"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:791
- #, c-format
- msgid "%s!  Could not set new context for %s\n"
--msgstr "%s!無法為 %s 設定新的內文\n"
-+msgstr "%s!無法為 %s 設定新的 context\n"
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
  
- #: ../newrole/newrole.c:838
- #, c-format
-@@ -1036,7 +1060,7 @@
- #: ../newrole/newrole.c:844
- #, c-format
- msgid "Warning! Could not restore context for %s\n"
--msgstr "無法為 %s 回復內文\n"
-+msgstr "無法為 %s 回復 context\n"
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "生成的策略文件"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
  
- #: ../newrole/newrole.c:901
- #, c-format
-@@ -1061,7 +1085,7 @@
- #: ../newrole/newrole.c:931
- #, c-format
- msgid "Error: you are not allowed to change levels on a non secure terminal \n"
--msgstr "錯誤:您不可在一個非安全的終端機上更改等級 \n"
-+msgstr "錯誤:您不可在一個非安全的終端機上更改等級\n"
+-#~ msgid "Init script"
+-#~ msgstr "Init 脚本"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:957
- #, c-format
-@@ -1071,7 +1095,7 @@
- #: ../newrole/newrole.c:967
- #, c-format
- msgid "failed to get new context.\n"
--msgstr "無法取得新的內文。\n"
-+msgstr "無法取得新的 context。\n"
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "与终端互动"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
++msgid "Select the domains that you would like this user administer."
++msgstr ""
  
- #: ../newrole/newrole.c:974
- #, c-format
-@@ -1096,17 +1120,17 @@
- #: ../newrole/newrole.c:1004
- #, c-format
- msgid "failed to convert new context to string\n"
--msgstr "無法將新的內文轉為字串\n"
-+msgstr "無法將新的 context 轉為字串\n"
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "互联网服务守护进程 (inetd)"
++#: ../gui/polgen.glade:1346
++msgid "label109"
++msgstr ""
  
- #: ../newrole/newrole.c:1009
- #, c-format
- msgid "%s is not a valid context\n"
--msgstr "%s 不是有效的內文\n"
-+msgstr "%s 不是有效的 context\n"
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "互联网服务守护进程,是通过 xinetd 启动的服务"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:1016
- #, c-format
- msgid "Unable to allocate memory for new_context"
--msgstr "無法為新的內文(new_context)分配記憶體"
-+msgstr "無法為新的 context(new_context)分配記憶體"
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "最小化终端用户角色"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
  
- #: ../newrole/newrole.c:1042
- #, c-format
-@@ -1126,7 +1150,7 @@
- #: ../newrole/newrole.c:1133
- #, c-format
- msgid "failed to get old_context.\n"
--msgstr "無法取得舊的內文(old_context)。\n"
-+msgstr "無法取得舊的 context(old_context)。\n"
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "最小化 X 窗口用户角色"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
  
- #: ../newrole/newrole.c:1140
- #, c-format
-@@ -1185,17 +1209,17 @@
- #: ../load_policy/load_policy.c:71
- #, c-format
- msgid "%s:  Policy is already loaded and initial load requested\n"
--msgstr "%s:政策已載入,已請求初始載入\n"
-+msgstr "%s:方針已載入,已請求初始載入\n"
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "修改现有登录用户记录。"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
++msgid "<b>TCP Ports</b>"
++msgstr ""
  
- #: ../load_policy/load_policy.c:80
- #, c-format
- msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
--msgstr "%s:無法載入政策,已請求強制模式:%s\n"
-+msgstr "%s:無法載入方針,已請求強制模式:%s\n"
+-#~ msgid "Name"
+-#~ msgstr "名称"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
++msgstr ""
  
- #: ../load_policy/load_policy.c:90
- #, c-format
- msgid "%s:  Can't load policy:  %s\n"
--msgstr "%s:無法載入政策:%s\n"
-+msgstr "%s:無法載入方針:%s\n"
+-#~ msgid "Polgen"
+-#~ msgstr "模块生成工具"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
++msgid "All"
++msgstr ""
  
- #: ../scripts/chcat:92 ../scripts/chcat:169
- msgid "Requires at least one category"
-@@ -1281,1674 +1305,2156 @@
- msgid "Options Error %s "
- msgstr "選項錯誤 %s"
+-#~ msgid "Policy Directory"
+-#~ msgstr "策略目录"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
++msgstr ""
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
++msgid "600-1024"
++msgstr ""
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "根管理用户角色"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
++msgid ""
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
++msgstr ""
  
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux 策略生成工具"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
++msgid "Unreserved Ports (>1024)"
++msgstr ""
+-#~ msgid "Select Ports"
+-#~ msgstr "选择端口"
+-
 -#~ msgid ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
 -#~ msgstr ""
--#~ "\n"
--#~ "\n"
--#~ "semodule -i %s\n"
--#~ "\n"
--
--#~ msgid "translations not supported on non-MLS machines"
--#~ msgstr "非 MLS 的機器上並不支援轉譯"
--
--#~ msgid "Name"
--#~ msgstr "名稱"
--
--#~ msgid "Role"
--#~ msgstr "角色"
--
--#~ msgid "Existing_User"
--#~ msgstr "Existing_User"
--
--#~ msgid "Application"
--#~ msgstr "應用程式"
+-#~ "如果这个用户在以根用户身份运行时将用来管理机器,那么请选择根管理用户角色。"
+-#~ "这个用户将不能直接登录到系统。"
 -
--#~ msgid "%s must be a directory"
--#~ msgstr "%s 必須要是個目錄"
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "选择用户可以管理的额外域"
 -
--#~ msgid "You must select a user"
--#~ msgstr "您必須選擇用戶"
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "选择用户角色要转换到的其他域"
 -
--#~ msgid "Select executable file to be confined."
--#~ msgstr "選擇要限制的可執行檔。"
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "为这个用户选择其它角色"
 -
--#~ msgid "Select init script file to be confined."
--#~ msgstr "é\81¸æ\93\87è¦\81é\99\90å\88¶ç\9a\84 init script æª\94æ¡\88ã\80\82"
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "é\80\89æ\8b©åº\94ç\94¨ç¨\8båº\8f使ç\94¨ç\9a\84å¸\83å°\94"
 -
--#~ msgid "Select file(s) that confined application creates or writes"
--#~ msgstr "é\81¸æ\93\87é\99\90å\88¶äº\86æ\87\89ç\94¨ç¨\8bå¼\8f建ç«\8bæ\88\96寫å\85¥ç\9a\84æª\94æ¡\88"
+-#~ msgid "Select common application traits"
+-#~ msgstr "é\80\89æ\8b©å¸¸è§\81ç\9a\84åº\94ç\94¨ç¨\8båº\8fç\89¹å¾\81"
 -
--#~ msgid ""
--#~ "Select directory(s) that the confined application owns and writes into"
--#~ msgstr "選擇被限制的應用程式所屬並寫入的目錄"
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "选择在其中创建策略文件的目录"
 -
--#~ msgid "Select directory to generate policy files in"
--#~ msgstr "é\81¸æ\93\87ç\94¢ç\94\9fæ\94¿ç­\96æª\94æ¡\88ç\9a\84ç\9b®é\8c\84"
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "é\80\89æ\8b©å\8f\97é\99\90åº\94ç\94¨ç¨\8båº\8f管ç\90\86ç\9a\84æ\96\87件/ç\9b®å½\95"
 -
 -#~ msgid ""
--#~ "Type %s_t already defined in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "類型 %s_t 已定義於目前的政策中。\n"
--#~ "請問您是否希望繼續進行?"
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "选择您希望将这个用户角色转换到的应用程序域。"
 -
--#~ msgid "Verify Name"
--#~ msgstr "é©\97è­\89å\90\8d稱"
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "é\80\89æ\8b©æ\82¨å¸\8cæ\9c\9bè¿\99个ç\94¨æ\88·å\8f¯ä»¥ç®¡ç\90\86ç\9a\84å\9f\9fã\80\82"
 -
 -#~ msgid ""
--#~ "Module %s.pp already loaded in current policy.\n"
--#~ "Do you want to continue?"
--#~ msgstr ""
--#~ "模組 %s.pp 已載入目前的政策中。\n"
--#~ "請問您是否希望繼續進行?"
--
--#~ msgid "You must enter a name"
--#~ msgstr "您必須輸入名稱"
--
--#~ msgid "You must enter a executable"
--#~ msgstr "您必須輸入可執行檔"
--
--#~ msgid "Configue SELinux"
--#~ msgstr "設定 SELinux"
--
--#~ msgid "Ports must be be numbers or ranges of numbers from 1 to %d "
--#~ msgstr "通訊埠必須以介於 1 與 %d 之間的數字來構成"
--
--#~ msgid "You must enter a name for your confined process/user"
--#~ msgstr "您必須為您限制的程序 / 用戶輸入名稱"
--
--#~ msgid "USER Types are not allowed executables"
--#~ msgstr "USER 類型不是被允許的可執行檔"
--
--#~ msgid "Only DAEMON apps can use an init script"
--#~ msgstr "只有 DAEMON apps 可以使用 init script"
--
--#~ msgid "use_syslog must be a boolean value "
--#~ msgstr "use_syslog 必須是布林值"
--
--#~ msgid "USER Types autoomatically get a tmp type"
--#~ msgstr "USER 類型會自動取得一個 tmp 類型"
--
--#~ msgid "You must enter the executable path for your confined process"
--#~ msgstr "您必須輸入您限制的程序的可執行檔路徑"
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
-+msgid "Boolean"
-+msgstr "布林值"
-+
-+#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
-+msgid "all"
-+msgstr "全部"
-+
-+#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
-+msgid "Customized"
-+msgstr "自訂化"
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
-+msgid "File Labeling"
-+msgstr "檔案標記"
--#~ msgid "Type Enforcement file"
--#~ msgstr "類型強制檔"
--
--#~ msgid "Interface file"
--#~ msgstr "介面檔案"
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "选择将转换到这个应用程序域的用户角色。"
 -
--#~ msgid "File Contexts file"
--#~ msgstr "檔案內文檔"
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "选择受限的应用程序或用户类型。"
 -
--#~ msgid "Setup Script"
--#~ msgstr "設定 Script"
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "选择将转换到这个域的用户角色"
 -
--#~ msgid "Permissive"
--#~ msgstr "寬鬆型"
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "选择您想要定制的用户角色"
 -
--#~ msgid "Enforcing"
--#~ msgstr "å¼·å\88"
+-#~ msgid "Sends audit messages"
+-#~ msgstr "å\8f\91é\80\81审计信æ\81¯"
 -
--#~ msgid "Disabled"
--#~ msgstr "å\81\9cç\94¨"
+-#~ msgid "Sends email"
+-#~ msgstr "å\8f\91é\80\81ç\94µå­\90é\82®ä»¶"
 -
--#~ msgid "Status"
--#~ msgstr "ç\8b\80æ\85\8b"
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "æ \87å\87\86ç\9a\84 Init å®\88æ\8a¤è¿\9bç¨\8b"
 -
 -#~ msgid ""
--#~ "Changing the policy type will cause a relabel of the entire file system "
--#~ "on the next boot. Relabeling takes a long time depending on the size of "
--#~ "the file system.  Do you wish to continue?"
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
 -#~ msgstr ""
--#~ "æ\9b´æ\94¹æ\94¿ç­\96é¡\9eå\9e\8bæ\9c\83é\80 æ\88\90æ\95´å\80\8bæª\94æ¡\88系統å\9c¨ä¸\8b次é\87\8dæ\96°å\95\9få\8b\95æ\99\82被é\87\8dæ\96°æ¨\99è¨\98ï¼\88relabelingï¼\89ã\80\82æ ¹"
--#~ "據檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
+-#~ "æ \87å\87\86ç\9a\84 Init å®\88æ\8a¤è¿\9bç¨\8bæ\98¯å\9c¨å¼\95导æ\97¶é\80\9aè¿\87å\88\9då§\8bå\8c\96è\84\9aæ\9c¬å\90¯å\8a¨ç\9a\84å®\88æ\8a¤è¿\9bç¨\8bã\80\82é\80\9a常é\9c\80è¦\81å\9c¨ /"
+-#~ "etc/rc.d/init.d 目录包含脚本"
 -
 -#~ msgid ""
--#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
--#~ "If you later decide to turn SELinux back on, the system will be required "
--#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
--#~ "your system, you can go to permissive mode which will only log errors and "
--#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
--#~ "Do you wish to continue?"
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
 -#~ msgstr ""
--#~ "若要將 SELinux 變更為停用的話您需重新啟動系統。我們不建議這麼作。若您之後"
--#~ "決定將 SELinux 再次啟用,系統將會需要被重新標記。若您只是想查看 SELinux 是"
--#~ "否會在您的系統上造成問題,您可進入寬鬆模式,這只會將錯誤紀錄下來並且不會強"
--#~ "制 SELinux 政策。寬鬆模式無須重新啟動系統    請問您希望繼續進行嗎?"
+-#~ "这个工具可以用来生成一个策略框架,以利用 SELinux 限制应用程序或用户。\n"
+-#~ "\n"
+-#~ "此工具生成:\n"
+-#~ "类型强制文件 (te)\n"
+-#~ "接口文件 (if)\n"
+-#~ "文件上下文 (fc)\n"
+-#~ "Shell 脚本 (sh) - 用来编译和安装策略。"
 -
 -#~ msgid ""
--#~ "Changing to SELinux enabled will cause a relabel of the entire file "
--#~ "system on the next boot. Relabeling takes a long time depending on the "
--#~ "size of the file system.  Do you wish to continue?"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "若將 SELinux 變更為啟用的話,下次系統啟動時,整個檔案系統都將會被重新標"
--#~ "記。根據檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
+-#~ "这个工具将产生下列:\n"
+-#~ "类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
+-#~ "\n"
+-#~ "执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
+-#~ "现在您可以先将机器置于允许模式(setenforce 0)。\n"
+-#~ "运行/重新启动应用程序以产生 avc 消息。\n"
+-#~ "然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
 -
 -#~ msgid ""
--#~ "SELinux\n"
--#~ "User"
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
 -#~ msgstr ""
--#~ "SELinux\n"
--#~ "用戶"
+-#~ "这个工具将产生下列:\n"
+-#~ "类型强制(te),文件上下文(fc),接口(if)和 Shell 脚本(sh)。\n"
+-#~ "以根用户身份执行 Shell 脚本来编译/安装并重新标记文件/目录。\n"
+-#~ "使用 semange 或者 useradd 将 Linux 用户与用户角色匹配。\n"
+-#~ "现在您可以先将机器置于允许模式(setenforce 0)。\n"
+-#~ "运行/重新启动应用程序以产生 avc 消息。\n"
+-#~ "然后使用 audit2allow -R 来为 te 文件创建附加规则。\n"
 -
 -#~ msgid ""
--#~ "MLS/\n"
--#~ "MCS Range"
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
 -#~ msgstr ""
--#~ "MLS/\n"
--#~ "MCS 範圍"
--
--#~ msgid "SELinux user '%s' is required"
--#~ msgstr "需要 SELinux 用戶「%s」"
--
--#~ msgid "User Mapping"
--#~ msgstr "用戶對映"
+-#~ "用户可通过 X 或者终端登录到机器中。默认情况下,这个用户没有 setuid、联网、"
+-#~ "sudo 和 su 功能。"
 -
 -#~ msgid ""
--#~ "Login\n"
--#~ "Name"
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
 -#~ msgstr ""
--#~ "登錄\n"
--#~ "名稱"
+-#~ "这个用户将只能通过终端登录或者远程登录。默认情况下,这个用户没有 setuid、"
+-#~ "联网、sudo 和 su 功能。"
 -
--#~ msgid "Login '%s' is required"
--#~ msgstr "é\9c\80è¦\81ç\99»é\8c\84å\90\8d稱ã\80\8c%sã\80\8d"
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "é\9d\9eä¿\9dç\95\99端å\8f£(> 1024)"
 -
--#~ msgid "Disable"
--#~ msgstr "停用"
+-#~ msgid "User Application"
+-#~ msgstr "用户应用程序"
 -
--#~ msgid "Enable"
--#~ msgstr "啟用"
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr "用户应用程序,是由用户启动的任何希望限制的应用程序"
 -
--#~ msgid "Default"
--#~ msgstr "預設"
+-#~ msgid "User Role"
+-#~ msgstr "用户角色"
 -
--#~ msgid "<b>Boolean</b>"
--#~ msgstr "<b>布林值</b>"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 su 功能,但可使"
+-#~ "用 sudo 转换为根管理角色。"
 -
--#~ msgid "<b>Description</b>"
--#~ msgstr "<b>描述</b>"
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "有完全联网功能的用户,没有 setuid 应用程序,无法转换,没有 sudo、su 功能。"
 -
--#~ msgid "<b>Status</b>"
--#~ msgstr "<b>狀態</b>"
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "使用 PAM 认证"
 -
--#~ msgid "Category: %s <br>"
--#~ msgstr "類別:%s <br>"
+-#~ msgid "Uses dbus"
+-#~ msgstr "使用 dbus"
 -
--#~ msgid "Begin"
--#~ msgstr "起始"
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "使用 nsswitch 或者 getpw* 调用"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "网站应用程序/脚本(CGI)"
 -
 -#~ msgid ""
--#~ "Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to "
--#~ "lockdown SELinux booleans.The tool will generate a configuration file "
--#~ "which can be used to lockdown this system or other SELinux systems.<br>"
--#~ msgstr ""
--#~ "歡迎使用 SELinux Lockdown 工具。<br> <br>此工具可被用來將 SELinux 布林值鎖"
--#~ "住。此工具會產生一個可被用來將此系統或其它 SELinux 系統鎖住的配置檔案。"
--#~ "<br>"
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr "网站应用程序/脚本(CGI),是由网站服务器(Apache)启动的 CGI 脚本"
 -
--#~ msgid "Finish"
--#~ msgstr "結束"
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "写入 syslog 消息\t"
 -
--#~ msgid "Category %s booleans completed <br><br>"
--#~ msgstr "類別 %s 的布林值已完成 <br><br>"
+-#~ msgid "translator-credits"
+-#~ msgstr ""
+-#~ "Yuan Yijun <bbbush@fedoraproject.org>, 2007 Leah Liu <lliu@redhat.com>,"
+-#~ "2007"
 -
--#~ msgid "Current settings:<br><br>"
--#~ msgstr "目前設定:<br><br>"
+-#~ msgid "Role"
+-#~ msgstr "角色"
 -
--#~ msgid "Finish: <br><br>"
--#~ msgstr "çµ\90æ\9d\9fï¼\9a<br><br>"
+-#~ msgid "Existing_User"
+-#~ msgstr "ç\8e°æ\9c\89ç\94¨æ\88·ï¼\88_Uï¼\89"
 -
--#~ msgid "Category: %s<br><br>Current Settings<br><br>"
--#~ msgstr "類別:%s<br><br>目前設定<br><br>"
+-#~ msgid "Application"
+-#~ msgstr "应用程序"
 -
--#~ msgid "Boolean:   %s<br><br>"
--#~ msgstr "布林值:%s<br><br>"
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s 必须是一个目录"
 -
--#~ msgid "Lockdown SELinux Booleans"
--#~ msgstr "鎖定 SELinux 布林值"
+-#~ msgid "You must select a user"
+-#~ msgstr "您必需选择一个用户"
 -
--#~ msgid "<b>Select:</b>"
--#~ msgstr "<b>選擇:</b>"
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "选择要限制的可执行程序"
 -
--#~ msgid "Apply"
--#~ msgstr "套用"
-+#: ../gui/fcontextPage.py:74
-+msgid ""
-+"File\n"
-+"Specification"
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "选择要限制的 init 脚本"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
++msgid "Select Ports"
++msgstr ""
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "选择受限应用程序创建或写入的文件"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+"檔案\n"
-+"規格"
  
 -#~ msgid ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "选择受限应用程序拥有并写入的目录"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
++msgid "<b>UDP Ports</b>"
++msgstr ""
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "选择在其中创建策略文件的目录"
++#: ../gui/polgen.glade:1937
++msgid "label113"
++msgstr ""
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
 -#~ msgstr ""
--#~ "Copyright (c)2006 Red Hat, Inc.\n"
--#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
-+#: ../gui/fcontextPage.py:81
-+msgid ""
-+"Selinux\n"
-+"File Type"
+-#~ "在当前策略中已经定义了类型 %s_t。\n"
+-#~ "您想要继续吗?"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
 +msgstr ""
-+"Selinux\n"
-+"檔案類型"
  
--#~ msgid "SELinux Boolean Lockdown"
--#~ msgstr "SELinux 布林值鎖定"
-+#: ../gui/fcontextPage.py:88
+-#~ msgid "Verify Name"
+-#~ msgstr "验证名称"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "在当前策略中已经定义了模块 %s.pp。\n"
+-#~ "您想要继续吗?"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"File\n"
-+"Type"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"檔案\n"
-+"類型"
  
--#~ msgid "Save As"
--#~ msgstr "儲存為"
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
-+msgid "User Mapping"
-+msgstr "用戶對映"
+-#~ msgid "You must enter a name"
+-#~ msgstr "您必需输入名称"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
  
--#~ msgid "Save Boolean Configuration File"
--#~ msgstr "儲存布林值配置檔案"
-+#: ../gui/loginsPage.py:52
+-#~ msgid "You must enter a executable"
+-#~ msgstr "您必需指定一个可执行程序位置"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Login\n"
-+"Name"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+"登錄\n"
-+"名稱"
  
--#~ msgid "Select Management Object"
--#~ msgstr "選擇管理物件"
-+#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
-+msgid ""
-+"SELinux\n"
-+"User"
+-#~ msgid "Configue SELinux"
+-#~ msgstr "配置 SELinux"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+"SELinux\n"
-+"用戶"
  
--#~ msgid "Select file name to save  boolean settings."
--#~ msgstr "選擇儲存布林值設定的檔案名稱。"
-+#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
+-#~ msgid "Ports must be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "端口必需是介于 1 和 %d 之间的数字或者范围"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "必需为受限的进程/用户输入名称"
++#: ../gui/polgen.glade:2366
++msgid "Writes syslog messages\t"
++msgstr ""
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER 类型不允许使用可执行程序"
++#: ../gui/polgen.glade:2385
++msgid "Create/Manipulate temporary files in /tmp"
++msgstr ""
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "只有守护进程才可以使用 init 脚本"
++#: ../gui/polgen.glade:2404
++msgid "Uses Pam for authentication"
++msgstr ""
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog 必需是布尔值"
++#: ../gui/polgen.glade:2423
++msgid "Uses nsswitch or getpw* calls"
++msgstr ""
+-#~ msgid "USER Types automatically get a tmp type"
+-#~ msgstr "USER 类型自动得到一个 tmp 类型"
++#: ../gui/polgen.glade:2442
++msgid "Uses dbus"
++msgstr ""
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "必须输入受限进程的可执行程序路径"
++#: ../gui/polgen.glade:2461
++msgid "Sends audit messages"
++msgstr ""
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "打印强制文件"
++#: ../gui/polgen.glade:2480
++msgid "Interacts with the terminal"
++msgstr ""
+-#~ msgid "Interface file"
+-#~ msgstr "接口文件"
++#: ../gui/polgen.glade:2499
++msgid "Sends email"
++msgstr ""
+-#~ msgid "File Contexts file"
+-#~ msgstr "文件上下文定义"
++#: ../gui/polgen.glade:2530
++msgid "label115"
++msgstr ""
+-#~ msgid "Setup Script"
+-#~ msgstr "建立脚本"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux 端口\n"
+-#~ "类型"
++#: ../gui/polgen.glade:2788
 +msgid ""
-+"MLS/\n"
-+"MCS Range"
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+"MLS/\n"
-+"MCS 範圍"
  
--#~ msgid "_Forward"
--#~ msgstr "下一步(_F)"
-+#: ../gui/loginsPage.py:133
-+#, python-format
-+msgid "Login '%s' is required"
-+msgstr "需要登錄名稱「%s」"
+-#~ msgid "Protocol"
+-#~ msgstr "协议"
++#: ../gui/polgen.glade:2823
++msgid "label116"
++msgstr ""
  
--#~ msgid "_Previous"
--#~ msgstr "上一步(_P)"
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
-+msgid "Policy Module"
-+msgstr "方針模組"
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "级别"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
++msgstr ""
  
--#~ msgid "system-config-selinux"
--#~ msgstr "system-config-selinux"
-+#: ../gui/modulesPage.py:57
-+msgid "Module Name"
-+msgstr "模組名稱"
+-#~ msgid "Port"
+-#~ msgstr "端口"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
++msgstr ""
  
--#~ msgid "translator-credits"
--#~ msgstr "譯者姓名:莊佳儒(tchuang@redhat.com)"
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr "版本"
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "端口号 \"%s\" 是无效的。 0 < PORT_NUMBER < 65536 "
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
++msgstr ""
+-#~ msgid "List View"
+-#~ msgstr "列出视图"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
++msgstr ""
+-#~ msgid "Group View"
+-#~ msgstr "分组视图"
++#: ../gui/polgen.glade:3254
++msgid "Add Booleans Dialog"
++msgstr ""
  
 -#~ msgid "SELinux Service Protection"
--#~ msgstr "SELinux æ\9c\8då\8b\99ä¿\9dè­·"
-+#: ../gui/modulesPage.py:134
-+msgid "Disable Audit"
-+msgstr "停用稽核"
+-#~ msgstr "SELinux æ\9c\8då\8a¡ä¿\9dæ\8a¤"
++#: ../gui/polgen.glade:3327
++msgid "Boolean Name"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for acct daemon"
--#~ msgstr "停用 acct daemon 的 SELinux 保護"
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
-+msgid "Enable Audit"
-+msgstr "啟用稽核"
+-#~ msgstr "禁用 acct 守护进程的 SELinux 保护"
++#: ../gui/polgengui.py:261
++msgid "Role"
++msgstr ""
  
 -#~ msgid "Admin"
--#~ msgstr "管理"
-+#: ../gui/modulesPage.py:162
-+msgid "Load Policy Module"
-+msgstr "載入方針模組"
+-#~ msgstr "管理"
++#: ../gui/polgengui.py:268
++msgid "Existing_User"
++msgstr ""
  
 -#~ msgid "Allow all daemons to write corefiles to /"
--#~ msgstr "å\85\81許æ\89\80æ\9c\89 daemon å°\87 corefile å¯«è\87³ /"
-+#: ../gui/polgen.glade:79
-+msgid "Polgen"
-+msgstr "Polgen"
+-#~ msgstr "å\85\81许æ\89\80æ\9c\89å®\88æ\8a¤è¿\9bç¨\8bå°\86å\86\85å­\98转å\82¨æ\96\87件å\86\99å\88° /"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
++msgid "Application"
++msgstr ""
  
 -#~ msgid "Allow all daemons the ability to use unallocated ttys"
--#~ msgstr "允許所有 daemon 使用未分配的 ttys"
-+#: ../gui/polgen.glade:80
-+msgid "Red Hat 2007"
-+msgstr "Red Hat 2007"
+-#~ msgstr "允许所有守护进程使用未分配的 tty"
++#: ../gui/polgengui.py:352
++#, python-format
++msgid "%s must be a directory"
++msgstr ""
  
 -#~ msgid "User Privs"
--#~ msgstr "ç\94¨æ\88¶ Privs"
-+#: ../gui/polgen.glade:81
-+msgid "GPL"
-+msgstr "GPL"
+-#~ msgstr "ç\94¨æ\88·æ\9d\83é\99\90"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
++msgid "You must select a user"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow gadmin SELinux user account to execute files in home directory or /"
 -#~ "tmp"
--#~ msgstr "允許 gadmin SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
-+#. TRANSLATORS: Replace this string with your names, one name per line.
-+#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
-+msgid "translator-credits"
-+msgstr "譯者姓名:莊佳儒(tchuang@redhat.com)"
+-#~ msgstr "允许 gadmin SELinux 用户帐户执行主目录或 /tmp 中的文件"
++#: ../gui/polgengui.py:542
++msgid "Select executable file to be confined."
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow guest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
--#~ msgstr "允許 guest SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr "允许 guest SELinux 用户执行主目录或 /tmp 中的文件"
++#: ../gui/polgengui.py:553
++msgid "Select init script file to be confined."
 +msgstr ""
-+"此工具可被用來產生一個繼續進行應用程式或是使用 SELinux 的用戶的方針架構。\n"
-+"\n"
-+"此工具會產生:\n"
-+"類型強制檔案(te)\n"
-+"介面檔案(if)\n"
-+"檔案 context 檔(fc)\n"
-+"Shell script(sh)- 用來編譯和安裝方針。"
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
-+msgstr "選擇欲限制的應用程式/用戶角色類型"
-+
-+#: ../gui/polgen.glade:196
-+msgid "<b>Applications</b>"
-+msgstr "<b>應用程式</b>"
  
 -#~ msgid "Memory Protection"
--#~ msgstr "記憶體保護"
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
-+msgid ""
-+"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
-+"requires a script in /etc/rc.d/init.d"
+-#~ msgstr "内存保护"
++#: ../gui/polgengui.py:563
++msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+"標準的 Init Daemon 代表透過 init script 在開機時啟動的系統程式。通常在 /etc/"
-+"rc.d/init.d 中會需要一個 script"
  
 -#~ msgid "Allow java executable stack"
--#~ msgstr "允許 java 執行堆疊"
-+#: ../gui/polgen.glade:260
-+msgid "Standard Init Daemon"
-+msgstr "標準 Init Daemon"
-+
-+#: ../gui/polgen.glade:280
-+msgid "DBUS System Daemon"
-+msgstr "DBUS 系統 Daemon"
-+
-+#: ../gui/polgen.glade:299
-+msgid "Internet Services Daemon are daemons started by xinetd"
-+msgstr "網路服務 Daemon 為 xinetd 所啟用的系統程式"
-+
-+#: ../gui/polgen.glade:301
-+msgid "Internet Services Daemon (inetd)"
-+msgstr "網路服務 Daemon(inetd)"
+-#~ msgstr "允许 java 栈可执行"
++#: ../gui/polgengui.py:570
++msgid "Select directory(s) that the confined application owns and writes into"
++msgstr ""
  
 -#~ msgid "Mount"
--#~ msgstr "掛載"
-+#: ../gui/polgen.glade:320
-+msgid ""
-+"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
-+msgstr "網站應用程式/Script(CGI)由網站伺服器(apache)所啟用的 CGI script"
+-#~ msgstr "挂载"
++#: ../gui/polgengui.py:632
++msgid "Select directory to generate policy files in"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any file"
--#~ msgstr "允許 mount 掛載任何檔案"
-+#: ../gui/polgen.glade:322
-+msgid "Web Application/Script (CGI)"
-+msgstr "網站應用程式/Script(CGI)"
+-#~ msgstr "允许 mount 挂载任何文件"
++#: ../gui/polgengui.py:649
++#, python-format
++msgid ""
++"Type %s_t already defined in current policy.\n"
++"Do you want to continue?"
++msgstr ""
  
 -#~ msgid "Allow mount to mount any directory"
--#~ msgstr "允許 mount 掛載任何目錄"
-+#: ../gui/polgen.glade:341
-+msgid ""
-+"User Application are any application that you would like to confine that is "
-+"started by a user"
-+msgstr "用戶應用程式為任何您所希望限制、由某個用戶所啟用的應用程式"
-+
-+#: ../gui/polgen.glade:343
-+msgid "User Application"
-+msgstr "用戶應用程式"
-+
-+#: ../gui/polgen.glade:389
-+msgid "<b>Login Users</b>"
-+msgstr "<b>登錄用戶</b>"
-+
-+#: ../gui/polgen.glade:451
-+msgid "Modify an existing login user record."
-+msgstr "修改一個現有的登錄用戶紀錄。"
-+
-+#: ../gui/polgen.glade:453
-+msgid "Existing User Roles"
-+msgstr "現有的用戶角色"
+-#~ msgstr "允许 mount 挂载任何目录"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
++msgid "Verify Name"
++msgstr ""
  
 -#~ msgid "Allow mplayer executable stack"
--#~ msgstr "允許 mplayer 可執行堆疊"
-+#: ../gui/polgen.glade:472
+-#~ msgstr "允许 mplayer 栈可执行"
++#: ../gui/polgengui.py:653
++#, python-format
 +msgid ""
-+"This user will login to a machine only via a terminal or remote login.  By "
-+"default this user will have  no setuid, no networking, no su, no sudo."
++"Module %s.pp already loaded in current policy.\n"
++"Do you want to continue?"
 +msgstr ""
-+"此用戶將只可透過終端機或是遠端登錄來登入一部機器。就預設值來講,此用戶將不會"
-+"有 setuid、網路作業、su 和 sudo。"
  
 -#~ msgid "SSH"
 -#~ msgstr "SSH"
-+#: ../gui/polgen.glade:474
-+msgid "Minimal Terminal User Role"
-+msgstr "最少的終端機用戶角色"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
++msgstr ""
  
 -#~ msgid "Allow ssh to run ssh-keysign"
--#~ msgstr "允許 ssh 執行 ssh-keysign"
-+#: ../gui/polgen.glade:493
-+msgid ""
-+"This user can login to a machine via X or terminal.  By default this user "
-+"will have no setuid, no networking, no sudo, no su"
+-#~ msgstr "允许 ssh 运行 ssh-keysign"
++#: ../gui/polgengui.py:713
++msgid "You must enter a executable"
 +msgstr ""
-+"此用戶可透過 X 或是終端機來登入一部機器。就預設值來講,此用戶將不會有 "
-+"setuid、網路作業、sudo 和 su"
  
 -#~ msgid ""
 -#~ "Allow staff SELinux user account to execute files in home directory or /"
 -#~ "tmp"
--#~ msgstr "å\85\81許 staff SELinux ç\94¨æ\88¶å¸³è\99\9få\9f·è¡\8c家ç\9b®é\8c\84æ\88\96æ\98¯ /tmp ä¸­ç\9a\84æª\94æ¡\88"
-+#: ../gui/polgen.glade:495
-+msgid "Minimal X Windows User Role"
-+msgstr "最少的 X Windows 用戶角色"
+-#~ msgstr "å\85\81许 staff SELinux ç\94¨æ\88·å¸\90æ\88·æ\89§è¡\8c主ç\9b®å½\95æ\88\96 /tmp ä¸­ç\9a\84æ\96\87件"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
++msgid "Configue SELinux"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow sysadm SELinux user account to execute files in home directory or /"
 -#~ "tmp"
--#~ msgstr "允許 sysadm SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
-+#: ../gui/polgen.glade:514
-+msgid ""
-+"User with full networking, no setuid applications without transition, no "
-+"sudo, no su."
-+msgstr "具有完整網路作業、沒有無轉移的 setuid 應用程式、無 sudo,並且無 su。"
-+
-+#: ../gui/polgen.glade:516
-+msgid "User Role"
-+msgstr "用戶角色"
+-#~ msgstr "允许 sysadm SELinux 用户帐户执行主目录或 /tmp 中的文件"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow unconfined SELinux user account to execute files in home directory "
 -#~ "or /tmp"
--#~ msgstr "允許 unconfined SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
-+#: ../gui/polgen.glade:535
-+msgid ""
-+"User with full networking, no setuid applications without transition, no su, "
-+"can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "允许 unconfined(未作限定的)SELinux 用户帐户执行主目录或 /tmp 中的文件"
++#: ../gui/polgen.py:197
++#, python-format
++msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+"具有完整網路作業、沒有無轉移的 setuid 應用程式、無 su,並且可 sudo 至 Root 管"
-+"理角色的用戶"
  
 -#~ msgid "Network Configuration"
--#~ msgstr "網路配置"
-+#: ../gui/polgen.glade:537
-+msgid "Admin User Role"
-+msgstr "管理員用戶角色"
-+
-+#: ../gui/polgen.glade:583
-+msgid "<b>Root Users</b>"
-+msgstr "<b>Root 用戶</b>"
+-#~ msgstr "网络配置"
++#: ../gui/polgen.py:324
++msgid "You must enter a name for your confined process/user"
++msgstr ""
  
 -#~ msgid "Allow unlabeled packets to flow on the network"
--#~ msgstr "å\85\81許æ\9cªæ¨\99è¨\98ç\9a\84å°\81å\8c\85å\9c¨ç¶²è·¯ä¸\8aæµ\81å\8b\95"
-+#: ../gui/polgen.glade:645
+-#~ msgstr "å\85\81许æ\9cªæ \87è®°ç\9a\84å°\81å\8c\85å\9c¨ç½\91ç»\9c中传æ\92­"
++#: ../gui/polgen.py:326
 +msgid ""
-+"Select Root Administrator User Role, if this user will be used to administer "
-+"the machine while running as root.  This user will not be able to login to "
-+"the system directly."
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+"若此用戶將會被用來以 root 的身份管理機器的話,選擇 Root 管理者用戶角色。此用"
-+"戶將無法直接登入系統。"
  
 -#~ msgid ""
 -#~ "Allow user SELinux user account to execute files in home directory or /tmp"
--#~ msgstr "允許 user SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
-+#: ../gui/polgen.glade:647
-+msgid "Root Admin User Role"
-+msgstr "Root 管理員用戶角色(Root Admin User Role)"
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
-+msgstr "輸入受限制的應用程式名稱或用戶角色"
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
-+msgid "Name"
-+msgstr "名稱"
-+
-+#: ../gui/polgen.glade:781
-+msgid "Enter complete path for executable to be confined."
-+msgstr "輸入要被限制的可執行檔的完整路徑。"
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
-+msgid "..."
-+msgstr "..."
-+
-+#: ../gui/polgen.glade:823
-+msgid "Enter unique name for the confined application or user role."
-+msgstr "輸入受限制的應用程式或用戶角色的特殊名稱。"
-+
-+#: ../gui/polgen.glade:845
-+msgid "Executable"
-+msgstr "可執行檔"
-+
-+#: ../gui/polgen.glade:873
-+msgid "Init script"
-+msgstr "Init script"
+-#~ msgstr "允许SELinux 一般用户帐户执行主目录或 /tmp 中的文件"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
++msgstr ""
  
 -#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
--#~ msgstr "允許 unconfined dyntrans 至 unconfined_execmem"
-+#: ../gui/polgen.glade:901
-+msgid ""
-+"Enter complete path to init script used to start the confined application."
-+msgstr "輸入用來啟用受限制的應用程式的 init script 的完整路徑。"
+-#~ msgstr "允许未作限定的类型动态转换到 unconfined_execmem"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
  
 -#~ msgid "Databases"
--#~ msgstr "資料庫"
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
-+msgstr "選擇您希望自訂化的用戶角色"
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
-+msgstr "選擇將會轉移至此應用程式網域的用戶角色。"
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
-+msgstr "選擇此用戶角色將會轉移的額外網域"
+-#~ msgstr "数据库"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
  
 -#~ msgid "Allow user to connect to mysql socket"
--#~ msgstr "允許用戶連至 mysql socket"
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
-+msgstr "選擇您希望此用戶角色轉移至的應用程式網域。"
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
-+msgstr "選擇將會轉移至此網域的用戶角色"
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
-+msgstr "選擇此用戶角色將會管理的額外網域"
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
-+msgid "Select the domains that you would like this user administer."
-+msgstr "選擇您希望此用戶管理的網域。"
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
-+msgstr "選擇此用戶的額外角色"
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
-+msgstr "輸入應用程式/用戶角色監聽的網路通訊埠"
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
-+msgid "<b>TCP Ports</b>"
-+msgstr "<b>TCP 通訊埠</b>"
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
-+msgstr "允許受限制的應用程式/用戶角色綁定至任何 udp 通訊埠"
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
-+msgid "All"
-+msgstr "全部"
+-#~ msgstr "允许用户连接到 mysql 套接字"
++#: ../gui/polgen.py:444
++msgid "use_syslog must be a boolean value "
++msgstr ""
  
 -#~ msgid "Allow user to connect to postgres socket"
--#~ msgstr "允許用戶連至 postgres socket"
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
-+msgstr "允許應用程式/用戶角色以 0 來調用 bindresvport。綁定至通訊埠 600-1024"
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
-+msgid "600-1024"
-+msgstr "600-1024"
+-#~ msgstr "允许用户连接到 postgres 套接字"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
  
 -#~ msgid "XServer"
--#~ msgstr "XServer"
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
+-#~ msgstr "X 服务器"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
 +msgstr ""
-+"輸入一個應用程式/用戶角色綁定至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範"
-+"圍。例如:612, 650-660"
  
 -#~ msgid "Allow clients to write to X shared memory"
--#~ msgstr "允許客戶端寫至 X 共享記憶體"
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
-+msgid "Unreserved Ports (>1024)"
-+msgstr "未保留的通訊埠(>1024)"
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
-+msgid "Select Ports"
-+msgstr "選擇通訊埠"
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
-+msgstr "允許應用程式/用戶角色綁定至任何大於 1024 的 udp 通訊埠"
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
-+msgid "<b>UDP Ports</b>"
-+msgstr "<b>UDP 通訊埠</b>"
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
-+msgstr "輸入應用程式/用戶連至的網路通訊埠"
+-#~ msgstr "允许用户写入 X 共享内存"
++#: ../gui/polgen.py:486
++msgid "USER Types automatically get a tmp type"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Allow xguest SELinux user account to execute files in home directory or /"
 -#~ "tmp"
--#~ msgstr "允許 xguest SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
-+#: ../gui/polgen.glade:1958
-+msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
+-#~ msgstr "允许 xguest SELinux 用户帐户执行主目录或 /tmp 中的文件"
++#: ../gui/polgen.py:1004
++msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+"輸入一個應用程式/用戶角色連至、以逗號區隔開的 tcp 通訊埠清單或是通訊埠範圍。"
-+"例如:612, 650-660"
  
 -#~ msgid "NIS"
 -#~ msgstr "NIS"
-+#: ../gui/polgen.glade:2111
-+msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++#: ../gui/polgen.py:1166
++msgid "Type Enforcement file"
 +msgstr ""
-+"輸入一個應用程式/用戶角色連至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範圍。"
-+"例如:612, 650-660"
  
 -#~ msgid "Allow daemons to run with NIS"
--#~ msgstr "允許 daemon 以 NIS 執行"
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
-+msgstr "選擇一般的應用程式特性"
-+
-+#: ../gui/polgen.glade:2202
-+msgid "Writes syslog messages\t"
-+msgstr "寫入 syslog 訊息\t"
-+
-+#: ../gui/polgen.glade:2221
-+msgid "Create/Manipulate temporary files in /tmp"
-+msgstr "建立/操作位於 /tmp 中的臨時檔案"
-+
-+#: ../gui/polgen.glade:2240
-+msgid "Uses Pam for authentication"
-+msgstr "使用 Pam 來進行驗證"
-+
-+#: ../gui/polgen.glade:2259
-+msgid "Uses nsswitch or getpw* calls"
-+msgstr "使用 nsswitch 或是 getpw* 調用"
-+
-+#: ../gui/polgen.glade:2278
-+msgid "Uses dbus"
-+msgstr "使用 dbus"
-+
-+#: ../gui/polgen.glade:2297
-+msgid "Sends audit messages"
-+msgstr "發送稽核訊息"
-+
-+#: ../gui/polgen.glade:2316
-+msgid "Interacts with the terminal"
-+msgstr "與終端機進行互動"
-+
-+#: ../gui/polgen.glade:2335
-+msgid "Sends email"
-+msgstr "發送電子郵件"
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr "選擇應用程式所管理的檔案/目錄"
+-#~ msgstr "允许守护进程访问 NIS"
++#: ../gui/polgen.py:1167
++msgid "Interface file"
++msgstr ""
  
 -#~ msgid "Web Applications"
--#~ msgstr "網站應用程式"
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
-+msgstr "新增應用程式需要「寫」至檔案/目錄。Pid 檔案、日誌檔、/var/lib 檔案 ..."
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
-+msgstr "選擇應用程式所使用的布林值"
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
-+msgstr "新增/移除這個受限制的應用程式/用戶所使用的布林值"
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
-+msgstr "選擇產生方針的目錄"
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
-+msgstr "方針目錄"
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
-+msgstr "產生的方針檔案"
+-#~ msgstr "网站应用程序"
++#: ../gui/polgen.py:1168
++msgid "File Contexts file"
++msgstr ""
  
 -#~ msgid "Transition staff SELinux user to Web Browser Domain"
--#~ msgstr "將 staff SELinux 用戶轉移至 Web Browser Domain"
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"此工具會產生下列:\n"
-+"類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
-+"以 root 來執行 shell script 並編譯/安裝和重新標記檔案/目錄?\n"
-+"使用 semanage 或是 useradd 來將 Linux 登錄用戶對映至用戶角色。\n"
-+"將機器設置為寬鬆模式(setenforce 0)。\n"
-+"以該用戶登入並測試此用戶角色。\n"
-+"使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
+-#~ msgstr "转换 staff SELinux 用户到浏览器域"
++#: ../gui/polgen.py:1169
++msgid "Setup Script"
++msgstr ""
  
 -#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
--#~ msgstr "將 sysadm SELinux 用戶轉移至 Web Browser Domain"
-+#: ../gui/polgen.glade:3025
+-#~ msgstr "转换 sysadm SELinux 用户到浏览器域"
++#: ../gui/polgen.py:1290
++#, python-format
 +msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
 +"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
-+msgstr ""
-+"此工具會產生下列:\n"
-+"類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
++"%s\n"
 +"\n"
-+"執行 shell script 來編譯/安裝和重新標記檔案/目錄。\n"
-+"將機器設置為寬鬆模式(setenforce 0)。\n"
-+"執行/重新啟動用程式來產生 avc 訊息。\n"
-+"使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
-+
-+#: ../gui/polgen.glade:3127
-+msgid "Add Booleans Dialog"
-+msgstr "新增布林值對話"
-+
-+#: ../gui/polgen.glade:3200
-+msgid "Boolean Name"
-+msgstr "布林值名稱"
-+
-+#: ../gui/polgengui.py:177
-+msgid "Role"
-+msgstr "角色"
-+
-+#: ../gui/polgengui.py:184
-+msgid "Existing_User"
-+msgstr "Existing_User"
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
-+msgid "Application"
-+msgstr "應用程式"
-+
-+#: ../gui/polgengui.py:269
-+#, python-format
-+msgid "%s must be a directory"
-+msgstr "%s 必須要是個目錄"
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
-+msgid "You must select a user"
-+msgstr "您必須選擇用戶"
-+
-+#: ../gui/polgengui.py:453
-+msgid "Select executable file to be confined."
-+msgstr "選擇要限制的可執行檔。"
-+
-+#: ../gui/polgengui.py:464
-+msgid "Select init script file to be confined."
-+msgstr "選擇要限制的 init script 檔案。"
-+
-+#: ../gui/polgengui.py:474
-+msgid "Select file(s) that confined application creates or writes"
-+msgstr "選擇限制了應用程式建立或寫入的檔案"
-+
-+#: ../gui/polgengui.py:481
-+msgid "Select directory(s) that the confined application owns and writes into"
-+msgstr "選擇被限制的應用程式所屬並寫入的目錄"
-+
-+#: ../gui/polgengui.py:541
-+msgid "Select directory to generate policy files in"
-+msgstr "選擇產生方針檔案的目錄"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
  
 -#~ msgid "Transition user SELinux user to Web Browser Domain"
--#~ msgstr "將 user SELinux 用戶轉移至 Web Browser Domain"
-+#: ../gui/polgengui.py:554
-+#, python-format
-+msgid ""
-+"Type %s_t already defined in current policy.\n"
-+"Do you want to continue?"
+-#~ msgstr "转换 user(一般用户)SELinux 用户到浏览器域"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
 +msgstr ""
-+"類型 %s_t 已定義於目前的方針中。\n"
-+"請問您是否希望繼續進行?"
  
 -#~ msgid "Transition xguest SELinux user to Web Browser Domain"
--#~ msgstr "將 xguest SELinux 用戶轉移至 Web Browser Domain"
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
-+msgid "Verify Name"
-+msgstr "驗證名稱"
--#~ msgid "Allow staff Web Browsers to write to home directories"
--#~ msgstr "允許 staff Web Browsers 寫至家目錄"
-+#: ../gui/polgengui.py:558
-+#, python-format
-+msgid ""
-+"Module %s.pp already loaded in current policy.\n"
-+"Do you want to continue?"
-+msgstr ""
-+"模組 %s.pp 已載入目前的方針中。\n"
-+"請問您是否希望繼續進行?"
--#~ msgid "Disable SELinux protection for amanda"
--#~ msgstr "停用 amanda 的 SELinux 保護"
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
-+msgstr "您必須輸入名稱"
--#~ msgid "Disable SELinux protection for amavis"
--#~ msgstr "停用 amavis 的 SELinux 保護"
-+#: ../gui/polgengui.py:610
-+msgid "You must enter a executable"
-+msgstr "您必須輸入可執行檔"
--#~ msgid "Disable SELinux protection for apmd daemon"
--#~ msgstr "停用 apmd daemon 的 SELinux 保護"
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
-+msgid "Configue SELinux"
-+msgstr "設定 SELinux"
--#~ msgid "Disable SELinux protection for arpwatch daemon"
--#~ msgstr "停用 arpwatch daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:174
-+#, python-format
-+msgid "Ports must be numbers or ranges of numbers from 1 to %d "
-+msgstr "通訊埠必須以介於 1 與 %d 之間的數字來構成"
--#~ msgid "Disable SELinux protection for auditd daemon"
--#~ msgstr "停用 auditd daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:204
-+msgid "You must enter a name for your confined process/user"
-+msgstr "您必須為您限制的程序 / 用戶輸入名稱"
--#~ msgid "Disable SELinux protection for automount daemon"
--#~ msgstr "停用 automount daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
-+msgstr "USER 類型不是被允許的可執行檔"
--#~ msgid "Disable SELinux protection for avahi"
--#~ msgstr "停用 avahi 的 SELinux 保護"
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
-+msgstr "只有 DAEMON apps 可以使用 init script"
--#~ msgid "Disable SELinux protection for bluetooth daemon"
--#~ msgstr "停用 bluetooth daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:306
-+msgid "use_syslog must be a boolean value "
-+msgstr "use_syslog 必須是布林值"
--#~ msgid "Disable SELinux protection for canna daemon"
--#~ msgstr "停用 canna daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:327
-+msgid "USER Types automatically get a tmp type"
-+msgstr "USER 類型會自動取得一個 tmp 類型"
--#~ msgid "Disable SELinux protection for cardmgr daemon"
--#~ msgstr "停用 cardmgr daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:729
-+msgid "You must enter the executable path for your confined process"
-+msgstr "您必須輸入您限制的程序的可執行檔路徑"
--#~ msgid "Disable SELinux protection for Cluster Server"
--#~ msgstr "停用 Cluster Server 的 SELinux 保護"
-+#: ../gui/polgen.py:848
-+msgid "Type Enforcement file"
-+msgstr "類型強制檔"
--#~ msgid ""
--#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
--#~ "user temp and untrusted content files"
--#~ msgstr ""
--#~ "允許 cdrecord 讀取各種內容。nfs、samba、卸除式裝置、用戶 temp 和不信任的內"
--#~ "容檔案"
-+#: ../gui/polgen.py:849
-+msgid "Interface file"
-+msgstr "介面檔案"
--#~ msgid "Disable SELinux protection for ciped daemon"
--#~ msgstr "停用 ciped daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:850
-+msgid "File Contexts file"
-+msgstr "檔案 Context 檔"
--#~ msgid "Disable SELinux protection for clamd daemon"
--#~ msgstr "停用 clamd daemon 的 SELinux 保護"
-+#: ../gui/polgen.py:851
-+msgid "Setup Script"
-+msgstr "設定 Script"
--#~ msgid "Disable SELinux protection for clamscan"
--#~ msgstr "停用 clamscan 的 SELinux 保護"
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgstr "转换 xguest SELinux 用户到浏览器域"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
-+msgstr "網路通訊埠"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for clvmd"
--#~ msgstr "å\81\9cç\94¨ clvmd ç\9a\84 SELinux ä¿\9dè­·"
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "å\85\81许 staff æµ\8fè§\88å\99¨å\86\99å\85¥ä¸ªäººç\9b®å½\95"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+"SELinux 通訊埠\n"
-+"類型"
  
--#~ msgid "Disable SELinux protection for comsat daemon"
--#~ msgstr "停用 comsat daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "禁用 amanda 的 SELinux 保护"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
-+msgstr "通訊協定"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for courier daemon"
--#~ msgstr "停用 courier daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "禁用 amavis 的 SELinux 保护"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+"MLS/MCS\n"
-+"等級"
  
--#~ msgid "Disable SELinux protection for cpucontrol daemon"
--#~ msgstr "停用 cpucontrol daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "禁用 apmd 守护进程的 SELinux 保护"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
-+msgstr "通訊埠"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "禁用 arpwatch 守护进程的 SELinux 保护"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
-+msgstr "通訊埠號「%s」無效。0 < PORT_NUMBER < 65536 "
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "禁用 auditd 守护进程的 SELinux 保护"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
-+msgstr "清單視點"
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
++msgstr ""
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "禁用 automount 守护进程的 SELinux 保护"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
-+msgstr "群組視點"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "禁用 avahi 的 SELinux 保护"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -287254,27 +238072,41 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_TW.po policycoreut
 +#: ../gui/selinux.tbl:220 ../gui/selinux.tbl:222 ../gui/selinux.tbl:224
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
-+msgstr "SELinux 服務保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "禁用 bluetooth 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
-+msgstr "停用 acct daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "禁用 canna 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
-+msgstr "管理員"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "禁用 cardmgr 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
-+msgstr "允許所有 daemon 將 corefile 寫至 /"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "禁用集群服务器的 SELinux 保护"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
-+msgstr "允許所有 daemon 使用未分配的 ttys"
-+
++msgstr ""
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "允许 cdrecord 读取各种内容。nfs, samba, 可移动存储,用户临时文件和不可信任"
+-#~ "的内容"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -287282,2537 +238114,1743 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_TW.po policycoreut
 +#: ../gui/selinux.tbl:213 ../gui/selinux.tbl:214 ../gui/selinux.tbl:215
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
-+msgstr "用戶 Privs"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for cpuspeed daemon"
--#~ msgstr "停用 cpuspeed daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "禁用 ciped 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 gadmin SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
++msgstr ""
  
--#~ msgid "Cron"
--#~ msgstr "Cron"
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "禁用 clamd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 guest SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for crond daemon"
--#~ msgstr "停用 crond daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "禁用 clamscan 的 SELinux 保护"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
-+msgstr "記憶體保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "禁用 clvmd 的 SELinux 保护"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
-+msgstr "允許 java 執行堆疊"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "禁用 comsat 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
-+msgstr "掛載"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "禁用 courier 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
-+msgstr "允許 mount 掛載任何檔案"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "禁用 cpucontrol 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
-+msgstr "允許 mount 掛載任何目錄"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "禁用 cpuspeed 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
-+msgstr "允許 mplayer 可執行堆疊"
-+
++msgstr ""
+-#~ msgid "Cron"
+-#~ msgstr "Cron 计划任务"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
-+msgstr "SSH"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "禁用 crond 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
-+msgstr "允許 ssh 執行 ssh-keysign"
++msgstr ""
  
 -#~ msgid "Printing"
--#~ msgstr "印"
+-#~ msgstr "印"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 staff SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd back end server"
--#~ msgstr "停用 cupsd 後端伺服器的 SELinux 保護"
+-#~ msgstr "禁止 cupsd 后端服务器的 SELinux 保护"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 sysadm SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cupsd daemon"
--#~ msgstr "停用 cupsd daemon 的 SELinux 保護"
+-#~ msgstr "禁止 cupsd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
-+msgstr "允許 unconfined SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "禁止 cupsd_lpd 的 SELinux 保护"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
-+msgstr "網路配置"
-+
++msgstr ""
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
-+msgstr "允許未標記的封包在網路上流動"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for cupsd_lpd"
--#~ msgstr "停用 cupsd_lpd 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "禁止 cvs 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 user SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++msgstr ""
  
--#~ msgid "CVS"
--#~ msgstr "CVS"
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "禁止 cyrus 守护进程的 SELinux 保护<"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
-+msgstr "允許 unconfined dyntrans 至 unconfined_execmem"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "禁止 dbskkd 守护进程的 SELinux 保护<"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
-+msgstr "資料庫"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "禁止 dbusd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
-+msgstr "允許用戶連至 mysql socket"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "禁止 dccd 的 SELinux 保护"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
-+msgstr "允許用戶連至 postgres socket"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "禁止 dccifd 的 SELinux 保护"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
-+msgstr "XServer"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "禁止 dccm 的 SELinux 保护"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
-+msgstr "允許客戶端寫至 X 共享記憶體"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for cvs daemon"
--#~ msgstr "停用 cvs daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "禁止 ddt 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
-+msgstr "允許 xguest SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for cyrus daemon"
--#~ msgstr "停用 cyrus daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "禁止 devfsd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
-+msgstr "NIS"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "禁止 dhcpc 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
-+msgstr "允許 daemon 以 NIS 執行"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "禁止 dhcpd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
 +#: ../gui/selinux.tbl:73 ../gui/selinux.tbl:74 ../gui/selinux.tbl:115
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
-+msgstr "網站應用程式"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "禁止 dictd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
-+msgstr "將 staff SELinux 用戶轉移至 Web Browser Domain"
-+
++msgstr ""
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "允许 sysadm_t 直接启动守护进程"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
-+msgstr "將 sysadm SELinux 用戶轉移至 Web Browser Domain"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "禁止 Evolution 的 SELinux 保护"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
-+msgstr "將 user SELinux 用戶轉移至 Web Browser Domain"
-+
++msgstr ""
+-#~ msgid "Games"
+-#~ msgstr "游戏"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
-+msgstr "將 xguest SELinux 用戶轉移至 Web Browser Domain"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "禁止游戏的 SELinux 保护"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
-+msgstr "允許 staff Web Browsers 寫至家目錄"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "禁止网页浏览器的 SELinux 保护"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
-+msgstr "停用 amanda 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "禁止 Thunderbird 的 SELinux 保护"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
-+msgstr "停用 amavis 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "禁止 distccd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
-+msgstr "停用 apmd daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "禁止 dmesg 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
-+msgstr "停用 arpwatch daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "禁止 dnsmasq 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
-+msgstr "停用 auditd daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "禁止 dovecot 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
-+msgstr "停用 automount daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "禁止 entropyd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
-+msgstr "停用 avahi 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "禁止 fetchmail 的 SELinux 保护"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
-+msgstr "停用 bluetooth daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "禁止 fingerd 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
-+msgstr "停用 canna daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "禁止 freshclam 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
-+msgstr "停用 cardmgr daemon 的 SELinux 保護"
-+
++msgstr ""
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "禁止 fsdaemon 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
-+msgstr "停用 Cluster Server 的 SELinux 保護"
++msgstr ""
  
--#~ msgid "Disable SELinux protection for dbskkd daemon"
--#~ msgstr "停用 dbskkd daemon 的 SELinux 保護"
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "禁止 gpm 守护进程的 SELinux 保护"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+"允許 cdrecord 讀取各種內容。nfs、samba、卸除式裝置、用戶 temp 和不信任的內容"
-+"檔案"
  
--#~ msgid "Disable SELinux protection for dbusd daemon"
--#~ msgstr "停用 dbusd daemon 的 SELinux 保護"
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
-+msgstr "停用 ciped daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:43
-+msgid "Disable SELinux protection for clamd daemon"
-+msgstr "停用 clamd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:44
-+msgid "Disable SELinux protection for clamscan"
-+msgstr "停用 clamscan 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:45
-+msgid "Disable SELinux protection for clvmd"
-+msgstr "停用 clvmd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:46
-+msgid "Disable SELinux protection for comsat daemon"
-+msgstr "停用 comsat daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
-+#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
-+msgid "Disable SELinux protection for courier daemon"
-+msgstr "停用 courier daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:52
-+msgid "Disable SELinux protection for cpucontrol daemon"
-+msgstr "停用 cpucontrol daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:53
-+msgid "Disable SELinux protection for cpuspeed daemon"
-+msgstr "停用 cpuspeed daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Cron"
-+msgstr "Cron"
-+
-+#: ../gui/selinux.tbl:54
-+msgid "Disable SELinux protection for crond daemon"
-+msgstr "停用 crond daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
-+#: ../gui/selinux.tbl:91
-+msgid "Printing"
-+msgstr "列印"
-+
-+#: ../gui/selinux.tbl:55
-+msgid "Disable SELinux protection for cupsd back end server"
-+msgstr "停用 cupsd 後端伺服器的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:56
-+msgid "Disable SELinux protection for cupsd daemon"
-+msgstr "停用 cupsd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:57
-+msgid "Disable SELinux protection for cupsd_lpd"
-+msgstr "停用 cupsd_lpd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "CVS"
-+msgstr "CVS"
-+
-+#: ../gui/selinux.tbl:58
-+msgid "Disable SELinux protection for cvs daemon"
-+msgstr "停用 cvs daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:59
-+msgid "Disable SELinux protection for cyrus daemon"
-+msgstr "停用 cyrus daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:60
-+msgid "Disable SELinux protection for dbskkd daemon"
-+msgstr "停用 dbskkd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:61
-+msgid "Disable SELinux protection for dbusd daemon"
-+msgstr "停用 dbusd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:62
-+msgid "Disable SELinux protection for dccd"
-+msgstr "停用 dccd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:63
-+msgid "Disable SELinux protection for dccifd"
-+msgstr "停用 dccifd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:64
-+msgid "Disable SELinux protection for dccm"
-+msgstr "停用 dccm 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:65
-+msgid "Disable SELinux protection for ddt daemon"
-+msgstr "停用 ddt daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:66
-+msgid "Disable SELinux protection for devfsd daemon"
-+msgstr "停用 devfsd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:67
-+msgid "Disable SELinux protection for dhcpc daemon"
-+msgstr "停用 dhcpc daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:68
-+msgid "Disable SELinux protection for dhcpd daemon"
-+msgstr "停用 dhcpd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:69
-+msgid "Disable SELinux protection for dictd daemon"
-+msgstr "停用 dictd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:70
-+msgid "Allow sysadm_t to directly start daemons"
-+msgstr "允許 sysadm_t 直接啟用 daemon"
-+
-+#: ../gui/selinux.tbl:71
-+msgid "Disable SELinux protection for Evolution"
-+msgstr "停用 Evolution 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Games"
-+msgstr "遊戲"
-+
-+#: ../gui/selinux.tbl:72
-+msgid "Disable SELinux protection for games"
-+msgstr "停用 games 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:73
-+msgid "Disable SELinux protection for the web browsers"
-+msgstr "停用 web browsers 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:74
-+msgid "Disable SELinux protection for Thunderbird"
-+msgstr "停用 Thunderbird 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:75
-+msgid "Disable SELinux protection for distccd daemon"
-+msgstr "停用 distccd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:76
-+msgid "Disable SELinux protection for dmesg daemon"
-+msgstr "停用 dmesg daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:77
-+msgid "Disable SELinux protection for dnsmasq daemon"
-+msgstr "停用 dnsmasq daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:78
-+msgid "Disable SELinux protection for dovecot daemon"
-+msgstr "停用 dovecot daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:79
-+msgid "Disable SELinux protection for entropyd daemon"
-+msgstr "停用 entropyd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:80
-+msgid "Disable SELinux protection for fetchmail"
-+msgstr "停用 fetchmail 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:81
-+msgid "Disable SELinux protection for fingerd daemon"
-+msgstr "停用 fingerd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:82
-+msgid "Disable SELinux protection for freshclam daemon"
-+msgstr "停用 freshclam daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:83
-+msgid "Disable SELinux protection for fsdaemon daemon"
-+msgstr "停用 fsdaemon daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:84
-+msgid "Disable SELinux protection for gpm daemon"
-+msgstr "停用 gpm daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
-+msgid "NFS"
-+msgstr "NFS"
-+
-+#: ../gui/selinux.tbl:85
-+msgid "Disable SELinux protection for gss daemon"
-+msgstr "停用 gss daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:86
-+msgid "Disable SELinux protection for Hal daemon"
-+msgstr "停用 Hal daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:87
-+msgid "Compatibility"
-+msgstr "相容性"
--#~ msgid "Disable SELinux protection for dccd"
--#~ msgstr "停用 dccd 的 SELinux 保護"
-+#: ../gui/selinux.tbl:87
-+msgid ""
-+"Do not audit things that we know to be broken but which are not security "
-+"risks"
-+msgstr "不稽核我們已知損壞,卻不會造成安全性風險的物件"
-+
-+#: ../gui/selinux.tbl:88
-+msgid "Disable SELinux protection for hostname daemon"
-+msgstr "停用 hostname daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:89
-+msgid "Disable SELinux protection for hotplug daemon"
-+msgstr "停用 hotplug daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:90
-+msgid "Disable SELinux protection for howl daemon"
-+msgstr "停用 howl daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:91
-+msgid "Disable SELinux protection for cups hplip daemon"
-+msgstr "停用 cups hplip daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:92
-+msgid "Disable SELinux protection for httpd rotatelogs"
-+msgstr "停用 httpd rotatelogs 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
-+msgid "HTTPD Service"
-+msgstr "HTTPD 服務"
-+
-+#: ../gui/selinux.tbl:93
-+msgid "Disable SELinux protection for http suexec"
-+msgstr "停用 http suexec 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:94
-+msgid "Disable SELinux protection for hwclock daemon"
-+msgstr "停用 hwclock daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:95
-+msgid "Disable SELinux protection for i18n daemon"
-+msgstr "停用 i18n daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:96
-+msgid "Disable SELinux protection for imazesrv daemon"
-+msgstr "停用 imazesrv daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:97
-+msgid "Disable SELinux protection for inetd child daemons"
-+msgstr "停用 inetd child daemons 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:98
-+msgid "Disable SELinux protection for inetd daemon"
-+msgstr "停用 inetd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:99
-+msgid "Disable SELinux protection for innd daemon"
-+msgstr "停用 innd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:100
-+msgid "Disable SELinux protection for iptables daemon"
-+msgstr "停用 iptables daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:101
-+msgid "Disable SELinux protection for ircd daemon"
-+msgstr "停用 ircd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:102
-+msgid "Disable SELinux protection for irqbalance daemon"
-+msgstr "停用 irqbalance daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:103
-+msgid "Disable SELinux protection for iscsi daemon"
-+msgstr "停用 iscsi daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:104
-+msgid "Disable SELinux protection for jabberd daemon"
-+msgstr "停用 jabberd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
-+msgid "Kerberos"
-+msgstr "Kerberos"
-+
-+#: ../gui/selinux.tbl:105
-+msgid "Disable SELinux protection for kadmind daemon"
-+msgstr "停用 kadmind daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:106
-+msgid "Disable SELinux protection for klogd daemon"
-+msgstr "停用 klogd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:107
-+msgid "Disable SELinux protection for krb5kdc daemon"
-+msgstr "停用 krb5kdc daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:108
-+msgid "Disable SELinux protection for ktalk daemons"
-+msgstr "停用 ktalk daemons 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:109
-+msgid "Disable SELinux protection for kudzu daemon"
-+msgstr "停用 kudzu daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:110
-+msgid "Disable SELinux protection for locate daemon"
-+msgstr "停用 locate daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:111
-+msgid "Disable SELinux protection for lpd daemon"
-+msgstr "停用 lpd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:112
-+msgid "Disable SELinux protection for lrrd daemon"
-+msgstr "停用 lrrd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:113
-+msgid "Disable SELinux protection for lvm daemon"
-+msgstr "停用 lvm daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:114
-+msgid "Disable SELinux protection for mailman"
-+msgstr "停用 mailman 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:115
-+msgid "Allow evolution and thunderbird to read user files"
-+msgstr "允許 evolution 和 thunderbird 讀取用戶檔案"
-+
-+#: ../gui/selinux.tbl:116
-+msgid "Disable SELinux protection for mdadm daemon"
-+msgstr "停用 mdadm daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:117
-+msgid "Disable SELinux protection for monopd daemon"
-+msgstr "停用 monopd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:118
-+msgid "Allow the mozilla browser to read user files"
-+msgstr "允許 mozilla 瀏覽器讀取用戶檔案"
-+
-+#: ../gui/selinux.tbl:119
-+msgid "Disable SELinux protection for mrtg daemon"
-+msgstr "停用 mrtg daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:120
-+msgid "Disable SELinux protection for mysqld daemon"
-+msgstr "停用 mysqld daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:121
-+msgid "Disable SELinux protection for nagios daemon"
-+msgstr "停用 nagios daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
-+msgid "Name Service"
-+msgstr "名稱服務"
-+
-+#: ../gui/selinux.tbl:122
-+msgid "Disable SELinux protection for named daemon"
-+msgstr "停用 named daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:123
-+msgid "Disable SELinux protection for nessusd daemon"
-+msgstr "停用 nessusd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:124
-+msgid "Disable SELinux protection for NetworkManager"
-+msgstr "停用 NetworkManager 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:125
-+msgid "Disable SELinux protection for nfsd daemon"
-+msgstr "停用 nfsd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
-+#: ../gui/selinux.tbl:221
-+msgid "Samba"
-+msgstr "Samba"
-+
-+#: ../gui/selinux.tbl:126
-+msgid "Disable SELinux protection for nmbd daemon"
-+msgstr "停用 nmbd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:127
-+msgid "Disable SELinux protection for nrpe daemon"
-+msgstr "停用 nrpe daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:128
-+msgid "Disable SELinux protection for nscd daemon"
-+msgstr "停用 nscd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:129
-+msgid "Disable SELinux protection for nsd daemon"
-+msgstr "停用 nsd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:130
-+msgid "Disable SELinux protection for ntpd daemon"
-+msgstr "停用 ntpd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:131
-+msgid "Disable SELinux protection for oddjob"
-+msgstr "停用 oddjob 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:132
-+msgid "Disable SELinux protection for oddjob_mkhomedir"
-+msgstr "停用 oddjob_mkhomedir 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:133
-+msgid "Disable SELinux protection for openvpn daemon"
-+msgstr "停用 openvpn daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:134
-+msgid "Disable SELinux protection for pam daemon"
-+msgstr "停用 pam daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:135
-+msgid "Disable SELinux protection for pegasus"
-+msgstr "停用 pegasus 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:136
-+msgid "Disable SELinux protection for perdition daemon"
-+msgstr "停用 perdition daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:137
-+msgid "Disable SELinux protection for portmap daemon"
-+msgstr "停用 portmap daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:138
-+msgid "Disable SELinux protection for portslave daemon"
-+msgstr "停用 portslave daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:139
-+msgid "Disable SELinux protection for postfix"
-+msgstr "停用 postfix 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:140
-+msgid "Disable SELinux protection for postgresql daemon"
-+msgstr "停用 postgresql daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "pppd"
-+msgstr "pppd"
-+
-+#: ../gui/selinux.tbl:141
-+msgid "Allow pppd to be run for a regular user"
-+msgstr "允許 pppd 為一般用戶執行"
-+
-+#: ../gui/selinux.tbl:142
-+msgid "Disable SELinux protection for pptp"
-+msgstr "停用 pptp 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:143
-+msgid "Disable SELinux protection for prelink daemon"
-+msgstr "停用 prelink daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:144
-+msgid "Disable SELinux protection for privoxy daemon"
-+msgstr "停用 privoxy daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:145
-+msgid "Disable SELinux protection for ptal daemon"
-+msgstr "停用 ptal daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:146
-+msgid "Disable SELinux protection for pxe daemon"
-+msgstr "停用 pxe daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:147
-+msgid "Disable SELinux protection for pyzord"
-+msgstr "停用 pyzord 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:148
-+msgid "Disable SELinux protection for quota daemon"
-+msgstr "停用 quota daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:149
-+msgid "Disable SELinux protection for radiusd daemon"
-+msgstr "停用 radiusd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:150
-+msgid "Disable SELinux protection for radvd daemon"
-+msgstr "停用 radvd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:151
-+msgid "Disable SELinux protection for rdisc"
-+msgstr "停用 rdisc 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:152
-+msgid "Disable SELinux protection for readahead"
-+msgstr "停用 readahead 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:153
-+msgid "Allow programs to read files in non-standard locations (default_t)"
-+msgstr "允許程式讀取位於非標準位置上的檔案(default_t)"
-+
-+#: ../gui/selinux.tbl:154
-+msgid "Disable SELinux protection for restorecond"
-+msgstr "停用 restorecond 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:155
-+msgid "Disable SELinux protection for rhgb daemon"
-+msgstr "停用 rhgb daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:156
-+msgid "Disable SELinux protection for ricci"
-+msgstr "停用 ricci 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:157
-+msgid "Disable SELinux protection for ricci_modclusterd"
-+msgstr "停用 ricci_modclusterd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:158
-+msgid "Disable SELinux protection for rlogind daemon"
-+msgstr "停用 rlogind daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:159
-+msgid "Disable SELinux protection for rpcd daemon"
-+msgstr "停用 rpcd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:160
-+msgid "Disable SELinux protection for rshd"
-+msgstr "停用 rshd 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "rsync"
-+msgstr "rsync"
-+
-+#: ../gui/selinux.tbl:161
-+msgid "Disable SELinux protection for rsync daemon"
-+msgstr "停用 rsync daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:162
-+msgid "Allow ssh to run from inetd instead of as a daemon"
-+msgstr "允許 ssh 由 inetd 執行而不是以一個 daemon 來執行"
-+
-+#: ../gui/selinux.tbl:163
-+msgid "Allow Samba to share nfs directories"
-+msgstr "允許 Samba 共享 nfs 目錄"
-+
-+#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
-+msgid "SASL authentication server"
-+msgstr "SASL 驗證伺服器"
-+
-+#: ../gui/selinux.tbl:164
-+msgid "Allow sasl authentication server to read /etc/shadow"
-+msgstr "允許 sasl 驗證伺服器讀取 /etc/shadow"
--#~ msgid "Disable SELinux protection for dccifd"
--#~ msgstr "停用 dccifd 的 SELinux 保護"
-+#: ../gui/selinux.tbl:165
-+msgid ""
-+"Allow X-Windows server to map a memory region as both executable and writable"
-+msgstr "允許 X-Windows 伺服器將一個 memory region 同時對映為可執行與可寫"
--#~ msgid "Disable SELinux protection for dccm"
--#~ msgstr "停用 dccm 的 SELinux 保護"
-+#: ../gui/selinux.tbl:166
-+msgid "Disable SELinux protection for saslauthd daemon"
-+msgstr "停用 saslauthd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:167
-+msgid "Disable SELinux protection for scannerdaemon daemon"
-+msgstr "停用 scannerdaemon daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:168
-+msgid "Do not allow transition to sysadm_t, sudo and su effected"
-+msgstr "不允許轉移至受影響的 sysadm_t、sudo 和 su"
-+
-+#: ../gui/selinux.tbl:169
-+msgid "Do not allow any processes to load kernel modules"
-+msgstr "不允許任何程序載入 kernel 模組"
-+
-+#: ../gui/selinux.tbl:170
-+msgid "Do not allow any processes to modify kernel SELinux policy"
-+msgstr "不允許任何程序修改 kernel SELinux 方針"
-+
-+#: ../gui/selinux.tbl:171
-+msgid "Disable SELinux protection for sendmail daemon"
-+msgstr "停用 sendmail daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:172
-+msgid "Disable SELinux protection for setrans"
-+msgstr "停用 setrans 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:173
-+msgid "Disable SELinux protection for setroubleshoot daemon"
-+msgstr "停用 setroubleshoot daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:174
-+msgid "Disable SELinux protection for slapd daemon"
-+msgstr "停用 slapd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:175
-+msgid "Disable SELinux protection for slrnpull daemon"
-+msgstr "停用 slrnpull daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:176
-+msgid "Disable SELinux protection for smbd daemon"
-+msgstr "停用 smbd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:177
-+msgid "Disable SELinux protection for snmpd daemon"
-+msgstr "停用 snmpd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:178
-+msgid "Disable SELinux protection for snort daemon"
-+msgstr "停用 snort daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:179
-+msgid "Disable SELinux protection for soundd daemon"
-+msgstr "停用 soundd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:180
-+msgid "Disable SELinux protection for sound daemon"
-+msgstr "停用 sound daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
-+msgid "Spam Protection"
-+msgstr "垃圾郵件保護"
-+
-+#: ../gui/selinux.tbl:181
-+msgid "Disable SELinux protection for spamd daemon"
-+msgstr "停用 spamd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:182
-+msgid "Allow spamd to access home directories"
-+msgstr "允許 spamd 存取家目錄"
-+
-+#: ../gui/selinux.tbl:183
-+msgid "Allow Spam Assassin daemon network access"
-+msgstr "允許 Spam Assassin daemon 網路存取"
-+
-+#: ../gui/selinux.tbl:184
-+msgid "Disable SELinux protection for speedmgmt daemon"
-+msgstr "停用 speedmgmt daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
-+msgid "Squid"
-+msgstr "Squid"
-+
-+#: ../gui/selinux.tbl:185
-+msgid "Allow squid daemon to connect to the network"
-+msgstr "允許 squid daemon 連至網路"
-+
-+#: ../gui/selinux.tbl:186
-+msgid "Disable SELinux protection for squid daemon"
-+msgstr "停用 squid daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:187
-+msgid "Disable SELinux protection for ssh daemon"
-+msgstr "停用 ssh daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:188
-+msgid "Allow ssh logins as sysadm_r:sysadm_t"
-+msgstr "允許以 sysadm_r:sysadm_t 進行 ssh 登錄"
--#~ msgid "Disable SELinux protection for ddt daemon"
--#~ msgstr "停用 ddt daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:189
-+msgid ""
-+"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
-+"bashrc)"
-+msgstr "允許 staff_r users 搜尋 sysadm home dir 並讀取檔案(例如 ~/.bashrc)"
-+
-+#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
-+msgid "Universal SSL tunnel"
-+msgstr "全域 SSL 通道"
-+
-+#: ../gui/selinux.tbl:190
-+msgid "Disable SELinux protection for stunnel daemon"
-+msgstr "停用 stunnel daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:191
-+msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
-+msgstr "允許 stunnel daemon 獨立地執行於 xinetd 之外"
-+
-+#: ../gui/selinux.tbl:192
-+msgid "Disable SELinux protection for swat daemon"
-+msgstr "停用 swat daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:193
-+msgid "Disable SELinux protection for sxid daemon"
-+msgstr "停用 sxid daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:194
-+msgid "Disable SELinux protection for syslogd daemon"
-+msgstr "停用 syslogd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:195
-+msgid "Disable SELinux protection for system cron jobs"
-+msgstr "停用 system cron jobs 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:196
-+msgid "Disable SELinux protection for tcp daemon"
-+msgstr "停用 tcp daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:197
-+msgid "Disable SELinux protection for telnet daemon"
-+msgstr "停用 telnet daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:198
-+msgid "Disable SELinux protection for tftpd daemon"
-+msgstr "停用 tftpd daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:199
-+msgid "Disable SELinux protection for transproxy daemon"
-+msgstr "停用 transproxy daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:200
-+msgid "Disable SELinux protection for udev daemon"
-+msgstr "停用 udev daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:201
-+msgid "Disable SELinux protection for uml daemon"
-+msgstr "停用 uml daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for devfsd daemon"
--#~ msgstr "停用 devfsd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:202
-+msgid ""
-+"Allow xinetd to run unconfined, including any services it starts that do not "
-+"have a domain transition explicitly defined"
-+msgstr ""
-+"允許 xinetd 以不被限制的方式執行,包括任何它所啟用的、未清楚定義網域轉移的服"
-+"務"
--#~ msgid "Disable SELinux protection for dhcpc daemon"
--#~ msgstr "停用 dhcpc daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:203
-+msgid ""
-+"Allow rc scripts to run unconfined, including any daemon started by an rc "
-+"script that does not have a domain transition explicitly defined"
-+msgstr ""
-+"允許 rc script 以不受限制的方式執行,包括任何 rc script 所啟用的、未清楚定義"
-+"網域轉移的 daemon"
--#~ msgid "Disable SELinux protection for dhcpd daemon"
--#~ msgstr "停用 dhcpd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:204
-+msgid "Allow rpm to run unconfined"
-+msgstr "允許 rpm 以不受限制的方式執行"
-+
-+#: ../gui/selinux.tbl:205
-+msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
-+msgstr "允許有特權的工具程式(例如 hotplug 和 insmod)以不受限制的方式執行"
-+
-+#: ../gui/selinux.tbl:206
-+msgid "Disable SELinux protection for updfstab daemon"
-+msgstr "停用 updfstab daemon 的 SELinux 保護"
-+
-+#: ../gui/selinux.tbl:207
-+msgid "Disable SELinux protection for uptimed daemon"
-+msgstr "停用 uptimed daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for dictd daemon"
--#~ msgstr "停用 dictd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:208
-+msgid ""
-+"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
-+"staff_r can do so"
-+msgstr ""
-+"允許 user_r 透過 su、sudo 或 userhelper 來連至 sysadm_r。否則,只有 staff_r "
-+"可以這麼作"
--#~ msgid "Allow sysadm_t to directly start daemons"
--#~ msgstr "允許 sysadm_t 直接啟用 daemon"
-+#: ../gui/selinux.tbl:209
-+msgid "Allow users to execute the mount command"
-+msgstr "允許用戶執行 mount 指令"
-+
-+#: ../gui/selinux.tbl:210
-+msgid "Allow regular users direct mouse access (only allow the X server)"
-+msgstr "允許一般用戶的直接滑鼠存取(只允許 X server)"
-+
-+#: ../gui/selinux.tbl:211
-+msgid "Allow users to run the dmesg command"
-+msgstr "允許用戶執行 dmesg 指令"
-+
-+#: ../gui/selinux.tbl:212
-+msgid "Allow users to control network interfaces (also needs USERCTL=true)"
-+msgstr "允許用戶控制網路介面(也需要 USERCTL=true)"
-+
-+#: ../gui/selinux.tbl:213
-+msgid "Allow normal user to execute ping"
-+msgstr "允許一般用戶執行 ping"
-+
-+#: ../gui/selinux.tbl:214
-+msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
-+msgstr "允許用戶 r/w noextattrfile(FAT、CDROM、FLOPPY)"
-+
-+#: ../gui/selinux.tbl:215
-+msgid "Allow users to rw usb devices"
-+msgstr "允許用戶 rw usb 裝置"
--#~ msgid "Disable SELinux protection for Evolution"
--#~ msgstr "停用 Evolution 的 SELinux 保護"
-+#: ../gui/selinux.tbl:216
-+msgid ""
-+"Allow users to run TCP servers (bind to ports and accept connection from the "
-+"same domain and outside users)  disabling this forces FTP passive mode and "
-+"may change other protocols"
 +msgstr ""
-+"允許用戶執行 TCP 伺服器(綁定至通訊埠並接受來自相同網域和外部用戶的連線)停用"
-+"此選項會強制 FTP 被動模式並且可能會更改其它通訊協定"
--#~ msgid "Games"
--#~ msgstr "遊戲"
-+#: ../gui/selinux.tbl:217
-+msgid "Allow user to stat ttyfiles"
-+msgstr "允許用戶 stat ttyfiles"
--#~ msgid "Disable SELinux protection for games"
--#~ msgstr "停用 games 的 SELinux 保護"
-+#: ../gui/selinux.tbl:218
-+msgid "Disable SELinux protection for uucpd daemon"
-+msgstr "停用 uucpd daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for the web browsers"
--#~ msgstr "停用 web browsers 的 SELinux 保護"
-+#: ../gui/selinux.tbl:219
-+msgid "Disable SELinux protection for vmware daemon"
-+msgstr "停用 vmware daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for Thunderbird"
--#~ msgstr "停用 Thunderbird 的 SELinux 保護"
-+#: ../gui/selinux.tbl:220
-+msgid "Disable SELinux protection for watchdog daemon"
-+msgstr "停用 watchdog daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for distccd daemon"
--#~ msgstr "停用 distccd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:221
-+msgid "Disable SELinux protection for winbind daemon"
-+msgstr "停用 winbind daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for dmesg daemon"
--#~ msgstr "停用 dmesg daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:222
-+msgid "Disable SELinux protection for xdm daemon"
-+msgstr "停用 xdm daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for dnsmasq daemon"
--#~ msgstr "停用 dnsmasq daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:223
-+msgid "Allow xdm logins as sysadm_r:sysadm_t"
-+msgstr "允許 xdm 以 sysadm_r:sysadm_t 來進行登錄"
--#~ msgid "Disable SELinux protection for dovecot daemon"
--#~ msgstr "停用 dovecot daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:224
-+msgid "Disable SELinux protection for xen daemon"
-+msgstr "停用 xen daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for entropyd daemon"
--#~ msgstr "停用 entropyd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:225
-+msgid "XEN"
-+msgstr "XEN"
--#~ msgid "Disable SELinux protection for fetchmail"
--#~ msgstr "停用 fetchmail 的 SELinux 保護"
-+#: ../gui/selinux.tbl:225
-+msgid "Allow xen to read/write physical disk devices"
-+msgstr "允許 xen 讀取/寫入實體磁碟裝置"
--#~ msgid "Disable SELinux protection for fingerd daemon"
--#~ msgstr "停用 fingerd daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:226
-+msgid "Disable SELinux protection for xfs daemon"
-+msgstr "停用 xfs daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for freshclam daemon"
--#~ msgstr "停用 freshclam daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:227
-+msgid "Disable SELinux protection for xen control"
-+msgstr "停用 xen control 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for fsdaemon daemon"
--#~ msgstr "停用 fsdaemon daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:228
-+msgid "Disable SELinux protection for ypbind daemon"
-+msgstr "停用 ypbind daemon 的 SELinux 保護"
--#~ msgid "Disable SELinux protection for gpm daemon"
--#~ msgstr "停用 gpm daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:229
-+msgid "Disable SELinux protection for NIS Password Daemon"
-+msgstr "停用 NIS Password Daemon 的 SELinux 保護"
--#~ msgid "NFS"
--#~ msgstr "NFS"
-+#: ../gui/selinux.tbl:230
-+msgid "Disable SELinux protection for ypserv daemon"
-+msgstr "停用 ypserv daemon 的 SELinux 保護"
  
 -#~ msgid "Disable SELinux protection for gss daemon"
--#~ msgstr "停用 gss daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:231
-+msgid "Disable SELinux protection for NIS Transfer Daemon"
-+msgstr "停用 NIS Transfer Daemon 的 SELinux 保護"
+-#~ msgstr "禁止 gss 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:43
++msgid "Disable SELinux protection for clamd daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for Hal daemon"
--#~ msgstr "停用 Hal daemon 的 SELinux 保護"
-+#: ../gui/selinux.tbl:232
-+msgid "Allow SELinux webadm user to manage unprivileged users home directories"
-+msgstr "允許 SELinux webadm 用戶管理無特權用戶的家目錄"
+-#~ msgstr "禁止 Hal 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:44
++msgid "Disable SELinux protection for clamscan"
++msgstr ""
  
 -#~ msgid "Compatibility"
--#~ msgstr "容性"
-+#: ../gui/selinux.tbl:233
-+msgid "Allow SELinux webadm user to read unprivileged users home directories"
-+msgstr "允許 SELinux webadm 用戶讀取無特權用戶的家目錄"
+-#~ msgstr "容性"
++#: ../gui/selinux.tbl:45
++msgid "Disable SELinux protection for clvmd"
++msgstr ""
  
 -#~ msgid ""
 -#~ "Do not audit things that we know to be broken but which are not security "
 -#~ "risks"
--#~ msgstr "不稽核我們已知損壞,卻不會造成安全性風險的物件"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Are you sure you want to delete %s '%s'?"
-+msgstr "您是否希望刪除 %s「%s」?"
+-#~ msgstr "不审计那些与安全无关的已知错误"
++#: ../gui/selinux.tbl:46
++msgid "Disable SELinux protection for comsat daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for hostname daemon"
--#~ msgstr "停用 hostname daemon 的 SELinux 保護"
-+#: ../gui/semanagePage.py:126
-+#, python-format
-+msgid "Delete %s"
-+msgstr "刪除 %s"
+-#~ msgstr "禁止 hostname 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
++#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
++msgid "Disable SELinux protection for courier daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for hotplug daemon"
--#~ msgstr "停用 hotplug daemon 的 SELinux 保護"
-+#: ../gui/semanagePage.py:134
-+#, python-format
-+msgid "Add %s"
-+msgstr "新增 %s"
+-#~ msgstr "禁止 hotplug 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:52
++msgid "Disable SELinux protection for cpucontrol daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for howl daemon"
--#~ msgstr "停用 howl daemon 的 SELinux 保護"
-+#: ../gui/semanagePage.py:148
-+#, python-format
-+msgid "Modify %s"
-+msgstr "修改 %s"
+-#~ msgstr "禁止 howl 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:53
++msgid "Disable SELinux protection for cpuspeed daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for cups hplip daemon"
--#~ msgstr "停用 cups hplip daemon 的 SELinux 保護"
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
-+msgid "Permissive"
-+msgstr "寬鬆模式"
+-#~ msgstr "禁止 cups hplip 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:54
++msgid "Cron"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for httpd rotatelogs"
--#~ msgstr "停用 httpd rotatelogs 的 SELinux 保護"
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
-+msgid "Enforcing"
-+msgstr "強制模式"
+-#~ msgstr "禁止 httpd 日志循环的 SELinux 保护"
++#: ../gui/selinux.tbl:54
++msgid "Disable SELinux protection for crond daemon"
++msgstr ""
  
 -#~ msgid "HTTPD Service"
--#~ msgstr "HTTPD 服務"
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr "停用"
+-#~ msgstr "HTTPD 服务"
++#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
++#: ../gui/selinux.tbl:91
++msgid "Printing"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for http suexec"
--#~ msgstr "停用 http suexec 的 SELinux 保護"
-+#: ../gui/statusPage.py:94
-+msgid "Status"
-+msgstr "狀態"
+-#~ msgstr "禁止 http suexec 的 SELinux 保护"
++#: ../gui/selinux.tbl:55
++msgid "Disable SELinux protection for cupsd back end server"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for hwclock daemon"
--#~ msgstr "停用 hwclock daemon 的 SELinux 保護"
-+#: ../gui/statusPage.py:133
-+msgid ""
-+"Changing the policy type will cause a relabel of the entire file system on "
-+"the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
+-#~ msgstr "禁止 hwclock 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:56
++msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+"更改方針類型會造成整個檔案系統在下次重新啟動時被重新標記(relabeling)。根據"
-+"檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
  
 -#~ msgid "Disable SELinux protection for i18n daemon"
--#~ msgstr "停用 i18n daemon 的 SELinux 保護"
-+#: ../gui/statusPage.py:147
-+msgid ""
-+"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
-+"you later decide to turn SELinux back on, the system will be required to "
-+"relabel.  If you just want to see if SELinux is causing a problem on your "
-+"system, you can go to permissive mode which will only log errors and not "
-+"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
-+"wish to continue?"
+-#~ msgstr "禁止 i18n 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:57
++msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+"若要將 SELinux 變更為停用的話您需重新啟動系統。我們不建議這麼作。若您之後決定"
-+"將 SELinux 再次啟用,系統將會需要被重新標記。若您只是想查看 SELinux 是否會在"
-+"您的系統上造成問題,您可進入寬鬆模式,這只會將錯誤紀錄下來並且不會強制 "
-+"SELinux 方針。寬鬆模式無須重新啟動系統    請問您希望繼續進行嗎?"
  
 -#~ msgid "Disable SELinux protection for imazesrv daemon"
--#~ msgstr "停用 imazesrv daemon 的 SELinux 保護"
-+#: ../gui/statusPage.py:152
-+msgid ""
-+"Changing to SELinux enabled will cause a relabel of the entire file system "
-+"on the next boot. Relabeling takes a long time depending on the size of the "
-+"file system.  Do you wish to continue?"
+-#~ msgstr "禁止 imazesrv 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:58
++msgid "CVS"
 +msgstr ""
-+"若將 SELinux 變更為啟用的話,下次系統啟動時,整個檔案系統都將會被重新標記。根"
-+"據檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
  
 -#~ msgid "Disable SELinux protection for inetd child daemons"
--#~ msgstr "停用 inetd child daemons 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:11
-+msgid "system-config-selinux"
-+msgstr "system-config-selinux"
+-#~ msgstr "禁止 inetd 子守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:58
++msgid "Disable SELinux protection for cvs daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for inetd daemon"
--#~ msgstr "停用 inetd daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:12
-+msgid ""
-+"Copyright (c)2006 Red Hat, Inc.\n"
-+"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr "禁止 inetd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:59
++msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+"Copyright(c)2006 Red Hat, Inc.\n"
-+"Copyright(c)2006 Dan Walsh <dwalsh@redhat.com>"
  
 -#~ msgid "Disable SELinux protection for innd daemon"
--#~ msgstr "停用 innd daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:22
-+#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
-+msgid "Add SELinux Login Mapping"
-+msgstr "新增 SELinux 登錄對映"
-+
-+#: ../gui/system-config-selinux.glade:257
-+msgid "Add SELinux Network Ports"
-+msgstr "新增 SELinux 網路通訊埠"
-+
-+#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
-+msgid "SELinux Type"
-+msgstr "SELinux 類型"
+-#~ msgstr "禁止 innd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:60
++msgid "Disable SELinux protection for dbskkd daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for iptables daemon"
--#~ msgstr "停用 iptables daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
+-#~ msgstr "禁止 iptables 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:61
++msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+"SELinux MLS/MCS\n"
-+"等級"
  
 -#~ msgid "Disable SELinux protection for ircd daemon"
--#~ msgstr "停用 ircd daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:814
-+msgid "File Specification"
-+msgstr "檔案規格"
-+
-+#: ../gui/system-config-selinux.glade:842
-+msgid "File Type"
-+msgstr "檔案類型"
--#~ msgid "Disable SELinux protection for irqbalance daemon"
--#~ msgstr "停用 irqbalance daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:919
-+msgid ""
-+"all files\n"
-+"regular file\n"
-+"directory\n"
-+"character device\n"
-+"block device\n"
-+"socket\n"
-+"symbolic link\n"
-+"named pipe\n"
+-#~ msgstr "禁止 ircd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:62
++msgid "Disable SELinux protection for dccd"
++msgstr ""
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "禁止 irqbalance 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:63
++msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+"所有檔案\n"
-+"正規檔案\n"
-+"目錄\n"
-+"字元裝置\n"
-+"區塊裝置\n"
-+"socket\n"
-+"符號連結\n"
-+"named 管線\n"
-+
-+#: ../gui/system-config-selinux.glade:965
-+msgid "MLS"
-+msgstr "MLS"
-+
-+#: ../gui/system-config-selinux.glade:1029
-+msgid "Add SELinux User"
-+msgstr "新增 SELinux 用戶"
-+
-+#: ../gui/system-config-selinux.glade:1271
-+msgid "SELinux Administration"
-+msgstr "SELinux 管理"
-+
-+#: ../gui/system-config-selinux.glade:1314
-+msgid "Add"
-+msgstr "新增"
-+
-+#: ../gui/system-config-selinux.glade:1336
-+msgid "_Properties"
-+msgstr "內容(_P)"
-+
-+#: ../gui/system-config-selinux.glade:1358
-+msgid "_Delete"
-+msgstr "刪除(_D)"
-+
-+#: ../gui/system-config-selinux.glade:1449
-+msgid "Select Management Object"
-+msgstr "選擇管理物件"
-+
-+#: ../gui/system-config-selinux.glade:1466
-+msgid "<b>Select:</b>"
-+msgstr "<b>選擇:</b>"
-+
-+#: ../gui/system-config-selinux.glade:1519
-+msgid "System Default Enforcing Mode"
-+msgstr "系統預設強制模式"
  
 -#~ msgid "Disable SELinux protection for iscsi daemon"
--#~ msgstr "停用 iscsi daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:1547
-+msgid ""
-+"Disabled\n"
-+"Permissive\n"
-+"Enforcing\n"
+-#~ msgstr "禁止 iscsi 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:64
++msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+"停用\n"
-+"寬鬆\n"
-+"強制\n"
-+
-+#: ../gui/system-config-selinux.glade:1566
-+msgid "Current Enforcing Mode"
-+msgstr "目前的強制模式"
-+
-+#: ../gui/system-config-selinux.glade:1611
-+msgid "System Default Policy Type: "
-+msgstr "系統預設方針類型:"
  
 -#~ msgid "Disable SELinux protection for jabberd daemon"
--#~ msgstr "停用 jabberd daemon 的 SELinux 保護"
-+#: ../gui/system-config-selinux.glade:1656
-+msgid ""
-+"Select if you wish to relabel then entire file system on next reboot.  "
-+"Relabeling can take a very long time, depending on the size of the system.  "
-+"If you are changing policy types or going from disabled to enforcing, a "
-+"relabel is required."
+-#~ msgstr "禁止 jabberd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:65
++msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+"選擇您是否希望在下次開機時重新標記整個檔案系統。根據系統大小,重新標記可能會"
-+"花上一段很長時間。若您要更改方針類型或是要由停用狀態更改為強制模式,重新標記"
-+"將是必要的。"
-+
-+#: ../gui/system-config-selinux.glade:1702
-+msgid "Relabel on next reboot."
-+msgstr "下次開機時重新標記。"
-+
-+#: ../gui/system-config-selinux.glade:1754
-+msgid "label37"
-+msgstr "label37"
-+
-+#: ../gui/system-config-selinux.glade:1791
-+msgid "Revert boolean setting to system default"
-+msgstr "將布林值設定恢復成系統預設值"
-+
-+#: ../gui/system-config-selinux.glade:1807
-+msgid "Toggle between Customized and All Booleans"
-+msgstr "在自訂化以及所有布林值之間進行啟用"
-+
-+#: ../gui/system-config-selinux.glade:1825
-+msgid "Run booleans lockdown wizard"
-+msgstr "執行布林值鎖定精靈"
-+
-+#: ../gui/system-config-selinux.glade:1826
-+msgid "Lockdown..."
-+msgstr "鎖定..."
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
-+msgid "Filter"
-+msgstr "過濾器"
-+
-+#: ../gui/system-config-selinux.glade:1945
-+msgid "label50"
-+msgstr "label50"
-+
-+#: ../gui/system-config-selinux.glade:1982
-+msgid "Add File Context"
-+msgstr "新增檔案 Context"
-+
-+#: ../gui/system-config-selinux.glade:1998
-+msgid "Modify File Context"
-+msgstr "修改檔案 Context"
-+
-+#: ../gui/system-config-selinux.glade:2014
-+msgid "Delete File Context"
-+msgstr "刪除檔案 Context"
-+
-+#: ../gui/system-config-selinux.glade:2030
-+msgid "Toggle between all and customized file context"
-+msgstr "在自訂化以及所有檔案 context 之間進行啟用"
-+
-+#: ../gui/system-config-selinux.glade:2150
-+msgid "label38"
-+msgstr "label38"
-+
-+#: ../gui/system-config-selinux.glade:2187
-+msgid "Add SELinux User Mapping"
-+msgstr "新增 SELinux 用戶對映"
-+
-+#: ../gui/system-config-selinux.glade:2203
-+msgid "Modify SELinux User Mapping"
-+msgstr "修改 SELinux 用戶對映"
-+
-+#: ../gui/system-config-selinux.glade:2219
-+msgid "Delete SELinux User Mapping"
-+msgstr "刪除 SELinux 用戶對映"
-+
-+#: ../gui/system-config-selinux.glade:2337
-+msgid "label39"
-+msgstr "label39"
-+
-+#: ../gui/system-config-selinux.glade:2374
-+msgid "Add User"
-+msgstr "新增用戶"
-+
-+#: ../gui/system-config-selinux.glade:2390
-+msgid "Modify User"
-+msgstr "修改用戶"
-+
-+#: ../gui/system-config-selinux.glade:2406
-+msgid "Delete User"
-+msgstr "刪除用戶"
-+
-+#: ../gui/system-config-selinux.glade:2524
-+msgid "label41"
-+msgstr "label41"
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr "新增轉移"
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr "修改轉移"
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr "刪除轉移"
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr "label40"
-+
-+#: ../gui/system-config-selinux.glade:2748
-+msgid "Add Network Port"
-+msgstr "新增網路通訊埠"
-+
-+#: ../gui/system-config-selinux.glade:2764
-+msgid "Edit Network Port"
-+msgstr "編輯網路通訊埠"
-+
-+#: ../gui/system-config-selinux.glade:2780
-+msgid "Delete Network Port"
-+msgstr "刪除網路通訊埠"
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
-+msgid "Toggle between Customized and All Ports"
-+msgstr "在自訂化以及所有通訊埠之間進行啟用"
-+
-+#: ../gui/system-config-selinux.glade:2954
-+msgid "label42"
-+msgstr "label42"
-+
-+#: ../gui/system-config-selinux.glade:2991
-+msgid "Generate new policy module"
-+msgstr "產生新的方針模組"
-+
-+#: ../gui/system-config-selinux.glade:3007
-+msgid "Load policy module"
-+msgstr "載入方針模組"
-+
-+#: ../gui/system-config-selinux.glade:3023
-+msgid "Remove loadable policy module"
-+msgstr "移除可載入的方針模組"
  
 -#~ msgid "Kerberos"
 -#~ msgstr "Kerberos"
-+#: ../gui/system-config-selinux.glade:3059
-+msgid ""
-+"Enable/Disable additional audit rules, that are normally not reported in the "
-+"log files."
-+msgstr "啟用/停用額外的稽核規則,這些規則一般不會回報於日誌檔案中。"
-+
-+#: ../gui/system-config-selinux.glade:3179
-+msgid "label44"
-+msgstr "label44"
-+
-+#: ../gui/system-config-selinux.glade:3216
-+msgid "Change process mode to permissive."
-+msgstr "將程序模式更改為寬容模式。"
-+
-+#: ../gui/system-config-selinux.glade:3234
-+msgid "Change process mode to enforcing"
-+msgstr "將程序模式更改為強制模式"
-+
-+#: ../gui/system-config-selinux.glade:3326
-+msgid "Process Domain"
-+msgstr "程序網域"
-+
-+#: ../gui/system-config-selinux.glade:3354
-+msgid "label59"
-+msgstr "label59"
++#: ../gui/selinux.tbl:66
++msgid "Disable SELinux protection for devfsd daemon"
++msgstr ""
  
 -#~ msgid "Disable SELinux protection for kadmind daemon"
--#~ msgstr "停用 kadmind daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 kadmind 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:67
++msgid "Disable SELinux protection for dhcpc daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for klogd daemon"
--#~ msgstr "停用 klogd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 klogd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:68
++msgid "Disable SELinux protection for dhcpd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for krb5kdc daemon"
--#~ msgstr "停用 krb5kdc daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 krb5kdc 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:69
++msgid "Disable SELinux protection for dictd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ktalk daemons"
--#~ msgstr "停用 ktalk daemons 的 SELinux 保護"
--
+-#~ msgstr "禁止 ktalk 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:70
++msgid "Allow sysadm_t to directly start daemons"
++msgstr ""
 -#~ msgid "Disable SELinux protection for kudzu daemon"
--#~ msgstr "停用 kudzu daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 kudzu 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:71
++msgid "Disable SELinux protection for Evolution"
++msgstr ""
 -#~ msgid "Disable SELinux protection for locate daemon"
--#~ msgstr "停用 locate daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 locate 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:72
++msgid "Games"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lpd daemon"
--#~ msgstr "停用 lpd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 lpd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:72
++msgid "Disable SELinux protection for games"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lrrd daemon"
--#~ msgstr "停用 lrrd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 lrrd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:73
++msgid "Disable SELinux protection for the web browsers"
++msgstr ""
 -#~ msgid "Disable SELinux protection for lvm daemon"
--#~ msgstr "停用 lvm daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 lvm 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:74
++msgid "Disable SELinux protection for Thunderbird"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mailman"
--#~ msgstr "停用 mailman 的 SELinux 保護"
--
+-#~ msgstr "禁止 mailman 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:75
++msgid "Disable SELinux protection for distccd daemon"
++msgstr ""
 -#~ msgid "Allow evolution and thunderbird to read user files"
--#~ msgstr "允許 evolution 和 thunderbird 讀取用戶檔案"
--
+-#~ msgstr "允许 evolution 和 thunderbird 读用户文件"
++#: ../gui/selinux.tbl:76
++msgid "Disable SELinux protection for dmesg daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mdadm daemon"
--#~ msgstr "停用 mdadm daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 mdadm 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:77
++msgid "Disable SELinux protection for dnsmasq daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for monopd daemon"
--#~ msgstr "停用 monopd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 monopd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:78
++msgid "Disable SELinux protection for dovecot daemon"
++msgstr ""
 -#~ msgid "Allow the mozilla browser to read user files"
--#~ msgstr "允許 mozilla 瀏覽器讀取用戶檔案"
--
+-#~ msgstr "允许 mozilla 浏览器读用户文件"
++#: ../gui/selinux.tbl:79
++msgid "Disable SELinux protection for entropyd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mrtg daemon"
--#~ msgstr "停用 mrtg daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 mrtg 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:80
++msgid "Disable SELinux protection for fetchmail"
++msgstr ""
 -#~ msgid "Disable SELinux protection for mysqld daemon"
--#~ msgstr "停用 mysqld daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 mysqld 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:81
++msgid "Disable SELinux protection for fingerd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nagios daemon"
--#~ msgstr "停用 nagios daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nagios 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:82
++msgid "Disable SELinux protection for freshclam daemon"
++msgstr ""
 -#~ msgid "Name Service"
--#~ msgstr "名稱服務"
--
+-#~ msgstr "名字服务"
++#: ../gui/selinux.tbl:83
++msgid "Disable SELinux protection for fsdaemon daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for named daemon"
--#~ msgstr "停用 named daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 named 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:84
++msgid "Disable SELinux protection for gpm daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nessusd daemon"
--#~ msgstr "停用 nessusd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 neesusd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
++msgid "NFS"
++msgstr ""
 -#~ msgid "Disable SELinux protection for NetworkManager"
--#~ msgstr "停用 NetworkManager 的 SELinux 保護"
--
+-#~ msgstr "禁止 NetworkManager 的 SELinux 保护"
++#: ../gui/selinux.tbl:85
++msgid "Disable SELinux protection for gss daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nfsd daemon"
--#~ msgstr "停用 nfsd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nfsd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:86
++msgid "Disable SELinux protection for Hal daemon"
++msgstr ""
 -#~ msgid "Samba"
 -#~ msgstr "Samba"
--
++#: ../gui/selinux.tbl:87
++msgid "Compatibility"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nmbd daemon"
--#~ msgstr "停用 nmbd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nmbd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:87
++msgid ""
++"Do not audit things that we know to be broken but which are not security "
++"risks"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nrpe daemon"
--#~ msgstr "停用 nrpe daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nrpe 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:88
++msgid "Disable SELinux protection for hostname daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nscd daemon"
--#~ msgstr "停用 nscd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nscd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:89
++msgid "Disable SELinux protection for hotplug daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for nsd daemon"
--#~ msgstr "停用 nsd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 nsd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:90
++msgid "Disable SELinux protection for howl daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ntpd daemon"
--#~ msgstr "停用 ntpd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 ntpd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:91
++msgid "Disable SELinux protection for cups hplip daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob"
--#~ msgstr "停用 oddjob 的 SELinux 保護"
--
+-#~ msgstr "禁止 oddjob 的 SELinux 保护"
++#: ../gui/selinux.tbl:92
++msgid "Disable SELinux protection for httpd rotatelogs"
++msgstr ""
 -#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
--#~ msgstr "停用 oddjob_mkhomedir 的 SELinux 保護"
--
+-#~ msgstr "禁止 oddjob_mkhomedir 的 SELinux 保护"
++#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
++msgid "HTTPD Service"
++msgstr ""
 -#~ msgid "Disable SELinux protection for openvpn daemon"
--#~ msgstr "停用 openvpn daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 openvpn 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:93
++msgid "Disable SELinux protection for http suexec"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pam daemon"
--#~ msgstr "停用 pam daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 pam 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:94
++msgid "Disable SELinux protection for hwclock daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pegasus"
--#~ msgstr "停用 pegasus 的 SELinux 保護"
--
+-#~ msgstr "禁止 pegasus 的 SELinux 保护"
++#: ../gui/selinux.tbl:95
++msgid "Disable SELinux protection for i18n daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for perdition daemon"
--#~ msgstr "停用 perdition daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 perdition 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:96
++msgid "Disable SELinux protection for imazesrv daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portmap daemon"
--#~ msgstr "停用 portmap daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 portmap 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:97
++msgid "Disable SELinux protection for inetd child daemons"
++msgstr ""
 -#~ msgid "Disable SELinux protection for portslave daemon"
--#~ msgstr "停用 portslave daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 portslave 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:98
++msgid "Disable SELinux protection for inetd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postfix"
--#~ msgstr "停用 postfix 的 SELinux 保護"
--
+-#~ msgstr "禁止 postfix 的 SELinux 保护"
++#: ../gui/selinux.tbl:99
++msgid "Disable SELinux protection for innd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for postgresql daemon"
--#~ msgstr "停用 postgresql daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 postgresql 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:100
++msgid "Disable SELinux protection for iptables daemon"
++msgstr ""
 -#~ msgid "pppd"
 -#~ msgstr "pppd"
--
++#: ../gui/selinux.tbl:101
++msgid "Disable SELinux protection for ircd daemon"
++msgstr ""
 -#~ msgid "Allow pppd to be run for a regular user"
--#~ msgstr "允許 pppd 為一般用戶執行"
--
+-#~ msgstr "允许 pppd 以普通用户运行"
++#: ../gui/selinux.tbl:102
++msgid "Disable SELinux protection for irqbalance daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pptp"
--#~ msgstr "停用 pptp 的 SELinux 保護"
--
+-#~ msgstr "禁止 pptp 的 SELinux 保护"
++#: ../gui/selinux.tbl:103
++msgid "Disable SELinux protection for iscsi daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for prelink daemon"
--#~ msgstr "停用 prelink daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 prelink 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:104
++msgid "Disable SELinux protection for jabberd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for privoxy daemon"
--#~ msgstr "停用 privoxy daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 privoxy 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
++msgid "Kerberos"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ptal daemon"
--#~ msgstr "停用 ptal daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 ptal 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:105
++msgid "Disable SELinux protection for kadmind daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pxe daemon"
--#~ msgstr "停用 pxe daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 pxe 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:106
++msgid "Disable SELinux protection for klogd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for pyzord"
--#~ msgstr "停用 pyzord 的 SELinux 保護"
--
+-#~ msgstr "禁止 pyzord 的 SELinux 保护"
++#: ../gui/selinux.tbl:107
++msgid "Disable SELinux protection for krb5kdc daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for quota daemon"
--#~ msgstr "停用 quota daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 quota 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:108
++msgid "Disable SELinux protection for ktalk daemons"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radiusd daemon"
--#~ msgstr "停用 radiusd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 radiusd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:109
++msgid "Disable SELinux protection for kudzu daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for radvd daemon"
--#~ msgstr "停用 radvd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 radvd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:110
++msgid "Disable SELinux protection for locate daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rdisc"
--#~ msgstr "停用 rdisc 的 SELinux 保護"
--
+-#~ msgstr "禁止 rdisc 的 SELinux 保护"
++#: ../gui/selinux.tbl:111
++msgid "Disable SELinux protection for lpd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for readahead"
--#~ msgstr "停用 readahead 的 SELinux 保護"
--
+-#~ msgstr "禁止 readahead 的 SELinux 保护"
++#: ../gui/selinux.tbl:112
++msgid "Disable SELinux protection for lrrd daemon"
++msgstr ""
 -#~ msgid "Allow programs to read files in non-standard locations (default_t)"
--#~ msgstr "允許程式讀取位於非標準位置上的檔案(default_t)"
--
+-#~ msgstr "允许程序读非标准位置(default_t)的文件"
++#: ../gui/selinux.tbl:113
++msgid "Disable SELinux protection for lvm daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for restorecond"
--#~ msgstr "停用 restorecond 的 SELinux 保護"
--
+-#~ msgstr "禁止 restorecond 的 SELinux 保护"
++#: ../gui/selinux.tbl:114
++msgid "Disable SELinux protection for mailman"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rhgb daemon"
--#~ msgstr "停用 rhgb daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 rhgb 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:115
++msgid "Allow evolution and thunderbird to read user files"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci"
--#~ msgstr "停用 ricci 的 SELinux 保護"
--
+-#~ msgstr "禁止 ricci 的 SELinux 保护"
++#: ../gui/selinux.tbl:116
++msgid "Disable SELinux protection for mdadm daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ricci_modclusterd"
--#~ msgstr "停用 ricci_modclusterd 的 SELinux 保護"
--
+-#~ msgstr "禁止 ricci_modclusterd 的 SELinux 保护"
++#: ../gui/selinux.tbl:117
++msgid "Disable SELinux protection for monopd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rlogind daemon"
--#~ msgstr "停用 rlogind daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 rlogind 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:118
++msgid "Allow the mozilla browser to read user files"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rpcd daemon"
--#~ msgstr "停用 rpcd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 rpcd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:119
++msgid "Disable SELinux protection for mrtg daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rshd"
--#~ msgstr "停用 rshd 的 SELinux 保護"
--
+-#~ msgstr "禁止 rshd 的 SELinux 保护"
++#: ../gui/selinux.tbl:120
++msgid "Disable SELinux protection for mysqld daemon"
++msgstr ""
 -#~ msgid "rsync"
 -#~ msgstr "rsync"
--
++#: ../gui/selinux.tbl:121
++msgid "Disable SELinux protection for nagios daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for rsync daemon"
--#~ msgstr "停用 rsync daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 rsync 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
++msgid "Name Service"
++msgstr ""
 -#~ msgid "Allow ssh to run from inetd instead of as a daemon"
--#~ msgstr "允許 ssh 由 inetd 執行而不是以一個 daemon 來執行"
--
+-#~ msgstr "允许 ssh 从 inetd 运行而非作为守护进程"
++#: ../gui/selinux.tbl:122
++msgid "Disable SELinux protection for named daemon"
++msgstr ""
 -#~ msgid "Allow Samba to share nfs directories"
--#~ msgstr "允許 Samba 共享 nfs 目錄"
--
+-#~ msgstr "允许 Samba 共享 nfs 目录"
++#: ../gui/selinux.tbl:123
++msgid "Disable SELinux protection for nessusd daemon"
++msgstr ""
 -#~ msgid "SASL authentication server"
--#~ msgstr "SASL 驗證伺服器"
--
+-#~ msgstr "SASL 认证服务器"
++#: ../gui/selinux.tbl:124
++msgid "Disable SELinux protection for NetworkManager"
++msgstr ""
 -#~ msgid "Allow sasl authentication server to read /etc/shadow"
--#~ msgstr "允許 sasl 驗證伺服器讀取 /etc/shadow"
--
+-#~ msgstr "允许 sasl 认证服务读取 /etc/shadow"
++#: ../gui/selinux.tbl:125
++msgid "Disable SELinux protection for nfsd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow X-Windows server to map a memory region as both executable and "
 -#~ "writable"
--#~ msgstr "允許 X-Windows 伺服器將一個 memory region 同時對映為可執行與可寫"
--
+-#~ msgstr "允许 X 窗口服务器将内存映射为可写且可执行"
++#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
++#: ../gui/selinux.tbl:221
++msgid "Samba"
++msgstr ""
 -#~ msgid "Disable SELinux protection for saslauthd daemon"
--#~ msgstr "停用 saslauthd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 saslauthd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:126
++msgid "Disable SELinux protection for nmbd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for scannerdaemon daemon"
--#~ msgstr "停用 scannerdaemon daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 scannerdaemon 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:127
++msgid "Disable SELinux protection for nrpe daemon"
++msgstr ""
 -#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
--#~ msgstr "不允許轉移至受影響的 sysadm_t、sudo 和 su"
--
+-#~ msgstr "不允许转换到 sysadm_t, sudo 和 su 会受影响"
++#: ../gui/selinux.tbl:128
++msgid "Disable SELinux protection for nscd daemon"
++msgstr ""
 -#~ msgid "Do not allow any processes to load kernel modules"
--#~ msgstr "不允許任何程序載入 kernel 模組"
--
+-#~ msgstr "不允许任何进程加载内核模块"
++#: ../gui/selinux.tbl:129
++msgid "Disable SELinux protection for nsd daemon"
++msgstr ""
 -#~ msgid "Do not allow any processes to modify kernel SELinux policy"
--#~ msgstr "不允許任何程序修改 kernel SELinux 政策"
--
+-#~ msgstr "不允许任何进程修改内核 SELinux 策略"
++#: ../gui/selinux.tbl:130
++msgid "Disable SELinux protection for ntpd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sendmail daemon"
--#~ msgstr "停用 sendmail daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 sendmail 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:131
++msgid "Disable SELinux protection for oddjob"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setrans"
--#~ msgstr "停用 setrans 的 SELinux 保護"
--
+-#~ msgstr "禁止 setrans 的 SELinux 保护"
++#: ../gui/selinux.tbl:132
++msgid "Disable SELinux protection for oddjob_mkhomedir"
++msgstr ""
 -#~ msgid "Disable SELinux protection for setroubleshoot daemon"
--#~ msgstr "停用 setroubleshoot daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 setroubleshoot 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:133
++msgid "Disable SELinux protection for openvpn daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slapd daemon"
--#~ msgstr "停用 slapd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 slapd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:134
++msgid "Disable SELinux protection for pam daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for slrnpull daemon"
--#~ msgstr "停用 slrnpull daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 slrnpull 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:135
++msgid "Disable SELinux protection for pegasus"
++msgstr ""
 -#~ msgid "Disable SELinux protection for smbd daemon"
--#~ msgstr "停用 smbd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 smbd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:136
++msgid "Disable SELinux protection for perdition daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snmpd daemon"
--#~ msgstr "停用 snmpd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 snmpd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:137
++msgid "Disable SELinux protection for portmap daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for snort daemon"
--#~ msgstr "停用 snort daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 snort 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:138
++msgid "Disable SELinux protection for portslave daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for soundd daemon"
--#~ msgstr "停用 soundd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 sounded 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:139
++msgid "Disable SELinux protection for postfix"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sound daemon"
--#~ msgstr "停用 sound daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 sound 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:140
++msgid "Disable SELinux protection for postgresql daemon"
++msgstr ""
 -#~ msgid "Spam Protection"
--#~ msgstr "垃圾郵件保護"
--
+-#~ msgstr "垃圾邮件保护"
++#: ../gui/selinux.tbl:141
++msgid "pppd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for spamd daemon"
--#~ msgstr "停用 spamd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 spamd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:141
++msgid "Allow pppd to be run for a regular user"
++msgstr ""
 -#~ msgid "Allow spamd to access home directories"
--#~ msgstr "允許 spamd 存取家目錄"
--
+-#~ msgstr "允许 spamd 访问用户个人目录"
++#: ../gui/selinux.tbl:142
++msgid "Disable SELinux protection for pptp"
++msgstr ""
 -#~ msgid "Allow Spam Assassin daemon network access"
--#~ msgstr "允許 Spam Assassin daemon 網路存取"
--
+-#~ msgstr "允许 Spam Assasin 守护进程访问网络"
++#: ../gui/selinux.tbl:143
++msgid "Disable SELinux protection for prelink daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for speedmgmt daemon"
--#~ msgstr "停用 speedmgmt daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 speedmgmt 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:144
++msgid "Disable SELinux protection for privoxy daemon"
++msgstr ""
 -#~ msgid "Squid"
 -#~ msgstr "Squid"
--
++#: ../gui/selinux.tbl:145
++msgid "Disable SELinux protection for ptal daemon"
++msgstr ""
 -#~ msgid "Allow squid daemon to connect to the network"
--#~ msgstr "允許 squid daemon 連至網路"
--
+-#~ msgstr "允许 squid 守护进程连接到网络"
++#: ../gui/selinux.tbl:146
++msgid "Disable SELinux protection for pxe daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for squid daemon"
--#~ msgstr "停用 squid daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 squid 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:147
++msgid "Disable SELinux protection for pyzord"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ssh daemon"
--#~ msgstr "停用 ssh daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 ssh 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:148
++msgid "Disable SELinux protection for quota daemon"
++msgstr ""
 -#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
--#~ msgstr "允許以 sysadm_r:sysadm_t 進行 ssh 登錄"
--
+-#~ msgstr "允许通过 ssh 登录为 sysadm_r:sysadm_t"
++#: ../gui/selinux.tbl:149
++msgid "Disable SELinux protection for radiusd daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
 -#~ "~/.bashrc)"
--#~ msgstr ""
--#~ "允許 staff_r users 搜尋 sysadm home dir 並讀取檔案(例如 ~/.bashrc)"
--
+-#~ msgstr "允许 staff_r 用户搜索 sysadm 个人目录并读取文件(如 ~/.bashrc)"
++#: ../gui/selinux.tbl:150
++msgid "Disable SELinux protection for radvd daemon"
++msgstr ""
 -#~ msgid "Universal SSL tunnel"
--#~ msgstr "全域 SSL 通道"
--
+-#~ msgstr "全局的 SSL 隧道"
++#: ../gui/selinux.tbl:151
++msgid "Disable SELinux protection for rdisc"
++msgstr ""
 -#~ msgid "Disable SELinux protection for stunnel daemon"
--#~ msgstr "停用 stunnel daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 stunnel 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:152
++msgid "Disable SELinux protection for readahead"
++msgstr ""
 -#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
--#~ msgstr "允許 stunnel daemon 獨立地執行於 xinetd 之外"
--
+-#~ msgstr "允许 stunnel 守护进程在 xinetd 之外独立运行"
++#: ../gui/selinux.tbl:153
++msgid "Allow programs to read files in non-standard locations (default_t)"
++msgstr ""
 -#~ msgid "Disable SELinux protection for swat daemon"
--#~ msgstr "停用 swat daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 swat 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:154
++msgid "Disable SELinux protection for restorecond"
++msgstr ""
 -#~ msgid "Disable SELinux protection for sxid daemon"
--#~ msgstr "停用 sxid daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 sxid 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:155
++msgid "Disable SELinux protection for rhgb daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for syslogd daemon"
--#~ msgstr "停用 syslogd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 syslogd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:156
++msgid "Disable SELinux protection for ricci"
++msgstr ""
 -#~ msgid "Disable SELinux protection for system cron jobs"
--#~ msgstr "停用 system cron jobs 的 SELinux 保護"
--
+-#~ msgstr "禁止系统计划任务(cron)的 SELinux 保护"
++#: ../gui/selinux.tbl:157
++msgid "Disable SELinux protection for ricci_modclusterd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tcp daemon"
--#~ msgstr "停用 tcp daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 tcp 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:158
++msgid "Disable SELinux protection for rlogind daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for telnet daemon"
--#~ msgstr "停用 telnet daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 telnet 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:159
++msgid "Disable SELinux protection for rpcd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for tftpd daemon"
--#~ msgstr "停用 tftpd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 tftpd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:160
++msgid "Disable SELinux protection for rshd"
++msgstr ""
 -#~ msgid "Disable SELinux protection for transproxy daemon"
--#~ msgstr "停用 transproxy daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 transproxy 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:161
++msgid "rsync"
++msgstr ""
 -#~ msgid "Disable SELinux protection for udev daemon"
--#~ msgstr "停用 udev daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 udev 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:161
++msgid "Disable SELinux protection for rsync daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uml daemon"
--#~ msgstr "停用 uml daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 uml 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:162
++msgid "Allow ssh to run from inetd instead of as a daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow xinetd to run unconfined, including any services it starts that do "
 -#~ "not have a domain transition explicitly defined"
 -#~ msgstr ""
--#~ "允許 xinetd 以不被限制的方式執行,包括任何它所啟用的、未清楚定義網域轉移的"
--#~ "服務"
--
+-#~ "允许 xinetd 不加限定地运行,包括它启动的服务,如果没有显式定义域转换的话"
++#: ../gui/selinux.tbl:163
++msgid "Allow Samba to share nfs directories"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
 -#~ "script that does not have a domain transition explicitly defined"
 -#~ msgstr ""
--#~ "允許 rc script 以不受限制的方式執行,包括任何 rc script 所啟用的、未清楚定"
--#~ "義網域轉移的 daemon"
--
+-#~ "允许 rc 脚本不加限定地运行,包括 rc 脚本启动的任何守护进程,如果没有显式定"
+-#~ "义域转换的话"
++#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
++msgid "SASL authentication server"
++msgstr ""
 -#~ msgid "Allow rpm to run unconfined"
--#~ msgstr "允許 rpm 以不受限制的方式執行"
--
+-#~ msgstr "允许 rpm 不受限地运行"
++#: ../gui/selinux.tbl:164
++msgid "Allow sasl authentication server to read /etc/shadow"
++msgstr ""
 -#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
--#~ msgstr "允許有特權的工具程式(例如 hotplug 和 insmod)以不受限制的方式執行"
--
+-#~ msgstr "允许高优先级程序如 hotplug 和 insmod 不受限地运行"
++#: ../gui/selinux.tbl:165
++msgid ""
++"Allow X-Windows server to map a memory region as both executable and writable"
++msgstr ""
 -#~ msgid "Disable SELinux protection for updfstab daemon"
--#~ msgstr "停用 updfstab daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 updfstab 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:166
++msgid "Disable SELinux protection for saslauthd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uptimed daemon"
--#~ msgstr "停用 uptimed daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 uptimed 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:167
++msgid "Disable SELinux protection for scannerdaemon daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
 -#~ "only staff_r can do so"
 -#~ msgstr ""
--#~ "允許 user_r 透過 su、sudo 或 userhelper 來連至 sysadm_r。否則,只有 "
--#~ "staff_r 可以這麼作"
--
+-#~ "允许 user_r 通过 su, sudo 或 userhelper 获得 sysadm_r。否则,只有 staff_r "
+-#~ "可以这样做"
++#: ../gui/selinux.tbl:168
++msgid "Do not allow transition to sysadm_t, sudo and su effected"
++msgstr ""
 -#~ msgid "Allow users to execute the mount command"
--#~ msgstr "允許用戶執行 mount 指令"
--
+-#~ msgstr "允许用户执行 mount 命令"
++#: ../gui/selinux.tbl:169
++msgid "Do not allow any processes to load kernel modules"
++msgstr ""
 -#~ msgid "Allow regular users direct mouse access (only allow the X server)"
--#~ msgstr "允許一般用戶的直接滑鼠存取(只允許 X server)"
--
+-#~ msgstr "允许普通用户直接访问鼠标(仅限 X 服务器)"
++#: ../gui/selinux.tbl:170
++msgid "Do not allow any processes to modify kernel SELinux policy"
++msgstr ""
 -#~ msgid "Allow users to run the dmesg command"
--#~ msgstr "允許用戶執行 dmesg 指令"
--
+-#~ msgstr "允许用户运行 dmesg 命令"
++#: ../gui/selinux.tbl:171
++msgid "Disable SELinux protection for sendmail daemon"
++msgstr ""
 -#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
--#~ msgstr "允許用戶控制網路介面(也需要 USERCTL=true)"
--
+-#~ msgstr "允许用户控制网络接口(还需要 USERCTL=true)"
++#: ../gui/selinux.tbl:172
++msgid "Disable SELinux protection for setrans"
++msgstr ""
 -#~ msgid "Allow normal user to execute ping"
--#~ msgstr "允許一般用戶執行 ping"
--
+-#~ msgstr "允许普通用户执行 ping"
++#: ../gui/selinux.tbl:173
++msgid "Disable SELinux protection for setroubleshoot daemon"
++msgstr ""
 -#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
--#~ msgstr "允許用戶 r/w noextattrfile(FAT、CDROM、FLOPPY)"
--
+-#~ msgstr "允许用户读写无扩展属性的文件(FAT, CDROM, FLOPPY)"
++#: ../gui/selinux.tbl:174
++msgid "Disable SELinux protection for slapd daemon"
++msgstr ""
 -#~ msgid "Allow users to rw usb devices"
--#~ msgstr "允許用戶 rw usb 裝置"
--
+-#~ msgstr "允许用户读写 usb 设备"
++#: ../gui/selinux.tbl:175
++msgid "Disable SELinux protection for slrnpull daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow users to run TCP servers (bind to ports and accept connection from "
 -#~ "the same domain and outside users)  disabling this forces FTP passive "
 -#~ "mode and may change other protocols"
 -#~ msgstr ""
--#~ "允許用戶執行 TCP 伺服器(綁定至通訊埠並接受來自相同網域和外部用戶的連線)"
--#~ "停用此選項會強制 FTP 被動模式並且可能會更改其它通訊協定"
--
+-#~ "允许用户运行 TCP 服务(绑定到端口,接受域内部和外部用户的连接)。禁止这一项"
+-#~ "将强迫 FTP 使用被动模式,还可能影响其他协议"
++#: ../gui/selinux.tbl:176
++msgid "Disable SELinux protection for smbd daemon"
++msgstr ""
 -#~ msgid "Allow user to stat ttyfiles"
--#~ msgstr "允許用戶 stat ttyfiles"
--
+-#~ msgstr "允许用户探测 tty 文件"
++#: ../gui/selinux.tbl:177
++msgid "Disable SELinux protection for snmpd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for uucpd daemon"
--#~ msgstr "停用 uucpd daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 uucpd 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:178
++msgid "Disable SELinux protection for snort daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for vmware daemon"
--#~ msgstr "停用 vmware daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 vmware 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:179
++msgid "Disable SELinux protection for soundd daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for watchdog daemon"
--#~ msgstr "停用 watchdog daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 watchdog 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:180
++msgid "Disable SELinux protection for sound daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for winbind daemon"
--#~ msgstr "停用 winbind daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 winbind 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:181 ../gui/selinux.tbl:182 ../gui/selinux.tbl:183
++msgid "Spam Protection"
++msgstr ""
 -#~ msgid "Disable SELinux protection for xdm daemon"
--#~ msgstr "停用 xdm daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 xdm 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:181
++msgid "Disable SELinux protection for spamd daemon"
++msgstr ""
 -#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
--#~ msgstr "允許 xdm 以 sysadm_r:sysadm_t 來進行登錄"
--
+-#~ msgstr "允许通过 xdm 登录为 sysadm_r:sysadm_t"
++#: ../gui/selinux.tbl:182
++msgid "Allow spamd to access home directories"
++msgstr ""
 -#~ msgid "Disable SELinux protection for xen daemon"
--#~ msgstr "停用 xen daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 xen 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:183
++msgid "Allow Spam Assassin daemon network access"
++msgstr ""
 -#~ msgid "XEN"
 -#~ msgstr "XEN"
--
++#: ../gui/selinux.tbl:184
++msgid "Disable SELinux protection for speedmgmt daemon"
++msgstr ""
 -#~ msgid "Allow xen to read/write physical disk devices"
--#~ msgstr "允許 xen 讀取/寫入實體磁碟裝置"
--
+-#~ msgstr "允许 xen 读写物理磁盘设备"
++#: ../gui/selinux.tbl:185 ../gui/selinux.tbl:186
++msgid "Squid"
++msgstr ""
 -#~ msgid "Disable SELinux protection for xfs daemon"
--#~ msgstr "停用 xfs daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 xfs 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:185
++msgid "Allow squid daemon to connect to the network"
++msgstr ""
 -#~ msgid "Disable SELinux protection for xen control"
--#~ msgstr "停用 xen control 的 SELinux 保護"
--
+-#~ msgstr "禁止 xen 控制程序的 SELinux 保护"
++#: ../gui/selinux.tbl:186
++msgid "Disable SELinux protection for squid daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ypbind daemon"
--#~ msgstr "停用 ypbind daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 ypbind 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:187
++msgid "Disable SELinux protection for ssh daemon"
++msgstr ""
 -#~ msgid "Disable SELinux protection for NIS Password Daemon"
--#~ msgstr "停用 NIS Password Daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 NIS Password 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:188
++msgid "Allow ssh logins as sysadm_r:sysadm_t"
++msgstr ""
 -#~ msgid "Disable SELinux protection for ypserv daemon"
--#~ msgstr "停用 ypserv daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 ypserv 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:189
++msgid ""
++"Allow staff_r users to search the sysadm home dir and read files (such as ~/."
++"bashrc)"
++msgstr ""
 -#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
--#~ msgstr "停用 NIS Transfer Daemon 的 SELinux 保護"
--
+-#~ msgstr "禁止 NIS Transfer 守护进程的 SELinux 保护"
++#: ../gui/selinux.tbl:190 ../gui/selinux.tbl:191
++msgid "Universal SSL tunnel"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to manage unprivileged users home directories"
--#~ msgstr "允許 SELinux webadm 用戶管理無特權用戶的家目錄"
--
+-#~ msgstr "允许 SELinux webadm 用户管理非特权用户主目录"
++#: ../gui/selinux.tbl:190
++msgid "Disable SELinux protection for stunnel daemon"
++msgstr ""
 -#~ msgid ""
 -#~ "Allow SELinux webadm user to read unprivileged users home directories"
--#~ msgstr "å\85\81許 SELinux webadm ç\94¨æ\88¶è®\80å\8f\96ç\84¡ç\89¹æ¬\8aç\94¨æ\88¶ç\9a\84家ç\9b®é\8c\84"
--
--#~ msgid "Sensitvity Level"
--#~ msgstr "敏感度"
--
+-#~ msgstr "å\85\81许 SELinux webadm ç\94¨æ\88·è¯»é\9d\9eç\89¹æ\9d\83ç\94¨æ\88·ä¸»ç\9b®å½\95"
++#: ../gui/selinux.tbl:191
++msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
++msgstr ""
 -#~ msgid "Are you sure you want to delete %s '%s'?"
--#~ msgstr "您是否希望刪除 %s「%s」?"
--
+-#~ msgstr "您确定要删除 %s '%s'吗?"
++#: ../gui/selinux.tbl:192
++msgid "Disable SELinux protection for swat daemon"
++msgstr ""
 -#~ msgid "Delete %s"
--#~ msgstr "刪除 %s"
--
+-#~ msgstr "删除 %s"
++#: ../gui/selinux.tbl:193
++msgid "Disable SELinux protection for sxid daemon"
++msgstr ""
 -#~ msgid "Add %s"
--#~ msgstr "新增 %s"
--
+-#~ msgstr "添加 %s"
++#: ../gui/selinux.tbl:194
++msgid "Disable SELinux protection for syslogd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:195
++msgid "Disable SELinux protection for system cron jobs"
++msgstr ""
++
++#: ../gui/selinux.tbl:196
++msgid "Disable SELinux protection for tcp daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:197
++msgid "Disable SELinux protection for telnet daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:198
++msgid "Disable SELinux protection for tftpd daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:199
++msgid "Disable SELinux protection for transproxy daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:200
++msgid "Disable SELinux protection for udev daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:201
++msgid "Disable SELinux protection for uml daemon"
++msgstr ""
++
++#: ../gui/selinux.tbl:202
++msgid ""
++"Allow xinetd to run unconfined, including any services it starts that do not "
++"have a domain transition explicitly defined"
++msgstr ""
 -#~ msgid "Modify %s"
--#~ msgstr "修改 %s"
--
--#~ msgid "all"
--#~ msgstr "全部"
--
--#~ msgid "Customized"
--#~ msgstr "自訂化"
--
--#~ msgid "Policy Module"
--#~ msgstr "政策模組"
--
--#~ msgid "Module Name"
--#~ msgstr "模組名稱"
--
--#~ msgid "Version"
--#~ msgstr "版本"
--
--#~ msgid "Disable Audit"
--#~ msgstr "停用稽核"
--
--#~ msgid "Enable Audit"
--#~ msgstr "啟用稽核"
--
--#~ msgid "Load Policy Module"
--#~ msgstr "載入政策模組"
--
--#~ msgid "File Labeling"
--#~ msgstr "檔案標記"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Specification"
--#~ msgstr ""
--#~ "檔案\n"
--#~ "規格"
--
--#~ msgid ""
--#~ "Selinux\n"
--#~ "File Type"
--#~ msgstr ""
--#~ "Selinux\n"
--#~ "檔案類型"
--
--#~ msgid ""
--#~ "File\n"
--#~ "Type"
--#~ msgstr ""
--#~ "檔案\n"
--#~ "類型"
--
--#~ msgid "..."
--#~ msgstr "..."
--
--#~ msgid "600-1024"
--#~ msgstr "600-1024"
--
--#~ msgid "<b>Applications</b>"
--#~ msgstr "<b>應用程式</b>"
--
--#~ msgid "<b>Login Users</b>"
--#~ msgstr "<b>登錄用戶</b>"
--
--#~ msgid "<b>Root Users</b>"
--#~ msgstr "<b>Root 用戶</b>"
--
--#~ msgid "<b>TCP Ports</b>"
--#~ msgstr "<b>TCP 通訊埠</b>"
--
--#~ msgid "<b>UDP Ports</b>"
--#~ msgstr "<b>UDP 通訊埠</b>"
--
--#~ msgid "Add Booleans Dialog"
--#~ msgstr "新增布林值對話"
--
--#~ msgid ""
--#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
--#~ "Files, Log Files, /var/lib Files ..."
--#~ msgstr ""
--#~ "新增應用程式需要「寫」至檔案/目錄。Pid 檔案、日誌檔、/var/lib 檔案 ..."
--
--#~ msgid "Add/Remove booleans used for this confined application/user"
--#~ msgstr "新增/移除這個受限制的應用程式/用戶所使用的布林值"
--
--#~ msgid "Admin User Role"
--#~ msgstr "管理員用戶角色"
--
--#~ msgid "All"
--#~ msgstr "全部"
--
--#~ msgid ""
--#~ "Allow application/user role to call bindresvport with 0. Binding to port "
--#~ "600-1024"
--#~ msgstr ""
--#~ "允許應用程式/用戶角色以 0 來調用 bindresvport。綁定至通訊埠 600-1024"
--
--#~ msgid "Allows application/user role to bind to any udp ports > 1024"
--#~ msgstr "允許應用程式/用戶角色綁定至任何大於 1024 的 udp 通訊埠"
--
--#~ msgid "Allows confined application/user role to bind to any udp port"
--#~ msgstr "允許受限制的應用程式/用戶角色綁定至任何 udp 通訊埠"
--
--#~ msgid "Boolean Name"
--#~ msgstr "布林值名稱"
--
--#~ msgid "Create/Manipulate temporary files in /tmp"
--#~ msgstr "建立/操作位於 /tmp 中的臨時檔案"
--
--#~ msgid ""
--#~ "Enter a comma separated list of tcp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "輸入一個應用程式/用戶角色連至、以逗號區隔開的 tcp 通訊埠清單或是通訊埠範"
--#~ "圍。例如:612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role binds to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "輸入一個應用程式/用戶角色綁定至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範"
--#~ "圍。例如:612, 650-660"
--
--#~ msgid ""
--#~ "Enter a comma separated list of udp ports or ranges of ports that "
--#~ "application/user role connects to. Example: 612, 650-660"
--#~ msgstr ""
--#~ "輸入一個應用程式/用戶角色連至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範"
--#~ "圍。例如:612, 650-660"
--
--#~ msgid "Enter complete path for executable to be confined."
--#~ msgstr "輸入要被限制的可執行檔的完整路徑。"
--
--#~ msgid ""
--#~ "Enter complete path to init script used to start the confined application."
--#~ msgstr "輸入用來啟用受限制的應用程式的 init script 的完整路徑。"
--
--#~ msgid "Enter name of application or user role to be confined"
--#~ msgstr "輸入受限制的應用程式名稱或用戶角色"
--
--#~ msgid "Enter network ports that application/user role connects to"
--#~ msgstr "輸入應用程式/用戶連至的網路通訊埠"
--
--#~ msgid "Enter network ports that application/user role listens to"
--#~ msgstr "輸入應用程式/用戶角色監聽的網路通訊埠"
--
--#~ msgid "Enter unique name for the confined application or user role."
--#~ msgstr "輸入受限制的應用程式或用戶角色的特殊名稱。"
--
--#~ msgid "Executable"
--#~ msgstr "可執行檔"
--
--#~ msgid "Existing User Roles"
--#~ msgstr "現有的用戶角色"
--
--#~ msgid "GPL"
--#~ msgstr "GPL"
--
--#~ msgid "Generated Policy Files"
--#~ msgstr "產生的政策檔案"
--
--#~ msgid "Init script"
--#~ msgstr "init script"
--
--#~ msgid "Interacts with the terminal"
--#~ msgstr "與終端機進行互動"
--
--#~ msgid "Internet Services Daemon (inetd)"
--#~ msgstr "網路服務 Daemon(inetd)"
--
--#~ msgid "Internet Services Daemon are daemons started by xinetd"
--#~ msgstr "網路服務 Daemon 為 xinetd 所啟用的系統程式"
--
--#~ msgid "Minimal Terminal User Role"
--#~ msgstr "最少的終端機用戶角色"
--
--#~ msgid "Minimal X Windows User Role"
--#~ msgstr "最少的 X Windows 用戶角色"
--
--#~ msgid "Modify an existing login user record."
--#~ msgstr "修改一個現有的登錄用戶紀錄。"
--
--#~ msgid "Polgen"
--#~ msgstr "Polgen"
--
--#~ msgid "Policy Directory"
--#~ msgstr "政策目錄"
--
--#~ msgid "Red Hat 2007"
--#~ msgstr "Red Hat 2007"
--
--#~ msgid "Root Admin User Role"
--#~ msgstr "Root 管理員用戶角色(Root Admin User Role)"
--
--#~ msgid "SELinux Policy Generation Tool"
--#~ msgstr "SELinux 政策產生工具(SELinux Policy Generation Tool)"
--
--#~ msgid "Select Ports"
--#~ msgstr "選擇通訊埠"
--
--#~ msgid ""
--#~ "Select Root Administrator User Role, if this user will be used to "
--#~ "administer the machine while running as root.  This user will not be able "
--#~ "to login to the system directly."
--#~ msgstr ""
--#~ "若此用戶將會被用來以 root 的身份管理機器的話,選擇 Root 管理者用戶角色。此"
--#~ "用戶將無法直接登入系統。"
--
--#~ msgid "Select additional domains that this user role will administer"
--#~ msgstr "選擇此用戶角色將會管理的額外網域"
--
--#~ msgid "Select additional domains to which this user role will transition"
--#~ msgstr "選擇此用戶角色將會轉移的額外網域"
--
--#~ msgid "Select additional roles for this user"
--#~ msgstr "選擇此用戶的額外角色"
--
--#~ msgid "Select booleans that the application uses"
--#~ msgstr "選擇應用程式所使用的布林值"
--
--#~ msgid "Select common application traits"
--#~ msgstr "選擇一般的應用程式特性"
--
--#~ msgid "Select directory to generate policy in"
--#~ msgstr "選擇產生政策的目錄"
--
--#~ msgid "Select files/directories that the application manages"
--#~ msgstr "選擇應用程式所管理的檔案/目錄"
--
--#~ msgid ""
--#~ "Select the applications domains that you would like this user role to "
--#~ "transition to."
--#~ msgstr "選擇您希望此用戶角色轉移至的應用程式網域。"
--
--#~ msgid "Select the domains that you would like this user administer."
--#~ msgstr "選擇您希望此用戶管理的網域。"
--
--#~ msgid ""
--#~ "Select the user roles that will transiton to this applications domains."
--#~ msgstr "選擇將會轉移至此應用程式網域的用戶角色。"
--
--#~ msgid "Select type of the application/user role to be confined"
--#~ msgstr "選擇欲限制的應用程式/用戶角色類型"
--
--#~ msgid "Select user roles that will transition to this domain"
--#~ msgstr "選擇將會轉移至此網域的用戶角色"
--
--#~ msgid "Select user roles that you want to customize"
--#~ msgstr "選擇您希望自訂化的用戶角色"
--
--#~ msgid "Sends audit messages"
--#~ msgstr "發送稽核訊息"
--
--#~ msgid "Sends email"
--#~ msgstr "發送電子郵件"
--
--#~ msgid "Standard Init Daemon"
--#~ msgstr "標準 Init Daemon"
--
--#~ msgid ""
--#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
--#~ "Usually requires a script in /etc/rc.d/init.d"
--#~ msgstr ""
--#~ "標準的 Init Daemon 代表透過 init script 在開機時啟動的系統程式。通常在 /"
--#~ "etc/rc.d/init.d 中會需要一個 script"
--
--#~ msgid ""
--#~ "This tool can be used to generate a policy framework, to confine "
--#~ "applications or users using SELinux.   \n"
--#~ "\n"
--#~ "The tool generates:\n"
--#~ "Type enforcement file (te)\n"
--#~ "Interface file (if)\n"
--#~ "File context file (fc)\n"
--#~ "Shell script (sh) - used to compile and install the policy. "
--#~ msgstr ""
--#~ "此工具可被用來產生一個繼續進行應用程式或是使用 SELinux 的用戶的政策架"
--#~ "構。   \n"
--#~ "\n"
--#~ "此工具會產生:\n"
--#~ "類型強制檔案(te)\n"
--#~ "介面檔案(if)\n"
--#~ "檔案 context 檔(fc)\n"
--#~ "Shell script(sh)- 用來編譯和安裝政策。"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "\n"
--#~ "Execute shell script to compile/install and relabel files/directories.  \n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Run/restart the application to generate avc messages.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "此工具會產生下列:\n"
--#~ "類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
--#~ "\n"
--#~ "執行 shell script 來編譯/安裝和重新標記檔案/目錄。\n"
--#~ "將機器設置為寬鬆模式(setenforce 0)。\n"
--#~ "執行/重新啟動用程式來產生 avc 訊息。\n"
--#~ "使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
--
--#~ msgid ""
--#~ "This tool will generate the following: \n"
--#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
--#~ "Execute shell script as root to compile/install and relabel files/"
--#~ "directories.  \n"
--#~ "Use semanage or useradd to map Linux login users to user roles.\n"
--#~ "Put the machine in permissive mode (setenforce 0). \n"
--#~ "Login as the user and test this user role.\n"
--#~ "Use audit2allow -R to generate additional rules for the te file.\n"
--#~ msgstr ""
--#~ "此工具會產生下列:\n"
--#~ "類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
--#~ "以 root 來執行 shell script 並編譯/安裝和重新標記檔案/目錄?\n"
--#~ "使用 semanage 或是 useradd 來將 Linux 登錄用戶對映至用戶角色。\n"
--#~ "將機器設置為寬鬆模式(setenforce 0)。\n"
--#~ "以該用戶登入並測試此用戶角色。\n"
--#~ "使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
--
--#~ msgid ""
--#~ "This user can login to a machine via X or terminal.  By default this user "
--#~ "will have no setuid, no networking, no sudo, no su"
--#~ msgstr ""
--#~ "此用戶可透過 X 或是終端機來登入一部機器。就預設值來講,此用戶將不會有 "
--#~ "setuid、網路作業、sudo 和 su"
--
--#~ msgid ""
--#~ "This user will login to a machine only via a terminal or remote login.  "
--#~ "By default this user will have  no setuid, no networking, no su, no sudo."
--#~ msgstr ""
--#~ "此用戶將只可透過終端機或是遠端登錄來登入一部機器。就預設值來講,此用戶將不"
--#~ "會有 setuid、網路作業、su 和 sudo。"
--
--#~ msgid "Unreserved Ports (>1024)"
--#~ msgstr "未保留的通訊埠(>1024)"
--
--#~ msgid "User Application"
--#~ msgstr "用戶應用程式"
--
--#~ msgid ""
--#~ "User Application are any application that you would like to confine that "
--#~ "is started by a user"
--#~ msgstr "用戶應用程式為任何您所希望限制、由某個用戶所啟用的應用程式"
--
--#~ msgid "User Role"
--#~ msgstr "用戶角色"
--
--#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "su, can sudo to Root Administration Roles"
--#~ msgstr ""
--#~ "具有完整網路作業、沒有無轉移的 setuid 應用程式、無 su,並且可 sudo 至 "
--#~ "Root 管理角色的用戶"
--
+-#~ msgstr "变更 %s"
++#: ../gui/selinux.tbl:203
++msgid ""
++"Allow rc scripts to run unconfined, including any daemon started by an rc "
++"script that does not have a domain transition explicitly defined"
++msgstr ""
+-#~ msgid "Permissive"
+-#~ msgstr "允许"
++#: ../gui/selinux.tbl:204
++msgid "Allow rpm to run unconfined"
++msgstr ""
+-#~ msgid "Enforcing"
+-#~ msgstr "强制"
++#: ../gui/selinux.tbl:205
++msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
++msgstr ""
 -#~ msgid ""
--#~ "User with full networking, no setuid applications without transition, no "
--#~ "sudo, no su."
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
 -#~ msgstr ""
--#~ "具有完整網路作業、沒有無轉移的 setuid 應用程式、無 sudo,並且無 su。"
--
--#~ msgid "Uses Pam for authentication"
--#~ msgstr "使用 Pam 來進行驗證"
--
--#~ msgid "Uses dbus"
--#~ msgstr "使用 dbus"
--
--#~ msgid "Uses nsswitch or getpw* calls"
--#~ msgstr "使用 nsswitch 或是 getpw* 調用"
--
--#~ msgid "Web Application/Script (CGI)"
--#~ msgstr "網站應用程式/Script(CGI)"
--
--#~ msgid ""
--#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
--#~ "(apache)"
--#~ msgstr "網站應用程式/Script(CGI)由網站伺服器(apache)所啟用的 CGI script"
--
--#~ msgid "Writes syslog messages\t"
--#~ msgstr "寫入 syslog 訊息\t"
--
--#~ msgid "Boolean"
--#~ msgstr "布林值"
--
+-#~ "改变策略类型将导致下次启动时对整个文件系统重新标记。重新标记需要很长时间,"
+-#~ "取决于文件系统规模。仍要继续吗?"
++#: ../gui/selinux.tbl:206
++msgid "Disable SELinux protection for updfstab daemon"
++msgstr ""
 -#~ msgid ""
--#~ "SELinux Port\n"
--#~ "Type"
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
 -#~ msgstr ""
--#~ "SELinux 通訊埠\n"
--#~ "類型"
--
--#~ msgid "Protocol"
--#~ msgstr "通訊協定"
--
+-#~ "禁用 SELinux 需要重启。不推荐这样做。如果您只想弄清是不是 SELinux 造成了系"
+-#~ "统的问题,可以切换到允许模式(permissive),这样只会记录错误,而不会强制施"
+-#~ "行 SELinux 策略。允许模式不需要重启。仍要继续吗?"
++#: ../gui/selinux.tbl:207
++msgid "Disable SELinux protection for uptimed daemon"
++msgstr ""
 -#~ msgid ""
--#~ "MLS/MCS\n"
--#~ "Level"
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
 -#~ msgstr ""
--#~ "MLS/MCS\n"
--#~ "等級"
--
--#~ msgid "Port"
--#~ msgstr "通訊埠"
--
--#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
--#~ msgstr "通訊埠號「%s」無效。0 < PORT_NUMBER < 65536 "
--
--#~ msgid "List View"
--#~ msgstr "清單視點"
--
--#~ msgid "Group View"
--#~ msgstr "群組視點"
--
+-#~ "启用 SELinux 将导致下次启动时对整个文件系统重新标记。重新标记需要很长时"
+-#~ "间,取决于文件系统规模。仍要继续吗?"
++#: ../gui/selinux.tbl:208
++msgid ""
++"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
++"staff_r can do so"
++msgstr ""
++
++#: ../gui/selinux.tbl:209
++msgid "Allow users to execute the mount command"
++msgstr ""
++
++#: ../gui/selinux.tbl:210
++msgid "Allow regular users direct mouse access (only allow the X server)"
++msgstr ""
++
++#: ../gui/selinux.tbl:211
++msgid "Allow users to run the dmesg command"
++msgstr ""
++
++#: ../gui/selinux.tbl:212
++msgid "Allow users to control network interfaces (also needs USERCTL=true)"
++msgstr ""
++
++#: ../gui/selinux.tbl:213
++msgid "Allow normal user to execute ping"
++msgstr ""
++
++#: ../gui/selinux.tbl:214
++msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
++msgstr ""
++
++#: ../gui/selinux.tbl:215
++msgid "Allow users to rw usb devices"
++msgstr ""
++
++#: ../gui/selinux.tbl:216
++msgid ""
++"Allow users to run TCP servers (bind to ports and accept connection from the "
++"same domain and outside users)  disabling this forces FTP passive mode and "
++"may change other protocols"
++msgstr ""
++
++#: ../gui/selinux.tbl:217
++msgid "Allow user to stat ttyfiles"
++msgstr ""
++
++#: ../gui/selinux.tbl:218
++msgid "Disable SELinux protection for uucpd daemon"
++msgstr ""
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>选择:</b>"
++#: ../gui/selinux.tbl:219
++msgid "Disable SELinux protection for vmware daemon"
++msgstr ""
 -#~ msgid "Add"
--#~ msgstr "新增"
--
+-#~ msgstr "添加"
++#: ../gui/selinux.tbl:220
++msgid "Disable SELinux protection for watchdog daemon"
++msgstr ""
 -#~ msgid "Add File Context"
--#~ msgstr "新增檔案 Context"
--
+-#~ msgstr "添加文件上下文"
++#: ../gui/selinux.tbl:221
++msgid "Disable SELinux protection for winbind daemon"
++msgstr ""
 -#~ msgid "Add Network Port"
--#~ msgstr "新增網路通訊埠"
--
+-#~ msgstr "添加网络端口"
++#: ../gui/selinux.tbl:222
++msgid "Disable SELinux protection for xdm daemon"
++msgstr ""
 -#~ msgid "Add SELinux Login Mapping"
--#~ msgstr "新增 SELinux 登錄對映"
--
+-#~ msgstr "添加 SELinux 登录映射"
++#: ../gui/selinux.tbl:223
++msgid "Allow xdm logins as sysadm_r:sysadm_t"
++msgstr ""
 -#~ msgid "Add SELinux Network Ports"
--#~ msgstr "新增 SELinux 網路通訊埠"
--
+-#~ msgstr "添加 SELinux 网络端口"
++#: ../gui/selinux.tbl:224
++msgid "Disable SELinux protection for xen daemon"
++msgstr ""
 -#~ msgid "Add SELinux User"
--#~ msgstr "新增 SELinux 用戶"
--
+-#~ msgstr "添加 SELinux 用户"
++#: ../gui/selinux.tbl:225
++msgid "XEN"
++msgstr ""
 -#~ msgid "Add SELinux User Mapping"
--#~ msgstr "新增 SELinux 用戶對映"
--
+-#~ msgstr "添加 SELinux 用户映射"
++#: ../gui/selinux.tbl:225
++msgid "Allow xen to read/write physical disk devices"
++msgstr ""
 -#~ msgid "Add Translation"
--#~ msgstr "新增轉移s"
--
+-#~ msgstr "添加转换"
++#: ../gui/selinux.tbl:226
++msgid "Disable SELinux protection for xfs daemon"
++msgstr ""
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++#: ../gui/selinux.tbl:227
++msgid "Disable SELinux protection for xen control"
++msgstr ""
 -#~ msgid "Current Enforcing Mode"
--#~ msgstr "目前的強制模式"
--
+-#~ msgstr "当前应用模式"
++#: ../gui/selinux.tbl:228
++msgid "Disable SELinux protection for ypbind daemon"
++msgstr ""
 -#~ msgid "Delete File Context"
--#~ msgstr "刪除檔案 Context"
--
+-#~ msgstr "删除文件上下文"
++#: ../gui/selinux.tbl:229
++msgid "Disable SELinux protection for NIS Password Daemon"
++msgstr ""
 -#~ msgid "Delete Network Port"
--#~ msgstr "刪除網路通訊埠"
--
+-#~ msgstr "删除网络端口"
++#: ../gui/selinux.tbl:230
++msgid "Disable SELinux protection for ypserv daemon"
++msgstr ""
 -#~ msgid "Delete SELinux User Mapping"
--#~ msgstr "刪除 SELinux 用戶對映"
--
+-#~ msgstr "删除 SELinux 用户映射"
++#: ../gui/selinux.tbl:231
++msgid "Disable SELinux protection for NIS Transfer Daemon"
++msgstr ""
 -#~ msgid "Delete Translation"
--#~ msgstr "刪除轉移"
--
+-#~ msgstr "删除转换"
++#: ../gui/selinux.tbl:232
++msgid "Allow SELinux webadm user to manage unprivileged users home directories"
++msgstr ""
 -#~ msgid ""
 -#~ "Disabled\n"
 -#~ "Permissive\n"
 -#~ "Enforcing\n"
 -#~ msgstr ""
--#~ "停用\n"
--#~ "寬鬆\n"
--#~ "強制\n"
--
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
++#: ../gui/selinux.tbl:233
++msgid "Allow SELinux webadm user to read unprivileged users home directories"
++msgstr ""
 -#~ msgid "Edit Network Port"
--#~ msgstr "編輯網路通訊埠"
--
+-#~ msgstr "编辑网络端口"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Are you sure you want to delete %s '%s'?"
++msgstr ""
 -#~ msgid ""
 -#~ "Enable/Disable additional audit rules, that are normally not reported in "
 -#~ "the log files."
--#~ msgstr "啟用/停用額外的稽核規則,這些規則一般不會回報於日誌檔案中。"
--
+-#~ msgstr "启用/禁用附加的审计规则。这些规则平时不会出现在日志文件中。"
++#: ../gui/semanagePage.py:126
++#, python-format
++msgid "Delete %s"
++msgstr ""
 -#~ msgid "File Specification"
--#~ msgstr "檔案規格"
--
+-#~ msgstr "文件约束"
++#: ../gui/semanagePage.py:134
++#, python-format
++msgid "Add %s"
++msgstr ""
 -#~ msgid "File Type"
--#~ msgstr "æª\94æ¡\88é¡\9e型"
+-#~ msgstr "æ\96\87件类型"
 -
 -#~ msgid "Filter"
--#~ msgstr "過濾器"
+-#~ msgstr "过滤器"
 -
 -#~ msgid "Generate new policy module"
--#~ msgstr "ç\94¢ç\94\9fæ\96°ç\9a\84æ\94¿ç­\96模çµ\84"
+-#~ msgstr "ç\94\9fæ\88\90æ\96°ç\9a\84ç­\96ç\95¥æ¨¡å\9d\97"
 -
 -#~ msgid "Load policy module"
--#~ msgstr "載入政策模組"
+-#~ msgstr "加载策略模块"
 -
 -#~ msgid "Lockdown..."
--#~ msgstr "é\8e\96å®\9a..."
+-#~ msgstr "é\94\81å®\9a......"
 -
 -#~ msgid "MLS"
 -#~ msgstr "MLS"
--
++#: ../gui/semanagePage.py:148
++#, python-format
++msgid "Modify %s"
++msgstr ""
 -#~ msgid "Modify File Context"
--#~ msgstr "修改檔案 Context"
--
+-#~ msgstr "修改文件上下文"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
++msgid "Permissive"
++msgstr ""
 -#~ msgid "Modify SELinux User"
--#~ msgstr "修改 SELinux 用戶"
--
+-#~ msgstr "修改 SELinux 用户"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
++msgid "Enforcing"
++msgstr ""
 -#~ msgid "Modify SELinux User Mapping"
--#~ msgstr "修改 SELinux 用戶對映"
--
+-#~ msgstr "修改 SELinux 用户映射"
++#: ../gui/statusPage.py:94
++msgid "Status"
++msgstr ""
 -#~ msgid "Modify Translation"
--#~ msgstr "修改轉移"
--
+-#~ msgstr "修改转换"
++#: ../gui/statusPage.py:133
++msgid ""
++"Changing the policy type will cause a relabel of the entire file system on "
++"the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
 -#~ msgid "Relabel on next reboot."
--#~ msgstr "下次開機時重新標記。"
--
+-#~ msgstr "下次启动时重新标记。"
++#: ../gui/statusPage.py:147
++msgid ""
++"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
++"you later decide to turn SELinux back on, the system will be required to "
++"relabel.  If you just want to see if SELinux is causing a problem on your "
++"system, you can go to permissive mode which will only log errors and not "
++"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
++"wish to continue?"
++msgstr ""
 -#~ msgid "Remove loadable policy module"
--#~ msgstr "移除可載入的政策模組"
--
+-#~ msgstr "移除活动的策略模块"
++#: ../gui/statusPage.py:152
++msgid ""
++"Changing to SELinux enabled will cause a relabel of the entire file system "
++"on the next boot. Relabeling takes a long time depending on the size of the "
++"file system.  Do you wish to continue?"
++msgstr ""
 -#~ msgid "Revert boolean setting to system default"
--#~ msgstr "將布林值設定恢復成系統預設值"
--
+-#~ msgstr "将布尔设置转换为系统默认"
++#: ../gui/system-config-selinux.glade:11
++msgid "system-config-selinux"
++msgstr ""
 -#~ msgid "Run booleans lockdown wizard"
--#~ msgstr "執行布林值鎖定精靈"
--
+-#~ msgstr "运行布尔值锁定向导"
++#: ../gui/system-config-selinux.glade:12
++msgid ""
++"Copyright (c)2006 Red Hat, Inc.\n"
++"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++msgstr ""
 -#~ msgid "SELinux Administration"
--#~ msgstr "SELinux 管理"
--
+-#~ msgstr "SELinux 维护"
++#: ../gui/system-config-selinux.glade:22
++#: ../gui/system-config-selinux.glade:544
++msgid "Add SELinux Login Mapping"
++msgstr ""
 -#~ msgid ""
 -#~ "SELinux MLS/MCS\n"
 -#~ "Level"
 -#~ msgstr ""
 -#~ "SELinux MLS/MCS\n"
--#~ "等級"
--
+-#~ "级别"
++#: ../gui/system-config-selinux.glade:257
++msgid "Add SELinux Network Ports"
++msgstr ""
 -#~ msgid "SELinux Type"
--#~ msgstr "SELinux 類型"
--
+-#~ msgstr "SELinux 类型"
++#: ../gui/system-config-selinux.glade:391
++#: ../gui/system-config-selinux.glade:678
++msgid "SELinux Type"
++msgstr ""
+-#~ msgid "Select Management Object"
+-#~ msgstr "选择管理对象"
++#: ../gui/system-config-selinux.glade:622
++msgid "File Specification"
++msgstr ""
 -#~ msgid ""
 -#~ "Select if you wish to relabel then entire file system on next reboot.  "
 -#~ "Relabeling can take a very long time, depending on the size of the "
 -#~ "system.  If you are changing policy types or going from disabled to "
 -#~ "enforcing, a relabel is required."
 -#~ msgstr ""
--#~ "選擇您是否希望在下次開機時重新標記整個檔案系統。根據系統大小,重新標記可能"
--#~ "會花上一段很長時間。若您要更改政策類型或是要由停用狀態更改為強制模式,重新"
--#~ "標記將是必要的。"
--
+-#~ "如果您希望在下次重启过程中对整个文件系统重新标记,选择此项。重新标记可能花"
+-#~ "费很长时间,这与文件系统规模有关。如果您改变了策略类型,或是从禁用切换到其"
+-#~ "他模式,就应当重新标记。"
++#: ../gui/system-config-selinux.glade:650
++msgid "File Type"
++msgstr ""
 -#~ msgid "System Default Enforcing Mode"
--#~ msgstr "系統預設強制模式"
--
+-#~ msgstr "系统默认的应用模式"
++#: ../gui/system-config-selinux.glade:727
++msgid ""
++"all files\n"
++"regular file\n"
++"directory\n"
++"character device\n"
++"block device\n"
++"socket\n"
++"symbolic link\n"
++"named pipe\n"
++msgstr ""
 -#~ msgid "System Default Policy Type: "
--#~ msgstr "系統預設政策類型:"
--
+-#~ msgstr "系统默认的策略类型:"
++#: ../gui/system-config-selinux.glade:773
++msgid "MLS"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Booleans"
--#~ msgstr "在自訂化以及所有布林值之間進行啟用"
--
+-#~ msgstr "在自定义布尔和所有布尔间切换"
++#: ../gui/system-config-selinux.glade:837
++msgid "Add SELinux User"
++msgstr ""
 -#~ msgid "Toggle between Customized and All Ports"
--#~ msgstr "在自訂化以及所有通訊埠之間進行啟用"
+-#~ msgstr "在自定义端口和所有端口间切换"
 -
 -#~ msgid "Toggle between all and customized file context"
--#~ msgstr "在自訂化以及所有檔案 context 之間進行啟用"
+-#~ msgstr "在自定义文件环境和所有文件环境间切换"
 -
 -#~ msgid "_Delete"
--#~ msgstr "刪除(_D)"
--
+-#~ msgstr "删除 (_D)"
++#: ../gui/system-config-selinux.glade:1079
++msgid "SELinux Administration"
++msgstr ""
 -#~ msgid "_Properties"
--#~ msgstr "屬性(_P)"
--
+-#~ msgstr "属性 (_P)"
++#: ../gui/system-config-selinux.glade:1122
++msgid "Add"
++msgstr ""
 -#~ msgid ""
 -#~ "all files\n"
 -#~ "regular file\n"
@@ -289823,14 +239861,17 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_TW.po policycoreut
 -#~ "symbolic link\n"
 -#~ "named pipe\n"
 -#~ msgstr ""
--#~ "所有檔案\n"
--#~ "正規檔案\n"
--#~ "目錄\n"
--#~ "字元裝置\n"
--#~ "區塊裝置\n"
--#~ "socket\n"
--#~ "符號連結\n"
--#~ "named 管線\n"
+-#~ "所有文件\n"
+-#~ "常规文件\n"
+-#~ "目录\n"
+-#~ "字符设备\n"
+-#~ "块设备\n"
+-#~ "套接字\n"
+-#~ "符号链接\n"
+-#~ "命名管道\n"
+-
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
 -
 -#~ msgid ""
 -#~ "tcp\n"
@@ -289838,1597 +239879,2090 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zh_TW.po policycoreut
 -#~ msgstr ""
 -#~ "tcp\n"
 -#~ "udp"
-+#: ../gui/usersPage.py:138
-+#, python-format
-+msgid "SELinux user '%s' is required"
-+msgstr "需要 SELinux 用戶「%s」"
-diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils-2.0.85/po/zu.po
---- nsapolicycoreutils/po/zu.po        2011-02-17 15:11:25.728724910 -0500
-+++ policycoreutils-2.0.85/po/zu.po    2011-02-18 16:03:41.453976326 -0500
-@@ -8,14 +8,32 @@
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-06-24 10:53-0400\n"
-+"POT-Creation-Date: 2010-07-27 10:03-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"
-+"Language: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+#: system-config-selinux.desktop.in.h:1
-+msgid "Configure SELinux in a graphical setting"
+-
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "敏感度级别"
+-
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "SELinux 用户 '%s' 是必需的"
++#: ../gui/system-config-selinux.glade:1144
++msgid "_Properties"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1166
++msgid "_Delete"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1257
++msgid "Select Management Object"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1274
++msgid "<b>Select:</b>"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1327
++msgid "System Default Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1355
++msgid ""
++"Disabled\n"
++"Permissive\n"
++"Enforcing\n"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1374
++msgid "Current Enforcing Mode"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1419
++msgid "System Default Policy Type: "
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1464
++msgid ""
++"Select if you wish to relabel then entire file system on next reboot.  "
++"Relabeling can take a very long time, depending on the size of the system.  "
++"If you are changing policy types or going from disabled to enforcing, a "
++"relabel is required."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1510
++msgid "Relabel on next reboot."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1562
++msgid "label37"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1599
++msgid "Revert boolean setting to system default"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1615
++msgid "Toggle between Customized and All Booleans"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1633
++msgid "Run booleans lockdown wizard"
 +msgstr ""
 +
-+#: system-config-selinux.desktop.in.h:2
-+msgid "SELinux Management"
++#: ../gui/system-config-selinux.glade:1634
++msgid "Lockdown..."
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:1
-+msgid "Generate SELinux policy modules"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
++msgid "Filter"
 +msgstr ""
 +
-+#: selinux-polgengui.desktop.in.h:2 ../gui/polgen.glade:91
-+#: ../gui/polgen.glade:124
-+msgid "SELinux Policy Generation Tool"
++#: ../gui/system-config-selinux.glade:1753
++msgid "label50"
 +msgstr ""
 +
- #: ../run_init/run_init.c:67
++#: ../gui/system-config-selinux.glade:1790
++msgid "Add File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1806
++msgid "Modify File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1822
++msgid "Delete File Context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1838
++msgid "Toggle between all and customized file context"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1958
++msgid "label38"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:1995
++msgid "Add SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2011
++msgid "Modify SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2027
++msgid "Delete SELinux User Mapping"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2145
++msgid "label39"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2182
++msgid "Add User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2198
++msgid "Modify User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2214
++msgid "Delete User"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2332
++msgid "label41"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2369
++msgid "Add Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2385
++msgid "Edit Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2401
++msgid "Delete Network Port"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
++msgid "Toggle between Customized and All Ports"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2575
++msgid "label42"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2612
++msgid "Generate new policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2628
++msgid "Load policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2644
++msgid "Remove loadable policy module"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2680
++msgid ""
++"Enable/Disable additional audit rules, that are normally not reported in the "
++"log files."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2800
++msgid "label44"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2837
++msgid "Change process mode to permissive."
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2855
++msgid "Change process mode to enforcing"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2947
++msgid "Process Domain"
++msgstr ""
++
++#: ../gui/system-config-selinux.glade:2975
++msgid "label59"
++msgstr ""
++
++#: ../gui/usersPage.py:138
++#, python-format
++msgid "SELinux user '%s' is required"
++msgstr ""
+diff --git a/policycoreutils/po/zh_TW.po b/policycoreutils/po/zh_TW.po
+index 6f47fc3..4ffb390 100644
+--- a/policycoreutils/po/zh_TW.po
++++ b/policycoreutils/po/zh_TW.po
+@@ -1,24 +1,25 @@
+-# translation of policycoreutils.HEAD.po to Traditional Chinese
+-# translation of zh_TW.po to
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+ #
+-# Chester Cheng <ccheng@redhat.com>, 2006.
++# Translators:
+ # Chester Cheng <ccheng@brisbane.redhat.com>, 2006.
+-# Terry Chuang <tchuang@redhat.com>, 2008.
++# Chester Cheng <ccheng@redhat.com>, 2006.
++# Terry Chuang <tchuang at redhat>, 2010.
++# Terry Chuang <tchuang@redhat.com>, 2008, 2009, 2010.
  msgid ""
- "USAGE: run_init <script> <args ...>\n"
-@@ -118,7 +136,8 @@
- msgid "Level"
- msgstr ""
--#: ../semanage/seobject.py:239
-+#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651
-+#: ../gui/system-config-selinux.glade:2683
- msgid "Translation"
- msgstr ""
-@@ -170,736 +189,743 @@
- msgid "Permissive Types"
- msgstr ""
--#: ../semanage/seobject.py:378
-+#: ../semanage/seobject.py:366
- #, python-format
- msgid "Could not set permissive domain %s (module installation failed)"
- msgstr ""
--#: ../semanage/seobject.py:384
-+#: ../semanage/seobject.py:380
- #, python-format
- msgid "Could not remove permissive domain %s (remove failed)"
- msgstr ""
--#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
--#: ../semanage/seobject.py:516 ../semanage/seobject.py:598
--#: ../semanage/seobject.py:665 ../semanage/seobject.py:723
--#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506
--#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582
--#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714
-+#: ../semanage/seobject.py:406 ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:512 ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:661 ../semanage/seobject.py:719
-+#: ../semanage/seobject.py:929 ../semanage/seobject.py:1502
-+#: ../semanage/seobject.py:1566 ../semanage/seobject.py:1578
-+#: ../semanage/seobject.py:1659 ../semanage/seobject.py:1710
- #, python-format
- msgid "Could not create a key for %s"
- msgstr ""
--#: ../semanage/seobject.py:414 ../semanage/seobject.py:474
--#: ../semanage/seobject.py:520 ../semanage/seobject.py:526
-+#: ../semanage/seobject.py:410 ../semanage/seobject.py:470
-+#: ../semanage/seobject.py:516 ../semanage/seobject.py:522
- #, python-format
- msgid "Could not check if login mapping for %s is defined"
  msgstr ""
+-"Project-Id-Version: policycoreutils.HEAD\n"
++"Project-Id-Version: Policycoreutils\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-0400\n"
+-"PO-Revision-Date: 2008-09-09 11:34+1000\n"
+-"Last-Translator: Terry Chuang <tchuang@redhat.com>\n"
+-"Language-Team: Traditional Chinese <zh@li.org>\n"
+-"Language: \n"
++"POT-Creation-Date: 2012-04-18 11:44-0400\n"
++"PO-Revision-Date: 2012-04-02 20:30+0000\n"
++"Last-Translator: dwalsh <dwalsh@redhat.com>\n"
++"Language-Team: Chinese (Taiwan) <trans-zh_TW@lists.fedoraproject.org>\n"
++"Language: zh_TW\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"X-Generator: KBabel 1.11.4\n"
++"Plural-Forms: nplurals=1; plural=0\n"
  
--#: ../semanage/seobject.py:416
-+#: ../semanage/seobject.py:412
- #, python-format
- msgid "Login mapping for %s is already defined"
+ #: ../run_init/run_init.c:67
+ msgid ""
+@@ -26,7 +27,7 @@ msgid ""
+ "  where: <script> is the name of the init script to run,\n"
+ "         <args ...> are the arguments to that script."
  msgstr ""
+-"USAGE: run_init <script> <args ...>\n"
++"使用方法:run_init <script> <args ...>\n"
+ "  其中:<script> 是要執行的 init 程序檔,\n"
+ "         <args ...> 是程序檔的參數。"
  
--#: ../semanage/seobject.py:421
-+#: ../semanage/seobject.py:417
- #, python-format
- msgid "Linux Group %s does not exist"
- msgstr ""
+@@ -82,7 +83,7 @@ msgstr "認證失敗。\n"
+ #: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+ #, c-format
+ msgid "Could not set exec context to %s.\n"
+-msgstr "無法將 exec 內文設定至 %s。\n"
++msgstr "無法將 exec context 設定為 %s。\n"
  
--#: ../semanage/seobject.py:426
-+#: ../semanage/seobject.py:422
- #, python-format
- msgid "Linux User %s does not exist"
- msgstr ""
+ #: ../audit2allow/audit2allow:230
+ msgid "******************** IMPORTANT ***********************\n"
+@@ -90,7 +91,7 @@ msgstr "******************** 重要 ***********************\n"
  
--#: ../semanage/seobject.py:430
-+#: ../semanage/seobject.py:426
- #, python-format
- msgid "Could not create login mapping for %s"
- msgstr ""
+ #: ../audit2allow/audit2allow:231
+ msgid "To make this policy package active, execute:"
+-msgstr "若要啟用此政策套件,請執行:"
++msgstr "若要啟用此方針套件,請執行:"
  
--#: ../semanage/seobject.py:434 ../semanage/seobject.py:612
-+#: ../semanage/seobject.py:430 ../semanage/seobject.py:608
- #, python-format
- msgid "Could not set name for %s"
- msgstr ""
+ #: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+ msgid "global"
+@@ -102,20 +103,19 @@ msgstr "無法建立 semanage 處理器"
  
--#: ../semanage/seobject.py:439 ../semanage/seobject.py:622
-+#: ../semanage/seobject.py:435 ../semanage/seobject.py:618
- #, python-format
- msgid "Could not set MLS range for %s"
- msgstr ""
+ #: ../semanage/seobject.py:230
+ msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr "SELinux 政策並不受管理,或無法存取 store。"
++msgstr "SELinux 方針並不受管理,或無法存取 store。"
  
--#: ../semanage/seobject.py:443
-+#: ../semanage/seobject.py:439
- #, python-format
- msgid "Could not set SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:235
+ msgid "Cannot read policy store."
+-msgstr "無法讀取政策 store。"
++msgstr "無法讀取方針 store。"
  
--#: ../semanage/seobject.py:447
-+#: ../semanage/seobject.py:443
- #, python-format
- msgid "Could not add login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:240
+ msgid "Could not establish semanage connection"
+ msgstr "無法建立 semanage 連線"
  
--#: ../semanage/seobject.py:459 ../semanage/seobject.py:462
-+#: ../semanage/seobject.py:455 ../semanage/seobject.py:458
- msgid "add SELinux user mapping"
- msgstr ""
+ #: ../semanage/seobject.py:245
+-#, fuzzy
+ msgid "Could not test MLS enabled status"
+-msgstr "無法為 %s 設定 MLS 範圍"
++msgstr "無法測試啟用了 MLS 的狀態"
  
--#: ../semanage/seobject.py:466
-+#: ../semanage/seobject.py:462
- msgid "Requires seuser or serange"
- msgstr ""
+ #: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+ msgid "Not yet implemented"
+@@ -123,7 +123,7 @@ msgstr "未實施"
  
--#: ../semanage/seobject.py:476 ../semanage/seobject.py:522
-+#: ../semanage/seobject.py:472 ../semanage/seobject.py:518
- #, python-format
- msgid "Login mapping for %s is not defined"
- msgstr ""
+ #: ../semanage/seobject.py:255
+ msgid "Semanage transaction already in progress"
+-msgstr ""
++msgstr "Semanage 傳輸正在進行中"
  
--#: ../semanage/seobject.py:480
-+#: ../semanage/seobject.py:476
- #, python-format
- msgid "Could not query seuser for %s"
- msgstr ""
+ #: ../semanage/seobject.py:264
+ msgid "Could not start semanage transaction"
+@@ -135,53 +135,50 @@ msgstr "無法提交 semanage 交易"
  
--#: ../semanage/seobject.py:496
-+#: ../semanage/seobject.py:492
- #, python-format
- msgid "Could not modify login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:279
+ msgid "Semanage transaction not in progress"
+-msgstr ""
++msgstr "Semanage 傳輸非進行中"
  
--#: ../semanage/seobject.py:528
-+#: ../semanage/seobject.py:524
- #, python-format
- msgid "Login mapping for %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+ msgid "Could not list SELinux modules"
+ msgstr "無法列出 SELinux 模組"
  
--#: ../semanage/seobject.py:532
-+#: ../semanage/seobject.py:528
- #, python-format
- msgid "Could not delete login mapping for %s"
- msgstr ""
+ #: ../semanage/seobject.py:304
+-#, fuzzy
+ msgid "Modules Name"
+-msgstr "模組名稱"
++msgstr ""
  
--#: ../semanage/seobject.py:555
-+#: ../semanage/seobject.py:551
- msgid "Could not list login mappings"
- msgstr ""
+-#: ../semanage/seobject.py:304
++#: ../semanage/seobject.py:304 ../gui/modulesPage.py:62
+ msgid "Version"
+ msgstr "版本"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../gui/system-config-selinux.glade:100
- msgid "Login Name"
- msgstr ""
+-#: ../semanage/seobject.py:307
++#: ../semanage/seobject.py:307 ../gui/statusPage.py:75
+ msgid "Disabled"
+ msgstr "停用"
  
--#: ../semanage/seobject.py:568 ../semanage/seobject.py:573
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:564 ../semanage/seobject.py:569
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:128
-+#: ../gui/system-config-selinux.glade:1107
-+#: ../gui/system-config-selinux.glade:2496 ../gui/usersPage.py:44
- msgid "SELinux User"
- msgstr ""
+ #: ../semanage/seobject.py:322
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not disable module %s (remove failed)"
+-msgstr "無法移除寬鬆型網域 %s(移除失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:568
-+#: ../semanage/seobject.py:564 ../gui/system-config-selinux.glade:156
-+#: ../gui/system-config-selinux.glade:1135
- msgid "MLS/MCS Range"
- msgstr ""
+ #: ../semanage/seobject.py:333
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not enable module %s (remove failed)"
+-msgstr "無法移除寬鬆型網域 %s(移除失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:594
-+#: ../semanage/seobject.py:590
- #, python-format
- msgid "You must add at least one role for %s"
- msgstr ""
+ #: ../semanage/seobject.py:348
+-#, fuzzy, python-format
++#, python-format
+ msgid "Could not remove module %s (remove failed)"
+-msgstr "無法移除寬鬆型網域 %s(移除失敗)"
++msgstr ""
  
--#: ../semanage/seobject.py:602 ../semanage/seobject.py:669
--#: ../semanage/seobject.py:727 ../semanage/seobject.py:733
-+#: ../semanage/seobject.py:598 ../semanage/seobject.py:665
-+#: ../semanage/seobject.py:723 ../semanage/seobject.py:729
- #, python-format
- msgid "Could not check if SELinux user %s is defined"
+ #: ../semanage/seobject.py:358
+ msgid "dontaudit requires either 'on' or 'off'"
  msgstr ""
  
--#: ../semanage/seobject.py:604
-+#: ../semanage/seobject.py:600
- #, python-format
- msgid "SELinux user %s is already defined"
- msgstr ""
+ #: ../semanage/seobject.py:387
+-#, fuzzy
+ msgid "Builtin Permissive Types"
+-msgstr "寬鬆型"
++msgstr ""
  
--#: ../semanage/seobject.py:608
-+#: ../semanage/seobject.py:604
- #, python-format
- msgid "Could not create SELinux user for %s"
- msgstr ""
+ #: ../semanage/seobject.py:397
+-#, fuzzy
+ msgid "Customized Permissive Types"
+-msgstr "寬鬆型"
++msgstr ""
  
--#: ../semanage/seobject.py:617
-+#: ../semanage/seobject.py:613
+ #: ../semanage/seobject.py:438
  #, python-format
- msgid "Could not add role %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:626
-+#: ../semanage/seobject.py:622
+@@ -208,7 +205,7 @@ msgstr "無法為 %s 建立金鑰"
+ #: ../semanage/seobject.py:603 ../semanage/seobject.py:609
  #, python-format
- msgid "Could not set MLS level for %s"
- msgstr ""
+ msgid "Could not check if login mapping for %s is defined"
+-msgstr "無法檢查 %s 的登入對映是否已經定義"
++msgstr "無法檢查 %s 的登入對應是否已經定義"
  
--#: ../semanage/seobject.py:629
-+#: ../semanage/seobject.py:625
+ #: ../semanage/seobject.py:492
  #, python-format
- msgid "Could not add prefix %s for %s"
- msgstr ""
--#: ../semanage/seobject.py:632
-+#: ../semanage/seobject.py:628
+@@ -223,7 +220,7 @@ msgstr "Linux 使用者 %s 不存在"
+ #: ../semanage/seobject.py:501
  #, python-format
- msgid "Could not extract key for %s"
- msgstr ""
+ msgid "Could not create login mapping for %s"
+-msgstr "無法為 %s 建立登入對映"
++msgstr "無法為 %s 建立登入對應"
  
--#: ../semanage/seobject.py:636
-+#: ../semanage/seobject.py:632
+ #: ../semanage/seobject.py:505 ../semanage/seobject.py:741
  #, python-format
- msgid "Could not add SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:659
-+#: ../semanage/seobject.py:655
- msgid "Requires prefix, roles, level or range"
- msgstr ""
--#: ../semanage/seobject.py:661
-+#: ../semanage/seobject.py:657
- msgid "Requires prefix or roles"
- msgstr ""
--#: ../semanage/seobject.py:671 ../semanage/seobject.py:729
-+#: ../semanage/seobject.py:667 ../semanage/seobject.py:725
+@@ -243,7 +240,7 @@ msgstr "無法為 %s 設定 SELinux 使用者"
+ #: ../semanage/seobject.py:518
  #, python-format
- msgid "SELinux user %s is not defined"
- msgstr ""
+ msgid "Could not add login mapping for %s"
+-msgstr "無法為 %s 新增登入對映"
++msgstr "無法為 %s 新增登入對應"
  
--#: ../semanage/seobject.py:675
-+#: ../semanage/seobject.py:671
+ #: ../semanage/seobject.py:536
+ msgid "Requires seuser or serange"
+@@ -252,7 +249,7 @@ msgstr "需要 seuser 或 serange"
+ #: ../semanage/seobject.py:559 ../semanage/seobject.py:605
  #, python-format
- msgid "Could not query user for %s"
- msgstr ""
+ msgid "Login mapping for %s is not defined"
+-msgstr "%s 的登入對映並未定義"
++msgstr "%s 的登入對應並未定義"
  
--#: ../semanage/seobject.py:702
-+#: ../semanage/seobject.py:698
+ #: ../semanage/seobject.py:563
  #, python-format
- msgid "Could not modify SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:735
-+#: ../semanage/seobject.py:731
+@@ -262,33 +259,38 @@ msgstr "無法為 %s 查詢 seuser"
+ #: ../semanage/seobject.py:577
  #, python-format
- msgid "SELinux user %s is defined in policy, cannot be deleted"
- msgstr ""
+ msgid "Could not modify login mapping for %s"
+-msgstr "無法為 %s 修改登入對映"
++msgstr "無法為 %s 修改登入對應"
  
--#: ../semanage/seobject.py:739
-+#: ../semanage/seobject.py:735
+ #: ../semanage/seobject.py:611
  #, python-format
- msgid "Could not delete SELinux user %s"
- msgstr ""
--#: ../semanage/seobject.py:762
-+#: ../semanage/seobject.py:758
- msgid "Could not list SELinux users"
- msgstr ""
+ msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr "%s 的登入對映定義在政策中,無法刪除"
++msgstr "%s 的登入對應定義在方針中,無法刪除"
  
--#: ../semanage/seobject.py:768
-+#: ../semanage/seobject.py:764
+ #: ../semanage/seobject.py:615
  #, python-format
- msgid "Could not list roles for user %s"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "Labeling"
- msgstr ""
--#: ../semanage/seobject.py:781
-+#: ../semanage/seobject.py:777
- msgid "MLS/"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "Prefix"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Level"
- msgstr ""
--#: ../semanage/seobject.py:782
-+#: ../semanage/seobject.py:778
- msgid "MCS Range"
- msgstr ""
--#: ../semanage/seobject.py:782 ../semanage/seobject.py:787
-+#: ../semanage/seobject.py:778 ../semanage/seobject.py:783
-+#: ../gui/system-config-selinux.glade:1184 ../gui/usersPage.py:59
- msgid "SELinux Roles"
- msgstr ""
+ msgid "Could not delete login mapping for %s"
+-msgstr "無法為 %s 刪除登入對映"
++msgstr "無法為 %s 刪除登入對應"
  
--#: ../semanage/seobject.py:802
-+#: ../semanage/seobject.py:798
- msgid "Protocol udp or tcp is required"
- msgstr ""
+ #: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+ #: ../semanage/seobject.py:893
+ msgid "Could not list login mappings"
+-msgstr "無法列出登入對映"
++msgstr "無法列出登入對應"
  
--#: ../semanage/seobject.py:804
-+#: ../semanage/seobject.py:800
- msgid "Port is required"
- msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
++#: ../gui/system-config-selinux.glade:100
+ msgid "Login Name"
+ msgstr "登錄名稱"
  
--#: ../semanage/seobject.py:815
-+#: ../semanage/seobject.py:811
- #, python-format
- msgid "Could not create a key for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:128
++#: ../gui/system-config-selinux.glade:915
++#: ../gui/system-config-selinux.glade:2304 ../gui/usersPage.py:44
+ msgid "SELinux User"
+ msgstr "SELinux 使用者"
  
--#: ../semanage/seobject.py:826
-+#: ../semanage/seobject.py:822
- msgid "Type is required"
- msgstr ""
+-#: ../semanage/seobject.py:680
++#: ../semanage/seobject.py:680 ../gui/system-config-selinux.glade:156
++#: ../gui/system-config-selinux.glade:943
+ msgid "MLS/MCS Range"
+ msgstr "MLS/MCS 範圍"
  
--#: ../semanage/seobject.py:832 ../semanage/seobject.py:891
--#: ../semanage/seobject.py:946 ../semanage/seobject.py:952
-+#: ../semanage/seobject.py:828 ../semanage/seobject.py:887
-+#: ../semanage/seobject.py:942 ../semanage/seobject.py:948
+@@ -361,7 +363,7 @@ msgstr "無法修改 SELinux 使用者 %s"
+ #: ../semanage/seobject.py:862
  #, python-format
- msgid "Could not check if port %s/%s is defined"
- msgstr ""
+ msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr "SELinux 使用者 %s 定義在政策中,無法刪除"
++msgstr "SELinux 使用者 %s 定義在方針中,無法刪除"
  
--#: ../semanage/seobject.py:834
-+#: ../semanage/seobject.py:830
+ #: ../semanage/seobject.py:873
  #, python-format
- msgid "Port %s/%s already defined"
- msgstr ""
+@@ -398,6 +400,7 @@ msgid "MCS Range"
+ msgstr "MCS 範圍"
  
--#: ../semanage/seobject.py:838
-+#: ../semanage/seobject.py:834
- #, python-format
- msgid "Could not create port for %s/%s"
- msgstr ""
+ #: ../semanage/seobject.py:943 ../semanage/seobject.py:948
++#: ../gui/system-config-selinux.glade:992 ../gui/usersPage.py:59
+ msgid "SELinux Roles"
+ msgstr "SELinux 角色"
  
--#: ../semanage/seobject.py:844
-+#: ../semanage/seobject.py:840
+@@ -441,32 +444,32 @@ msgstr "無法為 %s/%s 建立連接埠"
+ #: ../semanage/seobject.py:1008
  #, python-format
  msgid "Could not create context for %s/%s"
- msgstr ""
+-msgstr "無法為 %s/%s 建立內文"
++msgstr "無法為 %s/%s 建立 context"
  
--#: ../semanage/seobject.py:848
-+#: ../semanage/seobject.py:844
+ #: ../semanage/seobject.py:1012
  #, python-format
  msgid "Could not set user in port context for %s/%s"
- msgstr ""
+-msgstr "無法為 %s/%s 的連接埠內文中,設定使用者"
++msgstr "無法為 %s/%s 的連接埠 context 中,設定使用者"
  
--#: ../semanage/seobject.py:852
-+#: ../semanage/seobject.py:848
+ #: ../semanage/seobject.py:1016
  #, python-format
  msgid "Could not set role in port context for %s/%s"
- msgstr ""
+-msgstr "無法為 %s/%s 的連接埠內文中,設定角色"
++msgstr "無法為 %s/%s 的連接埠 context 中,設定角色"
  
--#: ../semanage/seobject.py:856
-+#: ../semanage/seobject.py:852
+ #: ../semanage/seobject.py:1020
  #, python-format
  msgid "Could not set type in port context for %s/%s"
- msgstr ""
+-msgstr "無法為 %s/%s 的連接埠內文中,設定類型"
++msgstr "無法為 %s/%s 的連接埠 context 中,設定類型"
  
--#: ../semanage/seobject.py:861
-+#: ../semanage/seobject.py:857
+ #: ../semanage/seobject.py:1025
  #, python-format
  msgid "Could not set mls fields in port context for %s/%s"
- msgstr ""
+-msgstr "無法為 %s/%s 的連接埠內文中,設定 mls 欄位"
++msgstr "無法為 %s/%s 的連接埠 context 中,設定 mls 欄位"
  
--#: ../semanage/seobject.py:865
-+#: ../semanage/seobject.py:861
+ #: ../semanage/seobject.py:1029
  #, python-format
  msgid "Could not set port context for %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:869
-+#: ../semanage/seobject.py:865
- #, python-format
- msgid "Could not add port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:883 ../semanage/seobject.py:1129
--#: ../semanage/seobject.py:1317
-+#: ../semanage/seobject.py:879 ../semanage/seobject.py:1125
-+#: ../semanage/seobject.py:1313
- msgid "Requires setype or serange"
- msgstr ""
--#: ../semanage/seobject.py:885
-+#: ../semanage/seobject.py:881
- msgid "Requires setype"
- msgstr ""
--#: ../semanage/seobject.py:893 ../semanage/seobject.py:948
-+#: ../semanage/seobject.py:889 ../semanage/seobject.py:944
- #, python-format
- msgid "Port %s/%s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:897
-+#: ../semanage/seobject.py:893
- #, python-format
- msgid "Could not query port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:908
-+#: ../semanage/seobject.py:904
- #, python-format
- msgid "Could not modify port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:921
-+#: ../semanage/seobject.py:917
- msgid "Could not list the ports"
- msgstr ""
+-msgstr "無法為 %s/%s 設定連接埠內文"
++msgstr "無法為 %s/%s 設定連接埠 context"
  
--#: ../semanage/seobject.py:937
-+#: ../semanage/seobject.py:933
+ #: ../semanage/seobject.py:1033
  #, python-format
- msgid "Could not delete the port %s"
- msgstr ""
--#: ../semanage/seobject.py:954
-+#: ../semanage/seobject.py:950
+@@ -509,7 +512,7 @@ msgstr "無法刪除連接埠 %s"
+ #: ../semanage/seobject.py:1118
  #, python-format
  msgid "Port %s/%s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "連接埠 %s/%s 已經在政策中定義,無法刪除"
++msgstr "連接埠 %s/%s 已經在方針中定義,無法刪除"
  
--#: ../semanage/seobject.py:958
-+#: ../semanage/seobject.py:954
+ #: ../semanage/seobject.py:1122
  #, python-format
- msgid "Could not delete port %s/%s"
- msgstr ""
--#: ../semanage/seobject.py:974 ../semanage/seobject.py:996
-+#: ../semanage/seobject.py:970 ../semanage/seobject.py:992
- msgid "Could not list ports"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
- msgid "SELinux Port Type"
- msgstr ""
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013
+@@ -528,18 +531,17 @@ msgstr "SELinux 連接埠類型"
  msgid "Proto"
- msgstr ""
+ msgstr "Proto"
  
--#: ../semanage/seobject.py:1017
-+#: ../semanage/seobject.py:1013 ../gui/system-config-selinux.glade:335
+-#: ../semanage/seobject.py:1199
++#: ../semanage/seobject.py:1199 ../gui/system-config-selinux.glade:335
  msgid "Port Number"
- msgstr ""
+ msgstr "埠號"
  
--#: ../semanage/seobject.py:1034 ../semanage/seobject.py:1116
--#: ../semanage/seobject.py:1166
-+#: ../semanage/seobject.py:1030 ../semanage/seobject.py:1112
-+#: ../semanage/seobject.py:1162
+ #: ../semanage/seobject.py:1218
+-#, fuzzy
  msgid "Node Address is required"
- msgstr ""
--#: ../semanage/seobject.py:1037 ../semanage/seobject.py:1119
--#: ../semanage/seobject.py:1169
-+#: ../semanage/seobject.py:1033 ../semanage/seobject.py:1115
-+#: ../semanage/seobject.py:1165
- msgid "Node Netmask is required"
- msgstr ""
+-msgstr "需要連接埠"
++msgstr "需要節點位址"
  
--#: ../semanage/seobject.py:1044 ../semanage/seobject.py:1125
--#: ../semanage/seobject.py:1176
-+#: ../semanage/seobject.py:1040 ../semanage/seobject.py:1121
-+#: ../semanage/seobject.py:1172
+ #: ../semanage/seobject.py:1233
  msgid "Unknown or missing protocol"
- msgstr ""
--#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1256
--#: ../semanage/seobject.py:1445
-+#: ../semanage/seobject.py:1050 ../semanage/seobject.py:1252
-+#: ../semanage/seobject.py:1441
- msgid "SELinux Type is required"
- msgstr ""
+-msgstr ""
++msgstr "通訊協定不明或遺失"
  
--#: ../semanage/seobject.py:1058 ../semanage/seobject.py:1133
--#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1260
--#: ../semanage/seobject.py:1321 ../semanage/seobject.py:1355
--#: ../semanage/seobject.py:1449
-+#: ../semanage/seobject.py:1054 ../semanage/seobject.py:1129
-+#: ../semanage/seobject.py:1176 ../semanage/seobject.py:1256
-+#: ../semanage/seobject.py:1317 ../semanage/seobject.py:1351
-+#: ../semanage/seobject.py:1445
- #, python-format
- msgid "Could not create key for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+ #: ../semanage/seobject.py:1724
+@@ -556,90 +558,88 @@ msgstr "無法為 %s 建立金鑰"
  
--#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1137
--#: ../semanage/seobject.py:1184 ../semanage/seobject.py:1190
-+#: ../semanage/seobject.py:1056 ../semanage/seobject.py:1133
-+#: ../semanage/seobject.py:1180 ../semanage/seobject.py:1186
- #, python-format
+ #: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+ #: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not check if addr %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1064
-+#: ../semanage/seobject.py:1060
- #, python-format
- msgid "Addr %s already defined"
- msgstr ""
+-msgstr "無法檢查連接埠 %s/%s 是否已經定義"
++msgstr "無法檢查 addr %s 是否已定義"
  
--#: ../semanage/seobject.py:1068
-+#: ../semanage/seobject.py:1064
- #, python-format
+ #: ../semanage/seobject.py:1262
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not create addr for %s"
- msgstr ""
+-msgstr "無法為 %s 建立金鑰"
++msgstr "無法為 %s 建立 addr"
  
--#: ../semanage/seobject.py:1073 ../semanage/seobject.py:1275
--#: ../semanage/seobject.py:1415
-+#: ../semanage/seobject.py:1069 ../semanage/seobject.py:1271
-+#: ../semanage/seobject.py:1411
+ #: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+ #: ../semanage/seobject.py:1686
  #, python-format
  msgid "Could not create context for %s"
- msgstr ""
+-msgstr "無法為 %s 建立內文"
++msgstr "無法為 %s 建立 context"
  
--#: ../semanage/seobject.py:1077
-+#: ../semanage/seobject.py:1073
- #, python-format
+ #: ../semanage/seobject.py:1272
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mask for %s"
- msgstr ""
+-msgstr "無法為 %s 設定名稱"
++msgstr "無法為 %s 設定遮罩"
  
--#: ../semanage/seobject.py:1082
-+#: ../semanage/seobject.py:1078
- #, python-format
+ #: ../semanage/seobject.py:1276
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set user in addr context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定使用者"
++msgstr "無法為 %s 的 addr context 設定使用者"
  
--#: ../semanage/seobject.py:1086
-+#: ../semanage/seobject.py:1082
- #, python-format
+ #: ../semanage/seobject.py:1280
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set role in addr context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定角色"
++msgstr "無法為 %s 的 addr context 設定角色"
  
--#: ../semanage/seobject.py:1090
-+#: ../semanage/seobject.py:1086
- #, python-format
+ #: ../semanage/seobject.py:1284
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set type in addr context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定類型"
++msgstr "無法為 %s 的 addr context 設定類型"
  
--#: ../semanage/seobject.py:1095
-+#: ../semanage/seobject.py:1091
- #, python-format
+ #: ../semanage/seobject.py:1289
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set mls fields in addr context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定 mls 欄位"
++msgstr "無法為 %s 的 addr context 設定 mls 欄位"
  
--#: ../semanage/seobject.py:1099
-+#: ../semanage/seobject.py:1095
- #, python-format
+ #: ../semanage/seobject.py:1293
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not set addr context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定檔案內文"
++msgstr "無法為 %s 設定 addr context"
  
--#: ../semanage/seobject.py:1103
-+#: ../semanage/seobject.py:1099
- #, python-format
+ #: ../semanage/seobject.py:1297
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not add addr %s"
- msgstr ""
+-msgstr "無法新增連接埠 %s/%s"
++msgstr "無法新增 addr %s"
  
--#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1186
-+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1182
- #, python-format
+ #: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is not defined"
- msgstr ""
+-msgstr "連接埠 %s/%s 未定義"
++msgstr "Addr %s 未定義"
  
--#: ../semanage/seobject.py:1143
-+#: ../semanage/seobject.py:1139
- #, python-format
+ #: ../semanage/seobject.py:1326
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not query addr %s"
- msgstr ""
+-msgstr "無法查詢連接埠 %s/%s"
++msgstr "無法查詢 addr %s"
  
--#: ../semanage/seobject.py:1154
-+#: ../semanage/seobject.py:1150
- #, python-format
+ #: ../semanage/seobject.py:1336
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not modify addr %s"
- msgstr ""
+-msgstr "無法修改連接埠 %s/%s"
++msgstr "無法修改 addr %s"
  
--#: ../semanage/seobject.py:1192
-+#: ../semanage/seobject.py:1188
- #, python-format
+ #: ../semanage/seobject.py:1364
+-#, fuzzy, python-format
++#, python-format
  msgid "Addr %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "連接埠 %s/%s 已經在政策中定義,無法刪除"
++msgstr "Addr %s 已經在方針中定義,無法刪除"
  
--#: ../semanage/seobject.py:1196
-+#: ../semanage/seobject.py:1192
- #, python-format
+ #: ../semanage/seobject.py:1368
+-#, fuzzy, python-format
++#, python-format
  msgid "Could not delete addr %s"
- msgstr ""
--#: ../semanage/seobject.py:1212
-+#: ../semanage/seobject.py:1208
- msgid "Could not list addrs"
- msgstr ""
--#: ../semanage/seobject.py:1264 ../semanage/seobject.py:1325
--#: ../semanage/seobject.py:1359 ../semanage/seobject.py:1365
-+#: ../semanage/seobject.py:1260 ../semanage/seobject.py:1321
-+#: ../semanage/seobject.py:1355 ../semanage/seobject.py:1361
- #, python-format
- msgid "Could not check if interface %s is defined"
- msgstr ""
+-msgstr "無法刪除連接埠 %s/%s"
++msgstr "無法刪除 addr %s"
  
--#: ../semanage/seobject.py:1266
-+#: ../semanage/seobject.py:1262
- #, python-format
- msgid "Interface %s already defined"
- msgstr ""
+ #: ../semanage/seobject.py:1380
+-#, fuzzy
+ msgid "Could not deleteall node mappings"
+-msgstr "無法為 %s 刪除登入對映"
++msgstr ""
  
--#: ../semanage/seobject.py:1270
-+#: ../semanage/seobject.py:1266
- #, python-format
- msgid "Could not create interface for %s"
- msgstr ""
+ #: ../semanage/seobject.py:1394
+-#, fuzzy
+ msgid "Could not list addrs"
+-msgstr "無法列出連接埠"
++msgstr "無法列出 addr"
  
--#: ../semanage/seobject.py:1279
-+#: ../semanage/seobject.py:1275
+ #: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+@@ -655,32 +655,32 @@ msgstr "無法為 %s 建立介面"
+ #: ../semanage/seobject.py:1470
  #, python-format
  msgid "Could not set user in interface context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定介面內文中的使用者"
++msgstr "無法為 %s 設定介面 context 中的使用者"
  
--#: ../semanage/seobject.py:1283
-+#: ../semanage/seobject.py:1279
+ #: ../semanage/seobject.py:1474
  #, python-format
  msgid "Could not set role in interface context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定介面內文中的角色"
++msgstr "無法為 %s 設定介面 context 中的角色"
  
--#: ../semanage/seobject.py:1287
-+#: ../semanage/seobject.py:1283
+ #: ../semanage/seobject.py:1478
  #, python-format
  msgid "Could not set type in interface context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定介面內文中的類型"
++msgstr "無法為 %s 設定介面 context 中的類型"
  
--#: ../semanage/seobject.py:1292
-+#: ../semanage/seobject.py:1288
+ #: ../semanage/seobject.py:1483
  #, python-format
  msgid "Could not set mls fields in interface context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定介面內文中的 mls 欄位"
++msgstr "無法為 %s 設定介面 context 中的 mls 欄位"
  
--#: ../semanage/seobject.py:1296
-+#: ../semanage/seobject.py:1292
+ #: ../semanage/seobject.py:1487
  #, python-format
  msgid "Could not set interface context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定介面內文"
++msgstr "無法為 %s 設定介面 context"
  
--#: ../semanage/seobject.py:1300
-+#: ../semanage/seobject.py:1296
+ #: ../semanage/seobject.py:1491
  #, python-format
  msgid "Could not set message context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定訊息內文"
++msgstr "無法為 %s 設定訊息 context"
  
--#: ../semanage/seobject.py:1304
-+#: ../semanage/seobject.py:1300
+ #: ../semanage/seobject.py:1495
  #, python-format
- msgid "Could not add interface %s"
- msgstr ""
--#: ../semanage/seobject.py:1327 ../semanage/seobject.py:1361
-+#: ../semanage/seobject.py:1323 ../semanage/seobject.py:1357
+@@ -705,7 +705,7 @@ msgstr "無法修改介面 %s"
+ #: ../semanage/seobject.py:1558
  #, python-format
- msgid "Interface %s is not defined"
- msgstr ""
+ msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr "介面 %s 定義在政策中,無法刪除"
++msgstr "介面 %s 定義在方針中,無法刪除"
  
--#: ../semanage/seobject.py:1331
-+#: ../semanage/seobject.py:1327
+ #: ../semanage/seobject.py:1562
  #, python-format
- msgid "Could not query interface %s"
- msgstr ""
+@@ -713,9 +713,8 @@ msgid "Could not delete interface %s"
+ msgstr "無法刪除介面 %s"
  
--#: ../semanage/seobject.py:1342
-+#: ../semanage/seobject.py:1338
- #, python-format
- msgid "Could not modify interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1574
+-#, fuzzy
+ msgid "Could not delete all interface  mappings"
+-msgstr "無法刪除介面 %s"
++msgstr ""
  
--#: ../semanage/seobject.py:1367
-+#: ../semanage/seobject.py:1363
- #, python-format
- msgid "Interface %s is defined in policy, cannot be deleted"
- msgstr ""
+ #: ../semanage/seobject.py:1588
+ msgid "Could not list interfaces"
+@@ -727,12 +726,12 @@ msgstr "SELinux 介面"
  
--#: ../semanage/seobject.py:1371
-+#: ../semanage/seobject.py:1367
- #, python-format
- msgid "Could not delete interface %s"
- msgstr ""
+ #: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+ msgid "Context"
+-msgstr "內文"
++msgstr "Context"
  
--#: ../semanage/seobject.py:1387
-+#: ../semanage/seobject.py:1383
- msgid "Could not list interfaces"
- msgstr ""
+ #: ../semanage/seobject.py:1663
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s already exists"
+-msgstr "%s 的檔案內文已經定義"
++msgstr ""
  
--#: ../semanage/seobject.py:1397
-+#: ../semanage/seobject.py:1393
- msgid "SELinux Interface"
+ #: ../semanage/seobject.py:1669
+ #, python-format
+@@ -740,24 +739,24 @@ msgid "File spec %s conflicts with equivalency rule '%s %s'"
  msgstr ""
  
--#: ../semanage/seobject.py:1397 ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1393 ../semanage/seobject.py:1632
- msgid "Context"
- msgstr ""
+ #: ../semanage/seobject.py:1678
+-#, fuzzy, python-format
++#, python-format
+ msgid "Equivalence class for %s does not exists"
+-msgstr "Linux 使用者 %s 不存在"
++msgstr ""
  
--#: ../semanage/seobject.py:1421
-+#: ../semanage/seobject.py:1417
+ #: ../semanage/seobject.py:1692
  #, python-format
  msgid "Could not set user in file context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定使用者"
++msgstr "無法為 %s 的檔案 context 設定使用者"
  
--#: ../semanage/seobject.py:1425
-+#: ../semanage/seobject.py:1421
+ #: ../semanage/seobject.py:1696
  #, python-format
  msgid "Could not set role in file context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定角色"
++msgstr "無法為 %s 的檔案 context 設定角色"
  
--#: ../semanage/seobject.py:1430 ../semanage/seobject.py:1478
-+#: ../semanage/seobject.py:1426 ../semanage/seobject.py:1474
+ #: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
  #, python-format
  msgid "Could not set mls fields in file context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定 mls 欄位"
++msgstr "無法為 %s 的檔案 context 設定 mls 欄位"
  
--#: ../semanage/seobject.py:1436
-+#: ../semanage/seobject.py:1432
+ #: ../semanage/seobject.py:1707
  msgid "Invalid file specification"
- msgstr ""
--#: ../semanage/seobject.py:1453 ../semanage/seobject.py:1458
--#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1586
--#: ../semanage/seobject.py:1590
-+#: ../semanage/seobject.py:1449 ../semanage/seobject.py:1454
-+#: ../semanage/seobject.py:1506 ../semanage/seobject.py:1582
-+#: ../semanage/seobject.py:1586
+@@ -778,28 +777,28 @@ msgstr ""
+ #: ../semanage/seobject.py:1876
  #, python-format
  msgid "Could not check if file context for %s is defined"
- msgstr ""
--#: ../semanage/seobject.py:1461
-+#: ../semanage/seobject.py:1457
- #, python-format
- msgid "File context for %s already defined"
- msgstr ""
+-msgstr "無法檢查 %s 的檔案內文是否已經定義"
++msgstr "無法檢查 %s 的檔案 context 是否已經定義"
  
--#: ../semanage/seobject.py:1465
-+#: ../semanage/seobject.py:1461
+ #: ../semanage/seobject.py:1745
  #, python-format
  msgid "Could not create file context for %s"
- msgstr ""
+-msgstr "無法為 %s 建立檔案內文"
++msgstr "無法為 %s 建立檔案 context"
  
--#: ../semanage/seobject.py:1473
-+#: ../semanage/seobject.py:1469
+ #: ../semanage/seobject.py:1753
  #, python-format
  msgid "Could not set type in file context for %s"
- msgstr ""
+-msgstr "無法為 %s 的檔案內文設定類型"
++msgstr "無法為 %s 的檔案 context 設定類型"
  
--#: ../semanage/seobject.py:1481 ../semanage/seobject.py:1538
--#: ../semanage/seobject.py:1542
-+#: ../semanage/seobject.py:1477 ../semanage/seobject.py:1534
-+#: ../semanage/seobject.py:1538
+ #: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+ #: ../semanage/seobject.py:1822
  #, python-format
  msgid "Could not set file context for %s"
- msgstr ""
+-msgstr "無法為 %s 設定檔案內文"
++msgstr "無法為 %s 設定檔案 context"
  
--#: ../semanage/seobject.py:1487
-+#: ../semanage/seobject.py:1483
+ #: ../semanage/seobject.py:1767
  #, python-format
  msgid "Could not add file context for %s"
- msgstr ""
+-msgstr "無法為 %s 新增檔案內文"
++msgstr "無法為 %s 新增檔案 context"
  
--#: ../semanage/seobject.py:1501
-+#: ../semanage/seobject.py:1497
+ #: ../semanage/seobject.py:1781
  msgid "Requires setype, serange or seuser"
- msgstr ""
--#: ../semanage/seobject.py:1514 ../semanage/seobject.py:1594
-+#: ../semanage/seobject.py:1510 ../semanage/seobject.py:1590
+@@ -808,44 +807,44 @@ msgstr "需要 setype、serange 或 seuser"
+ #: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
  #, python-format
  msgid "File context for %s is not defined"
- msgstr ""
+-msgstr "%s 的檔案內文未定義"
++msgstr "%s 的檔案 context 未定義"
  
--#: ../semanage/seobject.py:1520
-+#: ../semanage/seobject.py:1516
+ #: ../semanage/seobject.py:1800
  #, python-format
  msgid "Could not query file context for %s"
- msgstr ""
+-msgstr "無法為 %s 查詢檔案內文"
++msgstr "無法為 %s 查詢檔案 context"
  
--#: ../semanage/seobject.py:1546
-+#: ../semanage/seobject.py:1542
+ #: ../semanage/seobject.py:1826
  #, python-format
  msgid "Could not modify file context for %s"
- msgstr ""
+-msgstr "無法為 %s 修改檔案內文"
++msgstr "無法為 %s 修改檔案 context"
  
--#: ../semanage/seobject.py:1560
-+#: ../semanage/seobject.py:1556
+ #: ../semanage/seobject.py:1839
  msgid "Could not list the file contexts"
- msgstr ""
+-msgstr "無法列出檔案內文"
++msgstr "無法列出檔案 context"
  
--#: ../semanage/seobject.py:1574
-+#: ../semanage/seobject.py:1570
+ #: ../semanage/seobject.py:1853
  #, python-format
  msgid "Could not delete the file context %s"
- msgstr ""
+-msgstr "無法刪除檔案內文 %s"
++msgstr "無法刪除檔案 context %s"
  
--#: ../semanage/seobject.py:1592
-+#: ../semanage/seobject.py:1588
+ #: ../semanage/seobject.py:1878
  #, python-format
  msgid "File context for %s is defined in policy, cannot be deleted"
- msgstr ""
+-msgstr "%s 的檔案內文已經定義於政策中,無法刪除"
++msgstr "%s 的檔案 context 已經定義在方針中,無法刪除"
  
--#: ../semanage/seobject.py:1598
-+#: ../semanage/seobject.py:1594
+ #: ../semanage/seobject.py:1884
  #, python-format
  msgid "Could not delete file context for %s"
- msgstr ""
+-msgstr "無法為 %s 刪除檔案內文"
++msgstr "無法為 %s 刪除檔案 context"
  
--#: ../semanage/seobject.py:1613
-+#: ../semanage/seobject.py:1609
+ #: ../semanage/seobject.py:1899
  msgid "Could not list file contexts"
- msgstr ""
+-msgstr "無法列出檔案內文"
++msgstr "無法列出檔案 context"
  
--#: ../semanage/seobject.py:1617
-+#: ../semanage/seobject.py:1613
+ #: ../semanage/seobject.py:1903
  msgid "Could not list local file contexts"
- msgstr ""
+-msgstr "無法列出本地的檔案內文"
++msgstr "無法列出本地的檔案 context"
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
+ #: ../semanage/seobject.py:1936
  msgid "SELinux fcontext"
+@@ -862,11 +861,10 @@ msgid ""
  msgstr ""
  
--#: ../semanage/seobject.py:1636
-+#: ../semanage/seobject.py:1632
- msgid "type"
- msgstr ""
+ #: ../semanage/seobject.py:1954
+-#, fuzzy
+ msgid ""
+ "\n"
+ "SELinux Local fcontext Equivalence \n"
+-msgstr "SELinux fcontext"
++msgstr ""
  
--#: ../semanage/seobject.py:1666 ../semanage/seobject.py:1717
--#: ../semanage/seobject.py:1723
-+#: ../semanage/seobject.py:1662 ../semanage/seobject.py:1713
-+#: ../semanage/seobject.py:1719
+ #: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+ #: ../semanage/seobject.py:2046
+@@ -882,7 +880,7 @@ msgstr "布林值 %s 未定義"
+ #: ../semanage/seobject.py:1994
  #, python-format
- msgid "Could not check if boolean %s is defined"
- msgstr ""
+ msgid "Could not query file context %s"
+-msgstr "無法查詢檔案內文 %s"
++msgstr "無法查詢檔案 context %s"
  
--#: ../semanage/seobject.py:1668 ../semanage/seobject.py:1719
-+#: ../semanage/seobject.py:1664 ../semanage/seobject.py:1715
+ #: ../semanage/seobject.py:1999
  #, python-format
- msgid "Boolean %s is not defined"
- msgstr ""
--#: ../semanage/seobject.py:1672
-+#: ../semanage/seobject.py:1668
+@@ -907,7 +905,7 @@ msgstr "錯誤的格式 %s:紀錄 %s"
+ #: ../semanage/seobject.py:2048
  #, python-format
- msgid "Could not query file context %s"
- msgstr ""
+ msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr "布林值 %s 已經定義在政策中,無法刪除"
++msgstr "布林值 %s 已經定義在方針中,無法刪除"
  
--#: ../semanage/seobject.py:1677
-+#: ../semanage/seobject.py:1673
+ #: ../semanage/seobject.py:2052
  #, python-format
- msgid "You must specify one of the following values: %s"
- msgstr ""
+@@ -935,15 +933,15 @@ msgid "SELinux boolean"
+ msgstr "SELinux 布林值"
  
--#: ../semanage/seobject.py:1681
-+#: ../semanage/seobject.py:1677
- #, python-format
- msgid "Could not set active value of boolean %s"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+-#, fuzzy
+ msgid "State"
+-msgstr "狀態"
++msgstr ""
  
--#: ../semanage/seobject.py:1684
-+#: ../semanage/seobject.py:1680
- #, python-format
- msgid "Could not modify boolean %s"
- msgstr ""
+ #: ../semanage/seobject.py:2131
+ msgid "Default"
+-msgstr "預設"
++msgstr ""
  
--#: ../semanage/seobject.py:1702
-+#: ../semanage/seobject.py:1698
- #, python-format
- msgid "Bad format %s: Record %s"
- msgstr ""
+-#: ../semanage/seobject.py:2131
++#: ../semanage/seobject.py:2131 ../gui/polgen.glade:3355
++#: ../gui/polgengui.py:253
+ msgid "Description"
+ msgstr "描述"
  
--#: ../semanage/seobject.py:1725
-+#: ../semanage/seobject.py:1721
- #, python-format
- msgid "Boolean %s is defined in policy, cannot be deleted"
- msgstr ""
+@@ -1020,17 +1018,17 @@ msgstr "錯誤!無法開啟 %s。\n"
+ #: ../newrole/newrole.c:705
+ #, c-format
+ msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr "%s!無法取得 %s 目前的內文,無法為 tty 重新標記。\n"
++msgstr "%s!無法取得 %s 目前的 context,無法為 tty 重新標記。\n"
  
--#: ../semanage/seobject.py:1729
-+#: ../semanage/seobject.py:1725
- #, python-format
- msgid "Could not delete boolean %s"
- msgstr ""
+ #: ../newrole/newrole.c:715
+ #, c-format
+ msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr "%s!無法取得 %s 新的內文,無法為 tty 重新標記。\n"
++msgstr "%s!無法取得 %s 新的 context,無法為 tty 重新標記。\n"
  
--#: ../semanage/seobject.py:1741 ../semanage/seobject.py:1758
-+#: ../semanage/seobject.py:1737 ../semanage/seobject.py:1754
- msgid "Could not list booleans"
- msgstr ""
+ #: ../newrole/newrole.c:725
+ #, c-format
+ msgid "%s!  Could not set new context for %s\n"
+-msgstr "%s!無法為 %s 設定新的內文\n"
++msgstr "%s!無法為 %s 設定新的 context\n"
  
--#: ../semanage/seobject.py:1777
-+#: ../semanage/seobject.py:1773
- msgid "unknown"
- msgstr ""
+ #: ../newrole/newrole.c:772
+ #, c-format
+@@ -1040,7 +1038,7 @@ msgstr "%s 改變了標籤。\n"
+ #: ../newrole/newrole.c:778
+ #, c-format
+ msgid "Warning! Could not restore context for %s\n"
+-msgstr "無法為 %s 回復內文\n"
++msgstr "無法為 %s 回復 context\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "off"
- msgstr ""
+ #: ../newrole/newrole.c:835
+ #, c-format
+@@ -1065,7 +1063,7 @@ msgstr "錯誤:指令的多個等級\n"
+ #: ../newrole/newrole.c:865
+ #, c-format
+ msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr "錯誤:您不可在一個非安全的終端機上更改等級 \n"
++msgstr "錯誤:您不可在一個非安全的終端機上更改等級\n"
  
--#: ../semanage/seobject.py:1780
-+#: ../semanage/seobject.py:1776
- msgid "on"
- msgstr ""
+ #: ../newrole/newrole.c:891
+ #, c-format
+@@ -1075,7 +1073,7 @@ msgstr "無法取得預設類型。\n"
+ #: ../newrole/newrole.c:901
+ #, c-format
+ msgid "failed to get new context.\n"
+-msgstr "無法取得新的內文。\n"
++msgstr "無法取得新的 context。\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785
- msgid "SELinux boolean"
- msgstr ""
+ #: ../newrole/newrole.c:908
+ #, c-format
+@@ -1100,17 +1098,17 @@ msgstr "設定新範圍 %s 失敗\n"
+ #: ../newrole/newrole.c:938
+ #, c-format
+ msgid "failed to convert new context to string\n"
+-msgstr "無法將新的內文轉為字串\n"
++msgstr "無法將新的 context 轉為字串\n"
  
--#: ../semanage/seobject.py:1789
-+#: ../semanage/seobject.py:1785 ../gui/polgen.glade:3228
-+#: ../gui/polgengui.py:169
- msgid "Description"
- msgstr ""
+ #: ../newrole/newrole.c:943
+ #, c-format
+ msgid "%s is not a valid context\n"
+-msgstr "%s 不是有效的內文\n"
++msgstr "%s 不是有效的 context\n"
+ #: ../newrole/newrole.c:950
+ #, c-format
+ msgid "Unable to allocate memory for new_context"
+-msgstr "無法為新的內文(new_context)分配記憶體"
++msgstr "無法為新的 context(new_context)分配記憶體"
+ #: ../newrole/newrole.c:976
+ #, c-format
+@@ -1130,7 +1128,7 @@ msgstr "很抱歉,newrole 只能在 SELinux 核心中使用。\n"
+ #: ../newrole/newrole.c:1070
+ #, c-format
+ msgid "failed to get old_context.\n"
+-msgstr "無法取得舊的內文(old_context)。\n"
++msgstr "無法取得舊的 context(old_context)。\n"
+ #: ../newrole/newrole.c:1077
+ #, c-format
+@@ -1189,17 +1187,17 @@ msgstr "用法:%s [-qi]\n"
+ #: ../load_policy/load_policy.c:71
+ #, c-format
+ msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr "%s:政策已載入,已請求初始載入\n"
++msgstr "%s:方針已載入,已請求初始載入\n"
+ #: ../load_policy/load_policy.c:80
+ #, c-format
+ msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr "%s:無法載入政策,已請求強制模式:%s\n"
++msgstr "%s:無法載入方針,已請求強制模式:%s\n"
  
-@@ -1270,3 +1296,2064 @@
+ #: ../load_policy/load_policy.c:90
  #, c-format
+ msgid "%s:  Can't load policy:  %s\n"
+-msgstr "%s:無法載入政策:%s\n"
++msgstr "%s:無法載入方針:%s\n"
+ #: ../scripts/chcat:92 ../scripts/chcat:169
+ msgid "Requires at least one category"
+@@ -1280,1725 +1278,2096 @@ msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
+ msgid "chcat -l +CompanyConfidential juser"
+ msgstr "chcat -l +CompanyConfidential juser"
+-#: ../scripts/chcat:399
+-#, c-format
++#: ../scripts/chcat:399 ../gui/polgen.py:1335
++#, c-format, python-format
  msgid "Options Error %s "
- msgstr ""
-+
-+#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1917
+ msgstr "選項錯誤 %s"
+-#~ msgid ""
+-#~ "Unable to open %s: translations not supported on non-MLS machines: %s"
+-#~ msgstr "無法開啟 %s:非 MLS 的機器上並不支援轉譯:%s"
++#: ../gui/booleansPage.py:186 ../gui/system-config-selinux.glade:1725
 +msgid "Boolean"
 +msgstr ""
-+
+-#~ msgid "Level"
+-#~ msgstr "等級"
 +#: ../gui/booleansPage.py:241 ../gui/semanagePage.py:162
 +msgid "all"
 +msgstr ""
-+
+-#~ msgid "Translation"
+-#~ msgstr "轉譯"
 +#: ../gui/booleansPage.py:243 ../gui/semanagePage.py:164
-+#: ../gui/system-config-selinux.glade:1808
-+#: ../gui/system-config-selinux.glade:2031
-+#: ../gui/system-config-selinux.glade:2835
++#: ../gui/system-config-selinux.glade:1616
++#: ../gui/system-config-selinux.glade:1839
++#: ../gui/system-config-selinux.glade:2456
 +msgid "Customized"
 +msgstr ""
-+
-+#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:2122
+-#~ msgid "Translations can not contain spaces '%s' "
+-#~ msgstr "轉譯不能包含空格「%s」"
++#: ../gui/fcontextPage.py:64 ../gui/system-config-selinux.glade:1930
 +msgid "File Labeling"
 +msgstr ""
-+
+-#~ msgid "Invalid Level '%s' "
+-#~ msgstr "無效的等級「%s」"
 +#: ../gui/fcontextPage.py:74
 +msgid ""
 +"File\n"
 +"Specification"
 +msgstr ""
-+
+-#~ msgid "%s already defined in translations"
+-#~ msgstr "%s 已經在轉譯中定義"
 +#: ../gui/fcontextPage.py:81
 +msgid ""
 +"Selinux\n"
 +"File Type"
 +msgstr ""
-+
+-#~ msgid "%s not defined in translations"
+-#~ msgstr "%s 在轉譯中未定義"
 +#: ../gui/fcontextPage.py:88
 +msgid ""
 +"File\n"
 +"Type"
 +msgstr ""
-+
-+#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2309
+-#~ msgid "Login mapping for %s is already defined"
+-#~ msgstr "%s 的登入對映已經定義"
++#: ../gui/loginsPage.py:48 ../gui/system-config-selinux.glade:2117
 +msgid "User Mapping"
 +msgstr ""
-+
+-#~ msgid "add SELinux user mapping"
+-#~ msgstr "新增 SELinux 使用者對映"
 +#: ../gui/loginsPage.py:52
 +msgid ""
 +"Login\n"
 +"Name"
 +msgstr ""
-+
+-#~ msgid "SELinux user %s is already defined"
+-#~ msgstr "SELinux 使用者 %s 已經定義"
 +#: ../gui/loginsPage.py:56 ../gui/usersPage.py:50
 +msgid ""
 +"SELinux\n"
 +"User"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Node Netmask is required"
+-#~ msgstr "需要連接埠"
 +#: ../gui/loginsPage.py:59 ../gui/usersPage.py:55
 +msgid ""
 +"MLS/\n"
 +"MCS Range"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Addr %s already defined"
+-#~ msgstr "連接埠 %s/%s 已經定義"
 +#: ../gui/loginsPage.py:133
 +#, python-format
 +msgid "Login '%s' is required"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:3151
+-#~ msgid "Interface %s already defined"
+-#~ msgstr "介面 %s 已經定義"
++#: ../gui/modulesPage.py:48 ../gui/system-config-selinux.glade:2772
 +msgid "Policy Module"
 +msgstr ""
-+
+-#, fuzzy
+-#~ msgid "Error initializing capabilities, aborting.\n"
+-#~ msgstr "起始功能時發生錯誤,放棄。\n"
 +#: ../gui/modulesPage.py:57
 +msgid "Module Name"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:62
-+msgid "Version"
-+msgstr ""
-+
+-#~ msgid "Error setting capabilities, aborting\n"
+-#~ msgstr "設定功能時發生錯誤,放棄\n"
 +#: ../gui/modulesPage.py:134
 +msgid "Disable Audit"
 +msgstr ""
-+
-+#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:3060
+-#~ msgid "Error setting KEEPCAPS, aborting\n"
+-#~ msgstr "設定 KEEPCAPS 錯誤,放棄\n"
++#: ../gui/modulesPage.py:137 ../gui/system-config-selinux.glade:2681
 +msgid "Enable Audit"
 +msgstr ""
-+
+-#~ msgid "Error dropping capabilities, aborting\n"
+-#~ msgstr "丟棄功能時發生錯誤,放棄。\n"
 +#: ../gui/modulesPage.py:162
 +msgid "Load Policy Module"
 +msgstr ""
-+
+-#~ msgid "Error dropping SETUID capability, aborting\n"
+-#~ msgstr "丟棄 SETUID 功能錯誤,放棄\n"
 +#: ../gui/polgen.glade:79
 +msgid "Polgen"
 +msgstr ""
-+
+-#~ msgid "Error freeing caps\n"
+-#~ msgstr "釋放功能時發生錯誤\n"
 +#: ../gui/polgen.glade:80
 +msgid "Red Hat 2007"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
+-#~ msgstr ""
+-#~ "\n"
+-#~ "\n"
+-#~ "semodule -i %s\n"
+-#~ "\n"
 +#: ../gui/polgen.glade:81
 +msgid "GPL"
 +msgstr ""
-+
+-#~ msgid "translations not supported on non-MLS machines"
+-#~ msgstr "非 MLS 的機器上並不支援轉譯"
 +#. TRANSLATORS: Replace this string with your names, one name per line.
 +#: ../gui/polgen.glade:85 ../gui/system-config-selinux.glade:17
 +msgid "translator-credits"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:125
-+msgid ""
-+"This tool can be used to generate a policy framework, to confine "
-+"applications or users using SELinux.   \n"
-+"\n"
-+"The tool generates:\n"
-+"Type enforcement file (te)\n"
-+"Interface file (if)\n"
-+"File context file (fc)\n"
-+"Shell script (sh) - used to compile and install the policy. "
+-#~ msgid "Name"
+-#~ msgstr "名稱"
++#: ../gui/polgen.glade:90
++msgid "SELinux Policy Generation Tool"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:165
-+msgid "Select type of the application/user role to be confined"
+-#~ msgid "Role"
+-#~ msgstr "角色"
++#: ../gui/polgen.glade:128
++msgid ""
++"<b>Select the policy type for the application or user role you want to "
++"confine:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:196
+-#~ msgid "Existing_User"
+-#~ msgstr "Existing_User"
++#: ../gui/polgen.glade:177
 +msgid "<b>Applications</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:258 ../gui/polgen.glade:278
+-#~ msgid "Application"
+-#~ msgstr "應用程式"
++#: ../gui/polgen.glade:239 ../gui/polgen.glade:259
 +msgid ""
 +"Standard Init Daemon are daemons started on boot via init scripts.  Usually "
 +"requires a script in /etc/rc.d/init.d"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:260
+-#~ msgid "%s must be a directory"
+-#~ msgstr "%s 必須要是個目錄"
++#: ../gui/polgen.glade:241 ../gui/polgen.py:156
 +msgid "Standard Init Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:280
+-#~ msgid "You must select a user"
+-#~ msgstr "您必須選擇用戶"
++#: ../gui/polgen.glade:261 ../gui/polgen.py:157
 +msgid "DBUS System Daemon"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:299
+-#~ msgid "Select executable file to be confined."
+-#~ msgstr "選擇要限制的可執行檔。"
++#: ../gui/polgen.glade:280
 +msgid "Internet Services Daemon are daemons started by xinetd"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:301
+-#~ msgid "Select init script file to be confined."
+-#~ msgstr "選擇要限制的 init script 檔案。"
++#: ../gui/polgen.glade:282
 +msgid "Internet Services Daemon (inetd)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:320
+-#~ msgid "Select file(s) that confined application creates or writes"
+-#~ msgstr "選擇限制了應用程式建立或寫入的檔案"
++#: ../gui/polgen.glade:301
 +msgid ""
 +"Web Applications/Script (CGI) CGI scripts started by the web server (apache)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:322
+-#~ msgid ""
+-#~ "Select directory(s) that the confined application owns and writes into"
+-#~ msgstr "選擇被限制的應用程式所屬並寫入的目錄"
++#: ../gui/polgen.glade:303 ../gui/polgen.py:159
 +msgid "Web Application/Script (CGI)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:341
+-#~ msgid "Select directory to generate policy files in"
+-#~ msgstr "選擇產生政策檔案的目錄"
++#: ../gui/polgen.glade:322 ../gui/polgen.glade:343
 +msgid ""
 +"User Application are any application that you would like to confine that is "
 +"started by a user"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:343
+-#~ msgid ""
+-#~ "Type %s_t already defined in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "類型 %s_t 已定義於目前的政策中。\n"
+-#~ "請問您是否希望繼續進行?"
++#: ../gui/polgen.glade:324 ../gui/polgen.py:160
 +msgid "User Application"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:389
+-#~ msgid "Verify Name"
+-#~ msgstr "驗證名稱"
++#: ../gui/polgen.glade:345 ../gui/polgen.py:166
++msgid "Sandbox"
++msgstr ""
+-#~ msgid ""
+-#~ "Module %s.pp already loaded in current policy.\n"
+-#~ "Do you want to continue?"
+-#~ msgstr ""
+-#~ "模組 %s.pp 已載入目前的政策中。\n"
+-#~ "請問您是否希望繼續進行?"
++#: ../gui/polgen.glade:391
 +msgid "<b>Login Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:451
+-#~ msgid "You must enter a name"
+-#~ msgstr "您必須輸入名稱"
+-
+-#~ msgid "You must enter a executable"
+-#~ msgstr "您必須輸入可執行檔"
+-
+-#~ msgid "Configue SELinux"
+-#~ msgstr "設定 SELinux"
++#: ../gui/polgen.glade:453
 +msgid "Modify an existing login user record."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:453
+-#~ msgid "Ports must be be numbers or ranges of numbers from 1 to %d "
+-#~ msgstr "通訊埠必須以介於 1 與 %d 之間的數字來構成"
++#: ../gui/polgen.glade:455
 +msgid "Existing User Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:472
+-#~ msgid "You must enter a name for your confined process/user"
+-#~ msgstr "您必須為您限制的程序 / 用戶輸入名稱"
++#: ../gui/polgen.glade:474
 +msgid ""
 +"This user will login to a machine only via a terminal or remote login.  By "
 +"default this user will have  no setuid, no networking, no su, no sudo."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:474
+-#~ msgid "USER Types are not allowed executables"
+-#~ msgstr "USER 類型不是被允許的可執行檔"
++#: ../gui/polgen.glade:476 ../gui/polgen.py:161
 +msgid "Minimal Terminal User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:493
+-#~ msgid "Only DAEMON apps can use an init script"
+-#~ msgstr "只有 DAEMON apps 可以使用 init script"
++#: ../gui/polgen.glade:495
 +msgid ""
 +"This user can login to a machine via X or terminal.  By default this user "
 +"will have no setuid, no networking, no sudo, no su"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:495
+-#~ msgid "use_syslog must be a boolean value "
+-#~ msgstr "use_syslog 必須是布林值"
++#: ../gui/polgen.glade:497 ../gui/polgen.py:162
 +msgid "Minimal X Windows User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:514
+-#~ msgid "USER Types autoomatically get a tmp type"
+-#~ msgstr "USER 類型會自動取得一個 tmp 類型"
++#: ../gui/polgen.glade:516
 +msgid ""
 +"User with full networking, no setuid applications without transition, no "
 +"sudo, no su."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:516
+-#~ msgid "You must enter the executable path for your confined process"
+-#~ msgstr "您必須輸入您限制的程序的可執行檔路徑"
++#: ../gui/polgen.glade:518 ../gui/polgen.py:163
 +msgid "User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:535
+-#~ msgid "Type Enforcement file"
+-#~ msgstr "類型強制檔"
+-
+-#~ msgid "Interface file"
+-#~ msgstr "介面檔案"
+-
+-#~ msgid "File Contexts file"
+-#~ msgstr "檔案內文檔"
+-
+-#~ msgid "Setup Script"
+-#~ msgstr "設定 Script"
++#: ../gui/polgen.glade:537
 +msgid ""
 +"User with full networking, no setuid applications without transition, no su, "
 +"can sudo to Root Administration Roles"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:537
+-#~ msgid "Permissive"
+-#~ msgstr "寬鬆型"
++#: ../gui/polgen.glade:539 ../gui/polgen.py:164
 +msgid "Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:583
+-#~ msgid "Enforcing"
+-#~ msgstr "強制"
++#: ../gui/polgen.glade:585
 +msgid "<b>Root Users</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:645
+-#~ msgid ""
+-#~ "Changing the policy type will cause a relabel of the entire file system "
+-#~ "on the next boot. Relabeling takes a long time depending on the size of "
+-#~ "the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "更改政策類型會造成整個檔案系統在下次重新啟動時被重新標記(relabeling)。根"
+-#~ "據檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
++#: ../gui/polgen.glade:647
 +msgid ""
 +"Select Root Administrator User Role, if this user will be used to administer "
 +"the machine while running as root.  This user will not be able to login to "
 +"the system directly."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:647
+-#~ msgid ""
+-#~ "Changing to SELinux disabled requires a reboot.  It is not recommended.  "
+-#~ "If you later decide to turn SELinux back on, the system will be required "
+-#~ "to relabel.  If you just want to see if SELinux is causing a problem on "
+-#~ "your system, you can go to permissive mode which will only log errors and "
+-#~ "not enforce SELinux policy.  Permissive mode does not require a reboot    "
+-#~ "Do you wish to continue?"
+-#~ msgstr ""
+-#~ "若要將 SELinux 變更為停用的話您需重新啟動系統。我們不建議這麼作。若您之後"
+-#~ "決定將 SELinux 再次啟用,系統將會需要被重新標記。若您只是想查看 SELinux 是"
+-#~ "否會在您的系統上造成問題,您可進入寬鬆模式,這只會將錯誤紀錄下來並且不會強"
+-#~ "制 SELinux 政策。寬鬆模式無須重新啟動系統    請問您希望繼續進行嗎?"
++#: ../gui/polgen.glade:649 ../gui/polgen.py:165
 +msgid "Root Admin User Role"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:732
-+msgid "Enter name of application or user role to be confined"
+-#~ msgid ""
+-#~ "Changing to SELinux enabled will cause a relabel of the entire file "
+-#~ "system on the next boot. Relabeling takes a long time depending on the "
+-#~ "size of the file system.  Do you wish to continue?"
+-#~ msgstr ""
+-#~ "若將 SELinux 變更為啟用的話,下次系統啟動時,整個檔案系統都將會被重新標"
+-#~ "記。根據檔案系統的大小,重新標記可能會花上許多時間。您是否希望繼續進行?"
++#: ../gui/polgen.glade:716
++msgid "label104"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:753 ../gui/polgengui.py:167
+-#~ msgid ""
+-#~ "SELinux\n"
+-#~ "User"
+-#~ msgstr ""
+-#~ "SELinux\n"
+-#~ "用戶"
++#: ../gui/polgen.glade:745
++msgid "<b>Enter name of application or user role:</b>"
++msgstr ""
+-#~ msgid ""
+-#~ "MLS/\n"
+-#~ "MCS Range"
+-#~ msgstr ""
+-#~ "MLS/\n"
+-#~ "MCS 範圍"
++#: ../gui/polgen.glade:779 ../gui/polgengui.py:251
 +msgid "Name"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:781
+-#~ msgid "SELinux user '%s' is required"
+-#~ msgstr "需要 SELinux 用戶「%s」"
++#: ../gui/polgen.glade:807
 +msgid "Enter complete path for executable to be confined."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:804 ../gui/polgen.glade:924 ../gui/polgen.glade:2927
+-#~ msgid "User Mapping"
+-#~ msgstr "用戶對映"
++#: ../gui/polgen.glade:830 ../gui/polgen.glade:950 ../gui/polgen.glade:3142
 +msgid "..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:823
+-#~ msgid ""
+-#~ "Login\n"
+-#~ "Name"
+-#~ msgstr ""
+-#~ "登錄\n"
+-#~ "名稱"
++#: ../gui/polgen.glade:849
 +msgid "Enter unique name for the confined application or user role."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:845
+-#~ msgid "Login '%s' is required"
+-#~ msgstr "需要登錄名稱「%s」"
++#: ../gui/polgen.glade:871
 +msgid "Executable"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:873
+-#~ msgid "Disable"
+-#~ msgstr "停用"
++#: ../gui/polgen.glade:899
 +msgid "Init script"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:901
+-#~ msgid "Enable"
+-#~ msgstr "啟用"
++#: ../gui/polgen.glade:927
 +msgid ""
 +"Enter complete path to init script used to start the confined application."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:981
-+msgid "Select user roles that you want to customize"
+-#~ msgid "<b>Boolean</b>"
+-#~ msgstr "<b>布林值</b>"
++#: ../gui/polgen.glade:982
++msgid "label105"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1002 ../gui/polgen.glade:1150
-+msgid "Select the user roles that will transiton to this applications domains."
+-#~ msgid "<b>Description</b>"
+-#~ msgstr "<b>描述</b>"
++#: ../gui/polgen.glade:1011
++msgid "<b>Select existing role to modify:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1055
-+msgid "Select additional domains to which this user role will transition"
+-#~ msgid "<b>Status</b>"
+-#~ msgstr "<b>狀態</b>"
++#: ../gui/polgen.glade:1045
++msgid "Select the user roles that will transiton to the %s domain."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1076
-+msgid ""
-+"Select the applications domains that you would like this user role to "
-+"transition to."
+-#~ msgid "Category: %s <br>"
+-#~ msgstr "類別:%s <br>"
++#: ../gui/polgen.glade:1073
++msgid "label106"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1129
-+msgid "Select user roles that will transition to this domain"
+-#~ msgid "Begin"
+-#~ msgstr "起始"
++#: ../gui/polgen.glade:1102
++msgid "<b>Select roles that %s will transition to:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1203
-+msgid "Select additional domains that this user role will administer"
+-#~ msgid ""
+-#~ "Welcome to the SELinux Lockdown Tool.<br> <br>This tool can be used to "
+-#~ "lockdown SELinux booleans.The tool will generate a configuration file "
+-#~ "which can be used to lockdown this system or other SELinux systems.<br>"
+-#~ msgstr ""
+-#~ "歡迎使用 SELinux Lockdown 工具。<br> <br>此工具可被用來將 SELinux 布林值鎖"
+-#~ "住。此工具會產生一個可被用來將此系統或其它 SELinux 系統鎖住的配置檔案。"
+-#~ "<br>"
++#: ../gui/polgen.glade:1136
++msgid "Select applications domains that %s will transition to."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1224 ../gui/polgen.glade:1298
+-#~ msgid "Finish"
+-#~ msgstr "結束"
++#: ../gui/polgen.glade:1164
++msgid "label107"
++msgstr ""
+-#~ msgid "Category %s booleans completed <br><br>"
+-#~ msgstr "類別 %s 的布林值已完成 <br><br>"
++#: ../gui/polgen.glade:1193
++msgid "<b>Select the user_roles that will transition to %s:</b>"
++msgstr ""
+-#~ msgid "Current settings:<br><br>"
+-#~ msgstr "目前設定:<br><br>"
++#: ../gui/polgen.glade:1227
++msgid "Select the user roles that will transiton to this applications domains."
++msgstr ""
+-#~ msgid "Finish: <br><br>"
+-#~ msgstr "結束:<br><br>"
++#: ../gui/polgen.glade:1255
++msgid "label108"
++msgstr ""
+-#~ msgid "Category: %s<br><br>Current Settings<br><br>"
+-#~ msgstr "類別:%s<br><br>目前設定<br><br>"
++#: ../gui/polgen.glade:1284
++msgid "<b>Select domains that %s will administer:</b>"
++msgstr ""
+-#~ msgid "Boolean:   %s<br><br>"
+-#~ msgstr "布林值:%s<br><br>"
++#: ../gui/polgen.glade:1318 ../gui/polgen.glade:1409
 +msgid "Select the domains that you would like this user administer."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1277
-+msgid "Select additional roles for this user"
+-#~ msgid "Lockdown SELinux Booleans"
+-#~ msgstr "鎖定 SELinux 布林值"
++#: ../gui/polgen.glade:1346
++msgid "label109"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1351
-+msgid "Enter network ports that application/user role listens to"
+-#~ msgid "<b>Select:</b>"
+-#~ msgstr "<b>選擇:</b>"
++#: ../gui/polgen.glade:1375
++msgid "<b>Select additional roles for %s:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1369 ../gui/polgen.glade:1852
+-#~ msgid "Apply"
+-#~ msgstr "套用"
++#: ../gui/polgen.glade:1437
++msgid "label111"
++msgstr ""
+-#~ msgid ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
+-#~ msgstr ""
+-#~ "Copyright (c)2006 Red Hat, Inc.\n"
+-#~ "Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
++#: ../gui/polgen.glade:1466
++msgid "<b>Enter network ports that %s binds on:</b>"
++msgstr ""
+-#~ msgid "SELinux Boolean Lockdown"
+-#~ msgstr "SELinux 布林值鎖定"
++#: ../gui/polgen.glade:1497 ../gui/polgen.glade:1997
 +msgid "<b>TCP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1437 ../gui/polgen.glade:1657
-+msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgid "Save As"
+-#~ msgstr "儲存為"
++#: ../gui/polgen.glade:1565 ../gui/polgen.glade:1785
++msgid "Allows %s to bind to any udp port"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1439 ../gui/polgen.glade:1659 ../gui/polgen.glade:1915
-+#: ../gui/polgen.glade:2068
+-#~ msgid "Save Boolean Configuration File"
+-#~ msgstr "儲存布林值配置檔案"
++#: ../gui/polgen.glade:1567 ../gui/polgen.glade:1787 ../gui/polgen.glade:2061
++#: ../gui/polgen.glade:2215
 +msgid "All"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1457 ../gui/polgen.glade:1677
-+msgid ""
-+"Allow application/user role to call bindresvport with 0. Binding to port "
-+"600-1024"
+-#~ msgid "Select Management Object"
+-#~ msgstr "選擇管理物件"
++#: ../gui/polgen.glade:1585 ../gui/polgen.glade:1805
++msgid "Allow %s to call bindresvport with 0. Binding to port 600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1459 ../gui/polgen.glade:1679
+-#~ msgid "Select file name to save  boolean settings."
+-#~ msgstr "選擇儲存布林值設定的檔案名稱。"
++#: ../gui/polgen.glade:1587 ../gui/polgen.glade:1807
 +msgid "600-1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1477 ../gui/polgen.glade:1697
+-#~ msgid "_Forward"
+-#~ msgstr "下一步(_F)"
++#: ../gui/polgen.glade:1605 ../gui/polgen.glade:1825
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role binds to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s binds "
++"to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1479 ../gui/polgen.glade:1699
+-#~ msgid "_Previous"
+-#~ msgstr "上一步(_P)"
++#: ../gui/polgen.glade:1607 ../gui/polgen.glade:1827
 +msgid "Unreserved Ports (>1024)"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1510 ../gui/polgen.glade:1730 ../gui/polgen.glade:1933
-+#: ../gui/polgen.glade:2086
+-#~ msgid "system-config-selinux"
+-#~ msgstr "system-config-selinux"
++#: ../gui/polgen.glade:1638 ../gui/polgen.glade:1858 ../gui/polgen.glade:2079
++#: ../gui/polgen.glade:2233
 +msgid "Select Ports"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1535 ../gui/polgen.glade:1755
-+msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgid "translator-credits"
+-#~ msgstr "譯者姓名:莊佳儒(tchuang@redhat.com)"
++#: ../gui/polgen.glade:1663 ../gui/polgen.glade:1883
++msgid "Allows %s to bind to any udp ports > 1024"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1589 ../gui/polgen.glade:2005
+-#~ msgid "SELinux Service Protection"
+-#~ msgstr "SELinux 服務保護"
++#: ../gui/polgen.glade:1717 ../gui/polgen.glade:2151
 +msgid "<b>UDP Ports</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1834
-+msgid "Enter network ports that application/user role connects to"
+-#~ msgid "Disable SELinux protection for acct daemon"
+-#~ msgstr "停用 acct daemon 的 SELinux 保護"
++#: ../gui/polgen.glade:1937
++msgid "label113"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:1958
+-#~ msgid "Admin"
+-#~ msgstr "管理員"
++#: ../gui/polgen.glade:1966
++msgid "<b>Select network ports that %s connects to:</b>"
++msgstr ""
+-#~ msgid "Allow all daemons to write corefiles to /"
+-#~ msgstr "允許所有 daemon 將 corefile 寫至 /"
++#: ../gui/polgen.glade:2058
++msgid "Allows %s to connect to any tcp port"
++msgstr ""
+-#~ msgid "Allow all daemons the ability to use unallocated ttys"
+-#~ msgstr "允許所有 daemon 使用未分配的 ttys"
++#: ../gui/polgen.glade:2104
 +msgid ""
-+"Enter a comma separated list of tcp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of tcp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2111
+-#~ msgid "User Privs"
+-#~ msgstr "用戶 Privs"
++#: ../gui/polgen.glade:2212
++msgid "Allows %s to connect to any udp port"
++msgstr ""
+-#~ msgid ""
+-#~ "Allow gadmin SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr "允許 gadmin SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
++#: ../gui/polgen.glade:2258
 +msgid ""
-+"Enter a comma separated list of udp ports or ranges of ports that "
-+"application/user role connects to. Example: 612, 650-660"
++"Enter a comma separated list of udp ports or ranges of ports that %s "
++"connects to. Example: 612, 650-660"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2183
-+msgid "Select common application traits"
+-#~ msgid ""
+-#~ "Allow guest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr "允許 guest SELinux 用戶帳號執行家目錄或 /tmp 中的檔案"
++#: ../gui/polgen.glade:2305
++msgid "label114"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2202
+-#~ msgid "Memory Protection"
+-#~ msgstr "記憶體保護"
++#: ../gui/polgen.glade:2334
++msgid "<b>Select common application traits for %s:</b>"
++msgstr ""
+-#~ msgid "Allow java executable stack"
+-#~ msgstr "允許 java 執行堆疊"
++#: ../gui/polgen.glade:2366
 +msgid "Writes syslog messages\t"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2221
+-#~ msgid "Mount"
+-#~ msgstr "掛載"
++#: ../gui/polgen.glade:2385
 +msgid "Create/Manipulate temporary files in /tmp"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2240
+-#~ msgid "Allow mount to mount any file"
+-#~ msgstr "允許 mount 掛載任何檔案"
++#: ../gui/polgen.glade:2404
 +msgid "Uses Pam for authentication"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2259
+-#~ msgid "Allow mount to mount any directory"
+-#~ msgstr "允許 mount 掛載任何目錄"
++#: ../gui/polgen.glade:2423
 +msgid "Uses nsswitch or getpw* calls"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2278
+-#~ msgid "Allow mplayer executable stack"
+-#~ msgstr "允許 mplayer 可執行堆疊"
++#: ../gui/polgen.glade:2442
 +msgid "Uses dbus"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2297
+-#~ msgid "SSH"
+-#~ msgstr "SSH"
++#: ../gui/polgen.glade:2461
 +msgid "Sends audit messages"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2316
+-#~ msgid "Allow ssh to run ssh-keysign"
+-#~ msgstr "允許 ssh 執行 ssh-keysign"
++#: ../gui/polgen.glade:2480
 +msgid "Interacts with the terminal"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2335
+-#~ msgid ""
+-#~ "Allow staff SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr "允許 staff SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++#: ../gui/polgen.glade:2499
 +msgid "Sends email"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2391
-+msgid "Select files/directories that the application manages"
-+msgstr ""
-+
-+#: ../gui/polgen.glade:2607
-+msgid ""
-+"Add Files/Directories that application will need to \"Write\" to. Pid Files, "
-+"Log Files, /var/lib Files ..."
+-#~ msgid ""
+-#~ "Allow sysadm SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr "允許 sysadm SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++#: ../gui/polgen.glade:2530
++msgid "label115"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2667
-+msgid "Select booleans that the application uses"
+-#~ msgid ""
+-#~ "Allow unconfined SELinux user account to execute files in home directory "
+-#~ "or /tmp"
+-#~ msgstr "允許 unconfined SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++#: ../gui/polgen.glade:2559
++msgid "<b>Add files/directories that %s manages</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2804
-+msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgid "Network Configuration"
+-#~ msgstr "網路配置"
++#: ../gui/polgen.glade:2788
++msgid ""
++"Files/Directories which the %s \"manages\". Pid Files, Log Files, /var/lib "
++"Files ..."
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2864
-+msgid "Select directory to generate policy in"
+-#~ msgid "Allow unlabeled packets to flow on the network"
+-#~ msgstr "允許未標記的封包在網路上流動"
++#: ../gui/polgen.glade:2823
++msgid "label116"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2882
-+msgid "Policy Directory"
+-#~ msgid ""
+-#~ "Allow user SELinux user account to execute files in home directory or /tmp"
+-#~ msgstr "允許 user SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++#: ../gui/polgen.glade:2852
++msgid "<b>Add booleans from the %s policy:</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2981 ../gui/polgen.glade:3024
-+msgid "Generated Policy Files"
+-#~ msgid "Allow unconfined to dyntrans to unconfined_execmem"
+-#~ msgstr "允許 unconfined dyntrans 至 unconfined_execmem"
++#: ../gui/polgen.glade:3002
++msgid "Add/Remove booleans used by the %s domain"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:2982
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"Execute shell script as root to compile/install and relabel files/"
-+"directories.  \n"
-+"Use semanage or useradd to map Linux login users to user roles.\n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Login as the user and test this user role.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Databases"
+-#~ msgstr "資料庫"
++#: ../gui/polgen.glade:3066
++msgid "<b>Which directory you will generate the %s policy?</b>"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3025
-+msgid ""
-+"This tool will generate the following: \n"
-+"Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
-+"\n"
-+"Execute shell script to compile/install and relabel files/directories.  \n"
-+"Put the machine in permissive mode (setenforce 0). \n"
-+"Run/restart the application to generate avc messages.\n"
-+"Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgid "Allow user to connect to mysql socket"
+-#~ msgstr "允許用戶連至 mysql socket"
++#: ../gui/polgen.glade:3097
++msgid "Policy Directory"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3127
+-#~ msgid "Allow user to connect to postgres socket"
+-#~ msgstr "允許用戶連至 postgres socket"
++#: ../gui/polgen.glade:3254
 +msgid "Add Booleans Dialog"
 +msgstr ""
-+
-+#: ../gui/polgen.glade:3200
+-#~ msgid "XServer"
+-#~ msgstr "XServer"
++#: ../gui/polgen.glade:3327
 +msgid "Boolean Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:177
+-#~ msgid "Allow clients to write to X shared memory"
+-#~ msgstr "允許客戶端寫至 X 共享記憶體"
++#: ../gui/polgengui.py:261
 +msgid "Role"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:184
+-#~ msgid ""
+-#~ "Allow xguest SELinux user account to execute files in home directory or /"
+-#~ "tmp"
+-#~ msgstr "允許 xguest SELinux 用戶帳號執行家目錄或是 /tmp 中的檔案"
++#: ../gui/polgengui.py:268
 +msgid "Existing_User"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:199 ../gui/polgengui.py:207 ../gui/polgengui.py:221
+-#~ msgid "NIS"
+-#~ msgstr "NIS"
++#: ../gui/polgengui.py:282 ../gui/polgengui.py:290 ../gui/polgengui.py:304
 +msgid "Application"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:269
+-#~ msgid "Allow daemons to run with NIS"
+-#~ msgstr "允許 daemon 以 NIS 執行"
++#: ../gui/polgengui.py:352
 +#, python-format
 +msgid "%s must be a directory"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:328 ../gui/polgengui.py:598
+-#~ msgid "Web Applications"
+-#~ msgstr "網站應用程式"
++#: ../gui/polgengui.py:412 ../gui/polgengui.py:693
 +msgid "You must select a user"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:453
+-#~ msgid "Transition staff SELinux user to Web Browser Domain"
+-#~ msgstr "將 staff SELinux 用戶轉移至 Web Browser Domain"
++#: ../gui/polgengui.py:542
 +msgid "Select executable file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:464
+-#~ msgid "Transition sysadm SELinux user to Web Browser Domain"
+-#~ msgstr "將 sysadm SELinux 用戶轉移至 Web Browser Domain"
++#: ../gui/polgengui.py:553
 +msgid "Select init script file to be confined."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:474
+-#~ msgid "Transition user SELinux user to Web Browser Domain"
+-#~ msgstr "將 user SELinux 用戶轉移至 Web Browser Domain"
++#: ../gui/polgengui.py:563
 +msgid "Select file(s) that confined application creates or writes"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:481
+-#~ msgid "Transition xguest SELinux user to Web Browser Domain"
+-#~ msgstr "將 xguest SELinux 用戶轉移至 Web Browser Domain"
++#: ../gui/polgengui.py:570
 +msgid "Select directory(s) that the confined application owns and writes into"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:541
+-#~ msgid "Allow staff Web Browsers to write to home directories"
+-#~ msgstr "允許 staff Web Browsers 寫至家目錄"
++#: ../gui/polgengui.py:632
 +msgid "Select directory to generate policy files in"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554
+-#~ msgid "Disable SELinux protection for amanda"
+-#~ msgstr "停用 amanda 的 SELinux 保護"
++#: ../gui/polgengui.py:649
 +#, python-format
 +msgid ""
 +"Type %s_t already defined in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:554 ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for amavis"
+-#~ msgstr "停用 amavis 的 SELinux 保護"
++#: ../gui/polgengui.py:649 ../gui/polgengui.py:653
 +msgid "Verify Name"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:558
+-#~ msgid "Disable SELinux protection for apmd daemon"
+-#~ msgstr "停用 apmd daemon 的 SELinux 保護"
++#: ../gui/polgengui.py:653
 +#, python-format
 +msgid ""
 +"Module %s.pp already loaded in current policy.\n"
 +"Do you want to continue?"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:604
-+msgid "You must enter a name"
+-#~ msgid "Disable SELinux protection for arpwatch daemon"
+-#~ msgstr "停用 arpwatch daemon 的 SELinux 保護"
++#: ../gui/polgengui.py:699
++msgid ""
++"You must add a name made up of letters and numbers and containing no spaces."
 +msgstr ""
-+
-+#: ../gui/polgengui.py:610
+-#~ msgid "Disable SELinux protection for auditd daemon"
+-#~ msgstr "停用 auditd daemon 的 SELinux 保護"
++#: ../gui/polgengui.py:713
 +msgid "You must enter a executable"
 +msgstr ""
-+
-+#: ../gui/polgengui.py:614 ../gui/system-config-selinux.py:174
+-#~ msgid "Disable SELinux protection for automount daemon"
+-#~ msgstr "停用 automount daemon 的 SELinux 保護"
++#: ../gui/polgengui.py:738 ../gui/system-config-selinux.py:174
 +msgid "Configue SELinux"
 +msgstr ""
-+
-+#: ../gui/polgen.py:174
+-#~ msgid "Disable SELinux protection for avahi"
+-#~ msgstr "停用 avahi 的 SELinux 保護"
++#: ../gui/polgen.py:158
++msgid "Internet Services Daemon"
++msgstr ""
+-#~ msgid "Disable SELinux protection for bluetooth daemon"
+-#~ msgstr "停用 bluetooth daemon 的 SELinux 保護"
++#: ../gui/polgen.py:197
 +#, python-format
 +msgid "Ports must be numbers or ranges of numbers from 1 to %d "
 +msgstr ""
-+
-+#: ../gui/polgen.py:204
+-#~ msgid "Disable SELinux protection for canna daemon"
+-#~ msgstr "停用 canna daemon 的 SELinux 保護"
++#: ../gui/polgen.py:324
 +msgid "You must enter a name for your confined process/user"
 +msgstr ""
-+
-+#: ../gui/polgen.py:282
-+msgid "USER Types are not allowed executables"
+-#~ msgid "Disable SELinux protection for cardmgr daemon"
+-#~ msgstr "停用 cardmgr daemon 的 SELinux 保護"
++#: ../gui/polgen.py:326
++msgid ""
++"Name must be alpha numberic with no spaces. Consider using option \"-n "
++"MODULENAME\""
 +msgstr ""
-+
-+#: ../gui/polgen.py:288
-+msgid "Only DAEMON apps can use an init script"
+-#~ msgid "Disable SELinux protection for Cluster Server"
+-#~ msgstr "停用 Cluster Server 的 SELinux 保護"
++#: ../gui/polgen.py:414
++msgid "User Role types can not be assigned executables."
 +msgstr ""
-+
-+#: ../gui/polgen.py:306
+-#~ msgid ""
+-#~ "Allow cdrecord to read various content. nfs, samba, removable devices, "
+-#~ "user temp and untrusted content files"
+-#~ msgstr ""
+-#~ "允許 cdrecord 讀取各種內容。nfs、samba、卸除式裝置、用戶 temp 和不信任的內"
+-#~ "容檔案"
++#: ../gui/polgen.py:420
++msgid "Only Daemon apps can use an init script.."
++msgstr ""
+-#~ msgid "Disable SELinux protection for ciped daemon"
+-#~ msgstr "停用 ciped daemon 的 SELinux 保護"
++#: ../gui/polgen.py:438
++msgid "use_resolve must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for clamd daemon"
+-#~ msgstr "停用 clamd daemon 的 SELinux 保護"
++#: ../gui/polgen.py:444
 +msgid "use_syslog must be a boolean value "
 +msgstr ""
-+
-+#: ../gui/polgen.py:327
+-#~ msgid "Disable SELinux protection for clamscan"
+-#~ msgstr "停用 clamscan 的 SELinux 保護"
++#: ../gui/polgen.py:450
++msgid "use_kerberos must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for clvmd"
+-#~ msgstr "停用 clvmd 的 SELinux 保護"
++#: ../gui/polgen.py:456
++msgid "manage_krb5_rcache must be a boolean value "
++msgstr ""
+-#~ msgid "Disable SELinux protection for comsat daemon"
+-#~ msgstr "停用 comsat daemon 的 SELinux 保護"
++#: ../gui/polgen.py:486
 +msgid "USER Types automatically get a tmp type"
 +msgstr ""
-+
-+#: ../gui/polgen.py:729
+-#~ msgid "Disable SELinux protection for courier daemon"
+-#~ msgstr "停用 courier daemon 的 SELinux 保護"
++#: ../gui/polgen.py:1004
 +msgid "You must enter the executable path for your confined process"
 +msgstr ""
-+
-+#: ../gui/polgen.py:848
+-#~ msgid "Disable SELinux protection for cpucontrol daemon"
+-#~ msgstr "停用 cpucontrol daemon 的 SELinux 保護"
++#: ../gui/polgen.py:1166
 +msgid "Type Enforcement file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:849
+-#~ msgid "Disable SELinux protection for cpuspeed daemon"
+-#~ msgstr "停用 cpuspeed daemon 的 SELinux 保護"
++#: ../gui/polgen.py:1167
 +msgid "Interface file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:850
+-#~ msgid "Cron"
+-#~ msgstr "Cron"
++#: ../gui/polgen.py:1168
 +msgid "File Contexts file"
 +msgstr ""
-+
-+#: ../gui/polgen.py:851
+-#~ msgid "Disable SELinux protection for crond daemon"
+-#~ msgstr "停用 crond daemon 的 SELinux 保護"
++#: ../gui/polgen.py:1169
 +msgid "Setup Script"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2926
+-#~ msgid "Printing"
+-#~ msgstr "列印"
++#: ../gui/polgen.py:1290
++#, python-format
++msgid ""
++"\n"
++"%s\n"
++"\n"
++"sepolgen [ -n moduleName ] [ -m ] [ -t type ] [ executable | Name ]\n"
++"valid Types:\n"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd back end server"
+-#~ msgstr "停用 cupsd 後端伺服器的 SELinux 保護"
++#: ../gui/polgen.py:1338
++msgid "Executable or Name required"
++msgstr ""
+-#~ msgid "Disable SELinux protection for cupsd daemon"
+-#~ msgstr "停用 cupsd daemon 的 SELinux 保護"
++#: ../gui/portsPage.py:51 ../gui/system-config-selinux.glade:2547
 +msgid "Network Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cupsd_lpd"
+-#~ msgstr "停用 cupsd_lpd 的 SELinux 保護"
 +#: ../gui/portsPage.py:85
 +msgid ""
 +"SELinux Port\n"
 +"Type"
 +msgstr ""
-+
+-#~ msgid "CVS"
+-#~ msgstr "CVS"
 +#: ../gui/portsPage.py:91 ../gui/system-config-selinux.glade:363
 +msgid "Protocol"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cvs daemon"
+-#~ msgstr "停用 cvs daemon 的 SELinux 保護"
 +#: ../gui/portsPage.py:96 ../gui/system-config-selinux.glade:479
 +msgid ""
 +"MLS/MCS\n"
 +"Level"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cyrus daemon"
+-#~ msgstr "停用 cyrus daemon 的 SELinux 保護"
 +#: ../gui/portsPage.py:101
 +msgid "Port"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dbskkd daemon"
+-#~ msgstr "停用 dbskkd daemon 的 SELinux 保護"
 +#: ../gui/portsPage.py:207
 +#, python-format
 +msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dbusd daemon"
+-#~ msgstr "停用 dbusd daemon 的 SELinux 保護"
 +#: ../gui/portsPage.py:252
 +msgid "List View"
 +msgstr ""
-+
-+#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2817
+-#~ msgid "Disable SELinux protection for dccd"
+-#~ msgstr "停用 dccd 的 SELinux 保護"
++#: ../gui/portsPage.py:255 ../gui/system-config-selinux.glade:2438
 +msgid "Group View"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccifd"
+-#~ msgstr "停用 dccifd 的 SELinux 保護"
 +#: ../gui/selinux.tbl:1 ../gui/selinux.tbl:30 ../gui/selinux.tbl:31
 +#: ../gui/selinux.tbl:32 ../gui/selinux.tbl:33 ../gui/selinux.tbl:34
 +#: ../gui/selinux.tbl:36 ../gui/selinux.tbl:37 ../gui/selinux.tbl:38
@@ -291476,26 +242010,36 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +#: ../gui/selinux.tbl:226 ../gui/selinux.tbl:227 ../gui/selinux.tbl:230
 +msgid "SELinux Service Protection"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dccm"
+-#~ msgstr "停用 dccm 的 SELinux 保護"
 +#: ../gui/selinux.tbl:1
 +msgid "Disable SELinux protection for acct daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ddt daemon"
+-#~ msgstr "停用 ddt daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:2 ../gui/selinux.tbl:3 ../gui/selinux.tbl:70
 +#: ../gui/selinux.tbl:153 ../gui/selinux.tbl:168 ../gui/selinux.tbl:169
 +#: ../gui/selinux.tbl:170 ../gui/selinux.tbl:189 ../gui/selinux.tbl:202
 +#: ../gui/selinux.tbl:203 ../gui/selinux.tbl:204 ../gui/selinux.tbl:205
 +msgid "Admin"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for devfsd daemon"
+-#~ msgstr "停用 devfsd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:2
 +msgid "Allow all daemons to write corefiles to /"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpc daemon"
+-#~ msgstr "停用 dhcpc daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:3
 +msgid "Allow all daemons the ability to use unallocated ttys"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dhcpd daemon"
+-#~ msgstr "停用 dhcpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:4 ../gui/selinux.tbl:5 ../gui/selinux.tbl:11
 +#: ../gui/selinux.tbl:12 ../gui/selinux.tbl:13 ../gui/selinux.tbl:15
 +#: ../gui/selinux.tbl:20 ../gui/selinux.tbl:41 ../gui/selinux.tbl:208
@@ -291504,119 +242048,173 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +#: ../gui/selinux.tbl:216 ../gui/selinux.tbl:217
 +msgid "User Privs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dictd daemon"
+-#~ msgstr "停用 dictd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:4
 +msgid ""
 +"Allow gadmin SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Allow sysadm_t to directly start daemons"
+-#~ msgstr "允許 sysadm_t 直接啟用 daemon"
 +#: ../gui/selinux.tbl:5
 +msgid ""
 +"Allow guest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Evolution"
+-#~ msgstr "停用 Evolution 的 SELinux 保護"
 +#: ../gui/selinux.tbl:6 ../gui/selinux.tbl:9 ../gui/selinux.tbl:16
 +msgid "Memory Protection"
 +msgstr ""
-+
+-#~ msgid "Games"
+-#~ msgstr "遊戲"
 +#: ../gui/selinux.tbl:6
 +msgid "Allow java executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for games"
+-#~ msgstr "停用 games 的 SELinux 保護"
 +#: ../gui/selinux.tbl:7 ../gui/selinux.tbl:8 ../gui/selinux.tbl:35
 +#: ../gui/selinux.tbl:209
 +msgid "Mount"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for the web browsers"
+-#~ msgstr "停用 web browsers 的 SELinux 保護"
 +#: ../gui/selinux.tbl:7
 +msgid "Allow mount to mount any file"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Thunderbird"
+-#~ msgstr "停用 Thunderbird 的 SELinux 保護"
 +#: ../gui/selinux.tbl:8
 +msgid "Allow mount to mount any directory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for distccd daemon"
+-#~ msgstr "停用 distccd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:9
 +msgid "Allow mplayer executable stack"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dmesg daemon"
+-#~ msgstr "停用 dmesg daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:10 ../gui/selinux.tbl:162 ../gui/selinux.tbl:187
 +#: ../gui/selinux.tbl:188
 +msgid "SSH"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dnsmasq daemon"
+-#~ msgstr "停用 dnsmasq daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:10
 +msgid "Allow ssh to run ssh-keysign"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for dovecot daemon"
+-#~ msgstr "停用 dovecot daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:11
 +msgid ""
 +"Allow staff SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for entropyd daemon"
+-#~ msgstr "停用 entropyd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:12
 +msgid ""
 +"Allow sysadm SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fetchmail"
+-#~ msgstr "停用 fetchmail 的 SELinux 保護"
 +#: ../gui/selinux.tbl:13
 +msgid ""
 +"Allow unconfined SELinux user account to execute files in home directory or /"
 +"tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fingerd daemon"
+-#~ msgstr "停用 fingerd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:14
 +msgid "Network Configuration"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for freshclam daemon"
+-#~ msgstr "停用 freshclam daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:14
 +msgid "Allow unlabeled packets to flow on the network"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for fsdaemon daemon"
+-#~ msgstr "停用 fsdaemon daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:15
 +msgid ""
 +"Allow user SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gpm daemon"
+-#~ msgstr "停用 gpm daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:16
 +msgid "Allow unconfined to dyntrans to unconfined_execmem"
 +msgstr ""
-+
+-#~ msgid "NFS"
+-#~ msgstr "NFS"
 +#: ../gui/selinux.tbl:17 ../gui/selinux.tbl:18 ../gui/selinux.tbl:120
 +#: ../gui/selinux.tbl:140
 +msgid "Databases"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for gss daemon"
+-#~ msgstr "停用 gss daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:17
 +msgid "Allow user to connect to mysql socket"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for Hal daemon"
+-#~ msgstr "停用 Hal daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:18
 +msgid "Allow user to connect to postgres socket"
 +msgstr ""
-+
+-#~ msgid "Compatibility"
+-#~ msgstr "相容性"
 +#: ../gui/selinux.tbl:19 ../gui/selinux.tbl:165 ../gui/selinux.tbl:223
 +msgid "XServer"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Do not audit things that we know to be broken but which are not security "
+-#~ "risks"
+-#~ msgstr "不稽核我們已知損壞,卻不會造成安全性風險的物件"
 +#: ../gui/selinux.tbl:19
 +msgid "Allow clients to write to X shared memory"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hostname daemon"
+-#~ msgstr "停用 hostname daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:20
 +msgid ""
 +"Allow xguest SELinux user account to execute files in home directory or /tmp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hotplug daemon"
+-#~ msgstr "停用 hotplug daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:21 ../gui/selinux.tbl:228 ../gui/selinux.tbl:229
 +#: ../gui/selinux.tbl:231
 +msgid "NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for howl daemon"
+-#~ msgstr "停用 howl daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:21
 +msgid "Allow daemons to run with NIS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for cups hplip daemon"
+-#~ msgstr "停用 cups hplip daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:22 ../gui/selinux.tbl:23 ../gui/selinux.tbl:24
 +#: ../gui/selinux.tbl:25 ../gui/selinux.tbl:26 ../gui/selinux.tbl:27
 +#: ../gui/selinux.tbl:28 ../gui/selinux.tbl:29 ../gui/selinux.tbl:71
@@ -291624,644 +242222,984 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +#: ../gui/selinux.tbl:118
 +msgid "Web Applications"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for httpd rotatelogs"
+-#~ msgstr "停用 httpd rotatelogs 的 SELinux 保護"
 +#: ../gui/selinux.tbl:22
 +msgid "Transition staff SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "HTTPD Service"
+-#~ msgstr "HTTPD 服務"
 +#: ../gui/selinux.tbl:23
 +msgid "Transition sysadm SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for http suexec"
+-#~ msgstr "停用 http suexec 的 SELinux 保護"
 +#: ../gui/selinux.tbl:24
 +msgid "Transition user SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for hwclock daemon"
+-#~ msgstr "停用 hwclock daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:25
 +msgid "Transition xguest SELinux user to Web Browser Domain"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for i18n daemon"
+-#~ msgstr "停用 i18n daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:26 ../gui/selinux.tbl:27 ../gui/selinux.tbl:28
 +#: ../gui/selinux.tbl:29
 +msgid "Allow staff Web Browsers to write to home directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for imazesrv daemon"
+-#~ msgstr "停用 imazesrv daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:30
 +msgid "Disable SELinux protection for amanda"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd child daemons"
+-#~ msgstr "停用 inetd child daemons 的 SELinux 保護"
 +#: ../gui/selinux.tbl:31
 +msgid "Disable SELinux protection for amavis"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for inetd daemon"
+-#~ msgstr "停用 inetd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:32
 +msgid "Disable SELinux protection for apmd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for innd daemon"
+-#~ msgstr "停用 innd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:33
 +msgid "Disable SELinux protection for arpwatch daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iptables daemon"
+-#~ msgstr "停用 iptables daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:34
 +msgid "Disable SELinux protection for auditd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ircd daemon"
+-#~ msgstr "停用 ircd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:35
 +msgid "Disable SELinux protection for automount daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for irqbalance daemon"
+-#~ msgstr "停用 irqbalance daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:36
 +msgid "Disable SELinux protection for avahi"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for iscsi daemon"
+-#~ msgstr "停用 iscsi daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:37
 +msgid "Disable SELinux protection for bluetooth daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for jabberd daemon"
+-#~ msgstr "停用 jabberd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:38
 +msgid "Disable SELinux protection for canna daemon"
 +msgstr ""
-+
+-#~ msgid "Kerberos"
+-#~ msgstr "Kerberos"
 +#: ../gui/selinux.tbl:39
 +msgid "Disable SELinux protection for cardmgr daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kadmind daemon"
+-#~ msgstr "停用 kadmind daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:40
 +msgid "Disable SELinux protection for Cluster Server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for klogd daemon"
+-#~ msgstr "停用 klogd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:41
 +msgid ""
 +"Allow cdrecord to read various content. nfs, samba, removable devices, user "
 +"temp and untrusted content files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for krb5kdc daemon"
+-#~ msgstr "停用 krb5kdc daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:42
 +msgid "Disable SELinux protection for ciped daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ktalk daemons"
+-#~ msgstr "停用 ktalk daemons 的 SELinux 保護"
 +#: ../gui/selinux.tbl:43
 +msgid "Disable SELinux protection for clamd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for kudzu daemon"
+-#~ msgstr "停用 kudzu daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:44
 +msgid "Disable SELinux protection for clamscan"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for locate daemon"
+-#~ msgstr "停用 locate daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:45
 +msgid "Disable SELinux protection for clvmd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lpd daemon"
+-#~ msgstr "停用 lpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:46
 +msgid "Disable SELinux protection for comsat daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lrrd daemon"
+-#~ msgstr "停用 lrrd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:47 ../gui/selinux.tbl:48 ../gui/selinux.tbl:49
 +#: ../gui/selinux.tbl:50 ../gui/selinux.tbl:51
 +msgid "Disable SELinux protection for courier daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for lvm daemon"
+-#~ msgstr "停用 lvm daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:52
 +msgid "Disable SELinux protection for cpucontrol daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mailman"
+-#~ msgstr "停用 mailman 的 SELinux 保護"
 +#: ../gui/selinux.tbl:53
 +msgid "Disable SELinux protection for cpuspeed daemon"
 +msgstr ""
-+
+-#~ msgid "Allow evolution and thunderbird to read user files"
+-#~ msgstr "允許 evolution 和 thunderbird 讀取用戶檔案"
 +#: ../gui/selinux.tbl:54
 +msgid "Cron"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mdadm daemon"
+-#~ msgstr "停用 mdadm daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:54
 +msgid "Disable SELinux protection for crond daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for monopd daemon"
+-#~ msgstr "停用 monopd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:55 ../gui/selinux.tbl:56 ../gui/selinux.tbl:57
 +#: ../gui/selinux.tbl:91
 +msgid "Printing"
 +msgstr ""
-+
+-#~ msgid "Allow the mozilla browser to read user files"
+-#~ msgstr "允許 mozilla 瀏覽器讀取用戶檔案"
 +#: ../gui/selinux.tbl:55
 +msgid "Disable SELinux protection for cupsd back end server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mrtg daemon"
+-#~ msgstr "停用 mrtg daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:56
 +msgid "Disable SELinux protection for cupsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for mysqld daemon"
+-#~ msgstr "停用 mysqld daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:57
 +msgid "Disable SELinux protection for cupsd_lpd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nagios daemon"
+-#~ msgstr "停用 nagios daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:58
 +msgid "CVS"
 +msgstr ""
-+
+-#~ msgid "Name Service"
+-#~ msgstr "名稱服務"
 +#: ../gui/selinux.tbl:58
 +msgid "Disable SELinux protection for cvs daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for named daemon"
+-#~ msgstr "停用 named daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:59
 +msgid "Disable SELinux protection for cyrus daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nessusd daemon"
+-#~ msgstr "停用 nessusd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:60
 +msgid "Disable SELinux protection for dbskkd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NetworkManager"
+-#~ msgstr "停用 NetworkManager 的 SELinux 保護"
 +#: ../gui/selinux.tbl:61
 +msgid "Disable SELinux protection for dbusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nfsd daemon"
+-#~ msgstr "停用 nfsd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:62
 +msgid "Disable SELinux protection for dccd"
 +msgstr ""
-+
+-#~ msgid "Samba"
+-#~ msgstr "Samba"
 +#: ../gui/selinux.tbl:63
 +msgid "Disable SELinux protection for dccifd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nmbd daemon"
+-#~ msgstr "停用 nmbd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:64
 +msgid "Disable SELinux protection for dccm"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nrpe daemon"
+-#~ msgstr "停用 nrpe daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:65
 +msgid "Disable SELinux protection for ddt daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nscd daemon"
+-#~ msgstr "停用 nscd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:66
 +msgid "Disable SELinux protection for devfsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for nsd daemon"
+-#~ msgstr "停用 nsd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:67
 +msgid "Disable SELinux protection for dhcpc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ntpd daemon"
+-#~ msgstr "停用 ntpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:68
 +msgid "Disable SELinux protection for dhcpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob"
+-#~ msgstr "停用 oddjob 的 SELinux 保護"
 +#: ../gui/selinux.tbl:69
 +msgid "Disable SELinux protection for dictd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for oddjob_mkhomedir"
+-#~ msgstr "停用 oddjob_mkhomedir 的 SELinux 保護"
 +#: ../gui/selinux.tbl:70
 +msgid "Allow sysadm_t to directly start daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for openvpn daemon"
+-#~ msgstr "停用 openvpn daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:71
 +msgid "Disable SELinux protection for Evolution"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pam daemon"
+-#~ msgstr "停用 pam daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:72
 +msgid "Games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pegasus"
+-#~ msgstr "停用 pegasus 的 SELinux 保護"
 +#: ../gui/selinux.tbl:72
 +msgid "Disable SELinux protection for games"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for perdition daemon"
+-#~ msgstr "停用 perdition daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:73
 +msgid "Disable SELinux protection for the web browsers"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portmap daemon"
+-#~ msgstr "停用 portmap daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:74
 +msgid "Disable SELinux protection for Thunderbird"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for portslave daemon"
+-#~ msgstr "停用 portslave daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:75
 +msgid "Disable SELinux protection for distccd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postfix"
+-#~ msgstr "停用 postfix 的 SELinux 保護"
 +#: ../gui/selinux.tbl:76
 +msgid "Disable SELinux protection for dmesg daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for postgresql daemon"
+-#~ msgstr "停用 postgresql daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:77
 +msgid "Disable SELinux protection for dnsmasq daemon"
 +msgstr ""
-+
+-#~ msgid "pppd"
+-#~ msgstr "pppd"
 +#: ../gui/selinux.tbl:78
 +msgid "Disable SELinux protection for dovecot daemon"
 +msgstr ""
-+
+-#~ msgid "Allow pppd to be run for a regular user"
+-#~ msgstr "允許 pppd 為一般用戶執行"
 +#: ../gui/selinux.tbl:79
 +msgid "Disable SELinux protection for entropyd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pptp"
+-#~ msgstr "停用 pptp 的 SELinux 保護"
 +#: ../gui/selinux.tbl:80
 +msgid "Disable SELinux protection for fetchmail"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for prelink daemon"
+-#~ msgstr "停用 prelink daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:81
 +msgid "Disable SELinux protection for fingerd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for privoxy daemon"
+-#~ msgstr "停用 privoxy daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:82
 +msgid "Disable SELinux protection for freshclam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ptal daemon"
+-#~ msgstr "停用 ptal daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:83
 +msgid "Disable SELinux protection for fsdaemon daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pxe daemon"
+-#~ msgstr "停用 pxe daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:84
 +msgid "Disable SELinux protection for gpm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for pyzord"
+-#~ msgstr "停用 pyzord 的 SELinux 保護"
 +#: ../gui/selinux.tbl:85 ../gui/selinux.tbl:125
 +msgid "NFS"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for quota daemon"
+-#~ msgstr "停用 quota daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:85
 +msgid "Disable SELinux protection for gss daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radiusd daemon"
+-#~ msgstr "停用 radiusd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:86
 +msgid "Disable SELinux protection for Hal daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for radvd daemon"
+-#~ msgstr "停用 radvd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:87
 +msgid "Compatibility"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rdisc"
+-#~ msgstr "停用 rdisc 的 SELinux 保護"
 +#: ../gui/selinux.tbl:87
 +msgid ""
 +"Do not audit things that we know to be broken but which are not security "
 +"risks"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for readahead"
+-#~ msgstr "停用 readahead 的 SELinux 保護"
 +#: ../gui/selinux.tbl:88
 +msgid "Disable SELinux protection for hostname daemon"
 +msgstr ""
-+
+-#~ msgid "Allow programs to read files in non-standard locations (default_t)"
+-#~ msgstr "允許程式讀取位於非標準位置上的檔案(default_t)"
 +#: ../gui/selinux.tbl:89
 +msgid "Disable SELinux protection for hotplug daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for restorecond"
+-#~ msgstr "停用 restorecond 的 SELinux 保護"
 +#: ../gui/selinux.tbl:90
 +msgid "Disable SELinux protection for howl daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rhgb daemon"
+-#~ msgstr "停用 rhgb daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:91
 +msgid "Disable SELinux protection for cups hplip daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci"
+-#~ msgstr "停用 ricci 的 SELinux 保護"
 +#: ../gui/selinux.tbl:92
 +msgid "Disable SELinux protection for httpd rotatelogs"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ricci_modclusterd"
+-#~ msgstr "停用 ricci_modclusterd 的 SELinux 保護"
 +#: ../gui/selinux.tbl:93 ../gui/selinux.tbl:232 ../gui/selinux.tbl:233
 +msgid "HTTPD Service"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rlogind daemon"
+-#~ msgstr "停用 rlogind daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:93
 +msgid "Disable SELinux protection for http suexec"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rpcd daemon"
+-#~ msgstr "停用 rpcd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:94
 +msgid "Disable SELinux protection for hwclock daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rshd"
+-#~ msgstr "停用 rshd 的 SELinux 保護"
 +#: ../gui/selinux.tbl:95
 +msgid "Disable SELinux protection for i18n daemon"
 +msgstr ""
-+
+-#~ msgid "rsync"
+-#~ msgstr "rsync"
 +#: ../gui/selinux.tbl:96
 +msgid "Disable SELinux protection for imazesrv daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for rsync daemon"
+-#~ msgstr "停用 rsync daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:97
 +msgid "Disable SELinux protection for inetd child daemons"
 +msgstr ""
-+
+-#~ msgid "Allow ssh to run from inetd instead of as a daemon"
+-#~ msgstr "允許 ssh 由 inetd 執行而不是以一個 daemon 來執行"
 +#: ../gui/selinux.tbl:98
 +msgid "Disable SELinux protection for inetd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Samba to share nfs directories"
+-#~ msgstr "允許 Samba 共享 nfs 目錄"
 +#: ../gui/selinux.tbl:99
 +msgid "Disable SELinux protection for innd daemon"
 +msgstr ""
-+
+-#~ msgid "SASL authentication server"
+-#~ msgstr "SASL 驗證伺服器"
 +#: ../gui/selinux.tbl:100
 +msgid "Disable SELinux protection for iptables daemon"
 +msgstr ""
-+
+-#~ msgid "Allow sasl authentication server to read /etc/shadow"
+-#~ msgstr "允許 sasl 驗證伺服器讀取 /etc/shadow"
 +#: ../gui/selinux.tbl:101
 +msgid "Disable SELinux protection for ircd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow X-Windows server to map a memory region as both executable and "
+-#~ "writable"
+-#~ msgstr "允許 X-Windows 伺服器將一個 memory region 同時對映為可執行與可寫"
 +#: ../gui/selinux.tbl:102
 +msgid "Disable SELinux protection for irqbalance daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for saslauthd daemon"
+-#~ msgstr "停用 saslauthd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:103
 +msgid "Disable SELinux protection for iscsi daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for scannerdaemon daemon"
+-#~ msgstr "停用 scannerdaemon daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:104
 +msgid "Disable SELinux protection for jabberd daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow transition to sysadm_t, sudo and su effected"
+-#~ msgstr "不允許轉移至受影響的 sysadm_t、sudo 和 su"
 +#: ../gui/selinux.tbl:105 ../gui/selinux.tbl:107
 +msgid "Kerberos"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to load kernel modules"
+-#~ msgstr "不允許任何程序載入 kernel 模組"
 +#: ../gui/selinux.tbl:105
 +msgid "Disable SELinux protection for kadmind daemon"
 +msgstr ""
-+
+-#~ msgid "Do not allow any processes to modify kernel SELinux policy"
+-#~ msgstr "不允許任何程序修改 kernel SELinux 政策"
 +#: ../gui/selinux.tbl:106
 +msgid "Disable SELinux protection for klogd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sendmail daemon"
+-#~ msgstr "停用 sendmail daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:107
 +msgid "Disable SELinux protection for krb5kdc daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setrans"
+-#~ msgstr "停用 setrans 的 SELinux 保護"
 +#: ../gui/selinux.tbl:108
 +msgid "Disable SELinux protection for ktalk daemons"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for setroubleshoot daemon"
+-#~ msgstr "停用 setroubleshoot daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:109
 +msgid "Disable SELinux protection for kudzu daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slapd daemon"
+-#~ msgstr "停用 slapd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:110
 +msgid "Disable SELinux protection for locate daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for slrnpull daemon"
+-#~ msgstr "停用 slrnpull daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:111
 +msgid "Disable SELinux protection for lpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for smbd daemon"
+-#~ msgstr "停用 smbd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:112
 +msgid "Disable SELinux protection for lrrd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snmpd daemon"
+-#~ msgstr "停用 snmpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:113
 +msgid "Disable SELinux protection for lvm daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for snort daemon"
+-#~ msgstr "停用 snort daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:114
 +msgid "Disable SELinux protection for mailman"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for soundd daemon"
+-#~ msgstr "停用 soundd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:115
 +msgid "Allow evolution and thunderbird to read user files"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sound daemon"
+-#~ msgstr "停用 sound daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:116
 +msgid "Disable SELinux protection for mdadm daemon"
 +msgstr ""
-+
+-#~ msgid "Spam Protection"
+-#~ msgstr "垃圾郵件保護"
 +#: ../gui/selinux.tbl:117
 +msgid "Disable SELinux protection for monopd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for spamd daemon"
+-#~ msgstr "停用 spamd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:118
 +msgid "Allow the mozilla browser to read user files"
 +msgstr ""
-+
+-#~ msgid "Allow spamd to access home directories"
+-#~ msgstr "允許 spamd 存取家目錄"
 +#: ../gui/selinux.tbl:119
 +msgid "Disable SELinux protection for mrtg daemon"
 +msgstr ""
-+
+-#~ msgid "Allow Spam Assassin daemon network access"
+-#~ msgstr "允許 Spam Assassin daemon 網路存取"
 +#: ../gui/selinux.tbl:120
 +msgid "Disable SELinux protection for mysqld daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for speedmgmt daemon"
+-#~ msgstr "停用 speedmgmt daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:121
 +msgid "Disable SELinux protection for nagios daemon"
 +msgstr ""
-+
+-#~ msgid "Squid"
+-#~ msgstr "Squid"
 +#: ../gui/selinux.tbl:122 ../gui/selinux.tbl:128
 +msgid "Name Service"
 +msgstr ""
-+
+-#~ msgid "Allow squid daemon to connect to the network"
+-#~ msgstr "允許 squid daemon 連至網路"
 +#: ../gui/selinux.tbl:122
 +msgid "Disable SELinux protection for named daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for squid daemon"
+-#~ msgstr "停用 squid daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:123
 +msgid "Disable SELinux protection for nessusd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ssh daemon"
+-#~ msgstr "停用 ssh daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:124
 +msgid "Disable SELinux protection for NetworkManager"
 +msgstr ""
-+
+-#~ msgid "Allow ssh logins as sysadm_r:sysadm_t"
+-#~ msgstr "允許以 sysadm_r:sysadm_t 進行 ssh 登錄"
 +#: ../gui/selinux.tbl:125
 +msgid "Disable SELinux protection for nfsd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow staff_r users to search the sysadm home dir and read files (such as "
+-#~ "~/.bashrc)"
+-#~ msgstr ""
+-#~ "允許 staff_r users 搜尋 sysadm home dir 並讀取檔案(例如 ~/.bashrc)"
 +#: ../gui/selinux.tbl:126 ../gui/selinux.tbl:163 ../gui/selinux.tbl:176
 +#: ../gui/selinux.tbl:221
 +msgid "Samba"
 +msgstr ""
-+
+-#~ msgid "Universal SSL tunnel"
+-#~ msgstr "全域 SSL 通道"
 +#: ../gui/selinux.tbl:126
 +msgid "Disable SELinux protection for nmbd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for stunnel daemon"
+-#~ msgstr "停用 stunnel daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:127
 +msgid "Disable SELinux protection for nrpe daemon"
 +msgstr ""
-+
+-#~ msgid "Allow stunnel daemon to run as standalone, outside of xinetd"
+-#~ msgstr "允許 stunnel daemon 獨立地執行於 xinetd 之外"
 +#: ../gui/selinux.tbl:128
 +msgid "Disable SELinux protection for nscd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for swat daemon"
+-#~ msgstr "停用 swat daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:129
 +msgid "Disable SELinux protection for nsd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for sxid daemon"
+-#~ msgstr "停用 sxid daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:130
 +msgid "Disable SELinux protection for ntpd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for syslogd daemon"
+-#~ msgstr "停用 syslogd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:131
 +msgid "Disable SELinux protection for oddjob"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for system cron jobs"
+-#~ msgstr "停用 system cron jobs 的 SELinux 保護"
 +#: ../gui/selinux.tbl:132
 +msgid "Disable SELinux protection for oddjob_mkhomedir"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tcp daemon"
+-#~ msgstr "停用 tcp daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:133
 +msgid "Disable SELinux protection for openvpn daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for telnet daemon"
+-#~ msgstr "停用 telnet daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:134
 +msgid "Disable SELinux protection for pam daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for tftpd daemon"
+-#~ msgstr "停用 tftpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:135
 +msgid "Disable SELinux protection for pegasus"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for transproxy daemon"
+-#~ msgstr "停用 transproxy daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:136
 +msgid "Disable SELinux protection for perdition daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for udev daemon"
+-#~ msgstr "停用 udev daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:137
 +msgid "Disable SELinux protection for portmap daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uml daemon"
+-#~ msgstr "停用 uml daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:138
 +msgid "Disable SELinux protection for portslave daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow xinetd to run unconfined, including any services it starts that do "
+-#~ "not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "允許 xinetd 以不被限制的方式執行,包括任何它所啟用的、未清楚定義網域轉移的"
+-#~ "服務"
 +#: ../gui/selinux.tbl:139
 +msgid "Disable SELinux protection for postfix"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow rc scripts to run unconfined, including any daemon started by an rc "
+-#~ "script that does not have a domain transition explicitly defined"
+-#~ msgstr ""
+-#~ "允許 rc script 以不受限制的方式執行,包括任何 rc script 所啟用的、未清楚定"
+-#~ "義網域轉移的 daemon"
 +#: ../gui/selinux.tbl:140
 +msgid "Disable SELinux protection for postgresql daemon"
 +msgstr ""
-+
+-#~ msgid "Allow rpm to run unconfined"
+-#~ msgstr "允許 rpm 以不受限制的方式執行"
 +#: ../gui/selinux.tbl:141
 +msgid "pppd"
 +msgstr ""
-+
+-#~ msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
+-#~ msgstr "允許有特權的工具程式(例如 hotplug 和 insmod)以不受限制的方式執行"
 +#: ../gui/selinux.tbl:141
 +msgid "Allow pppd to be run for a regular user"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for updfstab daemon"
+-#~ msgstr "停用 updfstab daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:142
 +msgid "Disable SELinux protection for pptp"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uptimed daemon"
+-#~ msgstr "停用 uptimed daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:143
 +msgid "Disable SELinux protection for prelink daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, "
+-#~ "only staff_r can do so"
+-#~ msgstr ""
+-#~ "允許 user_r 透過 su、sudo 或 userhelper 來連至 sysadm_r。否則,只有 "
+-#~ "staff_r 可以這麼作"
 +#: ../gui/selinux.tbl:144
 +msgid "Disable SELinux protection for privoxy daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to execute the mount command"
+-#~ msgstr "允許用戶執行 mount 指令"
 +#: ../gui/selinux.tbl:145
 +msgid "Disable SELinux protection for ptal daemon"
 +msgstr ""
-+
+-#~ msgid "Allow regular users direct mouse access (only allow the X server)"
+-#~ msgstr "允許一般用戶的直接滑鼠存取(只允許 X server)"
 +#: ../gui/selinux.tbl:146
 +msgid "Disable SELinux protection for pxe daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to run the dmesg command"
+-#~ msgstr "允許用戶執行 dmesg 指令"
 +#: ../gui/selinux.tbl:147
 +msgid "Disable SELinux protection for pyzord"
 +msgstr ""
-+
+-#~ msgid "Allow users to control network interfaces (also needs USERCTL=true)"
+-#~ msgstr "允許用戶控制網路介面(也需要 USERCTL=true)"
 +#: ../gui/selinux.tbl:148
 +msgid "Disable SELinux protection for quota daemon"
 +msgstr ""
-+
+-#~ msgid "Allow normal user to execute ping"
+-#~ msgstr "允許一般用戶執行 ping"
 +#: ../gui/selinux.tbl:149
 +msgid "Disable SELinux protection for radiusd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)"
+-#~ msgstr "允許用戶 r/w noextattrfile(FAT、CDROM、FLOPPY)"
 +#: ../gui/selinux.tbl:150
 +msgid "Disable SELinux protection for radvd daemon"
 +msgstr ""
-+
+-#~ msgid "Allow users to rw usb devices"
+-#~ msgstr "允許用戶 rw usb 裝置"
 +#: ../gui/selinux.tbl:151
 +msgid "Disable SELinux protection for rdisc"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow users to run TCP servers (bind to ports and accept connection from "
+-#~ "the same domain and outside users)  disabling this forces FTP passive "
+-#~ "mode and may change other protocols"
+-#~ msgstr ""
+-#~ "允許用戶執行 TCP 伺服器(綁定至通訊埠並接受來自相同網域和外部用戶的連線)"
+-#~ "停用此選項會強制 FTP 被動模式並且可能會更改其它通訊協定"
 +#: ../gui/selinux.tbl:152
 +msgid "Disable SELinux protection for readahead"
 +msgstr ""
-+
+-#~ msgid "Allow user to stat ttyfiles"
+-#~ msgstr "允許用戶 stat ttyfiles"
 +#: ../gui/selinux.tbl:153
 +msgid "Allow programs to read files in non-standard locations (default_t)"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for uucpd daemon"
+-#~ msgstr "停用 uucpd daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:154
 +msgid "Disable SELinux protection for restorecond"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for vmware daemon"
+-#~ msgstr "停用 vmware daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:155
 +msgid "Disable SELinux protection for rhgb daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for watchdog daemon"
+-#~ msgstr "停用 watchdog daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:156
 +msgid "Disable SELinux protection for ricci"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for winbind daemon"
+-#~ msgstr "停用 winbind daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:157
 +msgid "Disable SELinux protection for ricci_modclusterd"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xdm daemon"
+-#~ msgstr "停用 xdm daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:158
 +msgid "Disable SELinux protection for rlogind daemon"
 +msgstr ""
-+
+-#~ msgid "Allow xdm logins as sysadm_r:sysadm_t"
+-#~ msgstr "允許 xdm 以 sysadm_r:sysadm_t 來進行登錄"
 +#: ../gui/selinux.tbl:159
 +msgid "Disable SELinux protection for rpcd daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen daemon"
+-#~ msgstr "停用 xen daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:160
 +msgid "Disable SELinux protection for rshd"
 +msgstr ""
-+
+-#~ msgid "XEN"
+-#~ msgstr "XEN"
 +#: ../gui/selinux.tbl:161
 +msgid "rsync"
 +msgstr ""
-+
+-#~ msgid "Allow xen to read/write physical disk devices"
+-#~ msgstr "允許 xen 讀取/寫入實體磁碟裝置"
 +#: ../gui/selinux.tbl:161
 +msgid "Disable SELinux protection for rsync daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xfs daemon"
+-#~ msgstr "停用 xfs daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:162
 +msgid "Allow ssh to run from inetd instead of as a daemon"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for xen control"
+-#~ msgstr "停用 xen control 的 SELinux 保護"
 +#: ../gui/selinux.tbl:163
 +msgid "Allow Samba to share nfs directories"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ypbind daemon"
+-#~ msgstr "停用 ypbind daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:164 ../gui/selinux.tbl:166
 +msgid "SASL authentication server"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NIS Password Daemon"
+-#~ msgstr "停用 NIS Password Daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:164
 +msgid "Allow sasl authentication server to read /etc/shadow"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for ypserv daemon"
+-#~ msgstr "停用 ypserv daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:165
 +msgid ""
 +"Allow X-Windows server to map a memory region as both executable and writable"
 +msgstr ""
-+
+-#~ msgid "Disable SELinux protection for NIS Transfer Daemon"
+-#~ msgstr "停用 NIS Transfer Daemon 的 SELinux 保護"
 +#: ../gui/selinux.tbl:166
 +msgid "Disable SELinux protection for saslauthd daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to manage unprivileged users home directories"
+-#~ msgstr "允許 SELinux webadm 用戶管理無特權用戶的家目錄"
 +#: ../gui/selinux.tbl:167
 +msgid "Disable SELinux protection for scannerdaemon daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow SELinux webadm user to read unprivileged users home directories"
+-#~ msgstr "允許 SELinux webadm 用戶讀取無特權用戶的家目錄"
 +#: ../gui/selinux.tbl:168
 +msgid "Do not allow transition to sysadm_t, sudo and su effected"
 +msgstr ""
-+
+-#~ msgid "Sensitvity Level"
+-#~ msgstr "敏感度"
 +#: ../gui/selinux.tbl:169
 +msgid "Do not allow any processes to load kernel modules"
 +msgstr ""
-+
+-#~ msgid "Are you sure you want to delete %s '%s'?"
+-#~ msgstr "您是否希望刪除 %s「%s」?"
 +#: ../gui/selinux.tbl:170
 +msgid "Do not allow any processes to modify kernel SELinux policy"
 +msgstr ""
-+
+-#~ msgid "Delete %s"
+-#~ msgstr "刪除 %s"
 +#: ../gui/selinux.tbl:171
 +msgid "Disable SELinux protection for sendmail daemon"
 +msgstr ""
-+
+-#~ msgid "Add %s"
+-#~ msgstr "新增 %s"
 +#: ../gui/selinux.tbl:172
 +msgid "Disable SELinux protection for setrans"
 +msgstr ""
-+
+-#~ msgid "Modify %s"
+-#~ msgstr "修改 %s"
 +#: ../gui/selinux.tbl:173
 +msgid "Disable SELinux protection for setroubleshoot daemon"
 +msgstr ""
@@ -292375,57 +243313,93 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +#: ../gui/selinux.tbl:197
 +msgid "Disable SELinux protection for telnet daemon"
 +msgstr ""
-+
+-#~ msgid "all"
+-#~ msgstr "全部"
 +#: ../gui/selinux.tbl:198
 +msgid "Disable SELinux protection for tftpd daemon"
 +msgstr ""
-+
+-#~ msgid "Customized"
+-#~ msgstr "自訂化"
 +#: ../gui/selinux.tbl:199
 +msgid "Disable SELinux protection for transproxy daemon"
 +msgstr ""
-+
+-#~ msgid "Policy Module"
+-#~ msgstr "政策模組"
 +#: ../gui/selinux.tbl:200
 +msgid "Disable SELinux protection for udev daemon"
 +msgstr ""
-+
+-#~ msgid "Disable Audit"
+-#~ msgstr "停用稽核"
 +#: ../gui/selinux.tbl:201
 +msgid "Disable SELinux protection for uml daemon"
 +msgstr ""
-+
+-#~ msgid "Enable Audit"
+-#~ msgstr "啟用稽核"
 +#: ../gui/selinux.tbl:202
 +msgid ""
 +"Allow xinetd to run unconfined, including any services it starts that do not "
 +"have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "Load Policy Module"
+-#~ msgstr "載入政策模組"
 +#: ../gui/selinux.tbl:203
 +msgid ""
 +"Allow rc scripts to run unconfined, including any daemon started by an rc "
 +"script that does not have a domain transition explicitly defined"
 +msgstr ""
-+
+-#~ msgid "File Labeling"
+-#~ msgstr "檔案標記"
 +#: ../gui/selinux.tbl:204
 +msgid "Allow rpm to run unconfined"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Specification"
+-#~ msgstr ""
+-#~ "檔案\n"
+-#~ "規格"
 +#: ../gui/selinux.tbl:205
 +msgid "Allow privileged utilities like hotplug and insmod to run unconfined"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Selinux\n"
+-#~ "File Type"
+-#~ msgstr ""
+-#~ "Selinux\n"
+-#~ "檔案類型"
 +#: ../gui/selinux.tbl:206
 +msgid "Disable SELinux protection for updfstab daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "File\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "檔案\n"
+-#~ "類型"
 +#: ../gui/selinux.tbl:207
 +msgid "Disable SELinux protection for uptimed daemon"
 +msgstr ""
-+
+-#~ msgid "..."
+-#~ msgstr "..."
 +#: ../gui/selinux.tbl:208
 +msgid ""
 +"Allow user_r to reach sysadm_r via su, sudo, or userhelper. Otherwise, only "
 +"staff_r can do so"
 +msgstr ""
-+
+-#~ msgid "600-1024"
+-#~ msgstr "600-1024"
 +#: ../gui/selinux.tbl:209
 +msgid "Allow users to execute the mount command"
 +msgstr ""
@@ -292476,106 +243450,167 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +#: ../gui/selinux.tbl:220
 +msgid "Disable SELinux protection for watchdog daemon"
 +msgstr ""
-+
+-#~ msgid "<b>Applications</b>"
+-#~ msgstr "<b>應用程式</b>"
 +#: ../gui/selinux.tbl:221
 +msgid "Disable SELinux protection for winbind daemon"
 +msgstr ""
-+
+-#~ msgid "<b>Login Users</b>"
+-#~ msgstr "<b>登錄用戶</b>"
 +#: ../gui/selinux.tbl:222
 +msgid "Disable SELinux protection for xdm daemon"
 +msgstr ""
-+
+-#~ msgid "<b>Root Users</b>"
+-#~ msgstr "<b>Root 用戶</b>"
 +#: ../gui/selinux.tbl:223
 +msgid "Allow xdm logins as sysadm_r:sysadm_t"
 +msgstr ""
-+
+-#~ msgid "<b>TCP Ports</b>"
+-#~ msgstr "<b>TCP 通訊埠</b>"
 +#: ../gui/selinux.tbl:224
 +msgid "Disable SELinux protection for xen daemon"
 +msgstr ""
-+
+-#~ msgid "<b>UDP Ports</b>"
+-#~ msgstr "<b>UDP 通訊埠</b>"
 +#: ../gui/selinux.tbl:225
 +msgid "XEN"
 +msgstr ""
-+
+-#~ msgid "Add Booleans Dialog"
+-#~ msgstr "新增布林值對話"
 +#: ../gui/selinux.tbl:225
 +msgid "Allow xen to read/write physical disk devices"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Add Files/Directories that application will need to \"Write\" to. Pid "
+-#~ "Files, Log Files, /var/lib Files ..."
+-#~ msgstr ""
+-#~ "新增應用程式需要「寫」至檔案/目錄。Pid 檔案、日誌檔、/var/lib 檔案 ..."
 +#: ../gui/selinux.tbl:226
 +msgid "Disable SELinux protection for xfs daemon"
 +msgstr ""
-+
+-#~ msgid "Add/Remove booleans used for this confined application/user"
+-#~ msgstr "新增/移除這個受限制的應用程式/用戶所使用的布林值"
 +#: ../gui/selinux.tbl:227
 +msgid "Disable SELinux protection for xen control"
 +msgstr ""
-+
+-#~ msgid "Admin User Role"
+-#~ msgstr "管理員用戶角色"
 +#: ../gui/selinux.tbl:228
 +msgid "Disable SELinux protection for ypbind daemon"
 +msgstr ""
-+
+-#~ msgid "All"
+-#~ msgstr "全部"
 +#: ../gui/selinux.tbl:229
 +msgid "Disable SELinux protection for NIS Password Daemon"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Allow application/user role to call bindresvport with 0. Binding to port "
+-#~ "600-1024"
+-#~ msgstr ""
+-#~ "允許應用程式/用戶角色以 0 來調用 bindresvport。綁定至通訊埠 600-1024"
 +#: ../gui/selinux.tbl:230
 +msgid "Disable SELinux protection for ypserv daemon"
 +msgstr ""
-+
+-#~ msgid "Allows application/user role to bind to any udp ports > 1024"
+-#~ msgstr "允許應用程式/用戶角色綁定至任何大於 1024 的 udp 通訊埠"
 +#: ../gui/selinux.tbl:231
 +msgid "Disable SELinux protection for NIS Transfer Daemon"
 +msgstr ""
-+
+-#~ msgid "Allows confined application/user role to bind to any udp port"
+-#~ msgstr "允許受限制的應用程式/用戶角色綁定至任何 udp 通訊埠"
 +#: ../gui/selinux.tbl:232
 +msgid "Allow SELinux webadm user to manage unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Boolean Name"
+-#~ msgstr "布林值名稱"
 +#: ../gui/selinux.tbl:233
 +msgid "Allow SELinux webadm user to read unprivileged users home directories"
 +msgstr ""
-+
+-#~ msgid "Create/Manipulate temporary files in /tmp"
+-#~ msgstr "建立/操作位於 /tmp 中的臨時檔案"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Are you sure you want to delete %s '%s'?"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of tcp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "輸入一個應用程式/用戶角色連至、以逗號區隔開的 tcp 通訊埠清單或是通訊埠範"
+-#~ "圍。例如:612, 650-660"
 +#: ../gui/semanagePage.py:126
 +#, python-format
 +msgid "Delete %s"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role binds to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "輸入一個應用程式/用戶角色綁定至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範"
+-#~ "圍。例如:612, 650-660"
 +#: ../gui/semanagePage.py:134
 +#, python-format
 +msgid "Add %s"
 +msgstr ""
-+
+-#~ msgid ""
+-#~ "Enter a comma separated list of udp ports or ranges of ports that "
+-#~ "application/user role connects to. Example: 612, 650-660"
+-#~ msgstr ""
+-#~ "輸入一個應用程式/用戶角色連至、以逗號區隔開的 udp 通訊埠清單或是通訊埠範"
+-#~ "圍。例如:612, 650-660"
 +#: ../gui/semanagePage.py:148
 +#, python-format
 +msgid "Modify %s"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:3217
+-#~ msgid "Enter complete path for executable to be confined."
+-#~ msgstr "輸入要被限制的可執行檔的完整路徑。"
++#: ../gui/statusPage.py:69 ../gui/system-config-selinux.glade:2838
 +msgid "Permissive"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:3235
+-#~ msgid ""
+-#~ "Enter complete path to init script used to start the confined application."
+-#~ msgstr "輸入用來啟用受限制的應用程式的 init script 的完整路徑。"
++#: ../gui/statusPage.py:70 ../gui/system-config-selinux.glade:2856
 +msgid "Enforcing"
 +msgstr ""
-+
-+#: ../gui/statusPage.py:75
-+msgid "Disabled"
-+msgstr ""
-+
+-#~ msgid "Enter name of application or user role to be confined"
+-#~ msgstr "輸入受限制的應用程式名稱或用戶角色"
 +#: ../gui/statusPage.py:94
 +msgid "Status"
 +msgstr ""
-+
+-#~ msgid "Enter network ports that application/user role connects to"
+-#~ msgstr "輸入應用程式/用戶連至的網路通訊埠"
 +#: ../gui/statusPage.py:133
 +msgid ""
 +"Changing the policy type will cause a relabel of the entire file system on "
 +"the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Enter network ports that application/user role listens to"
+-#~ msgstr "輸入應用程式/用戶角色監聽的網路通訊埠"
 +#: ../gui/statusPage.py:147
 +msgid ""
 +"Changing to SELinux disabled requires a reboot.  It is not recommended.  If "
@@ -292585,54 +243620,65 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +"enforce SELinux policy.  Permissive mode does not require a reboot    Do you "
 +"wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Enter unique name for the confined application or user role."
+-#~ msgstr "輸入受限制的應用程式或用戶角色的特殊名稱。"
 +#: ../gui/statusPage.py:152
 +msgid ""
 +"Changing to SELinux enabled will cause a relabel of the entire file system "
 +"on the next boot. Relabeling takes a long time depending on the size of the "
 +"file system.  Do you wish to continue?"
 +msgstr ""
-+
+-#~ msgid "Executable"
+-#~ msgstr "可執行檔"
 +#: ../gui/system-config-selinux.glade:11
 +msgid "system-config-selinux"
 +msgstr ""
-+
+-#~ msgid "Existing User Roles"
+-#~ msgstr "現有的用戶角色"
 +#: ../gui/system-config-selinux.glade:12
 +msgid ""
 +"Copyright (c)2006 Red Hat, Inc.\n"
 +"Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com>"
 +msgstr ""
-+
+-#~ msgid "GPL"
+-#~ msgstr "GPL"
 +#: ../gui/system-config-selinux.glade:22
 +#: ../gui/system-config-selinux.glade:544
-+#: ../gui/system-config-selinux.glade:736
 +msgid "Add SELinux Login Mapping"
 +msgstr ""
-+
+-#~ msgid "Generated Policy Files"
+-#~ msgstr "產生的政策檔案"
 +#: ../gui/system-config-selinux.glade:257
 +msgid "Add SELinux Network Ports"
 +msgstr ""
-+
+-#~ msgid "Init script"
+-#~ msgstr "init script"
 +#: ../gui/system-config-selinux.glade:391
-+#: ../gui/system-config-selinux.glade:870
++#: ../gui/system-config-selinux.glade:678
 +msgid "SELinux Type"
 +msgstr ""
-+
+-#~ msgid "Interacts with the terminal"
+-#~ msgstr "與終端機進行互動"
 +#: ../gui/system-config-selinux.glade:622
-+msgid ""
-+"SELinux MLS/MCS\n"
-+"Level"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:814
 +msgid "File Specification"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:842
+-#~ msgid "Internet Services Daemon (inetd)"
+-#~ msgstr "網路服務 Daemon(inetd)"
++#: ../gui/system-config-selinux.glade:650
 +msgid "File Type"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:919
+-#~ msgid "Internet Services Daemon are daemons started by xinetd"
+-#~ msgstr "網路服務 Daemon 為 xinetd 所啟用的系統程式"
++#: ../gui/system-config-selinux.glade:727
 +msgid ""
 +"all files\n"
 +"regular file\n"
@@ -292643,233 +243689,2980 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/zu.po policycoreutils
 +"symbolic link\n"
 +"named pipe\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:965
+-#~ msgid "Minimal Terminal User Role"
+-#~ msgstr "最少的終端機用戶角色"
++#: ../gui/system-config-selinux.glade:773
 +msgid "MLS"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1029
+-#~ msgid "Minimal X Windows User Role"
+-#~ msgstr "最少的 X Windows 用戶角色"
++#: ../gui/system-config-selinux.glade:837
 +msgid "Add SELinux User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1271
+-#~ msgid "Modify an existing login user record."
+-#~ msgstr "修改一個現有的登錄用戶紀錄。"
++#: ../gui/system-config-selinux.glade:1079
 +msgid "SELinux Administration"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1314
+-#~ msgid "Polgen"
+-#~ msgstr "Polgen"
++#: ../gui/system-config-selinux.glade:1122
 +msgid "Add"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1336
+-#~ msgid "Policy Directory"
+-#~ msgstr "政策目錄"
++#: ../gui/system-config-selinux.glade:1144
 +msgid "_Properties"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1358
+-#~ msgid "Red Hat 2007"
+-#~ msgstr "Red Hat 2007"
++#: ../gui/system-config-selinux.glade:1166
 +msgid "_Delete"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1449
+-#~ msgid "Root Admin User Role"
+-#~ msgstr "Root 管理員用戶角色(Root Admin User Role)"
++#: ../gui/system-config-selinux.glade:1257
 +msgid "Select Management Object"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1466
+-#~ msgid "SELinux Policy Generation Tool"
+-#~ msgstr "SELinux 政策產生工具(SELinux Policy Generation Tool)"
++#: ../gui/system-config-selinux.glade:1274
 +msgid "<b>Select:</b>"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1519
+-#~ msgid "Select Ports"
+-#~ msgstr "選擇通訊埠"
+-
+-#~ msgid ""
+-#~ "Select Root Administrator User Role, if this user will be used to "
+-#~ "administer the machine while running as root.  This user will not be able "
+-#~ "to login to the system directly."
+-#~ msgstr ""
+-#~ "若此用戶將會被用來以 root 的身份管理機器的話,選擇 Root 管理者用戶角色。此"
+-#~ "用戶將無法直接登入系統。"
+-
+-#~ msgid "Select additional domains that this user role will administer"
+-#~ msgstr "選擇此用戶角色將會管理的額外網域"
+-
+-#~ msgid "Select additional domains to which this user role will transition"
+-#~ msgstr "選擇此用戶角色將會轉移的額外網域"
+-
+-#~ msgid "Select additional roles for this user"
+-#~ msgstr "選擇此用戶的額外角色"
+-
+-#~ msgid "Select booleans that the application uses"
+-#~ msgstr "選擇應用程式所使用的布林值"
+-
+-#~ msgid "Select common application traits"
+-#~ msgstr "選擇一般的應用程式特性"
+-
+-#~ msgid "Select directory to generate policy in"
+-#~ msgstr "選擇產生政策的目錄"
+-
+-#~ msgid "Select files/directories that the application manages"
+-#~ msgstr "選擇應用程式所管理的檔案/目錄"
+-
+-#~ msgid ""
+-#~ "Select the applications domains that you would like this user role to "
+-#~ "transition to."
+-#~ msgstr "選擇您希望此用戶角色轉移至的應用程式網域。"
+-
+-#~ msgid "Select the domains that you would like this user administer."
+-#~ msgstr "選擇您希望此用戶管理的網域。"
+-
+-#~ msgid ""
+-#~ "Select the user roles that will transiton to this applications domains."
+-#~ msgstr "選擇將會轉移至此應用程式網域的用戶角色。"
+-
+-#~ msgid "Select type of the application/user role to be confined"
+-#~ msgstr "選擇欲限制的應用程式/用戶角色類型"
+-
+-#~ msgid "Select user roles that will transition to this domain"
+-#~ msgstr "選擇將會轉移至此網域的用戶角色"
+-
+-#~ msgid "Select user roles that you want to customize"
+-#~ msgstr "選擇您希望自訂化的用戶角色"
+-
+-#~ msgid "Sends audit messages"
+-#~ msgstr "發送稽核訊息"
+-
+-#~ msgid "Sends email"
+-#~ msgstr "發送電子郵件"
+-
+-#~ msgid "Standard Init Daemon"
+-#~ msgstr "標準 Init Daemon"
+-
+-#~ msgid ""
+-#~ "Standard Init Daemon are daemons started on boot via init scripts.  "
+-#~ "Usually requires a script in /etc/rc.d/init.d"
+-#~ msgstr ""
+-#~ "標準的 Init Daemon 代表透過 init script 在開機時啟動的系統程式。通常在 /"
+-#~ "etc/rc.d/init.d 中會需要一個 script"
+-
+-#~ msgid ""
+-#~ "This tool can be used to generate a policy framework, to confine "
+-#~ "applications or users using SELinux.   \n"
+-#~ "\n"
+-#~ "The tool generates:\n"
+-#~ "Type enforcement file (te)\n"
+-#~ "Interface file (if)\n"
+-#~ "File context file (fc)\n"
+-#~ "Shell script (sh) - used to compile and install the policy. "
+-#~ msgstr ""
+-#~ "此工具可被用來產生一個繼續進行應用程式或是使用 SELinux 的用戶的政策架"
+-#~ "構。   \n"
+-#~ "\n"
+-#~ "此工具會產生:\n"
+-#~ "類型強制檔案(te)\n"
+-#~ "介面檔案(if)\n"
+-#~ "檔案 context 檔(fc)\n"
+-#~ "Shell script(sh)- 用來編譯和安裝政策。"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "\n"
+-#~ "Execute shell script to compile/install and relabel files/directories.  \n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Run/restart the application to generate avc messages.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "此工具會產生下列:\n"
+-#~ "類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
+-#~ "\n"
+-#~ "執行 shell script 來編譯/安裝和重新標記檔案/目錄。\n"
+-#~ "將機器設置為寬鬆模式(setenforce 0)。\n"
+-#~ "執行/重新啟動用程式來產生 avc 訊息。\n"
+-#~ "使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
+-
+-#~ msgid ""
+-#~ "This tool will generate the following: \n"
+-#~ "Type Enforcement(te), File Context(fc), Interface(if), Shell Script(sh)\n"
+-#~ "Execute shell script as root to compile/install and relabel files/"
+-#~ "directories.  \n"
+-#~ "Use semanage or useradd to map Linux login users to user roles.\n"
+-#~ "Put the machine in permissive mode (setenforce 0). \n"
+-#~ "Login as the user and test this user role.\n"
+-#~ "Use audit2allow -R to generate additional rules for the te file.\n"
+-#~ msgstr ""
+-#~ "此工具會產生下列:\n"
+-#~ "類型強制(te)、檔案 Context(fc)、介面(if)、Shell Script(sh)\n"
+-#~ "以 root 來執行 shell script 並編譯/安裝和重新標記檔案/目錄?\n"
+-#~ "使用 semanage 或是 useradd 來將 Linux 登錄用戶對映至用戶角色。\n"
+-#~ "將機器設置為寬鬆模式(setenforce 0)。\n"
+-#~ "以該用戶登入並測試此用戶角色。\n"
+-#~ "使用 audit2allow -R 來為 te 檔案產生額外的規則。\n"
+-
+-#~ msgid ""
+-#~ "This user can login to a machine via X or terminal.  By default this user "
+-#~ "will have no setuid, no networking, no sudo, no su"
+-#~ msgstr ""
+-#~ "此用戶可透過 X 或是終端機來登入一部機器。就預設值來講,此用戶將不會有 "
+-#~ "setuid、網路作業、sudo 和 su"
+-
+-#~ msgid ""
+-#~ "This user will login to a machine only via a terminal or remote login.  "
+-#~ "By default this user will have  no setuid, no networking, no su, no sudo."
+-#~ msgstr ""
+-#~ "此用戶將只可透過終端機或是遠端登錄來登入一部機器。就預設值來講,此用戶將不"
+-#~ "會有 setuid、網路作業、su 和 sudo。"
+-
+-#~ msgid "Unreserved Ports (>1024)"
+-#~ msgstr "未保留的通訊埠(>1024)"
+-
+-#~ msgid "User Application"
+-#~ msgstr "用戶應用程式"
+-
+-#~ msgid ""
+-#~ "User Application are any application that you would like to confine that "
+-#~ "is started by a user"
+-#~ msgstr "用戶應用程式為任何您所希望限制、由某個用戶所啟用的應用程式"
+-
+-#~ msgid "User Role"
+-#~ msgstr "用戶角色"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "su, can sudo to Root Administration Roles"
+-#~ msgstr ""
+-#~ "具有完整網路作業、沒有無轉移的 setuid 應用程式、無 su,並且可 sudo 至 "
+-#~ "Root 管理角色的用戶"
+-
+-#~ msgid ""
+-#~ "User with full networking, no setuid applications without transition, no "
+-#~ "sudo, no su."
+-#~ msgstr ""
+-#~ "具有完整網路作業、沒有無轉移的 setuid 應用程式、無 sudo,並且無 su。"
+-
+-#~ msgid "Uses Pam for authentication"
+-#~ msgstr "使用 Pam 來進行驗證"
+-
+-#~ msgid "Uses dbus"
+-#~ msgstr "使用 dbus"
+-
+-#~ msgid "Uses nsswitch or getpw* calls"
+-#~ msgstr "使用 nsswitch 或是 getpw* 調用"
+-
+-#~ msgid "Web Application/Script (CGI)"
+-#~ msgstr "網站應用程式/Script(CGI)"
+-
+-#~ msgid ""
+-#~ "Web Applications/Script (CGI) CGI scripts started by the web server "
+-#~ "(apache)"
+-#~ msgstr "網站應用程式/Script(CGI)由網站伺服器(apache)所啟用的 CGI script"
+-
+-#~ msgid "Writes syslog messages\t"
+-#~ msgstr "寫入 syslog 訊息\t"
+-
+-#~ msgid "Boolean"
+-#~ msgstr "布林值"
+-
+-#~ msgid ""
+-#~ "SELinux Port\n"
+-#~ "Type"
+-#~ msgstr ""
+-#~ "SELinux 通訊埠\n"
+-#~ "類型"
+-
+-#~ msgid "Protocol"
+-#~ msgstr "通訊協定"
+-
+-#~ msgid ""
+-#~ "MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "MLS/MCS\n"
+-#~ "等級"
++#: ../gui/system-config-selinux.glade:1327
 +msgid "System Default Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1547
+-#~ msgid "Port"
+-#~ msgstr "通訊埠"
++#: ../gui/system-config-selinux.glade:1355
 +msgid ""
 +"Disabled\n"
 +"Permissive\n"
 +"Enforcing\n"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1566
+-#~ msgid "Port number \"%s\" is not valid.  0 < PORT_NUMBER < 65536 "
+-#~ msgstr "通訊埠號「%s」無效。0 < PORT_NUMBER < 65536 "
++#: ../gui/system-config-selinux.glade:1374
 +msgid "Current Enforcing Mode"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1611
+-#~ msgid "List View"
+-#~ msgstr "清單視點"
++#: ../gui/system-config-selinux.glade:1419
 +msgid "System Default Policy Type: "
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1656
+-#~ msgid "Group View"
+-#~ msgstr "群組視點"
++#: ../gui/system-config-selinux.glade:1464
 +msgid ""
 +"Select if you wish to relabel then entire file system on next reboot.  "
 +"Relabeling can take a very long time, depending on the size of the system.  "
 +"If you are changing policy types or going from disabled to enforcing, a "
 +"relabel is required."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1702
+-#~ msgid "Add"
+-#~ msgstr "新增"
++#: ../gui/system-config-selinux.glade:1510
 +msgid "Relabel on next reboot."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1754
+-#~ msgid "Add File Context"
+-#~ msgstr "新增檔案 Context"
++#: ../gui/system-config-selinux.glade:1562
 +msgid "label37"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1791
+-#~ msgid "Add Network Port"
+-#~ msgstr "新增網路通訊埠"
++#: ../gui/system-config-selinux.glade:1599
 +msgid "Revert boolean setting to system default"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1807
+-#~ msgid "Add SELinux Login Mapping"
+-#~ msgstr "新增 SELinux 登錄對映"
++#: ../gui/system-config-selinux.glade:1615
 +msgid "Toggle between Customized and All Booleans"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1825
+-#~ msgid "Add SELinux Network Ports"
+-#~ msgstr "新增 SELinux 網路通訊埠"
++#: ../gui/system-config-selinux.glade:1633
 +msgid "Run booleans lockdown wizard"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1826
+-#~ msgid "Add SELinux User"
+-#~ msgstr "新增 SELinux 用戶"
++#: ../gui/system-config-selinux.glade:1634
 +msgid "Lockdown..."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1856
-+#: ../gui/system-config-selinux.glade:2061
-+#: ../gui/system-config-selinux.glade:2248
-+#: ../gui/system-config-selinux.glade:2435
-+#: ../gui/system-config-selinux.glade:2622
-+#: ../gui/system-config-selinux.glade:2865
-+#: ../gui/system-config-selinux.glade:3090
-+#: ../gui/system-config-selinux.glade:3265
+-#~ msgid "Add SELinux User Mapping"
+-#~ msgstr "新增 SELinux 用戶對映"
++#: ../gui/system-config-selinux.glade:1664
++#: ../gui/system-config-selinux.glade:1869
++#: ../gui/system-config-selinux.glade:2056
++#: ../gui/system-config-selinux.glade:2243
++#: ../gui/system-config-selinux.glade:2486
++#: ../gui/system-config-selinux.glade:2711
++#: ../gui/system-config-selinux.glade:2886
 +msgid "Filter"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1945
+-#~ msgid "Add Translation"
+-#~ msgstr "新增轉移s"
++#: ../gui/system-config-selinux.glade:1753
 +msgid "label50"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1982
+-#~ msgid "Current Enforcing Mode"
+-#~ msgstr "目前的強制模式"
++#: ../gui/system-config-selinux.glade:1790
 +msgid "Add File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:1998
+-#~ msgid "Delete File Context"
+-#~ msgstr "刪除檔案 Context"
++#: ../gui/system-config-selinux.glade:1806
 +msgid "Modify File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2014
+-#~ msgid "Delete Network Port"
+-#~ msgstr "刪除網路通訊埠"
++#: ../gui/system-config-selinux.glade:1822
 +msgid "Delete File Context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2030
+-#~ msgid "Delete SELinux User Mapping"
+-#~ msgstr "刪除 SELinux 用戶對映"
++#: ../gui/system-config-selinux.glade:1838
 +msgid "Toggle between all and customized file context"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2150
+-#~ msgid "Delete Translation"
+-#~ msgstr "刪除轉移"
++#: ../gui/system-config-selinux.glade:1958
 +msgid "label38"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2187
+-#~ msgid ""
+-#~ "Disabled\n"
+-#~ "Permissive\n"
+-#~ "Enforcing\n"
+-#~ msgstr ""
+-#~ "停用\n"
+-#~ "寬鬆\n"
+-#~ "強制\n"
++#: ../gui/system-config-selinux.glade:1995
 +msgid "Add SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2203
+-#~ msgid "Edit Network Port"
+-#~ msgstr "編輯網路通訊埠"
++#: ../gui/system-config-selinux.glade:2011
 +msgid "Modify SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2219
+-#~ msgid ""
+-#~ "Enable/Disable additional audit rules, that are normally not reported in "
+-#~ "the log files."
+-#~ msgstr "啟用/停用額外的稽核規則,這些規則一般不會回報於日誌檔案中。"
++#: ../gui/system-config-selinux.glade:2027
 +msgid "Delete SELinux User Mapping"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2337
+-#~ msgid "File Specification"
+-#~ msgstr "檔案規格"
++#: ../gui/system-config-selinux.glade:2145
 +msgid "label39"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2374
+-#~ msgid "File Type"
+-#~ msgstr "檔案類型"
++#: ../gui/system-config-selinux.glade:2182
 +msgid "Add User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2390
+-#~ msgid "Filter"
+-#~ msgstr "過濾器"
++#: ../gui/system-config-selinux.glade:2198
 +msgid "Modify User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2406
+-#~ msgid "Generate new policy module"
+-#~ msgstr "產生新的政策模組"
++#: ../gui/system-config-selinux.glade:2214
 +msgid "Delete User"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2524
+-#~ msgid "Load policy module"
+-#~ msgstr "載入政策模組"
++#: ../gui/system-config-selinux.glade:2332
 +msgid "label41"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2561
-+msgid "Add Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2577
-+msgid "Modify Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2593
-+msgid "Delete Translation"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2711
-+msgid "label40"
-+msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2748
+-#~ msgid "Lockdown..."
+-#~ msgstr "鎖定..."
++#: ../gui/system-config-selinux.glade:2369
 +msgid "Add Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2764
+-#~ msgid "MLS"
+-#~ msgstr "MLS"
++#: ../gui/system-config-selinux.glade:2385
 +msgid "Edit Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2780
+-#~ msgid "Modify File Context"
+-#~ msgstr "修改檔案 Context"
++#: ../gui/system-config-selinux.glade:2401
 +msgid "Delete Network Port"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2816
-+#: ../gui/system-config-selinux.glade:2834
+-#~ msgid "Modify SELinux User"
+-#~ msgstr "修改 SELinux 用戶"
++#: ../gui/system-config-selinux.glade:2437
++#: ../gui/system-config-selinux.glade:2455
 +msgid "Toggle between Customized and All Ports"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2954
+-#~ msgid "Modify SELinux User Mapping"
+-#~ msgstr "修改 SELinux 用戶對映"
++#: ../gui/system-config-selinux.glade:2575
 +msgid "label42"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:2991
+-#~ msgid "Modify Translation"
+-#~ msgstr "修改轉移"
++#: ../gui/system-config-selinux.glade:2612
 +msgid "Generate new policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3007
+-#~ msgid "Relabel on next reboot."
+-#~ msgstr "下次開機時重新標記。"
++#: ../gui/system-config-selinux.glade:2628
 +msgid "Load policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3023
+-#~ msgid "Remove loadable policy module"
+-#~ msgstr "移除可載入的政策模組"
++#: ../gui/system-config-selinux.glade:2644
 +msgid "Remove loadable policy module"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3059
+-#~ msgid "Revert boolean setting to system default"
+-#~ msgstr "將布林值設定恢復成系統預設值"
++#: ../gui/system-config-selinux.glade:2680
 +msgid ""
 +"Enable/Disable additional audit rules, that are normally not reported in the "
 +"log files."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3179
+-#~ msgid "Run booleans lockdown wizard"
+-#~ msgstr "執行布林值鎖定精靈"
++#: ../gui/system-config-selinux.glade:2800
 +msgid "label44"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3216
+-#~ msgid "SELinux Administration"
+-#~ msgstr "SELinux 管理"
++#: ../gui/system-config-selinux.glade:2837
 +msgid "Change process mode to permissive."
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3234
+-#~ msgid ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "Level"
+-#~ msgstr ""
+-#~ "SELinux MLS/MCS\n"
+-#~ "等級"
++#: ../gui/system-config-selinux.glade:2855
 +msgid "Change process mode to enforcing"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3326
+-#~ msgid "SELinux Type"
+-#~ msgstr "SELinux 類型"
++#: ../gui/system-config-selinux.glade:2947
 +msgid "Process Domain"
 +msgstr ""
-+
-+#: ../gui/system-config-selinux.glade:3354
+-#~ msgid ""
+-#~ "Select if you wish to relabel then entire file system on next reboot.  "
+-#~ "Relabeling can take a very long time, depending on the size of the "
+-#~ "system.  If you are changing policy types or going from disabled to "
+-#~ "enforcing, a relabel is required."
+-#~ msgstr ""
+-#~ "選擇您是否希望在下次開機時重新標記整個檔案系統。根據系統大小,重新標記可能"
+-#~ "會花上一段很長時間。若您要更改政策類型或是要由停用狀態更改為強制模式,重新"
+-#~ "標記將是必要的。"
++#: ../gui/system-config-selinux.glade:2975
 +msgid "label59"
 +msgstr ""
-+
+-#~ msgid "System Default Enforcing Mode"
+-#~ msgstr "系統預設強制模式"
+-
+-#~ msgid "System Default Policy Type: "
+-#~ msgstr "系統預設政策類型:"
+-
+-#~ msgid "Toggle between Customized and All Booleans"
+-#~ msgstr "在自訂化以及所有布林值之間進行啟用"
+-
+-#~ msgid "Toggle between Customized and All Ports"
+-#~ msgstr "在自訂化以及所有通訊埠之間進行啟用"
+-
+-#~ msgid "Toggle between all and customized file context"
+-#~ msgstr "在自訂化以及所有檔案 context 之間進行啟用"
+-
+-#~ msgid "_Delete"
+-#~ msgstr "刪除(_D)"
+-
+-#~ msgid "_Properties"
+-#~ msgstr "屬性(_P)"
+-
+-#~ msgid ""
+-#~ "all files\n"
+-#~ "regular file\n"
+-#~ "directory\n"
+-#~ "character device\n"
+-#~ "block device\n"
+-#~ "socket\n"
+-#~ "symbolic link\n"
+-#~ "named pipe\n"
+-#~ msgstr ""
+-#~ "所有檔案\n"
+-#~ "正規檔案\n"
+-#~ "目錄\n"
+-#~ "字元裝置\n"
+-#~ "區塊裝置\n"
+-#~ "socket\n"
+-#~ "符號連結\n"
+-#~ "named 管線\n"
+-
+-#~ msgid ""
+-#~ "tcp\n"
+-#~ "udp"
+-#~ msgstr ""
+-#~ "tcp\n"
+-#~ "udp"
 +#: ../gui/usersPage.py:138
 +#, python-format
 +msgid "SELinux user '%s' is required"
 +msgstr ""
+diff --git a/policycoreutils/po/zu.po b/policycoreutils/po/zu.po
+deleted file mode 100644
+index afeaa9f..0000000
+--- a/policycoreutils/po/zu.po
++++ /dev/null
+@@ -1,1270 +0,0 @@
+-# 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.
+-#
+-#, fuzzy
+-msgid ""
+-msgstr ""
+-"Project-Id-Version: PACKAGE VERSION\n"
+-"Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2012-03-27 10:49-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"
+-"Language: \n"
+-"MIME-Version: 1.0\n"
+-"Content-Type: text/plain; charset=UTF-8\n"
+-"Content-Transfer-Encoding: 8bit\n"
+-
+-#: ../run_init/run_init.c:67
+-msgid ""
+-"USAGE: run_init <script> <args ...>\n"
+-"  where: <script> is the name of the init script to run,\n"
+-"         <args ...> are the arguments to that script."
+-msgstr ""
+-
+-#: ../run_init/run_init.c:126 ../newrole/newrole.c:1124
+-#, c-format
+-msgid "failed to initialize PAM\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:139
+-#, c-format
+-msgid "failed to get account information\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:162 ../newrole/newrole.c:341
+-msgid "Password:"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:197 ../newrole/newrole.c:366
+-#, c-format
+-msgid "Cannot find your entry in the shadow passwd file.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:203 ../newrole/newrole.c:373
+-#, c-format
+-msgid "getpass cannot open /dev/tty\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:275
+-#, c-format
+-msgid "run_init: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:309
+-#, c-format
+-msgid "Could not open file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:336
+-#, c-format
+-msgid "No context in file %s\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:361
+-#, c-format
+-msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:380
+-#, c-format
+-msgid "authentication failed.\n"
+-msgstr ""
+-
+-#: ../run_init/run_init.c:405 ../newrole/newrole.c:1258
+-#, c-format
+-msgid "Could not set exec context to %s.\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:230
+-msgid "******************** IMPORTANT ***********************\n"
+-msgstr ""
+-
+-#: ../audit2allow/audit2allow:231
+-msgid "To make this policy package active, execute:"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:143 ../semanage/seobject.py:147
+-msgid "global"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:222
+-msgid "Could not create semanage handle"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:230
+-msgid "SELinux policy is not managed or store cannot be accessed."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:235
+-msgid "Cannot read policy store."
+-msgstr ""
+-
+-#: ../semanage/seobject.py:240
+-msgid "Could not establish semanage connection"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:245
+-msgid "Could not test MLS enabled status"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:251 ../semanage/seobject.py:266
+-msgid "Not yet implemented"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:255
+-msgid "Semanage transaction already in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:264
+-msgid "Could not start semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:274
+-msgid "Could not commit semanage transaction"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:279
+-msgid "Semanage transaction not in progress"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:291 ../semanage/seobject.py:371
+-msgid "Could not list SELinux modules"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Modules Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:304
+-msgid "Version"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:307
+-msgid "Disabled"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:322
+-#, python-format
+-msgid "Could not disable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:333
+-#, python-format
+-msgid "Could not enable module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:348
+-#, python-format
+-msgid "Could not remove module %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:358
+-msgid "dontaudit requires either 'on' or 'off'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:387
+-msgid "Builtin Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:397
+-msgid "Customized Permissive Types"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:438
+-#, python-format
+-msgid "Could not set permissive domain %s (module installation failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:444
+-#, python-format
+-msgid "Could not remove permissive domain %s (remove failed)"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:479 ../semanage/seobject.py:553
+-#: ../semanage/seobject.py:599 ../semanage/seobject.py:696
+-#: ../semanage/seobject.py:726 ../semanage/seobject.py:793
+-#: ../semanage/seobject.py:850 ../semanage/seobject.py:1097
+-#: ../semanage/seobject.py:1786 ../semanage/seobject.py:1849
+-#: ../semanage/seobject.py:1868 ../semanage/seobject.py:1985
+-#: ../semanage/seobject.py:2037
+-#, python-format
+-msgid "Could not create a key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:483 ../semanage/seobject.py:557
+-#: ../semanage/seobject.py:603 ../semanage/seobject.py:609
+-#, python-format
+-msgid "Could not check if login mapping for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:492
+-#, python-format
+-msgid "Linux Group %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:497
+-#, python-format
+-msgid "Linux User %s does not exist"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:501
+-#, python-format
+-msgid "Could not create login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:505 ../semanage/seobject.py:741
+-#, python-format
+-msgid "Could not set name for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:510 ../semanage/seobject.py:751
+-#, python-format
+-msgid "Could not set MLS range for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:514
+-#, python-format
+-msgid "Could not set SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:518
+-#, python-format
+-msgid "Could not add login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:536
+-msgid "Requires seuser or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:559 ../semanage/seobject.py:605
+-#, python-format
+-msgid "Login mapping for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:563
+-#, python-format
+-msgid "Could not query seuser for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:577
+-#, python-format
+-msgid "Could not modify login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:611
+-#, python-format
+-msgid "Login mapping for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:615
+-#, python-format
+-msgid "Could not delete login mapping for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:637 ../semanage/seobject.py:655
+-#: ../semanage/seobject.py:893
+-msgid "Could not list login mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-msgid "Login Name"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680 ../semanage/seobject.py:685
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux User"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:680
+-msgid "MLS/MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:699 ../semanage/seobject.py:730
+-#: ../semanage/seobject.py:797 ../semanage/seobject.py:854
+-#: ../semanage/seobject.py:860
+-#, python-format
+-msgid "Could not check if SELinux user %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:702 ../semanage/seobject.py:803
+-#: ../semanage/seobject.py:866
+-#, python-format
+-msgid "Could not query user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:722
+-#, python-format
+-msgid "You must add at least one role for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:737
+-#, python-format
+-msgid "Could not create SELinux user for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:746
+-#, python-format
+-msgid "Could not add role %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:755
+-#, python-format
+-msgid "Could not set MLS level for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:758
+-#, python-format
+-msgid "Could not add prefix %s for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:761
+-#, python-format
+-msgid "Could not extract key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:765
+-#, python-format
+-msgid "Could not add SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:787
+-msgid "Requires prefix, roles, level or range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:789
+-msgid "Requires prefix or roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:799 ../semanage/seobject.py:856
+-#, python-format
+-msgid "SELinux user %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:828
+-#, python-format
+-msgid "Could not modify SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:862
+-#, python-format
+-msgid "SELinux user %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:873
+-#, python-format
+-msgid "Could not delete SELinux user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:911
+-msgid "Could not list SELinux users"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:917
+-#, python-format
+-msgid "Could not list roles for user %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "Labeling"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:942
+-msgid "MLS/"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "Prefix"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Level"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943
+-msgid "MCS Range"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:943 ../semanage/seobject.py:948
+-msgid "SELinux Roles"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:963
+-msgid "Protocol udp or tcp is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:965
+-msgid "Port is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:975
+-msgid "Invalid Port"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:979
+-#, python-format
+-msgid "Could not create a key for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:990
+-msgid "Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:996 ../semanage/seobject.py:1055
+-#: ../semanage/seobject.py:1110 ../semanage/seobject.py:1116
+-#, python-format
+-msgid "Could not check if port %s/%s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:998
+-#, python-format
+-msgid "Port %s/%s already defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1002
+-#, python-format
+-msgid "Could not create port for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1008
+-#, python-format
+-msgid "Could not create context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1012
+-#, python-format
+-msgid "Could not set user in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1016
+-#, python-format
+-msgid "Could not set role in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1020
+-#, python-format
+-msgid "Could not set type in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1025
+-#, python-format
+-msgid "Could not set mls fields in port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1029
+-#, python-format
+-msgid "Could not set port context for %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1033
+-#, python-format
+-msgid "Could not add port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1047 ../semanage/seobject.py:1312
+-#: ../semanage/seobject.py:1508
+-msgid "Requires setype or serange"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1049
+-msgid "Requires setype"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1057 ../semanage/seobject.py:1112
+-#, python-format
+-msgid "Port %s/%s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1061
+-#, python-format
+-msgid "Could not query port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1072
+-#, python-format
+-msgid "Could not modify port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1085
+-msgid "Could not list the ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1101
+-#, python-format
+-msgid "Could not delete the port %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1118
+-#, python-format
+-msgid "Port %s/%s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1122
+-#, python-format
+-msgid "Could not delete port %s/%s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1138 ../semanage/seobject.py:1160
+-msgid "Could not list ports"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "SELinux Port Type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Proto"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1199
+-msgid "Port Number"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1218
+-msgid "Node Address is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1233
+-msgid "Unknown or missing protocol"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1446
+-#: ../semanage/seobject.py:1724
+-msgid "SELinux Type is required"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1251 ../semanage/seobject.py:1316
+-#: ../semanage/seobject.py:1352 ../semanage/seobject.py:1450
+-#: ../semanage/seobject.py:1512 ../semanage/seobject.py:1546
+-#: ../semanage/seobject.py:1728
+-#, python-format
+-msgid "Could not create key for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1253 ../semanage/seobject.py:1320
+-#: ../semanage/seobject.py:1356 ../semanage/seobject.py:1362
+-#, python-format
+-msgid "Could not check if addr %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1262
+-#, python-format
+-msgid "Could not create addr for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1268 ../semanage/seobject.py:1466
+-#: ../semanage/seobject.py:1686
+-#, python-format
+-msgid "Could not create context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1272
+-#, python-format
+-msgid "Could not set mask for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1276
+-#, python-format
+-msgid "Could not set user in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1280
+-#, python-format
+-msgid "Could not set role in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1284
+-#, python-format
+-msgid "Could not set type in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1289
+-#, python-format
+-msgid "Could not set mls fields in addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1293
+-#, python-format
+-msgid "Could not set addr context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1297
+-#, python-format
+-msgid "Could not add addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1322 ../semanage/seobject.py:1358
+-#, python-format
+-msgid "Addr %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1326
+-#, python-format
+-msgid "Could not query addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1336
+-#, python-format
+-msgid "Could not modify addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1364
+-#, python-format
+-msgid "Addr %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1368
+-#, python-format
+-msgid "Could not delete addr %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1380
+-msgid "Could not deleteall node mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1394
+-msgid "Could not list addrs"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1454 ../semanage/seobject.py:1516
+-#: ../semanage/seobject.py:1550 ../semanage/seobject.py:1556
+-#, python-format
+-msgid "Could not check if interface %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1461
+-#, python-format
+-msgid "Could not create interface for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1470
+-#, python-format
+-msgid "Could not set user in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1474
+-#, python-format
+-msgid "Could not set role in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1478
+-#, python-format
+-msgid "Could not set type in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1483
+-#, python-format
+-msgid "Could not set mls fields in interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1487
+-#, python-format
+-msgid "Could not set interface context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1491
+-#, python-format
+-msgid "Could not set message context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1495
+-#, python-format
+-msgid "Could not add interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1518 ../semanage/seobject.py:1552
+-#, python-format
+-msgid "Interface %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1522
+-#, python-format
+-msgid "Could not query interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1533
+-#, python-format
+-msgid "Could not modify interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1558
+-#, python-format
+-msgid "Interface %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1562
+-#, python-format
+-msgid "Could not delete interface %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1574
+-msgid "Could not delete all interface  mappings"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1588
+-msgid "Could not list interfaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613
+-msgid "SELinux Interface"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1613 ../semanage/seobject.py:1936
+-msgid "Context"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1663
+-#, python-format
+-msgid "Equivalence class for %s already exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1669
+-#, python-format
+-msgid "File spec %s conflicts with equivalency rule '%s %s'"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1678
+-#, python-format
+-msgid "Equivalence class for %s does not exists"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1692
+-#, python-format
+-msgid "Could not set user in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1696
+-#, python-format
+-msgid "Could not set role in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1701 ../semanage/seobject.py:1758
+-#, python-format
+-msgid "Could not set mls fields in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1707
+-msgid "Invalid file specification"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1709
+-msgid "File specification can not include spaces"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1714
+-#, python-format
+-msgid ""
+-"File spec %s conflicts with equivalency rule '%s %s'; Try adding '%s' instead"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1732 ../semanage/seobject.py:1737
+-#: ../semanage/seobject.py:1790 ../semanage/seobject.py:1872
+-#: ../semanage/seobject.py:1876
+-#, python-format
+-msgid "Could not check if file context for %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1745
+-#, python-format
+-msgid "Could not create file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1753
+-#, python-format
+-msgid "Could not set type in file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1761 ../semanage/seobject.py:1818
+-#: ../semanage/seobject.py:1822
+-#, python-format
+-msgid "Could not set file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1767
+-#, python-format
+-msgid "Could not add file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1781
+-msgid "Requires setype, serange or seuser"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1794 ../semanage/seobject.py:1880
+-#, python-format
+-msgid "File context for %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1800
+-#, python-format
+-msgid "Could not query file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1826
+-#, python-format
+-msgid "Could not modify file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1839
+-msgid "Could not list the file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1853
+-#, python-format
+-msgid "Could not delete the file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1878
+-#, python-format
+-msgid "File context for %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1884
+-#, python-format
+-msgid "Could not delete file context for %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1899
+-msgid "Could not list file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1903
+-msgid "Could not list local file contexts"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "SELinux fcontext"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1936
+-msgid "type"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1949
+-msgid ""
+-"\n"
+-"SELinux Distribution fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1954
+-msgid ""
+-"\n"
+-"SELinux Local fcontext Equivalence \n"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1988 ../semanage/seobject.py:2040
+-#: ../semanage/seobject.py:2046
+-#, python-format
+-msgid "Could not check if boolean %s is defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1990 ../semanage/seobject.py:2042
+-#, python-format
+-msgid "Boolean %s is not defined"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1994
+-#, python-format
+-msgid "Could not query file context %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:1999
+-#, python-format
+-msgid "You must specify one of the following values: %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2004
+-#, python-format
+-msgid "Could not set active value of boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2007
+-#, python-format
+-msgid "Could not modify boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2025
+-#, python-format
+-msgid "Bad format %s: Record %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2048
+-#, python-format
+-msgid "Boolean %s is defined in policy, cannot be deleted"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2052
+-#, python-format
+-msgid "Could not delete boolean %s"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2064 ../semanage/seobject.py:2081
+-msgid "Could not list booleans"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2104
+-msgid "unknown"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "off"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2117
+-msgid "on"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "SELinux boolean"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "State"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Default"
+-msgstr ""
+-
+-#: ../semanage/seobject.py:2131
+-msgid "Description"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:201
+-#, c-format
+-msgid "failed to set PAM_TTY\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:290
+-#, c-format
+-msgid "newrole: service name configuration hashtable overflow\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:300
+-#, c-format
+-msgid "newrole:  %s:  error on line %lu.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:439
+-#, c-format
+-msgid "cannot find valid entry in the passwd file.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:450
+-#, c-format
+-msgid "Out of memory!\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:455
+-#, c-format
+-msgid "Error!  Shell is not valid.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:512
+-#, c-format
+-msgid "Unable to clear environment\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:556 ../newrole/newrole.c:587 ../newrole/newrole.c:617
+-#, c-format
+-msgid "Error changing uid, aborting.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:612
+-#, c-format
+-msgid "Error resetting KEEPCAPS, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:635
+-#, c-format
+-msgid "Error connecting to audit system.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:641
+-#, c-format
+-msgid "Error allocating memory.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:648
+-#, c-format
+-msgid "Error sending audit message.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:692 ../newrole/newrole.c:1059
+-#, c-format
+-msgid "Could not determine enforcing mode.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:699
+-#, c-format
+-msgid "Error!  Could not open %s.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:705
+-#, c-format
+-msgid "%s!  Could not get current context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:715
+-#, c-format
+-msgid "%s!  Could not get new context for %s, not relabeling tty.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:725
+-#, c-format
+-msgid "%s!  Could not set new context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:772
+-#, c-format
+-msgid "%s changed labels.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:778
+-#, c-format
+-msgid "Warning! Could not restore context for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:835
+-#, c-format
+-msgid "Error: multiple roles specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:843
+-#, c-format
+-msgid "Error: multiple types specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:850
+-#, c-format
+-msgid "Sorry, -l may be used with SELinux MLS support.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:855
+-#, c-format
+-msgid "Error: multiple levels specified\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:865
+-#, c-format
+-msgid "Error: you are not allowed to change levels on a non secure terminal \n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:891
+-#, c-format
+-msgid "Couldn't get default type.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:901
+-#, c-format
+-msgid "failed to get new context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:908
+-#, c-format
+-msgid "failed to set new role %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:915
+-#, c-format
+-msgid "failed to set new type %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:925
+-#, c-format
+-msgid "failed to build new range with level %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:930
+-#, c-format
+-msgid "failed to set new range %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:938
+-#, c-format
+-msgid "failed to convert new context to string\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:943
+-#, c-format
+-msgid "%s is not a valid context\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:950
+-#, c-format
+-msgid "Unable to allocate memory for new_context"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:976
+-#, c-format
+-msgid "Unable to obtain empty signal set\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:984
+-#, c-format
+-msgid "Unable to set SIGHUP handler\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1053
+-#, c-format
+-msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1070
+-#, c-format
+-msgid "failed to get old_context.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1077
+-#, c-format
+-msgid "Warning!  Could not retrieve tty information.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1098
+-#, c-format
+-msgid "error on reading PAM service configuration.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1133
+-#, c-format
+-msgid "newrole: incorrect password for %s\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1160
+-#, c-format
+-msgid "newrole: failure forking: %s"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1163 ../newrole/newrole.c:1186
+-#, c-format
+-msgid "Unable to restore tty label...\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1165 ../newrole/newrole.c:1192
+-#, c-format
+-msgid "Failed to close tty properly\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1224
+-#, c-format
+-msgid "Could not close descriptors.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1251
+-#, c-format
+-msgid "Error allocating shell's argv0.\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1287
+-#, c-format
+-msgid "Unable to restore the environment, aborting\n"
+-msgstr ""
+-
+-#: ../newrole/newrole.c:1298
+-msgid "failed to exec shell\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:22
+-#, c-format
+-msgid "usage:  %s [-qi]\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:71
+-#, c-format
+-msgid "%s:  Policy is already loaded and initial load requested\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:80
+-#, c-format
+-msgid "%s:  Can't load policy and enforcing mode requested:  %s\n"
+-msgstr ""
+-
+-#: ../load_policy/load_policy.c:90
+-#, c-format
+-msgid "%s:  Can't load policy:  %s\n"
+-msgstr ""
+-
+-#: ../scripts/chcat:92 ../scripts/chcat:169
+-msgid "Requires at least one category"
+-msgstr ""
+-
+-#: ../scripts/chcat:106 ../scripts/chcat:183
+-#, c-format
+-msgid "Can not modify sensitivity levels using '+' on %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:110
+-#, c-format
+-msgid "%s is already in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:188 ../scripts/chcat:198
+-#, c-format
+-msgid "%s is not in %s"
+-msgstr ""
+-
+-#: ../scripts/chcat:267 ../scripts/chcat:272
+-msgid "Can not combine +/- with other types of categories"
+-msgstr ""
+-
+-#: ../scripts/chcat:319
+-msgid "Can not have multiple sensitivities"
+-msgstr ""
+-
+-#: ../scripts/chcat:325
+-#, c-format
+-msgid "Usage %s CATEGORY File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:326
+-#, c-format
+-msgid "Usage %s -l CATEGORY user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:327
+-#, c-format
+-msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:328
+-#, c-format
+-msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:329
+-#, c-format
+-msgid "Usage %s -d File ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:330
+-#, c-format
+-msgid "Usage %s -l -d user ..."
+-msgstr ""
+-
+-#: ../scripts/chcat:331
+-#, c-format
+-msgid "Usage %s -L"
+-msgstr ""
+-
+-#: ../scripts/chcat:332
+-#, c-format
+-msgid "Usage %s -L -l user"
+-msgstr ""
+-
+-#: ../scripts/chcat:333
+-msgid "Use -- to end option list.  For example"
+-msgstr ""
+-
+-#: ../scripts/chcat:334
+-msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
+-msgstr ""
+-
+-#: ../scripts/chcat:335
+-msgid "chcat -l +CompanyConfidential juser"
+-msgstr ""
+-
+-#: ../scripts/chcat:399
+-#, c-format
+-msgid "Options Error %s "
+-msgstr ""
+diff --git a/policycoreutils/restorecond/restorecond.8 b/policycoreutils/restorecond/restorecond.8
+index 4622d2b..bf8ec87 100644
+--- a/policycoreutils/restorecond/restorecond.8
++++ b/policycoreutils/restorecond/restorecond.8
+@@ -3,7 +3,7 @@
+ restorecond \- daemon that watches for file creation and then sets the default SELinux file context
+ .SH "SYNOPSIS"
+-.B restorecond  [\-d] [\-f restorecond_file ] [\-u] [\-v]
++.B restorecond  [\-d] [-h] [\-f restorecond_file ] [\-u] [\-v]
+ .P
+ .SH "DESCRIPTION"
+@@ -20,6 +20,9 @@ the correct file context associated with the policy.
+ Turns on debugging mode.   Application will stay in the foreground and lots of
+ debugs messages start printing.
+ .TP
++. B \-h
++Print usage statement.
++.TP
+ .B \-f restorecond_file
+ Use alternative restorecond.conf file.
+ .TP
+diff --git a/policycoreutils/restorecond/restorecond.c b/policycoreutils/restorecond/restorecond.c
+index 89f5d97..1762850 100644
+--- a/policycoreutils/restorecond/restorecond.c
++++ b/policycoreutils/restorecond/restorecond.c
+@@ -121,7 +121,6 @@ static void term_handler()
+ static void usage(char *program)
+ {
+       printf("%s [-d] [-f restorecond_file ] [-u] [-v] \n", program);
+-      exit(0);
+ }
+ void exitApp(const char *msg)
+@@ -140,6 +139,7 @@ int main(int argc, char **argv)
+ {
+       int opt;
+       struct sigaction sa;
++      const char *null_array[1] = { NULL };
+       memset(&r_opts, 0, sizeof(r_opts));
+@@ -160,6 +160,7 @@ int main(int argc, char **argv)
+       r_opts.fts_flags = FTS_PHYSICAL;
+       r_opts.selabel_opt_validate = NULL;
+       r_opts.selabel_opt_path = NULL;
++      r_opts.selabel_opt_prefixes = null_array;
+       r_opts.ignore_enoent = 1;
+       restore_init(&r_opts);
+@@ -176,7 +177,7 @@ int main(int argc, char **argv)
+       exclude_non_seclabel_mounts();
+       atexit( done );
+-      while ((opt = getopt(argc, argv, "df:uv")) > 0) {
++      while ((opt = getopt(argc, argv, "hdf:uv")) > 0) {
+               switch (opt) {
+               case 'd':
+                       debug_mode = 1;
+@@ -187,11 +188,16 @@ int main(int argc, char **argv)
+               case 'u':
+                       run_as_user = 1;
+                       break;
++              case 'h':
++                      usage(argv[0]);
++                      exit(0);
++                      break;
+               case 'v':
+                       r_opts.verbose++;
+                       break;
+               case '?':
+                       usage(argv[0]);
++                      exit(-1);
+               }
+       }
+diff --git a/policycoreutils/restorecond/restorecond.desktop b/policycoreutils/restorecond/restorecond.desktop
+index 23ff89d..89201e1 100644
+--- a/policycoreutils/restorecond/restorecond.desktop
++++ b/policycoreutils/restorecond/restorecond.desktop
+@@ -5,3 +5,4 @@ Comment=Fix file context in owned by the user
+ Encoding=UTF-8
+ Type=Application
+ StartupNotify=false
++X-GNOME-Autostart-enabled=false
+diff --git a/policycoreutils/restorecond/user.c b/policycoreutils/restorecond/user.c
+index f6efc85..8bae001 100644
+--- a/policycoreutils/restorecond/user.c
++++ b/policycoreutils/restorecond/user.c
+@@ -214,8 +214,11 @@ static int local_server() {
+       if (flock(fd, LOCK_EX | LOCK_NB) < 0) {
+               if (debug_mode)
+                       perror("flock");
++              close(fd);
+               return -1;
+       }
++      close(fd);
++
+       /* watch for stdin/terminal going away */
+       GIOChannel *in = g_io_channel_unix_new(0);
+       g_io_add_watch_full( in,
+diff --git a/policycoreutils/run_init/run_init.c b/policycoreutils/run_init/run_init.c
+index 9db766c..92034be 100644
+--- a/policycoreutils/run_init/run_init.c
++++ b/policycoreutils/run_init/run_init.c
+@@ -406,6 +406,13 @@ int main(int argc, char *argv[])
+                       new_context);
+               exit(-1);
+       }
++      if (! access("/usr/sbin/open_init_pty", X_OK)) {
++              if (execvp(argv[1], argv + 1)) {
++                      perror("execvp");
++                      exit(-1);
++              }
++              return 0;
++      }
+       /*
+        * Do not execvp the command directly from run_init; since it would run
+        * under with a pty under sysadm_devpts_t. Instead, we call open_init_tty,
+diff --git a/policycoreutils/sandbox/sandbox.8 b/policycoreutils/sandbox/sandbox.8
+index 3f05c79..00d9b37 100644
+--- a/policycoreutils/sandbox/sandbox.8
++++ b/policycoreutils/sandbox/sandbox.8
+@@ -41,6 +41,19 @@ Create a Sandbox with temporary files for $HOME and /tmp.
+ .TP
+ \fB\-t type\fR
+ Use alternate sandbox type, defaults to sandbox_t or sandbox_x_t for -X.
++
++\fBExamples:\fR
++.br
++sandbox_t     -       No X, No Network Access, No Open, read/write on passed in file descriptors.
++.br
++sandbox_min_t -       No Network Access
++.br
++sandbox_x_t   -       Printer Ports
++.br
++sandbox_web_t -       Ports required for web browsing
++.br
++sandbox_net_t -       All network ports
++
+ .TP
+ \fB\-T\ tmpdir
+ Use alternate tempory directory to mount on /tmp.  Defaults to tmpfs. Requires -X or -M.
+diff --git a/policycoreutils/scripts/fixfiles b/policycoreutils/scripts/fixfiles
+index 9f6a949..779a6a1 100755
+--- a/policycoreutils/scripts/fixfiles
++++ b/policycoreutils/scripts/fixfiles
+@@ -121,7 +121,6 @@ LOGFILE=`tty`
+ if [ $? != 0 ]; then
+     LOGFILE="/dev/null"
+ fi
+-SYSLOGFLAG="-l"
+ LOGGER=/usr/sbin/logger
+ SETFILES=/sbin/setfiles
+ RESTORECON=/sbin/restorecon
+@@ -236,7 +235,7 @@ FC=$TEMPFCFILE
+ fi
+ if [  -n "${FILESYSTEMSRW}" ]; then
+     echo "Relabeling `echo ${FILESYSTEMSRW}`"
+-    ${SETFILES} -q ${SYSLOGFLAG} ${FORCEFLAG} $* ${FC} ${FILESYSTEMSRW} 2>&1 | cat >> $LOGFILE
++    ${SETFILES} -q ${FORCEFLAG} $* ${FC} ${FILESYSTEMSRW} 2>&1 | cat >> $LOGFILE
+ else
+     echo >&2 "fixfiles: No suitable file systems found"
+ fi
+diff --git a/policycoreutils/scripts/genhomedircon b/policycoreutils/scripts/genhomedircon
+index ab696a7..58b19cd 100644
+--- a/policycoreutils/scripts/genhomedircon
++++ b/policycoreutils/scripts/genhomedircon
+@@ -1,2 +1,3 @@
+ #!/bin/sh
++
+ /usr/sbin/semodule -Bn
+diff --git a/policycoreutils/semanage/default_encoding/Makefile b/policycoreutils/semanage/default_encoding/Makefile
+new file mode 100644
+index 0000000..e15a877
+--- /dev/null
++++ b/policycoreutils/semanage/default_encoding/Makefile
+@@ -0,0 +1,8 @@
++all:
++      LDFLAGS="" python setup.py build
++
++install: all
++      LDFLAGS="" python setup.py install --root=$(DESTDIR)/
++
++clean:
++      rm -rf build *~
+diff --git a/policycoreutils/semanage/default_encoding/default_encoding.c b/policycoreutils/semanage/default_encoding/default_encoding.c
+new file mode 100644
+index 0000000..023b8f4
+--- /dev/null
++++ b/policycoreutils/semanage/default_encoding/default_encoding.c
+@@ -0,0 +1,57 @@
++/*
++ * Authors:
++ *   John Dennis <jdennis@redhat.com>
++ *
++ * Copyright (C) 2009  Red Hat
++ * see file 'COPYING' for use and warranty information
++ *
++ * This program is free software; you can redistribute it and/or
++ * modify it under the terms of the GNU General Public License as
++ * published by the Free Software Foundation.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ * GNU General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the Free Software
++ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
++ */
++
++#include <Python.h>
++
++PyDoc_STRVAR(setdefaultencoding_doc,
++"setdefaultencoding(encoding='utf-8')\n\
++\n\
++Set the current default string encoding used by the Unicode implementation.\n\
++Defaults to utf-8."
++);
++
++static PyObject *
++setdefaultencoding(PyObject *self, PyObject *args, PyObject *kwds)
++{
++    static char *kwlist[] = {"utf-8", NULL};
++    char *encoding;
++
++    if (!PyArg_ParseTupleAndKeywords(args, kwds, "s:setdefaultencoding", kwlist, &encoding))
++        return NULL;
++
++    if (PyUnicode_SetDefaultEncoding(encoding))
++        return NULL;
++
++    Py_RETURN_NONE;
++}
++
++static PyMethodDef methods[] = {
++    {"setdefaultencoding", (PyCFunction)setdefaultencoding, METH_VARARGS|METH_KEYWORDS, setdefaultencoding_doc},
++      {NULL,          NULL}           /* sentinel */
++};
++
++
++PyMODINIT_FUNC
++initdefault_encoding_utf8(void)
++{
++    PyUnicode_SetDefaultEncoding("utf-8");
++    Py_InitModule3("default_encoding_utf8", methods, "Forces the default encoding to utf-8");
++}
+diff --git a/policycoreutils/semanage/default_encoding/policycoreutils/__init__.py b/policycoreutils/semanage/default_encoding/policycoreutils/__init__.py
+new file mode 100644
+index 0000000..ccb6b8b
+--- /dev/null
++++ b/policycoreutils/semanage/default_encoding/policycoreutils/__init__.py
+@@ -0,0 +1,17 @@
++#
++# Copyright (C) 2006,2007,2008, 2009 Red Hat, Inc.
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
++#
+diff --git a/policycoreutils/semanage/default_encoding/setup.py b/policycoreutils/semanage/default_encoding/setup.py
+new file mode 100644
+index 0000000..e2befdb
+--- /dev/null
++++ b/policycoreutils/semanage/default_encoding/setup.py
+@@ -0,0 +1,38 @@
++# Authors:
++#   John Dennis <jdennis@redhat.com>
++#
++# Copyright (C) 2009  Red Hat
++# see file 'COPYING' for use and warranty information
++#
++# This program is free software; you can redistribute it and/or
++# modify it under the terms of the GNU General Public License as
++# published by the Free Software Foundation.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
++
++from distutils.core import setup, Extension
++
++default_encoding_utf8 = Extension('policycoreutils.default_encoding_utf8', ['default_encoding.c'])
++
++setup(name             = 'policycoreutils-default-encoding',
++      version          = '0.1',
++      description      = 'Forces the default encoding in Python to be utf-8',
++      long_description = 'Forces the default encoding in Python to be utf-8',
++      author           = 'John Dennis',
++      author_email     = 'jdennis@redhat.com',
++      maintainer       = 'John Dennis',
++      maintainer_email = 'jdennis@redhat.com',
++      license          = 'GPLv3+',
++      platforms        = 'posix',
++      url              = '',
++      download_url     = '',
++      ext_modules      = [default_encoding_utf8],
++      packages=["policycoreutils"],
++)
+diff --git a/policycoreutils/semanage/semanage b/policycoreutils/semanage/semanage
+index 0c7c186..1986ab1 100644
+--- a/policycoreutils/semanage/semanage
++++ b/policycoreutils/semanage/semanage
+@@ -1,5 +1,5 @@
+ #! /usr/bin/python -Es
+-# Copyright (C) 2005, 2006, 2007 Red Hat 
++# Copyright (C) 2005-2012 Red Hat 
+ # see file 'COPYING' for use and warranty information
+ #
+ # semanage is a tool for managing SELinux configuration files
+@@ -20,6 +20,7 @@
+ #                                        02111-1307  USA
+ #
+ #  
++import policycoreutils.default_encoding_utf8
+ import sys, getopt, re
+ import seobject
+ import selinux
+@@ -32,7 +33,7 @@ gettext.textdomain(PROGNAME)
+ try:
+        gettext.install(PROGNAME,
+                        localedir="/usr/share/locale",
+-                       unicode=False,
++                       unicode=True,
+                        codeset = 'utf-8')
+ except IOError:
+        import __builtin__
+@@ -283,11 +284,9 @@ Object-specific Options (see above):
+                               equal = a
+                       if o == "--enable":
+-                              set_action(o)
+                               enable = True
+                       if o == "--disable":
+-                              set_action(o)
+                               disable = True
+                       if o == "-F"  or o == "--file":
+diff --git a/policycoreutils/semanage/semanage-bash-completion.sh b/policycoreutils/semanage/semanage-bash-completion.sh
+index ff1285a..edefd9a 100644
+--- a/policycoreutils/semanage/semanage-bash-completion.sh
++++ b/policycoreutils/semanage/semanage-bash-completion.sh
+@@ -61,7 +61,7 @@ __get_port_opts () { echo '$ALL_OPTS $MANAGED_OPTS -t -type -r --range -p --prot
+ __get_interface_opts () { echo '$ALL_OPTS $MANAGED_OPTS -t --type '; }
+ __get_node_opts () { echo '$ALL_OPTS $MANAGED_OPTS -t --type -M --mask -p --proto'; }
+ __get_fcontext_opts () { echo '$ALL_OPTS $MANAGED_OPTS -t --type -e --equal -f --ftype '; }
+-__get_module_opts () { echo '$ALL_OPTS --enable --disable '; }
++__get_module_opts () { echo '$ALL_OPTS $MANAGED_OPTS --enable --disable '; }
+ __get_dontaudit_opts () { echo '-S on off' ; }
+ __get_permissive_opts () { echo '$ALL_OPTS -a --add -d --delete' ; }
+diff --git a/policycoreutils/semanage/semanage.8 b/policycoreutils/semanage/semanage.8
+index c5e18d9..9e086d1 100644
+--- a/policycoreutils/semanage/semanage.8
++++ b/policycoreutils/semanage/semanage.8
+@@ -44,9 +44,13 @@ Manage network node type definitions
+ Manage file context mapping definitions
+ .br
+-.B semanage fcontext [\-S store] \-{a|d|m|l|D} [\-fnrst] file_spec
++.B semanage fcontext [\-S store] \-{l} [\-Cn]
+ .br
+-.B semanage fcontext [\-S store] \-{a|d|m|l|D} [\-n] \-e replacement target
++.B semanage fcontext [\-S store] \-D
++.br
++.B semanage fcontext [\-S store] \-{a|d|m} [\-frst] file_spec
++.br
++.B semanage fcontext [\-S store] \-{a|d|m} \-e replacement target
+ .br
+ Manage processes type enforcement mode
+@@ -128,7 +132,7 @@ List the OBJECTS
+ List only locally defined settings, not base policy settings.
+ .TP
+ .I                \-L, \-\-level
+-Default SELinux Level for SELinux use, s0 Default. (MLS/MCS Systems only)
++Default SELinux Level for SELinux user, s0 Default. (MLS/MCS Systems only)
+ .TP
+ .I                \-m, \-\-modify     
+ Modify a OBJECT record NAME
+@@ -144,6 +148,8 @@ Protocol for the specified port (tcp|udp) or internet protocol version for the s
+ .TP
+ .I                \-r, \-\-range      
+ MLS/MCS Security Range (MLS/MCS Systems only)
++SELinux Range for SELinux login mapping defaults to the SELinux user record range.
++SELinux Range for SELinux user defaults to s0.
+ .TP
+ .I                \-R, \-\-role
+ SELinux Roles.  You must enclose multiple roles within quotes, separate by spaces. Or specify \-R multiple times.
+diff --git a/policycoreutils/semanage/seobject.py b/policycoreutils/semanage/seobject.py
+index 9745102..28cf30e 100644
+--- a/policycoreutils/semanage/seobject.py
++++ b/policycoreutils/semanage/seobject.py
+@@ -30,11 +30,10 @@ from IPy import IP
+ import gettext
+ gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
+ gettext.textdomain(PROGNAME)
+-try:
+-       gettext.install(PROGNAME, localedir = "/usr/share/locale", unicode = 1)
+-except IOError:
+-       import __builtin__
+-       __builtin__.__dict__['_'] = unicode
++
++import gettext
++translation=gettext.translation(PROGNAME, localedir = "/usr/share/locale", fallback=True)
++_=translation.ugettext
+ import syslog
+@@ -483,7 +482,9 @@ class loginRecords(semanageRecords):
+               if rc < 0:
+                       raise ValueError(_("Could not check if login mapping for %s is defined") % name)
+               if exists:
+-                      raise ValueError(_("Login mapping for %s is already defined") % name)
++                       semanage_seuser_key_free(k)
++                       return self.__modify(name, sename, serange)
++
+                 if name[0] == '%':
+                        try:
+                               grp.getgrnam(name[1:])
+@@ -728,7 +729,8 @@ class seluserRecords(semanageRecords):
+                 if rc < 0:
+                        raise ValueError(_("Could not check if SELinux user %s is defined") % name)
+                 if exists:
+-                       raise ValueError(_("SELinux user %s is already defined") % name)
++                       semanage_user_key_free(k)
++                       return self.__modify(name, roles, selevel, serange, prefix)
+                 (rc, u) = semanage_user_create(self.sh)
+                 if rc < 0:
+@@ -1252,7 +1254,8 @@ class nodeRecords(semanageRecords):
+                (rc, exists) = semanage_node_exists(self.sh, k)
+                if exists:
+-                       raise ValueError(_("Addr %s already defined") % addr)
++                       semanage_node_key_free(k)
++                       return self.__modify(addr, mask, self.protocol[proto], serange, ctype)
+                (rc, node) = semanage_node_create(self.sh)
+                if rc < 0:
+@@ -1450,7 +1453,8 @@ class interfaceRecords(semanageRecords):
+               if rc < 0:
+                       raise ValueError(_("Could not check if interface %s is defined") % interface)
+               if exists:
+-                      raise ValueError(_("Interface %s already defined") % interface)
++                        semanage_iface_key_free(k)
++                        return self.__modify(interface, serange, ctype)
+               (rc, iface) = semanage_iface_create(self.sh)
+               if rc < 0:
+@@ -1733,7 +1737,8 @@ class fcontextRecords(semanageRecords):
+                               raise ValueError(_("Could not check if file context for %s is defined") % target)
+                 if exists:
+-                       raise ValueError(_("File context for %s already defined") % target)
++                       semanage_fcontext_key_free(k)
++                       return self.__modify(target, type, ftype, serange, seuser)
+               (rc, fcontext) = semanage_fcontext_create(self.sh)
+               if rc < 0:
+@@ -1920,6 +1925,10 @@ class fcontextRecords(semanageRecords):
+                for k in keys:
+                       if fcon_dict[k]:
+                              l.append("-a -f '%s' -t %s '%s'" % (k[1], fcon_dict[k][2], k[0]))
++
++             if len(self.equiv):
++                      for target in self.equiv.keys():
++                           l.append("-a -e %s %s" % (target, self.equiv[target]))
+                return l
+       def list(self, heading = 1, locallist = 0 ):
+diff --git a/policycoreutils/setfiles/restore.c b/policycoreutils/setfiles/restore.c
+index 9a7d315..1b59e2f 100644
+--- a/policycoreutils/setfiles/restore.c
++++ b/policycoreutils/setfiles/restore.c
+@@ -1,5 +1,6 @@
+ #include "restore.h"
+ #include <glob.h>
++#include <selinux/context.h>
+ #define SKIP -2
+ #define ERR -1
+@@ -33,7 +34,6 @@ struct edir {
+ static file_spec_t *fl_head;
+ static int filespec_add(ino_t ino, const security_context_t con, const char *file);
+-static int only_changed_user(const char *a, const char *b);
+ struct restore_opts *r_opts = NULL;
+ static void filespec_destroy(void);
+ static void filespec_eval(void);
+@@ -58,11 +58,16 @@ void remove_exclude(const char *directory)
+ void restore_init(struct restore_opts *opts)
+ {     
+       r_opts = opts;
+-      struct selinux_opt selinux_opts[] = {
+-              { SELABEL_OPT_VALIDATE, r_opts->selabel_opt_validate },
+-              { SELABEL_OPT_PATH, r_opts->selabel_opt_path }
+-      };
+-      r_opts->hnd = selabel_open(SELABEL_CTX_FILE, selinux_opts, 2);
++      struct selinux_opt selinux_opts[3];
++
++      selinux_opts[0].type = SELABEL_OPT_VALIDATE;
++      selinux_opts[0].value = r_opts->selabel_opt_validate;
++      selinux_opts[1].type = SELABEL_OPT_PATH;
++      selinux_opts[1].value = r_opts->selabel_opt_path;
++      selinux_opts[2].type = SELABEL_OPT_PREFIXES;
++      selinux_opts[2].values = r_opts->selabel_opt_prefixes;
++
++      r_opts->hnd = selabel_open(SELABEL_CTX_FILE, selinux_opts, 3);
+       if (!r_opts->hnd) {
+               perror(r_opts->selabel_opt_path);
+               exit(1);
+@@ -104,8 +109,7 @@ static int restore(FTSENT *ftsent)
+ {
+       char *my_file = strdupa(ftsent->fts_path);
+       int ret = -1;
+-      char *context, *newcon;
+-      int user_only_changed = 0;
++      security_context_t curcon = NULL, newcon = NULL;
+       if (match(my_file, ftsent->fts_statp, &newcon) < 0)
+               /* Check for no matching specification. */
+@@ -114,7 +118,12 @@ static int restore(FTSENT *ftsent)
+       if (r_opts->progress) {
+               r_opts->count++;
+               if (r_opts->count % STAR_COUNT == 0) {
+-                      fprintf(stdout, "*");
++                      if (r_opts->progress == 1) {
++                              fprintf(stdout, "*");
++                      } else {
++                              int progress = 100.0 * r_opts->count / r_opts->nfile;
++                              fprintf(stdout, "\r%d%%", progress);
++                      }
+                       fflush(stdout);
+               }
+       }
+@@ -139,74 +148,105 @@ static int restore(FTSENT *ftsent)
+               printf("%s:  %s matched by %s\n", r_opts->progname, my_file, newcon);
+       }
++      /*
++       * Do not relabel if their is no default specification for this file
++       */
++
++      if (strcmp(newcon, "<<none>>") == 0) {
++              goto out;
++      }
++
+       /* Get the current context of the file. */
+-      ret = lgetfilecon_raw(ftsent->fts_accpath, &context);
++      ret = lgetfilecon_raw(ftsent->fts_accpath, &curcon);
+       if (ret < 0) {
+               if (errno == ENODATA) {
+-                      context = NULL;
++                      curcon = NULL;
+               } else {
+                       fprintf(stderr, "%s get context on %s failed: '%s'\n",
+                               r_opts->progname, my_file, strerror(errno));
+                       goto err;
+               }
+-              user_only_changed = 0;
+-      } else
+-              user_only_changed = only_changed_user(context, newcon);
++      }
++
+       /* lgetfilecon returns number of characters and ret needs to be reset
+        * to 0.
+        */
+       ret = 0;
+       /*
+-       * Do not relabel the file if the matching specification is 
+-       * <<none>> or the file is already labeled according to the 
+-       * specification.
++       * Do not relabel the file if the file is already labeled according to
++       * the specification.
+        */
+-      if ((strcmp(newcon, "<<none>>") == 0) ||
+-          (context && (strcmp(context, newcon) == 0))) {
+-              freecon(context);
++      if (curcon && (strcmp(curcon, newcon) == 0)) {
+               goto out;
+       }
+-      if (!r_opts->force && context && (is_context_customizable(context) > 0)) {
++      if (!r_opts->force && curcon && (is_context_customizable(curcon) > 0)) {
+               if (r_opts->verbose > 1) {
+                       fprintf(stderr,
+                               "%s: %s not reset customized by admin to %s\n",
+-                              r_opts->progname, my_file, context);
++                              r_opts->progname, my_file, curcon);
+               }
+-              freecon(context);
+               goto out;
+       }
+-      if (r_opts->verbose) {
+-              /* If we're just doing "-v", trim out any relabels where
+-               * the user has r_opts->changed but the role and type are the
+-               * same.  For "-vv", emit everything. */
+-              if (r_opts->verbose > 1 || !user_only_changed) {
+-                      printf("%s reset %s context %s->%s\n",
+-                             r_opts->progname, my_file, context ?: "", newcon);
++      /*
++       *  Do not change label unless this is a force or the type is different
++       */
++      if (!r_opts->force && curcon) {
++              int types_differ = 0;
++              context_t cona;
++              context_t conb;
++              int err = 0;
++              cona = context_new(curcon);
++              if (! cona) {
++                      goto out;
++              }
++              conb = context_new(newcon);
++              if (! conb) {
++                      context_free(cona);
++                      goto out;
++              }
++
++              types_differ = strcmp(context_type_get(cona), context_type_get(conb));
++              if (types_differ) {
++                      err |= context_user_set(conb, context_user_get(cona));
++                      err |= context_role_set(conb, context_role_get(cona));
++                      err |= context_range_set(conb, context_range_get(cona));
++                      if (!err) {
++                              freecon(newcon);
++                              newcon = strdup(context_str(conb));
++                      }
++              }
++              context_free(cona);
++              context_free(conb);
++
++              if (!types_differ || err) {
++                      goto out;
+               }
+       }
+-      if (r_opts->logging && !user_only_changed) {
+-              if (context)
++      if (r_opts->verbose) {
++              printf("%s reset %s context %s->%s\n",
++                     r_opts->progname, my_file, curcon ?: "", newcon);
++      }
++
++      if (r_opts->logging && r_opts->change) {
++              if (curcon)
+                       syslog(LOG_INFO, "relabeling %s from %s to %s\n",
+-                             my_file, context, newcon);
++                             my_file, curcon, newcon);
+               else
+                       syslog(LOG_INFO, "labeling %s to %s\n",
+                              my_file, newcon);
+       }
+-      if (r_opts->outfile && !user_only_changed)
++      if (r_opts->outfile)
+               fprintf(r_opts->outfile, "%s\n", my_file);
+-      if (context)
+-              freecon(context);
+-
+       /*
+        * Do not relabel the file if -n was used.
+        */
+-      if (!r_opts->change || user_only_changed)
++      if (!r_opts->change)
+               goto out;
+       /*
+@@ -218,14 +258,17 @@ static int restore(FTSENT *ftsent)
+                       r_opts->progname, my_file, newcon, strerror(errno));
+               goto skip;
+       }
+-      ret = 1;
++      ret = 0;
+ out:
++      freecon(curcon);
+       freecon(newcon);
+       return ret;
+ skip:
++      freecon(curcon);
+       freecon(newcon);
+       return SKIP;
+ err:
++      freecon(curcon);
+       freecon(newcon);
+       return ERR;
+ }
+@@ -250,6 +293,44 @@ static int apply_spec(FTSENT *ftsent)
+       return rc;
+ }
++static unsigned round_up(unsigned x, unsigned m)
++{
++      return m * ((-1 + m + x) / m);
++}
++
++static unsigned int *bitmap_alloc(unsigned nbits)
++{
++      unsigned const w_bitmap = round_up(nbits, 8*sizeof(int)) /
++              (8*sizeof(int));
++      return calloc(w_bitmap, sizeof(int));
++}
++
++static void bitmap_free(unsigned int *bmap)
++{
++      free(bmap);
++}
++
++#define LG_BPW  ((4==sizeof(int)) \
++              ? 5 \
++              : ((8==sizeof(int)) \
++                ? 6 \
++                : 31 ))
++
++static unsigned int bitmap_test(unsigned int *const map, unsigned bit)
++{
++      return
++      map[bit>>LG_BPW] &  (1u<<((-1+ (8*sizeof(int))) & bit));
++}
++
++static unsigned int bitmap_set(unsigned int *const map, unsigned bit)
++{
++      unsigned int old = bitmap_test(map, bit);
++      map[bit>>LG_BPW] |= (1u<<((-1+ (8*sizeof(int))) & bit));
++      return old;
++}
++
++#include <sys/statvfs.h>
++
+ static int process_one(char *name, int recurse_this_path)
+ {
+       int rc = 0;
+@@ -284,6 +365,14 @@ static int process_one(char *name, int recurse_this_path)
+       /* Keep the inode of the first one. */
+       dev_num = ftsent->fts_statp->st_dev;
++      unsigned int *i_bitmap = 0;
++      struct statvfs statvfs_buf;
++      memset(&statvfs_buf, 0, sizeof(statvfs_buf));
++      if (!statvfs(name, &statvfs_buf)) {
++              r_opts->nfile = statvfs_buf.f_files - statvfs_buf.f_ffree;
++              i_bitmap = bitmap_alloc(statvfs_buf.f_files);
++      }
++
+       do {
+               rc = 0;
+               /* Skip the post order nodes. */
+@@ -299,6 +388,21 @@ static int process_one(char *name, int recurse_this_path)
+                               continue;
+                       }
+               }
++              /* FTS_SEEDOT is not set, so fts_read() ignores "." and "..".
++               * Thus the hardlinks for a directory should be ignored.
++               */
++              if (ftsent->fts_info != FTS_D
++              &&  1 < ftsent->fts_statp->st_nlink) {
++                      /* Adjust for hardlinks. */
++                      ino_t const inum = ftsent->fts_statp->st_ino;
++                      if (inum < statvfs_buf.f_files  /* paranoia? */
++                      &&  !bitmap_test(i_bitmap, inum)) {
++                              /* First time for this .st_ino */
++                              bitmap_set(i_bitmap, inum);
++                              r_opts->nfile += -1+
++                                      ftsent->fts_statp->st_nlink;
++                      }
++              }
+               rc = apply_spec(ftsent);
+               if (rc == SKIP)
+                       fts_set(fts_handle, ftsent, FTS_SKIP);
+@@ -314,6 +418,7 @@ out:
+                       filespec_eval();
+               filespec_destroy();
+       }
++      bitmap_free(i_bitmap);
+       if (fts_handle)
+               fts_close(fts_handle);
+       return rc;
+@@ -341,7 +446,9 @@ int process_glob(char *name, int recurse) {
+                       continue;
+               if (len > 0 && strcmp(&globbuf.gl_pathv[i][len], "/..") == 0)
+                       continue;
+-              errors |= process_one_realpath(globbuf.gl_pathv[i], recurse);
++              int rc = process_one_realpath(globbuf.gl_pathv[i], recurse);
++              if (rc < 0)
++                      errors = rc;
+       }
+       globfree(&globbuf);
+       return errors;
+@@ -447,22 +554,6 @@ int add_exclude(const char *directory)
+       return 0;
+ }
+-/* Compare two contexts to see if their differences are "significant",
+- * or whether the only difference is in the user. */
+-static int only_changed_user(const char *a, const char *b)
+-{
+-      char *rest_a, *rest_b;  /* Rest of the context after the user */
+-      if (r_opts->force)
+-              return 0;
+-      if (!a || !b)
+-              return 0;
+-      rest_a = strchr(a, ':');
+-      rest_b = strchr(b, ':');
+-      if (!rest_a || !rest_b)
+-              return 0;
+-      return (strcmp(rest_a, rest_b) == 0);
+-}
+-
+ /*
+  * Evaluate the association hash table distribution.
+  */
+diff --git a/policycoreutils/setfiles/restore.h b/policycoreutils/setfiles/restore.h
+index ac27222..1a3da73 100644
+--- a/policycoreutils/setfiles/restore.h
++++ b/policycoreutils/setfiles/restore.h
+@@ -14,6 +14,7 @@
+ #include <selinux/label.h>
+ #include <stdlib.h>
+ #include <limits.h>
++#include <stdint.h>
+ #define STAR_COUNT 1000
+@@ -21,7 +22,8 @@
+ struct restore_opts {
+       int add_assoc; /* Track inode associations for conflict detection. */
+       int progress;
+-      unsigned long long count;
++      uint64_t count;  /* Number of files processed so far */
++      uint64_t nfile;  /* Estimated total number of files */
+       int debug;
+       int change;
+       int hard_links;
+@@ -40,6 +42,7 @@ struct restore_opts {
+       int fts_flags; /* Flags to fts, e.g. follow links, follow mounts */
+       const char *selabel_opt_validate;
+       const char *selabel_opt_path;
++      const char **selabel_opt_prefixes;
+ };
+ void restore_init(struct restore_opts *opts);
+diff --git a/policycoreutils/setfiles/restorecon.8 b/policycoreutils/setfiles/restorecon.8
+index c8ea4bb..65a59de 100644
+--- a/policycoreutils/setfiles/restorecon.8
++++ b/policycoreutils/setfiles/restorecon.8
+@@ -4,22 +4,27 @@ restorecon \- restore file(s) default SELinux security contexts.
+ .SH "SYNOPSIS"
+ .B restorecon
+-.I [\-o outfilename ] [\-R] [\-n] [\-p] [\-v] [\-e directory ] pathname...
++.I [\-o outfilename ] [\-R] [\-n] [\-p] [\-v] [\-e directory ] [\-L labelprefix ] pathname...
+ .P
+ .B restorecon
+-.I \-f infilename [\-o outfilename ] [\-e directory ] [\-R] [\-n] [\-p] [\-v] [\-F]
++.I \-f infilename [\-o outfilename ] [\-e directory ] [\-L labelprefix ] [\-R] [\-n] [\-p] [\-v] [\-F]
+ .SH "DESCRIPTION"
+ This manual page describes the
+ .BR restorecon
+ program.
+ .P
+-This program is primarily used to set the security context
++This program is primarily used to reset the security context (type)
+ (extended attributes) on one or more files. 
+ .P
+ It can be run at any time to correct errors, to add support for
+ new policy, or with the \-n option it can just check whether the file
+ contexts are all as you expect.
++.P
++If a file object does not have a context, restorecon will write the default
++context to the file object's extended attributes. If a file object has a
++context, restorecon will only modify the type portion of the security context.
++The -F option will force a replacement of the entire context.
+ .SH "OPTIONS"
+ .TP 
+@@ -32,6 +37,12 @@ infilename contains a list of files to be processed by application. Use \- for s
+ .B \-e directory
+ directory to exclude (repeat option for more than one directory.)
+ .TP 
++.B \-L labelprefix
++Tells selinux to only use the file context that match this prefix for labeling,  -L can be called multiple times.  Can speed up labeling if you are only doing one directory.
++
++# restorecon -R -v -L /dev /dev
++
++.TP
+ .B \-R \-r
+ change files and directories file labels recursively
+ .TP 
+@@ -47,11 +58,8 @@ show progress by printing * every 1000 files.
+ .B \-v
+ show changes in file labels.
+ .TP 
+-.B \-vv
+-show changes in file labels, if type, role, or user are changing.
+-.TP 
+ .B \-F
+-Force reset of context to match file_context for customizable files, or the user section, if it has changed. 
++Force reset of context to match file_context for customizable files, and the default file context, changing the user, role, range portion as well as the type.
+ .TP 
+ .SH "ARGUMENTS"
+ .B pathname...
+diff --git a/policycoreutils/setfiles/setfiles.8 b/policycoreutils/setfiles/setfiles.8
+index 7f700ca..2741919 100644
+--- a/policycoreutils/setfiles/setfiles.8
++++ b/policycoreutils/setfiles/setfiles.8
+@@ -4,7 +4,7 @@ setfiles \- set file SELinux security contexts.
+ .SH "SYNOPSIS"
+ .B setfiles
+-.I [\-c policy ] [\-d] [\-l] [\-n] [\-e directory ] [\-o filename ] [\-q] [\-s] [\-v] [\-vv] [\-W] [\-F] spec_file pathname...
++.I [\-c policy ] [\-d] [\-l] [\-n] [\-e directory ] [\-o filename ] [\-L labelprefix ] [\-q] [\-s] [\-v] [\-W] [\-F] spec_file pathname...
+ .SH "DESCRIPTION"
+ This manual page describes the
+ .BR setfiles
+@@ -17,6 +17,11 @@ program is initially run as part of the SE Linux installation process.
+ It can also be run at any time to correct errors, to add support for
+ new policy, or with the \-n option it can just check whether the file
+ contexts are all as you expect.
++.P
++If a file object does not have a context, setfiles will write the default
++context to the file object's extended attributes. If a file object has a
++context, setfiles will only modify the type portion of the security context.
++The -F option will force a replacement of the entire context.
+ .SH "OPTIONS"
+ .TP 
+@@ -45,8 +50,11 @@ use an alternate root path
+ directory to exclude (repeat option for more than one directory.)
+ .TP 
+ .B \-F
+-Force reset of context to match file_context for customizable files
++Force reset of context to match file_context for customizable files, and the default file context, changing the user, role, range portion as well as the type.
+ .TP 
++.B \-L labelprefix
++Tells selinux to only use the file context that match this prefix for labeling,  -L can be called multiple times.  Can speed up labeling if you are only doing one directory.
++.TP
+ .B \-o filename
+ save list of files with incorrect context in filename.
+ .TP 
+@@ -55,10 +63,7 @@ take a list of files from standard input instead of using a pathname on the
+ command line.
+ .TP
+ .B \-v
+-show changes in file labels, if type or role are changing.
+-.TP 
+-.B \-vv
+-show changes in file labels, if type, role, or user are changing.
++show changes in file labels.
+ .TP 
+ .B \-W
+ display warnings about entries that had no matching files.
+diff --git a/policycoreutils/setfiles/setfiles.c b/policycoreutils/setfiles/setfiles.c
+index fa0cd6a..f64ee16 100644
+--- a/policycoreutils/setfiles/setfiles.c
++++ b/policycoreutils/setfiles/setfiles.c
+@@ -39,7 +39,7 @@ void usage(const char *const name)
+ {
+       if (iamrestorecon) {
+               fprintf(stderr,
+-                      "usage:  %s [-iFnprRv0] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
++                      "usage:  %s [-iFnprRv0] [ -L labelprefix ] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
+                       name);
+       } else {
+               fprintf(stderr,
+@@ -137,7 +137,7 @@ static void maybe_audit_mass_relabel(int mass_relabel, int mass_relabel_errs)
+ int main(int argc, char **argv)
+ {
+       struct stat sb;
+-      int opt, i = 0;
++      int opt, i;
+       char *input_filename = NULL;
+       int use_input_file = 0;
+       char *buf = NULL;
+@@ -145,12 +145,15 @@ int main(int argc, char **argv)
+       int recurse; /* Recursive descent. */
+       char *base;
+       int mass_relabel = 0, errors = 0;
++      int num_prefixes = 0;
++      const char *null_array[1] = { NULL };
+       
+       memset(&r_opts, 0, sizeof(r_opts));
+       /* Initialize variables */
+       r_opts.progress = 0;
+       r_opts.count = 0;
++      r_opts.nfile = 0;
+       r_opts.debug = 0;
+       r_opts.change = 1;
+       r_opts.verbose = 0;
+@@ -160,6 +163,7 @@ int main(int argc, char **argv)
+       r_opts.outfile = NULL;
+       r_opts.force = 0;
+       r_opts.hard_links = 1;
++      r_opts.selabel_opt_prefixes = null_array;
+       altpath = NULL;
+@@ -217,7 +221,7 @@ int main(int argc, char **argv)
+       exclude_non_seclabel_mounts();
+       /* Process any options. */
+-      while ((opt = getopt(argc, argv, "c:de:f:ilnpqrsvo:FRW0")) > 0) {
++      while ((opt = getopt(argc, argv, "c:de:f:ilnpqrsvo:FL:RW0")) > 0) {
+               switch (opt) {
+               case 'c':
+                       {
+@@ -280,6 +284,35 @@ int main(int argc, char **argv)
+               case 'n':
+                       r_opts.change = 0;
+                       break;
++              case 'L':
++              {
++                      char **new_prefixes;
++
++                      /* we need 1 for this entry and 1 for the NULL entry */
++                      new_prefixes = malloc(sizeof(*new_prefixes) * (num_prefixes + 2));
++                      if (!new_prefixes) {
++                              fprintf(stderr, "Can't allocate memory for labeling prefix %s:%s\n",
++                              optarg, strerror(errno));
++                              exit(1);
++                      }
++
++                      memcpy(new_prefixes, r_opts.selabel_opt_prefixes, sizeof(*new_prefixes) * num_prefixes);
++                      new_prefixes[num_prefixes] = strdup(optarg);
++                      if (!new_prefixes[num_prefixes]) {
++                              fprintf(stderr, "Can't allocate memory for labeling prefix %s:%s\n",
++                              optarg, strerror(errno));
++                              exit(1);
++                      }
++
++                      new_prefixes[num_prefixes + 1] = NULL;
++                      num_prefixes++;
++
++                      if (r_opts.selabel_opt_prefixes != null_array)
++                              free(r_opts.selabel_opt_prefixes);
++
++                      r_opts.selabel_opt_prefixes = (const char **)new_prefixes;
++                      break;
++              }
+               case 'o':
+                       if (strcmp(optarg, "-") == 0) {
+                               r_opts.outfile = stdout;
+@@ -336,7 +369,7 @@ int main(int argc, char **argv)
+                                       "Progress and Verbose mutually exclusive\n");
+                               usage(argv[0]);
+                       }
+-                      r_opts.progress = 1;
++                      r_opts.progress++;
+                       break;
+               case 'W':
+                       warn_no_match = 1;
+@@ -349,6 +382,14 @@ int main(int argc, char **argv)
+               }
+       }
++      for (i = optind; i < argc; i++) {
++              if (!strcmp(argv[i], "/")) {
++                      mass_relabel = 1;
++                      if (r_opts.progress)
++                              r_opts.progress++;
++              }
++      }
++
+       if (!iamrestorecon) {
+               if (policyfile) {
+                       if (optind != (argc - 1))
+@@ -409,16 +450,13 @@ int main(int argc, char **argv)
+                       buf[len - 1] = 0;
+                       if (!strcmp(buf, "/"))
+                               mass_relabel = 1;
+-                      errors |= process_glob(buf, recurse);
++                      errors |= process_glob(buf, recurse) < 0;
+               }
+               if (strcmp(input_filename, "-") != 0)
+                       fclose(f);
+       } else {
+               for (i = optind; i < argc; i++) {
+-                      if (!strcmp(argv[i], "/"))
+-                              mass_relabel = 1;
+-
+-                      errors |= process_glob(argv[i], recurse);
++                      errors |= process_glob(argv[i], recurse) < 0;
+               }
+       }
+       
+@@ -433,7 +471,15 @@ int main(int argc, char **argv)
+       if (r_opts.outfile)
+               fclose(r_opts.outfile);
+-       if (r_opts.progress && r_opts.count >= STAR_COUNT)
+-               printf("\n");
++      if (r_opts.progress && r_opts.count >= STAR_COUNT)
++              printf("\n");
++
++      free(r_opts.progname);
++      i = 0;
++      while (r_opts.selabel_opt_prefixes[i])
++              free((void *)r_opts.selabel_opt_prefixes[i++]);
++      if (r_opts.selabel_opt_prefixes != null_array)
++              free(r_opts.selabel_opt_prefixes);
++      free(r_opts.rootpath);
+       exit(errors);
+ }
diff --git a/policycoreutils/patches/policycoreutils-sepolgen.patch b/policycoreutils/patches/policycoreutils-sepolgen.patch
deleted file mode 100644 (file)
index 767ca24..0000000
+++ /dev/null
@@ -1,191 +0,0 @@
-diff --git a/src/sepolgen/audit.py b/src/sepolgen/audit.py
-index 898fbc3..9fdfafa 100644
---- a/src/sepolgen/audit.py
-+++ b/src/sepolgen/audit.py
-@@ -127,6 +127,9 @@ class PathMessage(AuditMessage):
-             if fields[0] == "path":
-                 self.path = fields[1][1:-1]
-                 return
-+import selinux.audit2why as audit2why
-+
-+avcdict = {}
- class AVCMessage(AuditMessage):
-     """AVC message representing an access denial or granted message.
-@@ -168,6 +171,8 @@ class AVCMessage(AuditMessage):
-         self.name = ""
-         self.accesses = []
-         self.denial = True
-+        self.type = audit2why.TERULE
-+        self.bools = []
-     def __parse_access(self, recs, start):
-         # This is kind of sucky - the access that is in a space separated
-@@ -229,7 +234,31 @@ class AVCMessage(AuditMessage):
-         if not found_src or not found_tgt or not found_class or not found_access:
-             raise ValueError("AVC message in invalid format [%s]\n" % self.message)
--                
-+        self.analyze()
-+
-+    def analyze(self):
-+        tcontext = self.tcontext.to_string()
-+        scontext = self.scontext.to_string()
-+        access_tuple = tuple( self.accesses)
-+        if (scontext, tcontext, self.tclass, access_tuple) in avcdict.keys():
-+            self.type, self.bools = avcdict[(scontext, tcontext, self.tclass, access_tuple)]
-+        else:
-+            self.type, self.bools = audit2why.analyze(scontext, tcontext, self.tclass, self.accesses);
-+            if self.type == audit2why.NOPOLICY:
-+                self.type = audit2why.TERULE
-+            if self.type == audit2why.BADTCON:
-+                raise ValueError("Invalid Target Context %s\n" % tcontext)
-+            if self.type == audit2why.BADSCON:
-+                raise ValueError("Invalid Source Context %s\n" % scontext)
-+            if self.type == audit2why.BADSCON:
-+                raise ValueError("Invalid Type Class %s\n" % self.tclass)
-+            if self.type == audit2why.BADPERM:
-+                raise ValueError("Invalid permission %s\n" % " ".join(self.accesses))
-+            if self.type == audit2why.BADCOMPUTE:
-+                raise ValueError("Error during access vector computation")
-+
-+            avcdict[(scontext, tcontext, self.tclass, access_tuple)] = (self.type, self.bools)
-+
- class PolicyLoadMessage(AuditMessage):
-     """Audit message indicating that the policy was reloaded."""
-     def __init__(self, message):
-@@ -472,10 +501,10 @@ class AuditParser:
-             if avc_filter:
-                 if avc_filter.filter(avc):
-                     av_set.add(avc.scontext.type, avc.tcontext.type, avc.tclass,
--                               avc.accesses, avc)
-+                               avc.accesses, avc, avc_type=avc.type, bools=avc.bools)
-             else:
-                 av_set.add(avc.scontext.type, avc.tcontext.type, avc.tclass,
--                           avc.accesses, avc)
-+                           avc.accesses, avc, avc_type=avc.type, bools=avc.bools)
-         return av_set
- class AVCTypeFilter:
-diff --git a/src/sepolgen/matching.py b/src/sepolgen/matching.py
-index 1a9a3e5..d56dd92 100644
---- a/src/sepolgen/matching.py
-+++ b/src/sepolgen/matching.py
-@@ -50,7 +50,7 @@ class Match:
-                 return 1
- class MatchList:
--    DEFAULT_THRESHOLD = 120
-+    DEFAULT_THRESHOLD = 150
-     def __init__(self):
-         # Match objects that pass the threshold
-         self.children = []
-@@ -63,14 +63,15 @@ class MatchList:
-     def best(self):
-         if len(self.children):
-             return self.children[0]
--        else:
--            return None
-+        if len(self.bastards):
-+            return self.bastards[0]
-+        return None
-     def __len__(self):
-         # Only return the length of the matches so
-         # that this can be used to test if there is
-         # a match.
--        return len(self.children)
-+        return len(self.children) + len(self.bastards)
-     def __iter__(self):
-         return iter(self.children)
-diff --git a/src/sepolgen/policygen.py b/src/sepolgen/policygen.py
-index 0e6b502..4882999 100644
---- a/src/sepolgen/policygen.py
-+++ b/src/sepolgen/policygen.py
-@@ -29,6 +29,8 @@ import objectmodel
- import access
- import interfaces
- import matching
-+import selinux.audit2why as audit2why
-+from setools import *
- # Constants for the level of explanation from the generation
- # routines
-@@ -77,6 +79,7 @@ class PolicyGenerator:
-         self.dontaudit = False
-+        self.domains = None
-     def set_gen_refpol(self, if_set=None, perm_maps=None):
-         """Set whether reference policy interfaces are generated.
-@@ -151,8 +154,41 @@ class PolicyGenerator:
-             rule = refpolicy.AVRule(av)
-             if self.dontaudit:
-                 rule.rule_type = rule.DONTAUDIT
-+            rule.comment = ""
-             if self.explain:
--                rule.comment = refpolicy.Comment(explain_access(av, verbosity=self.explain))
-+                rule.comment = str(refpolicy.Comment(explain_access(av, verbosity=self.explain)))
-+            if av.type == audit2why.ALLOW:
-+                rule.comment += "#!!!! This avc is allowed in the current policy\n"
-+            if av.type == audit2why.DONTAUDIT:
-+                rule.comment += "#!!!! This avc has a dontaudit rule in the current policy\n"
-+
-+            if av.type == audit2why.BOOLEAN:
-+                if len(av.bools) > 1:
-+                    rule.comment += "#!!!! This avc can be allowed using one of the these booleans:\n#     %s\n" % ", ".join(map(lambda x: x[0], av.bools))
-+                else:
-+                    rule.comment += "#!!!! This avc can be allowed using the boolean '%s'\n" % av.bools[0][0]
-+
-+            if av.type == audit2why.CONSTRAINT:
-+                rule.comment += "#!!!! This avc is a constraint violation.  You will need to add an attribute to either the source or target type to make it work.\n"
-+                rule.comment += "#Constraint rule: "
-+
-+            if av.type == audit2why.TERULE:
-+                if "write" in av.perms:
-+                    if "dir" in av.obj_class or "open" in av.perms:
-+                        if not self.domains:
-+                            self.domains = seinfo(ATTRIBUTE, name="domain")[0]["types"]
-+                        types=[]
-+
-+                        try:
-+                            for i in map(lambda x: x[TCONTEXT], sesearch([ALLOW], {SCONTEXT: av.src_type, CLASS: av.obj_class, PERMS: av.perms})):
-+                                if i not in self.domains:
-+                                    types.append(i)
-+                            if len(types) == 1:
-+                                rule.comment += "#!!!! The source type '%s' can write to a '%s' of the following type:\n# %s\n" % ( av.src_type, av.obj_class, ", ".join(types))
-+                            elif len(types) >= 1:
-+                                rule.comment += "#!!!! The source type '%s' can write to a '%s' of the following types:\n# %s\n" % ( av.src_type, av.obj_class, ", ".join(types))
-+                        except:
-+                            pass
-             self.module.children.append(rule)
-diff --git a/src/sepolgen/refparser.py b/src/sepolgen/refparser.py
-index 955784d..9a79340 100644
---- a/src/sepolgen/refparser.py
-+++ b/src/sepolgen/refparser.py
-@@ -245,7 +245,7 @@ def t_refpolicywarn(t):
-     t.lexer.lineno += 1
- def t_IDENTIFIER(t):
--    r'[a-zA-Z_\$\"][a-zA-Z0-9_\-\.\$\*\"]*'
-+    r'[a-zA-Z_\$\"][a-zA-Z0-9_\-\.\$\*\"~]*'
-     # Handle any keywords
-     t.type = reserved.get(t.value,'IDENTIFIER')
-     return t
-diff --git a/src/sepolgen/yacc.py b/src/sepolgen/yacc.py
-index 58332de..2f3c09d 100644
---- a/src/sepolgen/yacc.py
-+++ b/src/sepolgen/yacc.py
-@@ -594,7 +594,7 @@ class MiniProduction:
-     pass
- # regex matching identifiers
--_is_identifier = re.compile(r'^[a-zA-Z0-9_-]+$')
-+_is_identifier = re.compile(r'^[a-zA-Z0-9_-~]+$')
- # -----------------------------------------------------------------------------
- # add_production()
diff --git a/policycoreutils/patches/policycoreutils-sepolgen.patch2 b/policycoreutils/patches/policycoreutils-sepolgen.patch2
new file mode 100644 (file)
index 0000000..57fd46e
--- /dev/null
@@ -0,0 +1,85 @@
+diff --git a/sepolgen/src/sepolgen/matching.py b/sepolgen/src/sepolgen/matching.py
+index 1a9a3e5..d56dd92 100644
+--- a/sepolgen/src/sepolgen/matching.py
++++ b/sepolgen/src/sepolgen/matching.py
+@@ -50,7 +50,7 @@ class Match:
+                 return 1
+ class MatchList:
+-    DEFAULT_THRESHOLD = 120
++    DEFAULT_THRESHOLD = 150
+     def __init__(self):
+         # Match objects that pass the threshold
+         self.children = []
+@@ -63,14 +63,15 @@ class MatchList:
+     def best(self):
+         if len(self.children):
+             return self.children[0]
+-        else:
+-            return None
++        if len(self.bastards):
++            return self.bastards[0]
++        return None
+     def __len__(self):
+         # Only return the length of the matches so
+         # that this can be used to test if there is
+         # a match.
+-        return len(self.children)
++        return len(self.children) + len(self.bastards)
+     def __iter__(self):
+         return iter(self.children)
+diff --git a/sepolgen/src/sepolgen/policygen.py b/sepolgen/src/sepolgen/policygen.py
+index 4882999..9dc2d32 100644
+--- a/sepolgen/src/sepolgen/policygen.py
++++ b/sepolgen/src/sepolgen/policygen.py
+@@ -30,7 +30,11 @@ import access
+ import interfaces
+ import matching
+ import selinux.audit2why as audit2why
+-from setools import *
++try:
++    from setools import *
++    alldomains = seinfo(ATTRIBUTE, name="domain")[0]["types"]
++except:
++    pass
+ # Constants for the level of explanation from the generation
+ # routines
+@@ -79,7 +83,6 @@ class PolicyGenerator:
+         self.dontaudit = False
+-        self.domains = None
+     def set_gen_refpol(self, if_set=None, perm_maps=None):
+         """Set whether reference policy interfaces are generated.
+@@ -175,13 +178,11 @@ class PolicyGenerator:
+             if av.type == audit2why.TERULE:
+                 if "write" in av.perms:
+                     if "dir" in av.obj_class or "open" in av.perms:
+-                        if not self.domains:
+-                            self.domains = seinfo(ATTRIBUTE, name="domain")[0]["types"]
+                         types=[]
+                         try:
+                             for i in map(lambda x: x[TCONTEXT], sesearch([ALLOW], {SCONTEXT: av.src_type, CLASS: av.obj_class, PERMS: av.perms})):
+-                                if i not in self.domains:
++                                if i not in alldomains:
+                                     types.append(i)
+                             if len(types) == 1:
+                                 rule.comment += "#!!!! The source type '%s' can write to a '%s' of the following type:\n# %s\n" % ( av.src_type, av.obj_class, ", ".join(types))
+diff --git a/sepolgen/src/sepolgen/refparser.py b/sepolgen/src/sepolgen/refparser.py
+index 9a79340..a4adbd8 100644
+--- a/sepolgen/src/sepolgen/refparser.py
++++ b/sepolgen/src/sepolgen/refparser.py
+@@ -245,7 +245,7 @@ def t_refpolicywarn(t):
+     t.lexer.lineno += 1
+ def t_IDENTIFIER(t):
+-    r'[a-zA-Z_\$\"][a-zA-Z0-9_\-\.\$\*\"~]*'
++    r'[a-zA-Z_\$\"][a-zA-Z0-9_\-\+\.\$\*\"~]*'
+     # Handle any keywords
+     t.type = reserved.get(t.value,'IDENTIFIER')
+     return t
index 16a03e59601b2f392b1c7d37c4f23d9eaf210d43..9d1e601501d5da8da7adcd86ad0442fd3bd89aca 100644 (file)
@@ -4,8 +4,8 @@
 ###############################################################################
 
 name       = policycoreutils
-version    = 2.1.8
-release    = 4
+version    = 2.1.11
+release    = 1
 
 groups     = System/Base
 url        = http://www.selinuxproject.org
@@ -19,7 +19,7 @@ description
        to switch roles.
 end
 
-sepolgen_ver = 1.1.3
+sepolgen_ver = 1.1.6
 
 sources = \
        %{thisapp}.tgz \
@@ -27,9 +27,7 @@ sources = \
 
 # We have to apply policycoreutils-sepolgen.patch at a later time.
 patches = \
-       policycoreutils-gui.patch \
-       policycoreutils-po.patch \
-       policycoreutils-rhat.patch
+       policycoreutils-rhat.patch2
 
 build
        requires
@@ -51,17 +49,21 @@ build
 
        # Manually add policycoreutils-sepolgen.patch because it has to be applied to the sepolgen source.
        prepare_cmds
-               cd %{DIR_SRC}/sepolgen-%{sepolgen_ver} && patch -Np1 -i %{DIR_PATCHES}/policycoreutils-sepolgen.patch
+               cd %{DIR_SRC}/sepolgen-%{sepolgen_ver} && patch -Np2 -i %{DIR_PATCHES}/policycoreutils-sepolgen.patch2
        end
 
        make_build_targets += \
                LSPP_PRIV=y \
+               BINDIR=%{bindir} \
+               SBINDIR=%{sbindir} \
                LIBDIR=%{libdir} \
                CFLAGS="%{CFLAGS}" \
                all
 
        make_install_targets +=\
                LSPP_PRIV=y \
+               BINDIR=%{BUILDROOT}%{bindir} \
+               SBINDIR=%{BUILDROOT}%{sbindir} \
                LIBDIR=%{BUILDROOT}%{libdir}
 
        # Build sepolgen.
@@ -80,9 +82,6 @@ build
                # Remove unneeded stuff.
                rm -vrf %{BUILDROOT}/etc/{rc.d,xdg,sysconfig}
 
-               # Fix absolute symlink
-               ln -svf ../../sbin/load_policy %{BUILDROOT}/usr/sbin/load_policy
-
                # Remove unneeded sandbox stuff - they are to create graphical sandboxes.
                rm -vrf %{BUILDROOT}/usr/sbin/seunshare
                rm -vrf %{BUILDROOT}/usr/share/sandbox
@@ -93,11 +92,29 @@ end
 
 packages
        package %{name}
+               provides
+                       /bin/sepolgen
+
+                       /sbin/fixfiles
+                       /sbin/load_policy
+                       /sbin/restorecon
+                       /sbin/semodule
+                       /sbin/sestatus
+                       /sbin/setfiles
+               end
+       end
 
        package python-%{name}
                summary = SELinux policy core python utilities.
                description = %{summary}
 
+               provides
+                       /bin/audit2allow
+                       /bin/sandbox
+
+                       /sbin/semanage
+               end
+
                requires
                        policycoreutils>=%{thisver}
                        python-audit
@@ -107,14 +124,14 @@ packages
                end
 
                files
-                       /usr/bin/audit2allow
-                       /usr/bin/audit2why
-                       /usr/bin/chcat
-                       /usr/bin/sandbox
-                       /usr/bin/sepolgen-ifgen
-                       /usr/bin/sepolgen-ifgen-attr-helper
+                       %{bindir}/audit2allow
+                       %{bindir}/audit2why
+                       %{bindir}/chcat
+                       %{bindir}/sandbox
+                       %{bindir}/sepolgen-ifgen
+                       %{bindir}/sepolgen-ifgen-attr-helper
                        %{libdir}/python*
-                       /usr/sbin/semanage
+                       %{sbindir}/semanage
                        /usr/share/man/man1/audit2allow.1
                        /usr/share/man/man1/audit2why.1
                        /usr/share/man/man8/chcat.8